/* ========================================
   MAGIC — Intro, cursor, trail, progress
   ======================================== */

/* ========================================
   CINEMATIC INTRO
   ======================================== */
.intro {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #06080d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

.intro.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-active {
    overflow: hidden;
}

.intro-letters {
    display: flex;
    gap: 4px;
}

.intro-letter {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 8px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(181,154,91,0.4);
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.intro-letter.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    color: #fff;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 40px rgba(181,154,91,0.2);
}

.intro-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(181,154,91,0);
    margin-top: 20px;
    letter-spacing: 4px;
    transition: all 0.8s ease;
}

.intro-tagline.visible {
    color: rgba(181,154,91,0.5);
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
/* Custom cursor + trail removed — using default cursor */
.cursor-dot, .cursor-ring, .trail-canvas { display: none; }

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, rgba(181,154,91,0.6), rgba(181,154,91,1), rgba(181,154,91,0.6));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(181,154,91,0.3);
}

/* ========================================
   MAGNETIC BUTTON RESET
   ======================================== */
.btn, .nav-cta {
    will-change: transform;
}
