:root {
    --bg: #fffaf8;
    --bg-soft: #fff4f2;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-strong: #ffffff;
    --surface-tint: #fff1f4;
    --line: rgba(137, 95, 111, 0.12);
    --line-strong: rgba(137, 95, 111, 0.2);
    --text: #261b22;
    --text-soft: #6d5a65;
    --primary: #d88cab;
    --primary-deep: #bb5f87;
    --secondary: #f3d8df;
    --cta: #23181f;
    --cta-hover: #3a2731;
    --success: #4e7a63;
    --shadow-soft: 0 18px 45px rgba(104, 73, 85, 0.08);
    --shadow-card: 0 24px 60px rgba(74, 49, 60, 0.12);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --container: min(1200px, calc(100vw - 32px));
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    touch-action: manipulation;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(243, 216, 223, 0.9), transparent 32%),
        radial-gradient(circle at top right, rgba(255, 232, 238, 0.8), transparent 28%),
        linear-gradient(180deg, #fffdfc 0%, #fff8f7 52%, #fff4f2 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
        url('/images/hero.JPG') center top / cover no-repeat;
    opacity: 0.14;
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

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

.page-shell {
    width: 100%;
}

@media (max-width: 768px) {
    :root {
        --container: calc(100vw - 24px);
        --radius-md: 22px;
        --radius-lg: 28px;
    }

    body::before {
        background-position: center;
        background-size: cover;
    }
}
