/* ================================================================
   Festival Cadeau — Redesign Layout Stylesheet
   Contains: Reset, Base, Utilities, Navigation, Footer, Animations
   ================================================================ */

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

:root {
    --clr-bg: #0a0a0f;
    --clr-surface: #14141f;
    --clr-surface-2: #1c1c2e;
    --clr-surface-3: #242438;
    --clr-border: rgba(255,255,255,0.06);
    --clr-text: #e8e8ed;
    --clr-text-muted: #8b8b9e;
    --clr-accent: #ff5d00;
    --clr-accent-glow: rgba(255, 93, 0, 0.3);
    --clr-accent-2: #ff8a3d;
    --clr-gradient-1: linear-gradient(135deg, #ff5d00, #ff8a3d);
    --clr-gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a1030 50%, #0f1a2e 100%);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ================================================================
   UTILITIES
   ================================================================ */
.container-rd {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.badge-genre {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255,93,0,0.12);
    color: var(--clr-accent-2);
    border: 1px solid rgba(255,93,0,0.15);
}
.badge-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--clr-accent);
    border-radius: 2px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
}
.btn-primary-rd {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    background: var(--clr-gradient-1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--clr-accent-glow);
}
.btn-primary-rd:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--clr-accent-glow);
}
.btn-outline-rd {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--clr-text);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}
.btn-outline-rd:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: rgba(255,93,0,0.05);
}
.glow-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
    opacity: 0.3;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav-rd {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}
.nav-rd.scrolled {
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--clr-border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.nav-logo img {
    height: 40px;
    width: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-text-muted);
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover, .nav-links a.active {
    color: #fff;
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--clr-accent);
    border-radius: 2px;
}
.nav-cta {
    padding: 10px 24px !important;
    border-radius: var(--radius-full) !important;
    background: var(--clr-gradient-1) !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    box-shadow: 0 2px 12px var(--clr-accent-glow);
    transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--clr-accent-glow); }
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 991px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,15,0.97);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--clr-border);
    }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer-rd {
    padding: 60px 0 32px;
    border-top: 1px solid var(--clr-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-top: 16px;
    max-width: 300px;
    line-height: 1.7;
}
.footer-col h5 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: var(--clr-text-muted);
    transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-accent); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--clr-border);
    font-size: 13px;
    color: var(--clr-text-muted);
}
.footer-socials {
    display: flex;
    gap: 16px;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-surface-2);
    color: var(--clr-text-muted);
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--clr-accent); color: #fff; }

@media (max-width: 767px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 575px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Marquee for partner logos */
.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partners-bar {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 80px;
}
.partner-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-text-muted);
    white-space: nowrap;
}
.partner-logo-item img {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* Live indicator */
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: pulse-live 2s ease infinite;
}
@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Load more */
.load-more-center {
    text-align: center;
    padding: 48px 0;
}

/* Decorative elements */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.15;
}
.orb-1 {
    width: 400px; height: 400px;
    background: var(--clr-accent);
    top: -100px; right: -100px;
}
.orb-2 {
    width: 300px; height: 300px;
    background: #6366f1;
    bottom: -50px; left: -100px;
}
/* ================================================================
   Agenda Redesign — Page-specific Styles
   Hero, Filters, Spotlight, Locations, Upcoming, Categories
   ================================================================ */

/* ================================================================
   HERO
   ================================================================ */
.hero-rd {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    background: var(--clr-gradient-hero);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(0.6);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,15,0.3) 0%,
        rgba(10,10,15,0.6) 40%,
        rgba(10,10,15,0.95) 80%,
        var(--clr-bg) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
}
.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
}
.hero-text h1 .accent { color: var(--clr-accent); }
.hero-text p {
    font-size: 18px;
    color: var(--clr-text-muted);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-search {
    display: flex;
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    max-width: 560px;
}
.hero-search input {
    flex: 1;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--clr-text);
    font-size: 15px;
    outline: none;
}
.hero-search input::placeholder { color: var(--clr-text-muted); }
.hero-search button {
    padding: 18px 32px;
    background: var(--clr-gradient-1);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: var(--transition);
}
.hero-search button:hover { opacity: 0.9; }
.hero-featured {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    transition: var(--transition);
}
.hero-featured-card:hover { transform: scale(1.02); }
.hero-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.hero-featured-card:hover img { transform: scale(1.05); }
.hero-featured-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.hero-featured-card .overlay .sponsored {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--clr-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-featured-card .card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.hero-featured-card .card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.hero-featured-card .card-meta i { color: var(--clr-accent); }
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--clr-border);
}
.hero-stats .stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--clr-accent);
}
.hero-stats .stat-label {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

@media (max-width: 991px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-rd { min-height: auto; padding: 140px 0 60px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
}

/* ================================================================
   FILTER BAR
   ================================================================ */
.filter-bar {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    margin-bottom: 80px;
}
.filter-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--clr-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
    flex-wrap: wrap;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-text-muted);
    background: var(--clr-surface-2);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.filter-chip:hover, .filter-chip.active {
    color: #fff;
    border-color: var(--clr-accent);
    background: rgba(255,93,0,0.08);
}
.filter-chip.active { color: var(--clr-accent); }
.filter-chip i { font-size: 14px; }
.filter-select {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-text-muted);
    background: var(--clr-surface-2);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238b8b9e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    min-width: 160px;
}
.filter-select:hover, .filter-select:focus {
    border-color: var(--clr-accent);
    color: #fff;
    outline: none;
}
.filter-select option {
    background: var(--clr-surface);
    color: var(--clr-text);
}
.filter-spacer { flex: 1; }
.filter-btn-search {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    background: var(--clr-gradient-1);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 12px var(--clr-accent-glow);
}
.filter-btn-search:hover { transform: translateY(-1px); }

@media (max-width: 767px) {
    .filter-inner { flex-direction: column; align-items: stretch; }
    .filter-spacer { display: none; }
    .filter-select { min-width: 100%; }
}

/* ================================================================
   SPOTLIGHT — Bento Grid
   ================================================================ */
.spotlight-section {
    padding: 0 0 100px;
}
.spotlight-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.spot-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
}
.spot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-color: rgba(255,93,0,0.2);
}
.spot-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.spot-card:hover .card-img { transform: scale(1.05); }
.spot-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.spot-card .card-overlay .badge-sponsored {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: var(--clr-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.spot-card .card-overlay h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 10px;
}
.spot-card .card-overlay .meta-line {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.spot-card .card-overlay .meta-line i { color: var(--clr-accent); font-size: 12px; }

/* Bento positions */
.spot-card:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; min-height: 480px; }
.spot-card:nth-child(1) .card-overlay h3 { font-size: 28px; }
.spot-card:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 2; min-height: 230px; }
.spot-card:nth-child(3) { grid-column: 8 / 13; grid-row: 2 / 3; min-height: 230px; }
.spot-card:nth-child(4) { grid-column: 1 / 5; grid-row: 3 / 4; min-height: 260px; }
.spot-card:nth-child(5) { grid-column: 5 / 9; grid-row: 3 / 4; min-height: 260px; }
.spot-card:nth-child(6) { grid-column: 9 / 13; grid-row: 3 / 4; min-height: 260px; }

@media (max-width: 991px) {
    .spotlight-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .spot-card:nth-child(1) { grid-column: 1 / 3; grid-row: auto; min-height: 320px; }
    .spot-card:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 220px; }
    .spot-card:nth-child(1) { grid-column: 1 / 3; }
}
@media (max-width: 575px) {
    .spotlight-grid { grid-template-columns: 1fr; }
    .spot-card:nth-child(1) { grid-column: 1; min-height: 280px; }
}

/* ================================================================
   LOCATIONS — Horizontal scroll
   ================================================================ */
.locations-section {
    padding: 0 0 100px;
}
.locations-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.locations-scroll::-webkit-scrollbar { display: none; }
.loc-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    position: relative;
    height: 140px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}
.loc-card:hover { transform: translateY(-4px); }
.loc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.loc-card:hover img { transform: scale(1.08); }
.loc-card .loc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px 20px;
}
.loc-card .loc-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* ================================================================
   UPCOMING — Grid with animated cards
   ================================================================ */
.upcoming-section {
    padding: 0 0 100px;
}
.upcoming-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}
.upcoming-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.upcoming-tab {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-text-muted);
    background: var(--clr-surface-2);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}
.upcoming-tab:hover, .upcoming-tab.active {
    color: #fff;
    border-color: var(--clr-accent);
    background: rgba(255,93,0,0.08);
}
.upcoming-tab.active { color: var(--clr-accent); }

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
}
.event-card-rd {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    cursor: pointer;
    transition: var(--transition);
}
.event-card-rd:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    border-color: rgba(255,93,0,0.15);
}
.event-card-rd .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.event-card-rd .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.event-card-rd:hover .card-image img { transform: scale(1.08); }
.event-card-rd .card-image .date-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}
.event-card-rd .card-image .date-pill .day {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.event-card-rd .card-image .date-pill .month {
    font-size: 11px;
    font-weight: 600;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.event-card-rd .card-body-rd {
    padding: 20px;
}
.event-card-rd .card-body-rd h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.event-card-rd .card-body-rd .card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}
.event-card-rd .card-body-rd .card-location i {
    font-size: 12px;
    color: var(--clr-accent);
}
.event-card-rd .card-footer-rd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid var(--clr-border);
}
.event-card-rd .card-footer-rd .genres {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.event-card-rd .card-footer-rd .arrow-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-surface-2);
    color: var(--clr-text-muted);
    transition: var(--transition);
}
.event-card-rd:hover .card-footer-rd .arrow-link {
    background: var(--clr-accent);
    color: #fff;
}

/* ================================================================
   CATEGORY SECTIONS (Food / Social)
   ================================================================ */
.category-section {
    padding: 80px 0;
    position: relative;
}
.category-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
}
.category-section .container-rd { position: relative; z-index: 1; }
.category-events-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cat-event-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.cat-event-item:hover {
    background: var(--clr-surface-2);
}
.cat-event-item .item-date {
    text-align: center;
}
.cat-event-item .item-date .day {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--clr-accent);
    line-height: 1;
}
.cat-event-item .item-date .month {
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cat-event-item .item-info h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.cat-event-item .item-info .item-loc {
    font-size: 13px;
    color: var(--clr-text-muted);
}
.cat-event-item .item-info .item-loc i {
    color: var(--clr-accent);
    margin-right: 4px;
}
.cat-event-item .item-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    transition: var(--transition);
}
.cat-event-item:hover .item-arrow {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}
.category-divider {
    height: 1px;
    background: var(--clr-border);
    margin: 0 24px;
}

@media (max-width: 575px) {
    .cat-event-item { grid-template-columns: 60px 1fr 36px; gap: 14px; padding: 16px; }
    .cat-event-item .item-date .day { font-size: 22px; }
}


/* ================================================================
   HOMEPAGE V5 — "IMMERSIVE FESTIVAL"
   Completely different layout: storytelling scroll, centered hero,
   product selector, masonry events, featured review, stacked panels
   ================================================================ */

/* --- Page scope --- */
.fc { position: relative; }

/* ================================================================
   SECTION 1 — CINEMATIC HERO
   Full viewport. Centered card. Festival photo BG. Minimal text.
   NO split layout. NO USP list. NO 50/50 grid.
   ================================================================ */
.fc-cinema {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.fc-cinema__bg {
    position: absolute; inset: 0; z-index: 0;
}
.fc-cinema__bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.35) saturate(.7);
}
.fc-cinema__bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, var(--clr-bg) 100%),
        linear-gradient(180deg, transparent 50%, var(--clr-bg) 100%);
}
.fc-cinema__content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; gap: 0;
    padding: 0 24px;
}
.fc-cinema__award {
    margin-bottom: 24px;
    opacity: .85;
}
.fc-cinema__award img { height: 72px; width: auto; }

.fc-cinema__card {
    width: 380px; max-width: 80vw;
    border-radius: 18px; overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0,0,0,.6),
        0 0 0 1px rgba(255,255,255,.06),
        0 0 120px rgba(255,93,0,.15);
    transition: transform .6s cubic-bezier(.22,1,.36,1);
    margin-bottom: 40px;
}
.fc-cinema__card:hover {
    transform: scale(1.03) translateY(-8px);
}
.fc-cinema__card img { width: 100%; display: block; }

.fc-cinema__h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700; line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 20px;
    max-width: 700px;
}
.fc-cinema__h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #ff5d00, #ff8c3a);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.fc-cinema__cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 40px; border-radius: 60px;
    background: linear-gradient(135deg, #ff5d00, #e84500);
    color: #fff; font-weight: 700; font-size: 17px;
    box-shadow: 0 8px 32px rgba(255,93,0,.35);
    transition: all .35s cubic-bezier(.22,1,.36,1);
    text-decoration: none;
    margin-bottom: 32px;
}
.fc-cinema__cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 48px rgba(255,93,0,.45);
}

.fc-cinema__scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
    color: var(--clr-text-muted);
    font-size: 12px; letter-spacing: .08em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
}
.fc-cinema__scroll i { font-size: 18px; }
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}


/* ================================================================
   SECTION 2 — TRUST BAR (slim, no stats here)
   ================================================================ */
.fc-trust-bar {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    overflow: hidden;
}
.fc-trust-bar__track {
    display: flex; align-items: center; gap: 48px;
    animation: marquee 28s linear infinite;
    width: max-content;
}
.fc-trust-bar__item {
    display: flex; align-items: center; gap: 10px;
    white-space: nowrap; font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,.3); flex-shrink: 0;
}
.fc-trust-bar__item img {
    height: 26px; width: auto; opacity: .35;
    filter: grayscale(1) brightness(1.5);
    transition: all .3s;
}
.fc-trust-bar__item:hover img { opacity: .8; filter: grayscale(0); }
@keyframes marquee { to { transform: translateX(-50%); } }


/* ================================================================
   SECTION 3 — PRODUCT SELECTOR
   One large featured card + small thumbnails.
   NOT a grid of 4 identical cards.
   ================================================================ */
.fc-selector {
    padding: 120px 0;
}
.fc-selector__layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 64px;
    align-items: center;
}
.fc-selector__info {
    order: 1;
}
.fc-selector__label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--clr-accent);
    margin-bottom: 20px;
}
.fc-selector__info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700; line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.fc-selector__info p {
    font-size: 16px; color: var(--clr-text-muted);
    line-height: 1.7; margin-bottom: 28px;
    max-width: 440px;
}
.fc-selector__thumbs {
    display: flex; gap: 12px; margin-bottom: 28px;
}
.fc-selector__thumb {
    width: 80px; height: 54px;
    border-radius: 10px; overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: .5;
    transition: all .3s;
}
.fc-selector__thumb.active,
.fc-selector__thumb:hover {
    opacity: 1;
    border-color: var(--clr-accent);
    box-shadow: 0 0 20px rgba(255,93,0,.25);
}
.fc-selector__thumb img {
    width: 100%; height: 100%; object-fit: cover;
}
.fc-selector__btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 14px;
    background: linear-gradient(135deg, #ff5d00, #e84500);
    color: #fff; font-weight: 700; font-size: 15px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(255,93,0,.3);
    transition: all .3s cubic-bezier(.22,1,.36,1);
}
.fc-selector__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(255,93,0,.4);
}

.fc-selector__showcase {
    order: 2;
    position: relative;
}
.fc-selector__main-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 24px 72px rgba(0,0,0,.5),
        0 0 0 1px rgba(255,255,255,.05);
}
.fc-selector__main-img img {
    width: 100%; display: block;
    transition: opacity .4s;
}
.fc-selector__tag {
    position: absolute; top: 20px; right: 20px;
    padding: 6px 16px; border-radius: 8px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--clr-accent);
}


/* ================================================================
   SECTION 4 — FULL-BLEED PHOTO BREAK + FLOATING STATS
   A massive atmospheric photo with overlaid stats.
   This breaks the content rhythm.
   ================================================================ */
.fc-photo-break {
    position: relative;
    height: 50vh;
    min-height: 360px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-photo-break__img {
    position: absolute; inset: 0;
}
.fc-photo-break__img img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.3) saturate(.8);
}
.fc-photo-break__img::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, var(--clr-bg) 0%, transparent 20%, transparent 80%, var(--clr-bg) 100%);
}
.fc-photo-break__stats {
    position: relative; z-index: 2;
    display: flex; gap: 80px; align-items: center;
    flex-wrap: wrap; justify-content: center;
}
.fc-stat {
    text-align: center;
}
.fc-stat__num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ff5d00, #ffb74d);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.fc-stat__label {
    font-size: 14px; color: rgba(255,255,255,.5);
    text-transform: uppercase; letter-spacing: .1em;
    margin-top: 4px;
}


/* ================================================================
   SECTION 5 — EVENTS MASONRY
   One LARGE featured event + smaller cards in staggered layout.
   NOT a uniform 3-column grid.
   ================================================================ */
.fc-events {
    padding: 100px 0;
}
.fc-events__head {
    display: flex; justify-content: space-between;
    align-items: flex-end; flex-wrap: wrap; gap: 16px;
    margin-bottom: 40px;
}
.fc-events__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700; letter-spacing: -.02em;
}
.fc-events__head-label {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--clr-accent); margin-bottom: 8px;
}

.fc-events__masonry {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}
/* First card is large — spans 2 cols, 2 rows */
.fc-ev:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.fc-ev {
    position: relative; border-radius: 18px;
    overflow: hidden; display: block;
    text-decoration: none;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.fc-ev:hover { transform: scale(1.02); }
.fc-ev img {
    width: 100%; height: 100%; object-fit: cover;
    min-height: 220px;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.fc-ev:first-child img { min-height: 100%; }
.fc-ev:hover img { transform: scale(1.06); }
.fc-ev__info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 100%);
}
.fc-ev__date {
    display: inline-block;
    padding: 3px 10px; border-radius: 6px;
    background: var(--clr-accent); color: #fff;
    font-size: 11px; font-weight: 700;
    margin-bottom: 8px;
}
.fc-ev__info h4 {
    font-family: var(--font-display); font-size: 16px;
    font-weight: 600; line-height: 1.3; color: #fff;
}
.fc-ev:first-child .fc-ev__info h4 { font-size: 22px; }
.fc-ev__city {
    font-size: 13px; color: rgba(255,255,255,.6);
    margin-top: 4px;
    display: flex; align-items: center; gap: 5px;
}

/* Events link btn */
.fc-events-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; font-size: 14px;
    color: var(--clr-accent);
    text-decoration: none;
    transition: gap .3s;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255,93,0,.2);
}
.fc-events-link:hover { gap: 12px; border-color: rgba(255,93,0,.4); }


/* ================================================================
   SECTION 6 — FEATURED REVIEW (single, large)
   One big review centered. Dots to cycle. NOT a marquee strip.
   ================================================================ */
.fc-featured-review {
    padding: 100px 0;
    text-align: center;
}
.fc-featured-review__label {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--clr-accent); margin-bottom: 16px;
}
.fc-featured-review__stars {
    color: #ffb800; font-size: 20px;
    display: flex; justify-content: center; gap: 4px;
    margin-bottom: 32px;
}
.fc-featured-review__quote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 500; line-height: 1.5;
    max-width: 700px; margin: 0 auto 32px;
    color: var(--clr-text);
    position: relative;
}
.fc-featured-review__quote::before {
    content: '\201C';
    font-size: 5rem; line-height: 1;
    color: rgba(255,93,0,.15);
    position: absolute; top: -40px; left: -20px;
    font-family: Georgia, serif;
}
.fc-featured-review__author {
    font-size: 15px; color: var(--clr-text-muted);
}
.fc-featured-review__author strong {
    color: var(--clr-text);
}
.fc-featured-review__dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 32px;
}
.fc-featured-review__dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.15);
    cursor: pointer;
    transition: all .3s;
    border: none; padding: 0;
}
.fc-featured-review__dot.active {
    background: var(--clr-accent);
    box-shadow: 0 0 12px rgba(255,93,0,.4);
}
.fc-featured-review__trustpilot {
    margin-top: 24px; opacity: .6;
}
.fc-featured-review__trustpilot img { height: 28px; display: inline-block; }


/* ================================================================
   SECTION 7 — HOW IT WORKS — STACKED PANELS
   Three large full-width panels stacked vertically.
   Big numbers. NOT a timeline or 3-column grid.
   ================================================================ */
.fc-panels {
    padding: 80px 0;
}
.fc-panels__title {
    text-align: center; margin-bottom: 60px;
}
.fc-panels__title h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
}
.fc-panels__title span {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--clr-accent); display: block; margin-bottom: 12px;
}

.fc-panel {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 40px;
    margin-bottom: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.04);
    transition: all .4s cubic-bezier(.22,1,.36,1);
}
.fc-panel:hover {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,93,0,.12);
    transform: translateX(8px);
}
.fc-panel__num {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, rgba(255,93,0,.25) 0%, rgba(255,93,0,.05) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.fc-panel__body h3 {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600;
    margin-bottom: 8px;
}
.fc-panel__body p {
    font-size: 15px; color: var(--clr-text-muted);
    line-height: 1.65; max-width: 600px;
}
.fc-panel__body a {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--clr-accent); font-weight: 600; font-size: 14px;
    margin-top: 12px; text-decoration: none;
    transition: gap .3s;
}
.fc-panel__body a:hover { gap: 10px; }


/* ================================================================
   SECTION 8 — PARTNERS — Horizontal scroll with large cards
   NOT two side-by-side cards. Large horizontal scroll.
   ================================================================ */
.fc-partners {
    padding: 100px 0;
}
.fc-partners__header {
    text-align: center; margin-bottom: 48px;
}
.fc-partners__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
}
.fc-partners__header span {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--clr-accent); display: block; margin-bottom: 12px;
}
.fc-partners__scroll {
    display: flex; gap: 24px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.fc-partners__scroll::-webkit-scrollbar { display: none; }
.fc-pcard {
    flex: 0 0 400px; scroll-snap-align: start;
    border-radius: 20px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.05);
    overflow: hidden;
    transition: all .4s cubic-bezier(.22,1,.36,1);
    text-decoration: none; color: inherit;
}
.fc-pcard:hover {
    border-color: rgba(255,255,255,.1);
    transform: translateY(-4px);
}
.fc-pcard__img {
    width: 100%; aspect-ratio: 16/9; overflow: hidden;
}
.fc-pcard__img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.fc-pcard:hover .fc-pcard__img img { transform: scale(1.04); }
.fc-pcard__body {
    padding: 28px;
}
.fc-pcard__body h3 {
    font-family: var(--font-display); font-size: 18px;
    font-weight: 600; margin-bottom: 8px;
}
.fc-pcard__body p {
    font-size: 14px; color: var(--clr-text-muted);
    line-height: 1.6; margin-bottom: 16px;
}
.fc-pcard__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 10px;
    border: 1px solid rgba(255,93,0,.2);
    color: var(--clr-accent); font-weight: 600; font-size: 13px;
    text-decoration: none; transition: all .3s;
}
.fc-pcard__btn:hover {
    background: rgba(255,93,0,.08);
    border-color: rgba(255,93,0,.35);
}


/* ================================================================
   SECTION 9 — NEWS MAGAZINE LAYOUT
   One BIG hero article (left) + two stacked smaller (right).
   NOT three equal cards.
   ================================================================ */
.fc-news {
    padding: 100px 0;
}
.fc-news__header {
    display: flex; justify-content: space-between;
    align-items: flex-end; flex-wrap: wrap; gap: 16px;
    margin-bottom: 40px;
}
.fc-news__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
}
.fc-news__header span {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--clr-accent); display: block; margin-bottom: 8px;
}

.fc-news__magazine {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}
/* Big hero article spans both rows */
.fc-news__magazine .fc-article:first-child {
    grid-row: 1 / 3;
}
.fc-article {
    display: flex; flex-direction: column;
    border-radius: 18px; overflow: hidden;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.05);
    text-decoration: none; color: inherit;
    transition: all .4s cubic-bezier(.22,1,.36,1);
}
.fc-article:hover {
    border-color: rgba(255,255,255,.1);
    transform: translateY(-4px);
}
.fc-article__img {
    overflow: hidden; flex-shrink: 0;
}
.fc-news__magazine .fc-article:first-child .fc-article__img {
    flex: 1;
}
.fc-article__img img {
    width: 100%; height: 100%; object-fit: cover;
    min-height: 200px;
    transition: transform .5s;
}
.fc-article:hover .fc-article__img img { transform: scale(1.04); }
/* Small articles: img on left, text on right */
.fc-news__magazine .fc-article:not(:first-child) {
    flex-direction: row;
}
.fc-news__magazine .fc-article:not(:first-child) .fc-article__img {
    width: 180px; flex-shrink: 0;
}
.fc-article__body {
    padding: 24px; display: flex; flex-direction: column;
}
.fc-article__body time {
    font-size: 12px; color: var(--clr-text-muted);
    margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.fc-article__body h4 {
    font-family: var(--font-display); font-size: 16px;
    font-weight: 600; line-height: 1.35; margin-bottom: 8px;
}
.fc-news__magazine .fc-article:first-child .fc-article__body h4 {
    font-size: 22px;
}
.fc-article__link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--clr-accent); font-weight: 600; font-size: 13px;
    margin-top: auto; transition: gap .3s;
}
.fc-article__link:hover { gap: 10px; }


/* ================================================================
   SECTION 10 — FULL-SCREEN CTA
   Card centered again, big CTA. Bookend matching the hero.
   ================================================================ */
.fc-final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fc-final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255,93,0,.06), transparent);
    pointer-events: none;
}
.fc-final-cta__card {
    width: 300px; max-width: 70vw;
    margin: 0 auto 40px;
    border-radius: 16px; overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,.5),
        0 0 80px rgba(255,93,0,.12);
}
.fc-final-cta__card img { width: 100%; display: block; }
.fc-final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 700; margin-bottom: 24px;
}

/* Social grid */
.fc-social {
    padding: 80px 0;
}
.fc-social__header {
    text-align: center; margin-bottom: 40px;
}
.fc-social__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
}
.fc-social__header span {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--clr-accent); display: block; margin-bottom: 12px;
}
.fc-social__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.fc-social__item {
    position: relative; border-radius: 14px;
    overflow: hidden; aspect-ratio: 1;
    display: block;
}
.fc-social__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.fc-social__item:hover img { transform: scale(1.06); }
.fc-social__play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.35); opacity: 0; transition: opacity .3s;
}
.fc-social__item:hover .fc-social__play { opacity: 1; }
.fc-social__play i {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--clr-accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
}


/* Contact — integrated, minimal */
.fc-contact {
    padding: 80px 0;
}
.fc-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
}
.fc-contact__photo {
    border-radius: 20px; overflow: hidden;
}
.fc-contact__photo img { width: 100%; display: block; }
.fc-contact__body h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700; margin-bottom: 20px;
}
.fc-contact__body span {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--clr-accent); display: block; margin-bottom: 12px;
}
.fc-contact__rows {
    display: flex; flex-direction: column; gap: 16px;
    margin-bottom: 24px;
}
.fc-contact__row {
    display: flex; align-items: flex-start; gap: 14px;
}
.fc-contact__icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-accent); font-size: 15px; flex-shrink: 0;
}
.fc-contact__row p {
    font-size: 14px; color: var(--clr-text-muted); line-height: 1.6;
}
.fc-contact__row strong {
    display: block; font-size: 14px; color: var(--clr-text); margin-bottom: 2px;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .fc-selector__layout {
        grid-template-columns: 1fr;
    }
    .fc-selector__info { order: 2; text-align: center; }
    .fc-selector__info p { margin: 0 auto 28px; }
    .fc-selector__thumbs { justify-content: center; }
    .fc-selector__showcase { order: 1; max-width: 440px; margin: 0 auto; }

    .fc-events__masonry {
        grid-template-columns: 1fr 1fr;
    }
    .fc-ev:first-child { grid-column: 1 / 3; grid-row: auto; }

    .fc-news__magazine { grid-template-columns: 1fr; }
    .fc-news__magazine .fc-article:first-child { grid-row: auto; }
    .fc-news__magazine .fc-article:not(:first-child) { flex-direction: column; }
    .fc-news__magazine .fc-article:not(:first-child) .fc-article__img { width: 100%; }

    .fc-contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .fc-cinema { min-height: 100vh; }
    .fc-cinema__card { width: 260px; }
    .fc-cinema__h1 { font-size: 1.8rem; }

    .fc-photo-break__stats { gap: 40px; }
    .fc-stat__num { font-size: 2rem; }

    .fc-events__masonry {
        grid-template-columns: 1fr;
    }
    .fc-ev:first-child { grid-column: auto; grid-row: auto; }

    .fc-panel {
        grid-template-columns: 80px 1fr;
        gap: 20px; padding: 28px 24px;
    }
    .fc-panel__num { font-size: 3.5rem; }

    .fc-partners__scroll .fc-pcard { flex: 0 0 300px; }

    .fc-social__grid { grid-template-columns: repeat(2, 1fr); }

    .fc-featured-review__quote { font-size: 1.1rem; }
}
