/* Explain: Base reset, typography defaults, and scroll animations. - */
* {
    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 top left, rgba(234, 216, 184, 0.28), transparent 34rem),
        linear-gradient(180deg, var(--background-color) 0%, #fbf6ed 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 4.75rem;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

img,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
[role="button"],
.btn {
    cursor: pointer;
}

::selection {
    background: rgba(185, 151, 91, 0.24);
    color: var(--text-color);
}

.luxury-heading {
    font-family: var(--font-heading);
    letter-spacing: -0.035em;
    line-height: 0.95;
}

.luxury-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.luxury-kicker::before {
    content: "";
    display: inline-block;
    width: 2.5rem;
    height: 1px;
    background: var(--primary-color);
}

.reveal-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-soft {
    opacity: 0;
    transition: opacity 900ms ease;
}

.reveal-soft.is-visible {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }

    .reveal-up,
    .reveal-soft {
        opacity: 1;
        transform: none;
    }
}