/* ========================================
   ARTICULATE ASIAN - L3 HOMEPAGE
   REDESIGNED - IMMERSIVE TRAVEL EDITORIAL
   ======================================== */

/* ========================================
   CSS VARIABLES (Reference Only - Loaded from l3-variables.css)
   ======================================== */

/* ========================================
   HERO SECTION - CINEMATIC IMMERSIVE
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg-image {
    position: absolute;
    inset: -10%;
    background: url('images/all/photo-1537531383496-f4749b8032cf.jpg') center/cover no-repeat;
    animation: kenBurns 25s ease-in-out infinite alternate;
}

@media (min-width: 1024px) {
    .hero-bg-image {
        inset: 0;
    }
}

@keyframes kenBurns {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.15) translateY(-3%); }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 15, 26, 0.3) 0%, rgba(10, 15, 26, 0.6) 50%, rgba(10, 15, 26, 1) 100%),
        radial-gradient(ellipse at 50% 0%, rgba(197, 48, 48, 0.2) 0%, transparent 60%);
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 165, 116, 0.6);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; animation-duration: 10s; }
.particle:nth-child(3) { left: 35%; top: 40%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-delay: 0.5s; animation-duration: 11s; }
.particle:nth-child(5) { left: 65%; top: 30%; animation-delay: 1.5s; animation-duration: 13s; }
.particle:nth-child(6) { left: 80%; top: 50%; animation-delay: 3s; animation-duration: 9s; }
.particle:nth-child(7) { left: 90%; top: 75%; animation-delay: 2.5s; animation-duration: 15s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: var(--space-lg);
}

/* Eyebrow with glow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold));
}

.hero-eyebrow::after {
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(40px);
    animation: titleReveal 1.2s ease forwards 0.5s;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    background: linear-gradient(135deg, #f9fafb 0%, #d4a574 50%, #f9fafb 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShine 4s ease-in-out infinite;
}

.hero-title .accent {
    background: linear-gradient(135deg, #c53030 0%, #e53e3e 50%, #c53030 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientShine {
    0%, 100% { background-position: 0% 50%; filter: brightness(1); }
    50% { background-position: 100% 50%; filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.1s;
}

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.8s;
}

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

.hero-scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ========================================
   MARQUEE BANNER - SCROLLING TEXT
   ======================================== */
.marquee-section {
    background: var(--color-accent);
    padding: var(--space-md) 0;
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--color-accent), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--color-accent), transparent);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: var(--space-3xl);
    padding-right: var(--space-3xl);
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.marquee-item::after {
    content: '◆';
    font-size: 0.5rem;
    opacity: 0.7;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   FEATURED SECTION - BENTO GRID
   ======================================== */
.featured {
    padding: var(--space-4xl) 0;
    position: relative;
}

.featured-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.featured-header h2 {
    margin-bottom: var(--space-md);
}

.featured-header p {
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: auto auto auto;
    }

    .bento-main {
        grid-column: 1 / 8;
        grid-row: 1 / 3;
    }

    .bento-side-1 {
        grid-column: 8 / 13;
        grid-row: 1;
    }

    .bento-side-2 {
        grid-column: 8 / 13;
        grid-row: 2;
    }

    .bento-full {
        grid-column: 1 / 13;
        grid-row: 3;
    }
}

/* Bento Cards */
.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-surface);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.bento-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.bento-card:hover .bento-card-bg {
    transform: scale(1.08);
}

.bento-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 15, 26, 0.95) 0%,
        rgba(10, 15, 26, 0.4) 50%,
        rgba(10, 15, 26, 0.2) 100%
    );
}

.bento-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    z-index: 2;
}

.bento-main {
    min-height: 500px;
}

@media (min-width: 768px) {
    .bento-main {
        min-height: 600px;
    }
}

.bento-side-1,
.bento-side-2 {
    min-height: 280px;
}

.bento-full {
    min-height: 300px;
}

.bento-tag {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

.bento-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: white;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.bento-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.bento-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.875rem;
    transition: gap 0.3s ease;
}

.bento-card:hover .read-more {
    gap: var(--space-sm);
}

/* ========================================
   CATEGORIES SECTION - SPOTLIGHT CARDS
   ======================================== */
.categories {
    padding: var(--space-4xl) 0;
    background: var(--color-surface);
}

.categories-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.categories-header h2 {
    margin-bottom: var(--space-sm);
}

.categories-header p {
    color: var(--color-text-muted);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Spotlight Category Card */
.spotlight-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    --mx: 50%;
    --my: 50%;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mx) var(--my),
        rgba(197, 48, 48, 0.3) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.spotlight-card:hover::before {
    opacity: 1;
}

.spotlight-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.spotlight-card:hover .spotlight-card-bg {
    transform: scale(1.1);
}

.spotlight-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 15, 26, 0.95) 0%,
        rgba(10, 15, 26, 0.3) 60%,
        transparent 100%
    );
    transition: background 0.4s ease;
}

.spotlight-card:hover .spotlight-card-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 15, 26, 0.98) 0%,
        rgba(197, 48, 48, 0.2) 60%,
        rgba(197, 48, 48, 0.1) 100%
    );
}

.spotlight-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    z-index: 3;
}

.spotlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(197, 48, 48, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
    transition: transform 0.4s ease, background 0.4s ease;
}

.spotlight-card:hover .spotlight-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--color-accent);
}

.spotlight-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.spotlight-card p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
}

.spotlight-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.spotlight-card:hover .spotlight-link {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   LATEST ARTICLES - HORIZONTAL SCROLL
   ======================================== */
.latest {
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.latest-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.latest-header h2 {
    margin-bottom: 0;
}

.latest-header a {
    color: var(--color-gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: color 0.3s ease;
}

.latest-header a:hover {
    color: var(--color-accent);
}

/* Horizontal Scroll Container */
.latest-scroll {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    padding-bottom: var(--space-lg);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.latest-scroll::-webkit-scrollbar {
    height: 4px;
}

.latest-scroll::-webkit-scrollbar-track {
    background: var(--color-surface);
    border-radius: 2px;
}

.latest-scroll::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}

.article-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: var(--color-surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.article-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.08);
}

.article-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.5) 0%, transparent 50%);
}

.article-card-content {
    padding: var(--space-lg);
}

.article-card-category {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.article-card h3 {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-card:hover h3 {
    color: var(--color-gold);
}

.article-card-excerpt {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.article-card-author {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.article-card-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

/* ========================================
   TESTIMONIAL - QUOTE ROTATION
   ======================================== */
.testimonial {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(197, 48, 48, 0.05) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.testimonial-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-style: italic;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: var(--color-accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    font-weight: 600;
    box-shadow: 0 0 30px rgba(197, 48, 48, 0.3);
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text);
}

.testimonial-author-title {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ========================================
   CTA SECTION - SPLIT BACKGROUND
   ======================================== */
.cta-section {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('images/all/photo-1476514525535-07fb3b4ae5f1.jpg') center/cover no-repeat;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 26, 0.92) 0%,
        rgba(15, 35, 66, 0.88) 50%,
        rgba(197, 48, 48, 0.85) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: var(--space-lg);
}

.cta-content p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

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

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    z-index: 1001;
    transform-origin: left;
    transform: scaleX(0);
    width: 100%;
}

/* ========================================
   NAVIGATION - GLASS MORPHISM
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: var(--color-gold);
}

.nav-logo span {
    color: var(--color-accent);
}

.nav-links {
    display: none;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.4s ease;
}

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

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

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: block;
    }
}

.nav-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
}

@media (min-width: 1024px) {
    .nav-menu-btn {
        display: none;
    }
}

.nav-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: var(--space-3xl) 0 var(--space-lg);
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.footer-brand h3 span {
    color: var(--color-accent);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-section h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--color-background);
    display: flex;
    flex-direction: column;
    padding: var(--space-4xl) var(--space-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: var(--color-text);
    font-size: 2.5rem;
    padding: var(--space-xs);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-menu-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--color-accent);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-xl);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 20px rgba(197, 48, 48, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 48, 48, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

    .hero-bg-image {
        animation: none;
    }

    .hero-particles {
        display: none;
    }

    .marquee-track {
        animation: none;
    }

    .testimonial::before {
        animation: none;
    }
}