html {
    background-color: #E85D10;
    background-color: var(--orange);
}

body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Grain — uses absolute inside main to avoid Safari 26 fixed-element scanning */
main {
    position: relative;
}
main::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

main { flex: 1; }

.wrap {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 640px) {
    .wrap { padding: 0 2rem; }
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Stripe accents */
.stripe-orange {
    height: 5px;
    background: repeating-linear-gradient(-45deg, var(--orange), var(--orange) 7px, transparent 7px, transparent 14px);
}

.stripe-blue {
    height: 5px;
    background: repeating-linear-gradient(-45deg, var(--blue), var(--blue) 7px, transparent 7px, transparent 14px);
}

.stripe-mix {
    height: 5px;
    background: repeating-linear-gradient(90deg, var(--orange) 0 20px, var(--blue) 20px 40px);
}
