/* Custom overrides and additional styles */
:root {
    --charcoal-900: #1a1d23;
    --charcoal-800: #2a2d35;
    --coral-500: #E8634B;
    --coral-400: #F07863;
    --coral-100: #FDEAE5;
}

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Selection color */
::selection {
    background: rgba(232, 99, 75, 0.2);
    color: #1a1d23;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8f7f5;
}
::-webkit-scrollbar-thumb {
    background: #c4c0b8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a09888;
}

/* Focus styles */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid #E8634B;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    nav, .cta-section, #contacto form { display: none; }
    body { color: #000; background: #fff; }
    .hero { min-height: auto; padding: 2rem 0; }
    .hero-bg, .hero-overlay { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .fade-in { opacity: 1; transform: none; }
}
