:root {
    --primary-color: #1a365d;
    --primary-dark: #122847;
    --primary: #17375f;
    --accent-color: #c5a97a;
    --accent: #c8a06a;
    --accent-2: #e5c79c;
    --accent-soft: rgba(200, 160, 106, 0.12);

    --bg-light: #fcfcfc;
    --bg-soft: #f8f9fb;
    --bg-softer: #f4f6fa;
    --bg: #fcfcfd;
    --bg-cream: #faf8f4;

    --text-main: #2b2f36;
    --text: #29313d;
    --text-muted: #667085;
    --muted: #6a7484;
    --text-soft: #7d8796;
    --soft: #8690a0;

    --white: #ffffff;
    --border-soft: #e8ebf0;
    --border: #e7ebf1;
    --border-accent: rgba(197, 169, 122, 0.28);
    --border-strong: rgba(200, 160, 106, 0.28);

    --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.06);
    --shadow-card: 0 14px 36px rgba(15, 23, 42, 0.07);
    --shadow-lg: 0 26px 70px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.07);
    --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.05);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --radius-xl: 24px;
    --radius-2xl: 30px;
    --radius-pill: 999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background:
        radial-gradient(900px 400px at 0% 0%, rgba(197, 169, 122, 0.08), transparent 60%),
        radial-gradient(700px 300px at 100% 10%, rgba(26, 54, 93, 0.05), transparent 60%),
        var(--bg-light);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.12;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-light {
    background: rgba(255, 255, 255, 0.82);
}

.section-soft {
    background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

.section-cream {
    background: linear-gradient(180deg, rgba(250, 248, 244, 0.9), rgba(255, 255, 255, 0.92));
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    flex-wrap: wrap;
}

.section-title {
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.section-intro {
    max-width: 820px;
    color: var(--muted);
    font-size: 17px;
}

.section-intro--narrow {
    max-width: 760px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 14px 28px rgba(23, 55, 95, 0.16);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--border);
    color: var(--primary-color);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-actions--center {
    justify-content: center;
}

.hero-actions--no-margin {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .container {
        padding: 0 14px;
    }

    .section {
        padding: 66px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }
}