/* Reset and base. Copied verbatim from site/css/global.css lines 17-60.
   Read that file and transcribe exactly; do not retype from memory. */

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Typography ===== */
.serif {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--turmeric);
    margin-bottom: 1rem;
}

/* Reduced motion. Copied verbatim from site/css/global.css lines 698-703. */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* Focus states. New: the site had zero :focus-visible rules and
   catering.html actively removed outlines on form fields. */
:focus-visible {
    outline: 3px solid var(--turmeric);
    outline-offset: 2px;
    border-radius: 2px;
}

/* NOTE: no .skip-link rule here, deliberately. See task brief. */
