/* assets/css/style.css */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300;1,9..40,400&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* --- Custom Variables & Theme --- */
:root {
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Luxury Palette */
    --color-charcoal: #0d0d0d;
    --color-charcoal-light: #161616;
    --color-ivory: #f7f5f0;
    --color-sand: #efebe4;
    --color-gold: #c5a880;
    --color-gold-hover: #b09168;
    --color-text-dark: #1c1c1c;
    --color-text-light: #f2eae1;
    --color-text-muted: #8c8882;
    
    --transition-slow: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-medium: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-charcoal);
    color: var(--color-text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Grain / Noise Overlay --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- Typography --- */
h1, h2, h3, h4, .serif-font {
    font-family: var(--font-serif);
    font-weight: 400;
}

p {
    font-weight: 300;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.button-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border: 1px solid var(--color-gold);
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s var(--transition-medium);
}

.button-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-charcoal) !important;
}

/* --- Header / Navigation --- */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.6s var(--transition-slow), padding 0.6s var(--transition-slow), border-color 0.6s var(--transition-slow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-nav.scrolled-light {
    background-color: rgba(247, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--color-text-dark);
}

.header-nav.scrolled-light .nav-cta {
    border-color: var(--color-text-dark);
    color: var(--color-text-dark);
}

.header-nav.scrolled-light .nav-cta:hover {
    background-color: var(--color-text-dark);
    color: var(--color-ivory) !important;
}

.header-nav.scrolled-dark {
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
}

.header-nav.scrolled-dark .nav-cta {
    border-color: var(--color-gold);
    color: var(--color-text-light);
}

.header-nav.scrolled-dark .nav-cta:hover {
    background-color: var(--color-gold);
    color: var(--color-charcoal) !important;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.nav-logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.nav-cta {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-cta:hover {
    background-color: var(--color-text-light);
    color: var(--color-charcoal);
}

/* --- Hamburger Mobile Button --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: currentColor;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Open states for hamburger */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Menu Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-charcoal);
    z-index: 999;
    padding: 120px 40px 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.5s var(--transition-slow);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-links a {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    letter-spacing: 0.05em;
}

.mobile-links a:hover {
    color: var(--color-gold);
    padding-left: 10px;
}

.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Cinematic Sticky Hero --- */
.scroll-hero {
    position: relative;
    height: 500vh; /* Controlled scroll length */
    background-color: var(--color-charcoal);
}

.hero-sticky-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video wrapper & overlays */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.4) 0%,
        rgba(13, 13, 13, 0.2) 40%,
        rgba(13, 13, 13, 0.6) 80%,
        rgba(13, 13, 13, 0.85) 100%
    );
    z-index: 2;
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 3;
}

/* Editorial content overlay */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}

.hero-text-wrapper {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    will-change: opacity, transform;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s var(--transition-slow);
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--color-gold);
    text-transform: uppercase;
}

.hero-headline {
    font-size: 6.5rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-text-light);
}

.hero-headline span.italic {
    font-style: italic;
    font-weight: 300;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(242, 234, 225, 0.85);
    max-width: 500px;
}

.hero-cta-btn {
    pointer-events: auto;
    align-self: flex-start;
}

/* Bottom elements */
.hero-bottom-indicators {
    position: absolute;
    bottom: 50px;
    left: 8%;
    right: 8%;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--color-text-muted);
}

.scroll-indicator-text {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.scroll-indicator-line {
    width: 60px;
    height: 1px;
    background-color: currentColor;
    position: relative;
    overflow: hidden;
}

.scroll-indicator-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    animation: scrollLineAnim 2s infinite ease-in-out;
}

@keyframes scrollLineAnim {
    0% { transform: scaleX(0); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
    50.1% { transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

/* Timeline */
.timeline {
    display: flex;
    align-items: center;
    gap: 15px;
    pointer-events: auto;
}

.timeline-step {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    transition: color 0.4s ease, font-weight 0.4s ease;
    text-transform: uppercase;
}

.timeline-step.active {
    color: var(--color-gold);
    font-weight: 500;
}

.timeline-divider {
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* --- Section Formatting General --- */
.section {
    padding: 140px 8%;
    position: relative;
}

/* Light / Beige Theme */
.theme-light {
    background-color: var(--color-ivory);
    color: var(--color-text-dark);
}

.theme-light p {
    color: rgba(28, 28, 28, 0.8);
}

/* Dark Theme */
.theme-dark {
    background-color: var(--color-charcoal);
    color: var(--color-text-light);
}

/* Cream / Soft Sand Theme */
.theme-cream {
    background-color: var(--color-sand);
    color: var(--color-text-dark);
}

.theme-cream p {
    color: rgba(28, 28, 28, 0.85);
}

/* --- Section: Destinations --- */
.destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 40px;
}

.section-title {
    font-size: 3.8rem;
    line-height: 1.1;
    max-width: 600px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 450px;
    line-height: 1.8;
}

/* Editorial Destination Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.destination-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
    cursor: pointer;
    group: hover;
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-slow);
}

.destination-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 15px;
}

.card-number {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}

.card-arrow {
    font-size: 1.1rem;
    transition: transform 0.4s var(--transition-medium);
}

.destination-card:hover .card-arrow {
    transform: translateX(8px);
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-title {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-location {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --- Section: Experiences --- */
.experiences-header {
    margin-bottom: 100px;
    max-width: 600px;
}

.experiences-header .section-title {
    margin-bottom: 20px;
}

.experiences-rows {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-row {
    display: grid;
    grid-template-columns: 80px 1.5fr 2fr;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--transition-slow), transform 1s var(--transition-slow);
}

.experience-row.in-view {
    opacity: 1;
    transform: translateY(0);
}

.experience-num {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}

.experience-title {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.experience-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(242, 234, 225, 0.7);
    line-height: 1.7;
}

/* --- Section: Story --- */
.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-header .section-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-content p {
    font-size: 1.25rem;
    line-height: 1.8;
}

.story-content p:first-child {
    font-weight: 400;
    color: var(--color-text-dark);
}

.story-signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--color-gold);
}

/* --- Section: Contact / Journey --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.contact-info .section-title {
    font-size: 4.5rem;
    line-height: 1;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details-item {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.contact-details-item span {
    color: var(--color-text-light);
}

/* Form Styling */
.journey-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: var(--color-charcoal-light);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-input:focus {
    border-bottom-color: var(--color-gold);
}

.form-label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    pointer-events: none;
    transition: all var(--transition-fast);
}

/* Floating label effect */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -15px;
    font-size: 0.7rem;
    color: var(--color-gold);
}

.form-submit-btn {
    align-self: flex-start;
    border-color: var(--color-gold);
}

/* --- Footer --- */
.footer-main {
    background-color: var(--color-charcoal);
    padding: 80px 8% 40px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

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

/* --- Toast / Success Message Notification --- */
.toast-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    pointer-events: none;
}

.toast-notification {
    background-color: var(--color-charcoal-light);
    color: var(--color-text-light);
    border-left: 3px solid var(--color-gold);
    padding: 20px 30px;
    width: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--transition-medium);
    pointer-events: auto;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--color-gold);
}

.toast-body {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 1200px) {
    .hero-headline {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .destinations-grid {
        gap: 25px;
    }
    
    .story-header .section-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .header-nav {
        padding: 20px 40px;
    }
    .header-nav.scrolled-light, .header-nav.scrolled-dark {
        padding: 15px 40px;
    }
    
    .nav-links, .nav-cta {
        display: none; /* Hide on mobile/tablet and show menu button instead */
    }
    
    .hamburger {
        display: flex;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .card-img-wrapper {
        aspect-ratio: 16/10;
    }
    
    .experiences-rows {
        margin-top: 40px;
    }
    
    .experience-row {
        grid-template-columns: 50px 1fr;
        gap: 15px 0;
        padding: 40px 0;
    }
    
    .experience-desc {
        grid-column: 1 / span 2;
        font-size: 0.95rem;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .journey-form {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 6%;
    }
    
    .hero-content {
        padding: 100px 6%;
    }
    
    .hero-headline {
        font-size: 3.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-bottom-indicators {
        left: 6%;
        right: 6%;
        bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .timeline {
        width: 100%;
        justify-content: space-between;
    }
    
    .timeline-divider {
        display: none; /* Hide dividers on mobile timeline to save space */
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .destinations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .contact-info .section-title {
        font-size: 3.2rem;
    }
    
    .footer-main {
        padding: 60px 6% 30px 6%;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .journey-form {
        padding: 30px 20px;
    }
}

/* Premium Preloader Screen */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000; /* Solid Black Background */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 1;
    visibility: visible;
}

/* Preloader hidden/dissolve state */
.preloader.dissolve {
    opacity: 0;
    pointer-events: none;
}

.loader-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, rgba(212, 175, 55, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: fadeInGlow 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
    width: 320px;
    position: relative;
    z-index: 2;
    transform: scale(1);
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.preloader-content.exit {
    opacity: 0;
    transform: scale(0.96);
}

/* Base Part Style */
.loader-logo-part {
    position: absolute;
    width: 320px;
    height: 320px;
    left: 0;
    /* Apply SVG filter remove-white to dynamically key out white pixels, then tune colors */
    filter: url(#remove-white) brightness(1.2) contrast(1.1) saturate(1.2);
}

/* Part 1: Emblem (0.4s - 1.0s) */
.loader-emblem-container {
    position: relative;
    width: 320px;
    height: 160px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.94);
    animation: revealEmblem 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.part-emblem {
    top: 0;
    clip-path: inset(0% 0% 50% 0%);
}

.shimmer-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: translateX(-150%) skewX(-25deg);
    animation: shimmerSweep 1.2s ease-in-out 0.6s forwards;
    pointer-events: none;
}

/* Part 2: GRIVA (1.2s - 1.8s) */
.part-griva-container {
    position: relative;
    width: 320px;
    height: 52px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    animation: revealGriva 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.part-griva {
    top: -154px;
    clip-path: inset(48% 0% 34% 0%);
}

/* Part 3: WORLD TOURS & Dividers (1.6s - 2.1s) */
.part-worldtours-container {
    position: relative;
    width: 320px;
    height: 48px;
    overflow: hidden;
    opacity: 0;
    animation: revealWorldTours 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}

.part-worldtours {
    top: -208px;
    clip-path: inset(65% 0% 20% 0%);
}

.divider-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
    width: 0%;
    top: 35%;
}

.left-line {
    right: 50%;
    margin-right: 74px;
    animation: extendLeftLine 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}

.right-line {
    left: 50%;
    margin-left: 74px;
    animation: extendRightLine 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}

/* Part 4: Tagline (2.0s - 2.4s) */
.part-tagline-container {
    position: relative;
    width: 320px;
    height: 55px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    animation: revealTagline 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2.0s forwards;
}

.part-tagline {
    top: -258px;
    clip-path: inset(80% 0% 0% 0%);
}

/* Transition light sweep overlay */
.transition-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 45%, rgba(255, 180, 0, 0.15) 55%, transparent 100%);
    z-index: 10000;
    pointer-events: none;
    transform: skewX(-20deg);
    transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.transition-sweep.active {
    left: 200%;
}

/* Keyframe Animations */
@keyframes fadeInGlow {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes revealEmblem {
    0% { opacity: 0; transform: scale(0.94); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes shimmerSweep {
    0% { transform: translateX(-150%) skewX(-25deg); }
    100% { transform: translateX(150%) skewX(-25deg); }
}

@keyframes revealGriva {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes revealWorldTours {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes extendLeftLine {
    0% { width: 0%; }
    100% { width: 22%; }
}

@keyframes extendRightLine {
    0% { width: 0%; }
    100% { width: 22%; }
}

@keyframes revealTagline {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Accessibility: Respect Reduced Motion preference */
@media (prefers-reduced-motion: reduce) {
    .preloader {
        display: none !important;
    }
}
