/* Explain: Base reset and editorial typography defaults. */
* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text-color);
    background: var(--background-color);
    font-family: var(--font-body);
}

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

::selection {
    background: var(--accent-color);
    color: #ffffff;
}

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

p {
    line-height: 1.75;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

button,
a {
    transition: all 220ms ease;
}

:focus-visible {
    outline: 3px solid rgba(249, 115, 74, 0.65);
    outline-offset: 4px;
}
