/* Explain: Base reset and typography defaults for the restaurant site */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text-color);
    background:
        radial-gradient(circle at 12% 8%, rgba(155, 174, 140, 0.28), transparent 26rem),
        radial-gradient(circle at 88% 18%, rgba(201, 76, 61, 0.14), transparent 24rem),
        linear-gradient(180deg, var(--background-color) 0%, #f7edd8 48%, var(--background-color) 100%);
    font-family: var(--font-body);
    text-rendering: optimizeLegibility;
}

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

button,
a,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: var(--cream-color);
    background: var(--tomato-color);
}

:focus-visible {
    outline: 3px solid rgba(201, 76, 61, 0.55);
    outline-offset: 4px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--tomato-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 2.25rem;
    height: 1px;
    content: '';
    background: currentColor;
}
