/* =======================================================================
   Kidikoo – Public Site (kidikoo.de)
   Schlichte Holding-/Legal-Seite, gleiche Designsprache wie /dev.
   ======================================================================= */

:root {
    --ink:  #1F2421;
    --bone: #F7F4ED;
    --sage: #5E7856;
}

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11", "kern";
}

.font-display {
    letter-spacing: -0.015em;
    font-feature-settings: "liga", "dlig", "kern";
}

/* Feine Textur – Premium-Feeling, dezent */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -5;
    background-image: radial-gradient(rgba(31, 36, 33, 0.025) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.5;
}

/* Edle Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: rgba(31, 36, 33, 0.12);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(31, 36, 33, 0.22);
}

:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 3px;
    border-radius: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
