/* utilities.css — sr-only, reveal animations, print */

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reveal animations */
.ka-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.ka-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ka-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

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

/* Text utilities */
.text-center {
    text-align: center;
}

.text-dim {
    color: var(--c-text-dim);
}

/* Spacing utilities */
.mt-24 { margin-top: var(--s-24); }
.mt-40 { margin-top: var(--s-40); }
.mb-24 { margin-bottom: var(--s-24); }
.mb-40 { margin-bottom: var(--s-40); }

/* Print */
@media print {
    .ka-header,
    .ka-footer,
    .ka-age-gate,
    .ka-hamburger,
    .ka-mobile-menu {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    a {
        color: black;
        text-decoration: underline;
    }

    .ka-hero {
        min-height: auto;
        padding-top: 0;
    }

    .ka-section {
        padding: 1rem 0;
    }
}
