/* `hidden` turns body into a scroll container (overflow-y: auto) and breaks
   the native sticky frame used by the services section. `clip` still prevents
   a horizontal page scrollbar, but does not create that scroll container. */
html {
    overflow-x: clip;
}

body {
    overflow-x: visible;
    overflow-y: visible;
}

:root {
    --container: 1344px;
}
