/* Explain: Base reset, typography, focus, and smooth bridal page defaults */
* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(217, 167, 160, 0.18), transparent 34rem),
        linear-gradient(180deg, var(--background-color) 0%, #f7f0e7 100%);
    color: var(--text-color);
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}

body.has-mobile-sticky {
    padding-bottom: 0;
}

h1,
h2,
h3,
.brand-mark {
    font-family: var(--font-heading);
    letter-spacing: -0.035em;
}

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

:focus-visible {
    outline: 2px solid var(--rose-nude-color);
    outline-offset: 4px;
}

::selection {
    background: var(--champagne-color);
    color: var(--espresso-color);
}

@media (max-width: 767px) {
    body.has-mobile-sticky {
        padding-bottom: 96px;
    }
}
