:root {
    --bg: #fffafb;
    --bg-soft: #fff3f7;
    --panel: rgba(255, 255, 255, 0.82);
    --panel-strong: rgba(255, 255, 255, 0.92);
    --text: #523b67;
    --text-soft: #765f87;
    --heading: #5e347a;
    --accent: #f28fba;
    --accent-strong: #dd6ca0;
    --accent-soft: #ffd7e8;
    --shadow: 0 24px 60px rgba(169, 112, 159, 0.18);
    --border: rgba(159, 90, 154, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 208, 229, 0.65), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(235, 204, 255, 0.48), transparent 22%),
        linear-gradient(180deg, #fff8fb 0%, #fffdfd 55%, #fff5f8 100%);
}

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

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

p {
    margin: 0;
    line-height: 1.7;
}

ul {
    margin: 0;
    padding-left: 1.2rem;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--heading);
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    letter-spacing: -0.02em;
}

h1 {
    max-width: 12ch;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 0.96;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1;
}

h3 {
    font-size: clamp(1.55rem, 2vw, 2rem);
}

.page-shell {
    position: relative;
    overflow: hidden;
}

.site-header,
main,
.site-footer {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.button,
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.button:hover,
.header-cta:hover,
.button:focus-visible,
.header-cta:focus-visible {
    transform: translateY(-2px);
}

.button {
    min-height: 54px;
    padding: 0.95rem 1.5rem;
}

.button-primary {
    color: white;
    background: linear-gradient(135deg, #f398be 0%, #d26ea8 52%, #7d4ca0 100%);
    box-shadow: 0 18px 34px rgba(169, 89, 144, 0.24);
}

.button-secondary {
    color: var(--heading);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(182, 127, 177, 0.18);
    box-shadow: 0 10px 24px rgba(152, 120, 152, 0.12);
}

.button-full {
    width: 100%;
}

.soft-panel,
.service-card,
.form-panel,
.coverage-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--panel);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

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

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