/* ================================================
   SAHARAM CREATIONS - Premium Landing Page
   Royal Blue & Golden Theme | Light/Dark Mode
   ================================================ */

/* CSS Variables - Light Mode (Default) */
:root {
    /* Primary Colors - Royal Blue */
    --royal-blue: #1e3a5f;
    --royal-blue-light: #2c5282;
    --royal-blue-dark: #152a45;
    
    /* Accent Colors - Golden */
    --gold: #c9a45c;
    --gold-light: #dbb978;
    --gold-dark: #a8863d;
    --gold-shimmer: linear-gradient(135deg, #c9a45c 0%, #e8d4a8 50%, #c9a45c 100%);
    
    /* Background & Surface */
    --bg-primary: #f5f5f3;
    --bg-secondary: #ffffff;
    --bg-tertiary: #eceae6;
    --surface-glass: rgba(255, 255, 255, 0.75);
    
    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --text-inverse: #ffffff;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    
    /* Borders */
    --border-light: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(201, 164, 92, 0.4);
    
    /* Gradients */
    --gradient-hero: linear-gradient(180deg, #f5f5f3 0%, #eceae6 100%);
    --gradient-royal: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    
    /* Animation - using will-change for GPU acceleration */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.15s var(--ease-out-quart);
    --transition-medium: 0.4s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1100px;
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-primary: #0d1520;
    --bg-secondary: #151f2e;
    --bg-tertiary: #1a2636;
    --surface-glass: rgba(21, 31, 46, 0.85);
    
    --text-primary: #f0f0f0;
    --text-secondary: #b8b8b8;
    --text-muted: #888888;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
    
    --border-light: rgba(255, 255, 255, 0.08);
    
    --gradient-hero: linear-gradient(180deg, #0d1520 0%, #151f2e 100%);
}

/* ================================================
   BASE & RESET
   ================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Marcellus', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================
   SPARKLE CANVAS
   ================================================ */
#sparkle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

[data-theme="dark"] #sparkle-canvas {
    opacity: 0.7;
}

/* ================================================
   THEME TOGGLE
   ================================================ */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-medium), 
                box-shadow var(--transition-medium),
                background var(--transition-medium);
    will-change: transform;
}

.theme-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    transition: opacity var(--transition-medium), 
                transform var(--transition-medium);
    position: absolute;
}

.theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(-45deg);
}

[data-theme="dark"] .theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(45deg);
}

[data-theme="dark"] .theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0deg);
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: padding var(--transition-medium),
                background var(--transition-medium),
                backdrop-filter var(--transition-medium);
    will-change: transform;
}

.navbar.scrolled {
    padding: 10px 0;
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Marcellus', serif;
    font-size: 1.25rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text-primary);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 24px 60px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    will-change: transform;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--royal-blue);
    top: -150px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: -100px;
    left: -100px;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--surface-glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.1s forwards;
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.title-line {
    display: block;
    color: var(--royal-blue);
    letter-spacing: 0.1em;
}

[data-theme="dark"] .title-line {
    color: var(--text-primary);
}

.title-line.accent {
    background: var(--gold-shimmer);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Improve contrast for light mode on small screens */
@media (max-width: 768px) {
    :root:not([data-theme="dark"]) .title-line.accent {
        background: none;
        -webkit-text-fill-color: var(--gold-dark);
        color: var(--gold-dark);
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
    }
}

.hero-tagline {
    font-family: 'Marcellus', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 36px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.4s forwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.5s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons - Refined corners */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-medium),
                box-shadow var(--transition-medium),
                background var(--transition-fast);
    will-change: transform;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gradient-royal);
    color: var(--text-inverse);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.35);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--royal-blue-dark);
}

/* Scroll Indicator - Fixed */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out-expo) 0.7s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: scrollDot 2s var(--ease-out-expo) infinite;
}

@keyframes scrollDot {
    0%, 100% { 
        transform: translateY(0); 
        opacity: 1;
    }
    80% { 
        transform: translateY(35px); 
        opacity: 0;
    }
}

/* ================================================
   SECTION COMMON
   ================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(201, 164, 92, 0.1);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-primary);
}

/* ================================================
   SERVICES SECTION - List Layout
   ================================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-tertiary);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    gap: 32px;
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: transform var(--transition-medium),
                box-shadow var(--transition-medium),
                border-color var(--transition-medium);
    will-change: transform;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.service-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 164, 92, 0.1) 0%, rgba(30, 58, 95, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid var(--border-gold);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.service-subtitle {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
}

.service-features {
    display: grid;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.check-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    margin-top: 2px;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.visual-frame {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.about-logo {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    filter: drop-shadow(0 8px 24px rgba(201, 164, 92, 0.2));
}

.about-content {
    position: relative;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text strong {
    color: var(--gold);
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: border-color var(--transition-fast),
                transform var(--transition-medium);
}

.stat:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}

.stat-icon {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.stat span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ================================================
   CONTACT SECTION - Efficient Layout
   ================================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-tertiary);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info .section-badge {
    background: rgba(201, 164, 92, 0.12);
    color: var(--gold);
}

.contact-info .section-title {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: background var(--transition-fast),
                border-color var(--transition-fast),
                transform var(--transition-medium);
}

a.contact-item:hover {
    background: var(--bg-primary);
    border-color: var(--border-gold);
    transform: translateX(4px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 164, 92, 0.12);
    border-radius: 8px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-cta {
    position: sticky;
    top: 120px;
}

.cta-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.cta-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cta-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cta-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.cta-card .btn:last-child {
    margin-bottom: 0;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--bg-secondary);
    padding: 48px 0 24px;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-name {
    font-family: 'Marcellus', serif;
    font-size: 1rem;
    color: var(--text-primary);
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--gold);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out-expo),
                transform 0.6s var(--ease-out-expo);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
    :root {
        --section-padding: 72px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .contact-cta {
        position: static;
    }
}

@media (max-width: 768px) {
    .theme-toggle {
        top: auto;
        bottom: 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 32px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-medium);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    .service-item {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 56px;
    }
    
    .hero {
        padding: 80px 16px 48px;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .visual-frame {
        padding: 32px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

/* ================================================
   ACCESSIBILITY
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

::selection {
    background: var(--gold);
    color: var(--royal-blue-dark);
}
