/* =========================================
   MAISON DISEÑAJE - Premium Homepage Styles
   ========================================= */

/* Required CSS Variables for Button Animation */
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --glowColor {
    syntax: "<color>";
    initial-value: #c9a962;
}

@keyframes rotate {
    0% {
        --angle: 0deg;
        --glowColor: #c9a962;
    }

    100% {
        --angle: 360deg;
        --glowColor: #c9a962;
    }
}

/* CSS Custom Properties - Color Palette from Elys */
:root {
    /* Gold Palette */
    --gold-primary: #c9a962;
    --gold-light: #e8d5a3;
    --gold-dark: #8b7355;
    --gold-glow: rgba(201, 169, 98, 0.6);
    --gold-subtle: rgba(201, 169, 98, 0.1);
    --gold-border: rgba(201, 169, 98, 0.4);

    /* Base Colors - Warm Brown Theme (matching elys-travel-form) */
    --brown-deep: #1a0f08;
    --brown-dark: #2a1810;
    --brown-medium: #4a3828;
    --brown-light: rgba(30, 20, 15, 0.7);
    --cream: #f5e6c8;
    --cream-soft: rgba(245, 230, 200, 0.85);
    --white: #ffffff;

    /* Legacy black variables (mapped to brown for compatibility) */
    --black: #1a0f08;
    --black-soft: #1a0f08;
    --black-medium: #2a1810;

    /* Typography */
    --font-primary: 'Cormorant Garamond', Georgia, serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;
    --container-padding: 24px;

    /* Animation angles for rotating effects */
    --angle: 0deg;
    --glow-color: var(--gold-primary);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--brown-deep);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection Styling */
::selection {
    background: var(--gold-primary);
    color: var(--black);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brown-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* =========================================
   PRELOADER
   ========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brown-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-primary);
    font-size: 80px;
    font-weight: 300;
    color: var(--gold-primary);
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--gold-subtle);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    animation: loadProgress 1.5s ease-out forwards;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* =========================================
   CURSOR GLOW
   ========================================= */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* padding: 20px 0; */
    transition: all var(--transition-medium);
}

.header.scrolled {
    background: rgba(26, 15, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 4px 0;
    border-bottom: 1px solid var(--gold-subtle);
}

.nav {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    position: relative;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 2px;
    transition: color var(--transition-fast);
}

.logo-img {
    height: 75px;
    width: auto;
    transition: opacity var(--transition-fast);
    margin-left: 15%;
}

.logo:hover .logo-img {
    opacity: 0.8;
}

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

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

.nav-link {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--cream-soft);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold-primary);
    transition: width var(--transition-medium);
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    position: relative;
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    transition: all var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 8, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 300;
    color: var(--cream);
    text-decoration: none;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

.mobile-nav-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-link:hover {
    color: var(--gold-primary);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

/* =========================================
   BUTTONS - Matching Elys Style
   ========================================= */
.btn-primary {
    display: inline-flex;
    /* Keeping inline-flex to prevent full width block behavior unless intended */
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: none;
    background: none;
    position: relative;
    padding: 2px;
    text-decoration: none;
    transition: all 0.18s ease-in-out;
    transform: translate3d(0, 0, 0);
    /* width: 100%; Removed to prevent breaking hero layout */
    /* max-width: 280px; Removed to prevent breaking hero layout */
    /* margin: auto auto 40px; Removed to prevent breaking layout */
    cursor: pointer;
}

.btn-primary:after,
.btn-primary:before {
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 100px;
    background-image: conic-gradient(from var(--angle) at 50% 50%, transparent 0%, transparent 33%, var(--gold-primary) 50%, transparent 66%, transparent 100%);
    animation: rotate 2s infinite linear;
    z-index: 0;
    opacity: 1;
}

.btn-primary:before {
    filter: blur(15px);
    opacity: 0.6;
}

.btn-primary:after {
    opacity: 0.3;
    /* Adjusted for cleaner look if needed, or keep 1 if user wants strong glow */
}

/* Ensure hover boosts the effect if desired, or keep it constant */
.btn-primary:hover:before {
    opacity: 0.8;
}

.btn-primary:hover:after {
    opacity: 0.5;
}

.btn-primary .btn-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    border-radius: 100px;
    color: var(--cream);
    font-weight: 500;
    font-size: 20px;
    font-family: var(--font-primary);
    z-index: 2;
    transition: all 0.18s ease;
    background: rgba(26, 15, 8, 0.9);
    backdrop-filter: blur(10px);
    backface-visibility: hidden;
    border: 2px solid rgba(201, 169, 98, 0.6);
    box-shadow:
        0 0 20px rgba(201, 169, 98, 0.3),
        inset 0 0 20px rgba(201, 169, 98, 0.1);
}

.btn-primary:hover .btn-inner {
    background: rgba(26, 15, 8, 0.95);
    border-color: rgba(201, 169, 98, 0.8);
    box-shadow:
        0 0 30px rgba(201, 169, 98, 0.5),
        inset 0 0 25px rgba(201, 169, 98, 0.15);
    color: var(--gold-light);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-primary .btn-inner svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-inner svg {
    transform: translateX(4px);
}

/* Large button variant */
.btn-primary.large .btn-inner {
    padding: 20px 40px;
    font-size: 20px;
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.btn-secondary .btn-inner {
    position: relative;
    padding: 16px 32px;
    border-radius: 100px;
    color: var(--gold-light);
    font-weight: 400;
    font-size: 18px;
    font-family: var(--font-primary);
    background: transparent;
    border: 1px solid var(--gold-border);
    transition: all var(--transition-fast);
}

.btn-secondary:hover .btn-inner {
    background: rgba(201, 169, 98, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    animation: heroPulse 30s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(27, 77, 62, 0.85) 0%,
            rgba(15, 44, 36, 0.75) 30%,
            rgba(10, 35, 28, 0.8) 60%,
            rgba(15, 44, 36, 0.9) 100%),
        linear-gradient(to bottom,
            rgba(212, 175, 154, 0.15) 0%,
            rgba(212, 175, 154, 0.05) 50%,
            transparent 100%);
    z-index: 1;
}

/* Emerald Accent Elements for Premium Visual Depth */
.hero-accent-element {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
}

.hero-accent-top {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    background: linear-gradient(135deg, var(--emerald-light), var(--emerald-primary));
    animation: floatAround 20s ease-in-out infinite;
}

.hero-accent-bottom {
    width: 600px;
    height: 600px;
    bottom: -250px;
    left: -150px;
    background: linear-gradient(135deg, var(--gold-primary), var(--emerald-light));
    animation: floatAround 25s ease-in-out infinite reverse;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.6;
        transform: translateY(80vh) scale(1);
    }

    90% {
        opacity: 0.2;
        transform: translateY(-10vh) scale(0.5);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Premium Title Wrapper with Accent Lines */
.hero-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero-accent-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    width: 120px;
    animation: expandWidth 1.2s ease 0.5s forwards;
}

.hero-accent-line-top {
    width: 0;
}

.hero-accent-line-bottom {
    width: 0;
}

@keyframes expandWidth {
    to {
        width: 120px;
    }
}

.hero-title {
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    letter-spacing: -2px;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
                 0 0 60px rgba(212, 175, 154, 0.2);
}

.hero-title span {
    display: block;
}

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

.hero-title .title-accent {
    font-family: var(--font-primary);
    font-style: italic;
    background: linear-gradient(90deg, 
        var(--gold-light) 0%, 
        var(--gold-primary) 50%, 
        var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 10px;
    opacity: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 154, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(212, 175, 154, 0.6);
    }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 300;
    color: var(--gold-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
    position: relative;
    padding-bottom: 16px;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--cream-soft);
    max-width: 650px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
    letter-spacing: 0.5px;
}

.hero-description p {
    position: relative;
    display: inline;
}

.hero-description p::after {
    content: '';
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, 
        var(--gold-primary) 0%, 
        var(--emerald-light) 50%, 
        transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.4;
        height: 60px;
    }

    50% {
        opacity: 0.8;
        height: 80px;
    }
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    opacity: 0.7;
    font-weight: 400;
}

/* =========================================
   TEXT BLOCK SECTION - PREMIUM GOLDEN THEME
   ========================================= */
.text-block {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(30, 20, 12, 1) 0%, var(--brown-deep) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background Container */
.text-block-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* ===== GLOWING STARS ===== */
.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow:
        0 0 6px 2px rgba(201, 169, 98, 0.8),
        0 0 12px 4px rgba(201, 169, 98, 0.5),
        0 0 20px 8px rgba(201, 169, 98, 0.3);
    animation: starGlow 3s ease-in-out infinite;
}

.star::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.4) 0%, transparent 70%);
    animation: starPulse 3s ease-in-out infinite;
}

/* Star Positions and Sizes */
.star-1 {
    width: 4px;
    height: 4px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.star-2 {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 20%;
    animation-delay: 0.5s;
}

.star-3 {
    width: 5px;
    height: 5px;
    top: 8%;
    left: 40%;
    animation-delay: 1s;
}

.star-4 {
    width: 3px;
    height: 3px;
    top: 20%;
    left: 60%;
    animation-delay: 1.5s;
}

.star-5 {
    width: 4px;
    height: 4px;
    top: 12%;
    left: 80%;
    animation-delay: 0.3s;
}

.star-6 {
    width: 3px;
    height: 3px;
    top: 5%;
    left: 95%;
    animation-delay: 0.8s;
}

.star-7 {
    width: 4px;
    height: 4px;
    top: 85%;
    left: 10%;
    animation-delay: 1.2s;
}

.star-8 {
    width: 5px;
    height: 5px;
    top: 90%;
    left: 30%;
    animation-delay: 0.7s;
}

.star-9 {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 50%;
    animation-delay: 1.8s;
}

.star-10 {
    width: 4px;
    height: 4px;
    top: 88%;
    left: 70%;
    animation-delay: 0.2s;
}

.star-11 {
    width: 3px;
    height: 3px;
    top: 92%;
    left: 85%;
    animation-delay: 1.4s;
}

.star-12 {
    width: 5px;
    height: 5px;
    top: 6%;
    left: 65%;
    animation-delay: 2s;
}

@keyframes starGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes starPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* ===== GOLDEN DUST PARTICLES ===== */
.golden-dust {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(201, 169, 98, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 20% 50%, rgba(201, 169, 98, 0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 30% 80%, rgba(201, 169, 98, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 30%, rgba(201, 169, 98, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 70%, rgba(201, 169, 98, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 10%, rgba(201, 169, 98, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 60%, rgba(201, 169, 98, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 80% 40%, rgba(201, 169, 98, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 90%, rgba(201, 169, 98, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 15% 65%, rgba(201, 169, 98, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 85% 15%, rgba(201, 169, 98, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 45%, rgba(201, 169, 98, 0.5) 0%, transparent 100%);
    animation: dustFloat 20s ease-in-out infinite;
}

@keyframes dustFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-5px) translateX(-5px);
        opacity: 0.7;
    }

    75% {
        transform: translateY(-15px) translateX(3px);
        opacity: 0.9;
    }
}

/* ===== SHOOTING STARS ===== */
.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 169, 98, 0), rgba(201, 169, 98, 1), rgba(255, 255, 255, 1));
    border-radius: 50%;
    opacity: 0;
    transform: rotate(-45deg);
}

.shooting-star::before {
    content: '';
    position: absolute;
    right: 0;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(201, 169, 98, 0.8);
    margin-top: -2px;
}

.shooting-star-1 {
    top: 20%;
    left: 20%;
    animation: shootingStar 8s ease-in-out infinite;
    animation-delay: 2s;
}

.shooting-star-2 {
    top: 40%;
    left: 60%;
    animation: shootingStar 8s ease-in-out infinite;
    animation-delay: 5s;
}

@keyframes shootingStar {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translateX(0);
    }

    5% {
        opacity: 1;
    }

    15% {
        opacity: 1;
        transform: rotate(-45deg) translateX(300px);
    }

    16% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* ===== CONTENT STYLING ===== */
.text-block-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Top Ornament */
.ornament-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ornament-wing {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
    position: relative;
}

.ornament-wing.right {
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.ornament-wing::before {
    content: '';
    position: absolute;
    top: -2px;
    width: 5px;
    height: 5px;
    background: var(--gold-primary);
    border-radius: 50%;
}

.ornament-wing.left::before {
    right: 0;
}

.ornament-wing.right::before {
    left: 0;
}

.ornament-diamond {
    width: 12px;
    height: 12px;
    background: var(--gold-primary);
    transform: rotate(45deg);
    box-shadow:
        0 0 10px rgba(201, 169, 98, 0.6),
        0 0 20px rgba(201, 169, 98, 0.4);
    animation: diamondPulse 2s ease-in-out infinite;
}

@keyframes diamondPulse {

    0%,
    100% {
        transform: rotate(45deg) scale(1);
        box-shadow: 0 0 10px rgba(201, 169, 98, 0.6), 0 0 20px rgba(201, 169, 98, 0.4);
    }

    50% {
        transform: rotate(45deg) scale(1.1);
        box-shadow: 0 0 15px rgba(201, 169, 98, 0.8), 0 0 30px rgba(201, 169, 98, 0.5);
    }
}

/* Title Styling */
.text-block-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 18px;
}

.text-block-title .highlight {
    display: block;
    color: transparent;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 40px rgba(201, 169, 98, 0.3);
}

/* Body Text */
.text-block-body {
    margin-bottom: 50px;
}

.text-block-body p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--cream-soft);
    margin-bottom: 16px;
}

.text-block-body .emphasis {
    margin-top: 30px;
    font-size: 22px;
    font-style: italic;
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
}

/* Decorative Line Group */
.decorative-line-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.deco-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(201, 169, 98, 0.6);
}

.deco-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-dark));
}

.deco-star {
    color: var(--gold-primary);
    font-size: 18px;
    text-shadow: 0 0 10px rgba(201, 169, 98, 0.8);
    animation: starRotate 10s linear infinite;
}

@keyframes starRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .text-block {
        padding: 100px 0;
        min-height: auto;
    }

    .text-block-title {
        font-size: clamp(26px, 6vw, 36px);
    }

    .text-block-body p {
        font-size: 16px;
    }

    .text-block-body .emphasis {
        font-size: 18px;
    }

    .ornament-wing {
        width: 40px;
    }

    .deco-line {
        width: 40px;
    }

    .shooting-star {
        display: none;
    }
}

/* =========================================
   LA MAISON SECTION
   ========================================= */
.maison-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 2px;
}

.maison-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid var(--gold-subtle);
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
}

.maison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 0% 0%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.maison-card-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.maison-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.maison-card:hover .maison-card-image img {
    transform: scale(1.02);
}

.maison-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 15, 8, 0.6) 0%, transparent 50%);
}

.maison-card-content {
    position: relative;
    z-index: 1;
}

.maison-card-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.maison-card-text {
    font-size: 18px;
    font-weight: 300;
    color: var(--cream-soft);
    line-height: 1.8;
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .maison-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .maison-card-content {
        order: -1;
    }
}

/* =========================================
   COLECCIONES SECTION
   ========================================= */
.colecciones-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: linear-gradient(to bottom, var(--black), var(--black-soft));
}

.colecciones-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.colecciones-text {
    position: relative;
}

.colecciones-description {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: var(--cream-soft);
    margin: 30px 0 40px;
}

.colecciones-image {
    position: relative;
}

.colecciones-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform var(--transition-slow);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.colecciones-image:hover img {
    transform: scale(1.01);
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    z-index: -1;
    transition: all var(--transition-medium);
}

.colecciones-image:hover .image-frame {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border-color: var(--gold-primary);
}

@media (max-width: 900px) {
    .colecciones-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .image-frame {
        display: none;
    }
}

/* =========================================
   ELYS SECTION
   ========================================= */
.elys-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.elys-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.elys-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        linear-gradient(to bottom, var(--black-soft), var(--black), var(--black-soft));
}

.elys-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.elys-image {
    position: relative;
}

.elys-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.elys-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: elysGlow 4s ease-in-out infinite;
}

@keyframes elysGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.elys-text {
    position: relative;
}

.elys-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--gold-border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.elys-title {
    font-size: clamp(56px, 10vw, 90px);
    font-weight: 300;
    letter-spacing: 10px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(201, 169, 98, 0.3);
}

.elys-subtitle {
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 20px;
}

.elys-description {
    font-size: 18px;
    font-weight: 300;
    color: var(--cream-soft);
    line-height: 1.8;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .elys-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .elys-image {
        order: -1;
    }

    .elys-image img {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
}

/* =========================================
   CLOSING SECTION
   ========================================= */
.closing-section {
    position: relative;
    padding: var(--section-padding) 0 150px;
    overflow: hidden;
}

.closing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.closing-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.closing-text {
    margin-bottom: 60px;
}

.closing-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 300;
    line-height: 1.4;
}

.closing-title span {
    display: block;
    color: var(--cream);
}

.closing-title .accent {
    color: var(--gold-primary);
    font-style: italic;
}

.closing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--brown-deep);
    border-top: 1px solid var(--gold-subtle);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--cream-soft);
    margin-top: 12px;
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    gap: 16px 30px;
}

.footer-links a {
    font-size: 14px;
    color: var(--cream-soft);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--cream-soft);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gold-subtle);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--cream-soft);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for hero section */
.hero .reveal-element:nth-child(1) {
    transition-delay: 0.1s;
}

.hero .reveal-element:nth-child(2) {
    transition-delay: 0.2s;
}

.hero .reveal-element:nth-child(3) {
    transition-delay: 0.3s;
}

.hero .reveal-element:nth-child(4) {
    transition-delay: 0.4s;
}

.hero .reveal-element:nth-child(5) {
    transition-delay: 0.5s;
}

.hero .reveal-element:nth-child(6) {
    transition-delay: 0.6s;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 80px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary .btn-inner,
    .btn-secondary .btn-inner {
        padding: 14px 28px;
        font-size: 16px;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .badge-line {
        width: 20px;
    }

    .badge-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-description p {
        font-size: 16px;
    }
}

/* =========================================
   PERFORMANCE & ACCESSIBILITY
   ========================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-element {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 4px;
}

/* =========================================
   ADVANCED ANIMATIONS
   ========================================= */

/* Shimmer effect for text */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.shimmer-text {
    background: linear-gradient(90deg,
            var(--gold-dark) 0%,
            var(--gold-light) 25%,
            var(--gold-primary) 50%,
            var(--gold-light) 75%,
            var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Glow pulse animation */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(201, 169, 98, 0.6), 0 0 60px rgba(201, 169, 98, 0.3);
    }
}

/* Text reveal animation */
@keyframes textReveal {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

.text-reveal {
    animation: textReveal 1s ease-out forwards;
}

/* Border trace animation */
@keyframes borderTrace {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* Fade in up with scale */
@keyframes fadeInUpScale {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Rotating border glow for buttons */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}

.btn-primary.animated::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    background: conic-gradient(from var(--angle),
            transparent 0%,
            transparent 30%,
            var(--gold-primary) 50%,
            transparent 70%,
            transparent 100%);
    z-index: -1;
    animation: rotateBorder 3s linear infinite;
    opacity: 0.8;
}

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

/* Smooth image hover effects */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 169, 98, 0.1);
}

/* Section divider line animation */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--gold-primary) 50%,
            transparent 100%);
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    animation: dividerShine 3s ease-in-out infinite;
}

@keyframes dividerShine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Character animation for titles */
.char {
    display: inline-block;
    opacity: 0;
    animation: charReveal 0.6s ease forwards;
}

@keyframes charReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) rotateX(-90deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Magnetic hover effect styles (applied via JS) */
.magnetic-hover {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glass morphism card effect */
.glass-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 24px;
}

/* Elegant line decorations */
.elegant-line {
    position: relative;
}

.elegant-line::before,
.elegant-line::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
    top: 50%;
}

.elegant-line::before {
    left: -80px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.elegant-line::after {
    right: -80px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

/* Image mask reveal animation */
@keyframes maskReveal {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.mask-reveal {
    animation: maskReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Subtle grain texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9996;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Highlight effect on scroll */
.highlight-on-scroll {
    transition: color 0.6s ease;
}

.highlight-on-scroll.active {
    color: var(--gold-primary);
}

/* Stagger children animations */
.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.revealed>*:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.revealed>*:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

/* Gold underline animation */
.gold-underline {
    position: relative;
    display: inline-block;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transition: width 0.4s ease;
}

.gold-underline:hover::after {
    width: 100%;
}

/* Smooth section transitions */
section {
    position: relative;
}

/* =========================================
   PREMIUM CARDS SECTION
   ========================================= */
.premium-feature-rows {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 40px 0;
}

.premium-feature-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.premium-feature-row.reverse {
    flex-direction: row-reverse;
}

.premium-feature-image {
    flex: 1;
    position: relative;
    z-index: 1;
    max-width: 650px;
    display: flex;
    justify-content: center;
}

.premium-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.premium-feature-row.reverse .premium-feature-content {
    padding-left: 0;
    padding-right: 20px;
    align-items: flex-end;
    text-align: right;
}

.premium-feature-row.reverse .feature-subtitle {
    flex-direction: row-reverse;
}

/* Image Wrapper with Tilt & Glow */
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-smooth);
    aspect-ratio: 4/3;
    max-height: 500px;
    width: 100%;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 169, 98, 0.3);
    pointer-events: none;
    z-index: 2;
    border-radius: 20px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

/* Feature Typography */
.feature-number {
    font-size: 140px;
    font-family: var(--font-primary);
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 169, 98, 0.3);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -70px;
    margin-left: -20px;
    z-index: -1;
    transition: all var(--transition-medium);
    position: relative;
}

.premium-feature-row:hover .feature-number {
    opacity: 0.4;
    -webkit-text-stroke: 1px rgba(201, 169, 98, 0.5);
    transform: translateX(20px);
}

.feature-title {
    font-size: 64px;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.feature-subtitle {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold-primary);
    margin-bottom: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-subtitle::before {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
}

.feature-divider {
    display: none;
}

.feature-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--cream-soft);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .premium-feature-row {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

    .premium-feature-content {
        align-items: center;
    }

    .feature-divider {
        background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    }

    .feature-number {
        margin-left: 0;
        margin-bottom: -60px;
        font-size: 100px;
    }

    .feature-title {
        font-size: 42px;
    }
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.1), transparent);
}

/* Reveal Left */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal Right */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}