/* ===== SPLIT-SCREEN HERO: LIGHT ELEGANT PREMIUM ===== */
.split-hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;  /* Professional full viewport precision */
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 0;
    /* LIGHT ELEGANT BASE - Warm Ivory with Subtle Texture */
    background: linear-gradient(135deg, 
        #FFFBF7 0%, 
        #F9F6F2 50%,
        #F0EBE6 100%);
}

/* Subtle paper texture overlay */
.split-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 146, 90, 0.01) 2px, rgba(212, 146, 90, 0.01) 4px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* MASTER DESIGN: Dramatic storytelling transition fade */
.split-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(255, 251, 247, 0.4) 30%,
        rgba(255, 251, 247, 0.85) 70%,
        var(--color-canvas) 100%);
    pointer-events: none;
    z-index: 5;
}

/* ===== LEFT SIDE: ELEGANT IMAGE PRESENTATION ===== */
.split-hero-visual {
    flex: 0 0 38.2%;  /* Golden ratio precision */
    position: relative;
    /* Light elegant background */
    background: linear-gradient(135deg, 
        #F0EBE6 0%, 
        #E8E3DD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

/* REFINED: Subtle accent line - No glow */
.split-hero-visual::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--color-accent-primary) 30%,
        var(--color-accent-primary) 70%,
        transparent 100%);
    opacity: 0.3;
    z-index: 100;
    pointer-events: none;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* REMOVED: No organic glow shapes - clean design */
.split-hero-visual::before {
    display: none;
}

/* Modern Image Container with Elegant Frame */
.hero-image-container {
    position: relative;
    width: 85%;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* ARTISTIC IMAGE PRESENTATION - Circular Mask with Parallax */
.calligraphy-artwork {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

/* Main Image with Artistic Treatment */
.hero-artistic-image {
    position: absolute;
    width: 120%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Duotone Color Overlay - Desert Manuscript Palette - DRAMATIC */
.calligraphy-artwork::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, 
        rgba(15, 14, 13, 0.65) 0%,
        rgba(42, 38, 36, 0.55) 35%,
        rgba(93, 64, 55, 0.5) 70%,
        rgba(139, 115, 85, 0.4) 100%);
    mix-blend-mode: multiply;
    z-index: 2;
    pointer-events: none;
}

/* Circular Mask Reveal Effect - STRONG VIGNETTE */
.calligraphy-artwork::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, 
            transparent 25%,
            rgba(15, 14, 13, 0.25) 40%,
            rgba(15, 14, 13, 0.7) 60%,
            rgba(10, 9, 8, 0.95) 85%);
    z-index: 3;
    pointer-events: none;
    /* maskPulse animation removed for stillness */
}

@keyframes maskPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Geometric Frame Overlay */
.calligraphy-layer {
    position: absolute;
    pointer-events: none;
    z-index: 4;
}

/* Layer 1 - Elegant Corner Brackets */
.calligraphy-layer.layer-1 {
    inset: 8%;
    border: none;
}

.calligraphy-layer.layer-1::before,
.calligraphy-layer.layer-1::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(215, 193, 169, 0.4);
}

.calligraphy-layer.layer-1::before {
    top: 0;
    right: 0;
    border-bottom: none;
    border-left: none;
}

.calligraphy-layer.layer-1::after {
    bottom: 0;
    left: 0;
    border-top: none;
    border-right: none;
}

/* Layer 2 - Opposite Corners */
.calligraphy-layer.layer-2 {
    inset: 8%;
    border: none;
}

.calligraphy-layer.layer-2::before,
.calligraphy-layer.layer-2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(215, 193, 169, 0.4);
}

.calligraphy-layer.layer-2::before {
    top: 0;
    left: 0;
    border-bottom: none;
    border-right: none;
}

.calligraphy-layer.layer-2::after {
    bottom: 0;
    right: 0;
    border-top: none;
    border-left: none;
}

/* Layer 3 - Floating Ornament - NO ANIMATION */
.calligraphy-layer.layer-3 {
    top: 15%;
    right: 10%;
    width: 8px;
    height: 8px;
    background: rgba(215, 193, 169, 0.5);
    border-radius: 50%;
    /* ornamentFloat animation removed */
    box-shadow: 0 0 20px rgba(215, 193, 169, 0.3);
}

.calligraphy-layer.layer-3::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(215, 193, 169, 0.3);
    border-radius: 50%;
}

/* Layer 4 & 5 - Decorative Lines */
.calligraphy-layer.layer-4,
.calligraphy-layer.layer-5 {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(215, 193, 169, 0.4) 50%, 
        transparent 100%);
}

.calligraphy-layer.layer-4 {
    top: 20%;
    left: 12%;
    /* lineGlow animation removed */
}

.calligraphy-layer.layer-5 {
    bottom: 18%;
    right: 15%;
    /* lineGlow animation removed */
}

@keyframes ornamentFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-15px);
        opacity: 0.8;
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.7;
        transform: scaleY(1.2);
    }
}

/* Parallax Hover Effect */
.split-hero-visual:hover .hero-artistic-image {
    transform: scale(1.15) translate(10px, -5px);
}

.split-hero-visual:hover .calligraphy-artwork::after {
    background: 
        radial-gradient(circle at 55% 45%, 
            transparent 38%,
            rgba(42, 38, 36, 0.1) 48%,
            rgba(42, 38, 36, 0.55) 68%,
            rgba(42, 38, 36, 0.9) 88%);
}

/* Legacy .hero-image styling - kept for fallback compatibility */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    filter: brightness(0.95) contrast(1.05);
}

/* Floating animation */
@keyframes imageFloat {
    0%, 100% {
        transform: translateZ(0) translateY(0) scale(1);
    }
    50% {
        transform: translateZ(20px) translateY(-10px) scale(1.02);
    }
}

/* Hover effect on image */
.split-hero-visual:hover .hero-image {
    transform: scale(1.03);
    filter: brightness(1.04) contrast(1.05) saturate(1);
}

/* Subtle Overlay */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(248, 246, 240, 0) 0%,
        rgba(232, 230, 223, 0.05) 100%);
    border-radius: 24px;
    pointer-events: none;
    z-index: 3;
    opacity: 1;
}

/* Floating Particles Effect - Minimalist */
.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-particles::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    /* particleFloat animation removed */
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -20px) rotate(10deg);
        opacity: 0.8;
    }
}


/* ===== RIGHT SIDE: CONTENT - DOMINANT HIERARCHY ===== */
.split-hero-content {
    flex: 0 0 58%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: right;
    padding: var(--spacing-3xl) var(--spacing-3xl) var(--spacing-3xl) var(--spacing-2xl);
    background: linear-gradient(135deg, 
        var(--color-canvas) 0%, 
        var(--color-canvas-warm) 50%,
        var(--color-canvas-accent) 100%);
    position: relative;
    opacity: 0;
    animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    box-shadow: 
        inset 8px 0 32px rgba(245, 158, 11, 0.08),
        inset 0 8px 24px rgba(251, 191, 36, 0.05);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Organic background shapes - AMBER ACCENTS */
.split-hero-content::before {
    content: '';
    position: absolute;
    top: 8%;
    right: -5%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, rgba(245, 158, 11, 0.06) 40%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    pointer-events: none;
    z-index: 0;
    /* organicFloat2 animation removed */
    filter: blur(40px);
}

@keyframes organicFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-25px, 30px) rotate(-8deg);
    }
}

.split-hero-content::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -3%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.15) 0%, rgba(245, 158, 11, 0.08) 50%, transparent 75%);
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    pointer-events: none;
    z-index: 0;
    /* organicFloat animation removed */
    filter: blur(50px);
}

/* Main Title - CLEAN BOLD ELEGANCE */
.hero-main-title {
    font-family: var(--font-display);
    font-size: clamp(72px, 11vw, 128px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.04em;
    /* CLEAN: Solid espresso - no gradients, no glow */
    color: var(--color-text-title);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: titleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
    max-width: 720px;
    padding-right: var(--spacing-lg);
}

/* REFINED: Subtle accent mark - no glow, pure elegance */
.hero-main-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: var(--color-accent-primary);
    border-radius: 4px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-main-title:hover::after {
    height: 90%;
    opacity: 1;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Subtitle - Optional elegant support */
.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.005em;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: subtitleFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Description - CLEAN READABLE */
.hero-description {
    font-family: var(--font-body);
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
    /* CLEAN: Solid secondary text - highly readable */
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
    opacity: 0;
    max-width: 600px;
    animation: descriptionFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 520px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: descriptionFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PRIMARY CTA - OVERSIZED DOMINANT BUTTON ===== */
.hero-cta,
.btn-primary,
.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 20px 48px;
    background: var(--color-accent-primary);
    border: none;
    border-radius: 60px;
    color: #FFFFFF;
    font-family: var(--font-ui);
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.03em;
    /* text-transform: none */
    /* no text-shadow */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(212, 146, 90, 0.2), 0 8px 24px rgba(212, 146, 90, 0.1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: scale(1);
    animation: ctaFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 1.4s forwards;
    /* buttonPulse animation removed */
}

/* Shine Effect Removed - Clean interface without continuous animations */
.hero-cta::before,
.btn-primary::before,
.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    transform: skewX(-20deg);
    /* buttonShine animation removed */
}

@keyframes buttonShine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 200%;
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(212, 146, 90, 0.2), 0 8px 24px rgba(212, 146, 90, 0.1);
    }
    50% {
        box-shadow: 
            0 16px 56px rgba(245, 158, 11, 0.8),
            0 28px 84px rgba(251, 191, 36, 0.6),
            0 40px 110px rgba(217, 119, 6, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -3px 8px rgba(180, 83, 9, 0.2);
    }
}
    }
    50% {
        box-shadow: 
            0 16px 56px rgba(253, 208, 74, 0.95),
            0 28px 84px rgba(229, 183, 109, 0.75),
            0 40px 110px rgba(212, 165, 116, 0.5),
            inset 0 3px 0 rgba(255, 255, 255, 0.7),
            inset 0 -4px 12px rgba(212, 165, 116, 0.3);
    }
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Primary CTA Hover - EXPLOSIVE ATTENTION */
.hero-cta:hover,
.btn-primary:hover,
.primary-cta:hover {
    background: linear-gradient(135deg, 
        #FCD34D 0%,
        #FBBF24 30%,
        #F59E0B 70%,
        #EA580C 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 16px 56px rgba(245, 158, 11, 0.9),
        0 28px 84px rgba(251, 191, 36, 0.7),
        0 40px 120px rgba(217, 119, 6, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -3px 8px rgba(180, 83, 9, 0.2);
    animation: none; /* Pause pulse on hover */
}

.hero-cta:active,
.btn-primary:active,
.primary-cta:active {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 8px 32px rgba(245, 158, 11, 0.7),
        0 16px 56px rgba(251, 191, 36, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* Focus state for keyboard navigation */
.hero-cta:focus-visible,
.btn-primary:focus-visible,
.primary-cta:focus-visible {
    outline: none;
    box-shadow: 
        0 12px 48px rgba(245, 158, 11, 0.8),
        0 24px 72px rgba(251, 191, 36, 0.6),
        0 0 0 4px var(--color-canvas),
        0 0 0 8px var(--color-accent-light);
    animation: none;
}

/* ===== SECONDARY CTA - MINIMAL GHOST ===== */
.hero-cta-secondary,
.btn-secondary,
.secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--color-border-strong);
    border-radius: 50px;
    color: var(--color-text-secondary);
    font-family: var(--font-ui);
    font-size: clamp(15px, 2.5vw, 17px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.015em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.15);
}

.hero-cta-secondary:hover,
.btn-secondary:hover,
.secondary-cta:hover {
    background: var(--color-accent-subtle);
    border-color: var(--color-accent-light);
    color: var(--color-text-title);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    opacity: 1;
}

.hero-cta-secondary:active,
.btn-secondary:active,
.secondary-cta:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(212, 165, 116, 0.2);
}

.hero-cta-secondary:focus-visible,
.btn-secondary:focus-visible,
.secondary-cta:focus-visible {
    outline: none;
    border-color: var(--color-accent-primary);
    box-shadow: 
        0 0 0 3px var(--color-accent-subtle),
        var(--shadow-soft);
}

/* Icon animation */
.hero-cta svg,
.hero-cta-secondary svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-cta span,
.btn-primary span,
.primary-cta span {
    position: relative;
    z-index: 1;
}

/* Button Container - BREATHING ROOM */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: 48px;  /* Master design: generous breathing room from description */
    position: relative;
    z-index: 1;
}

.hero-cta:hover svg {
    transform: translateX(3px);  /* MASTER: RTL - arrow moves forward (right to left) */
}

.hero-cta-secondary:hover svg {
    transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .split-hero {
        min-height: 75vh;
    }
    
    .split-hero-visual {
        flex: 0 0 38%;
    }
    
    .split-hero-content {
        flex: 0 0 62%;
        padding: var(--spacing-2xl) var(--spacing-lg);
    }
    
    .hero-main-title {
        font-size: clamp(56px, 9vw, 96px);
        line-height: 1.0;
    }
    
    .hero-main-title::after {
        width: 6px;
        height: 110%;
    }
    
    .hero-description {
        font-size: clamp(19px, 3vw, 24px);
    }
    
    .hero-cta {
        padding: 28px 56px;
        font-size: clamp(20px, 3.2vw, 24px);
    }
    
    .floating-particles::before,
    .floating-particles::after {
        width: 150px;
        height: 150px;
    }
}

/* Mobile (< 768px) - Stack Vertically */
@media (max-width: 767px) {
    .split-hero {
        flex-direction: column;
        min-height: auto;
        max-height: calc(100vh - var(--footer-height) - 20px);  /* Ensure menu is visible */
    }
    
    /* Visual on top - 35vh to fit better */
    .split-hero-visual {
        flex: 0 0 auto;
        height: 35vh;
        min-height: 280px;
        max-height: 400px;
        width: 100%;
        overflow: hidden;
    }
    
    /* Hide split line glow on mobile */
    .split-hero-visual::after {
        display: none;
    }
    
    /* Content below */
    .split-hero-content {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100vw;
        padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
        align-items: flex-end;
    }
    
    .floating-particles::before,
    .floating-particles::after {
        width: 120px;
        height: 120px;
    }
    
    /* Adjust text - MAINTAIN DOMINANCE */
    .hero-main-title {
        font-size: clamp(48px, 10vw, 72px);
        line-height: 1.0;
        padding-right: 0;
        padding-top: var(--spacing-lg);
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    .hero-main-title::after {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        bottom: auto;
        width: 60px;
        height: 4px;
    }
    
    .hero-subtitle {
        font-size: clamp(22px, 5vw, 28px);
    }
    
    .hero-description {
        font-size: clamp(18px, 3.8vw, 22px);
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 28px 48px;
        font-size: clamp(20px, 4vw, 24px);
    }
    
    /* Faster animations on mobile */
    .split-hero-visual {
        animation-duration: 0.8s;
        animation-delay: 0.1s;
    }
    
    .split-hero-content {
        animation-duration: 0.8s;
        animation-delay: 0.3s;
    }
    
    .hero-main-title {
        animation-delay: 0.5s;
    }
    
    .hero-subtitle {
        animation-delay: 0.7s;
    }
    
    .hero-description {
        animation-delay: 0.9s;
    }
    
    .hero-cta {
        animation-delay: 1.1s;
    }
}

/* Small mobile (< 480px) */
@media (max-width: 480px) {
    .split-hero-visual {
        height: 34vh;
        min-height: 260px;
    }
    
    .split-hero-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .hero-main-title {
        font-size: clamp(42px, 9vw, 64px);
        padding-right: var(--spacing-sm);
    }
    
    .hero-main-title::after {
        width: 4px;
        height: 100%;
    }
    
    .hero-cta {
        padding: 24px 40px;
    }
    
    .floating-particles::before,
    .floating-particles::after {
        width: 100px;
        height: 100px;
    }
}

/* ===== ACCESSIBILITY & REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .split-hero-visual,
    .split-hero-content,
    .hero-main-title,
    .hero-subtitle,
    .hero-description,
    .hero-cta {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
    
    .hero-image,
    .hero-artistic-image {
        animation: none;
        transform: none;
    }
    
    .floating-particles::before,
    .floating-particles::after {
        animation: none;
    }
    
    .split-hero-visual::before,
    .split-hero-visual::after,
    .split-hero-content::before,
    .split-hero-content::after {
        animation: none;
    }
    
    .hero-main-title::after {
        animation: none;\n    }\n    \n    .hero-cta::before,\n    .btn-primary::before,\n    .primary-cta::before {\n        animation: none;\n    }
    
    .hero-cta:hover svg {
        animation: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .split-hero {
        min-height: auto;
        page-break-inside: avoid;
    }
    
    .split-hero-visual {
        display: none;
    }
    
    .split-hero-content {
        flex: 1;
        padding: var(--spacing-md);
    }
    
    .hero-cta {
        display: none;
    }
}



