:root {
    --font-display: "Sora", "Trebuchet MS", sans-serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --font-event: "Bebas Neue", "Sora", sans-serif;

    --bg-soft: #fff7f1;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: rgba(255, 244, 235, 0.94);
    --text-main: #342117;
    --text-muted: rgba(76, 47, 32, 0.78);

    --accent: #f27a1a;
    --accent-strong: #c95e07;
    --accent-soft: rgba(242, 122, 26, 0.14);
    --line: rgba(214, 131, 63, 0.22);

    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;

    --shadow-soft: 0 24px 56px rgba(123, 68, 26, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 196, 150, 0.26), transparent 32%),
        radial-gradient(circle at 88% 10%, rgba(244, 154, 81, 0.18), transparent 28%),
        linear-gradient(180deg, #fffdfb 0%, #fff7f0 54%, #fff2e6 100%);
    min-height: 100vh;
    padding: 0;
}

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

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

.ambient-shape {
    position: fixed;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    filter: blur(1px);
}

.ambient-shape--one {
    width: 220px;
    height: 220px;
    right: -90px;
    top: 14%;
    background: rgba(255, 194, 138, 0.26);
}

.ambient-shape--two {
    width: 210px;
    height: 210px;
    left: -100px;
    bottom: 6%;
    background: rgba(244, 154, 81, 0.18);
}

.site-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 247, 239, 0.94) 100%);
    border: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.main-content {
    padding: 0.9rem 0.8rem 1.2rem;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

p {
    margin: 0;
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 0.72rem 1.1rem;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--solid {
    background: linear-gradient(140deg, #ff972e 0%, #f27a1a 58%, #d9660e 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(185, 93, 20, 0.24);
}

.btn--solid:hover {
    background: linear-gradient(140deg, #ffa647 0%, #f6882f 58%, #de7120 100%);
}

.btn--ghost {
    background: linear-gradient(140deg, #ff972e 0%, #f27a1a 58%, #d9660e 100%);
    color: #fff;
    border: 1px solid rgba(210, 101, 16, 0.22);
    box-shadow: 0 12px 28px rgba(185, 93, 20, 0.18);
}

.btn--ghost:hover {
    background: linear-gradient(140deg, #ffa647 0%, #f6882f 58%, #de7120 100%);
    border-color: rgba(210, 101, 16, 0.28);
    color: #fff;
}

@media (min-width: 901px) {
    body {
        padding: clamp(0.75rem, 2vw, 2rem);
    }

    .site-shell {
        width: min(1200px, 100%);
        margin: 0 auto;
        border: 1px solid rgba(214, 131, 63, 0.16);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-soft);
        backdrop-filter: blur(10px);
    }

    .main-content {
        padding: clamp(1rem, 2vw, 2rem);
    }

    .ambient-shape--one {
        width: 260px;
        height: 260px;
        right: -80px;
        top: 20%;
    }

    .ambient-shape--two {
        width: 240px;
        height: 240px;
        left: -90px;
        bottom: 8%;
    }
}
