/* Explain: Base reset, typography, focus, and smooth 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: var(--background-color);
    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);
    font-weight: 400;
}

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;
    }
}

@media print {
    header, footer {
        display: none !important;
    }
    body {
        background: #ffffff !important;
    }
    .toast-bridal {
        display: none !important;
    }
}
