:root {
    --navy: #0f2238;
    --navy-2: #152f4e;
    --gold: #c7a45a;
    --cream: #f7f2e9;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e5e7eb;
    --white: #ffffff;
    --danger: #b91c1c;
    --success: #15803d;
    --shadow: 0 24px 60px rgba(15, 34, 56, .12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

section {
    padding: 82px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f2d894;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
}

.eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--gold);
}

.btn-primary,
.btn-secondary,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .2s ease;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary,
.nav-cta {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 14px 30px rgba(199, 164, 90, .24);
}

.btn-primary:hover,
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(199, 164, 90, .3);
}

.btn-secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .14);
}

.full {
    width: 100%;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    color: var(--navy);
    letter-spacing: -.04em;
}

.section-head p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
}

.flash {
    padding: 13px 16px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-weight: 700;
}

.flash-success {
    background: #dcfce7;
    color: #166534;
}

.flash-error {
    background: #fee2e2;
    color: #991b1b;
}

.card-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--gold);
    font-weight: 800;
}