:root {
    --purple-dark: #4f2d73;
    --purple: #76509a;
    --purple-light: #f3edf8;
    --text: #29252d;
    --white: #ffffff;
    --border: #e4dce9;
    --maximum-width: 1100px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.container {
    width: min(90%, var(--maximum-width));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    color: var(--purple-dark);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
}

nav a:hover,
nav a:focus {
    color: var(--purple-dark);
}

.hero {
    padding: 7rem 0;
    background:
        linear-gradient(
            135deg,
            var(--purple-light),
            var(--white)
        );
}

.hero h1 {
    max-width: 780px;
    margin: 0 0 1rem;
    color: var(--purple-dark);
    font-size: clamp(2.4rem, 7vw, 4.8rem);
    line-height: 1.05;
}

.hero-text {
    max-width: 660px;
    font-size: 1.2rem;
}

.eyebrow {
    color: var(--purple);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 1.35rem;
    color: var(--white);
    background: var(--purple-dark);
    border-radius: 0.5rem;
    text-decoration: none;
}

.button:hover,
.button:focus {
    background: var(--purple);
}

.section {
    padding: 5rem 0;
}

.alternate-section {
    background: var(--purple-light);
}

.section h2 {
    color: var(--purple-dark);
    font-size: 2.2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    box-shadow: 0 10px 30px rgb(53 34 67 / 8%);
}

.service-card h3 {
    color: var(--purple-dark);
}

.privacy-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

footer {
    padding: 2rem 0;
    color: var(--white);
    background: var(--purple-dark);
}

@media (max-width: 750px) {
    .header-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 5rem 0;
    }
}