:root {
    --rose: #e5a8b8;
    --rose-soft: #f3dce3;
    --rose-light: #f8eef1;
    --text: #171414;
    --muted: rgba(23, 20, 20, 0.72);
    --white: #ffffff;
    --line: rgba(23, 20, 20, .08);
    --line-strong: rgba(23, 20, 20, .14);
    --shadow-soft: 0 18px 60px rgba(25, 20, 20, .06);
    --shadow-medium: 0 28px 90px rgba(25, 20, 20, .10);
    --container: 1380px;
    --transition: .38s cubic-bezier(.22, 1, .36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Bebas Neue", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

p {
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.section {
    padding: 50px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: .78;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(23, 20, 20, .25);
}

.section-title {
    font-size: 2.8rem;
    line-height: .8;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 400;
}

.section-description {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0;
    text-transform: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:focus-visible {
    outline: 2px solid rgba(23, 20, 20, .6);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--text);
    color: #fff;
    box-shadow: 0 18px 40px rgba(23, 20, 20, .12);
}

.btn-primary:hover {
    box-shadow: 0 22px 48px rgba(23, 20, 20, .18);
}

@keyframes creme-spin {
    to { transform: rotate(360deg); }
}

.creme-btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .28);
    border-top-color: rgba(255, 255, 255, .92);
    animation: creme-spin .62s linear infinite;
}

