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

:root {
    --parchment: #fdf4e3;
    --parchment-warm: #f6e9d3;
    --card: #fbf5e6;
    --blue: #3e576c;
    --blue-deep: #2e4658;
    --blue-soft: #4a5f76;
    --sage: #929268;
    --sage-deep: #717653;
    --gold: #c9a24a;
    --gold-soft: #e4d1ae;
    --terracotta: #c87453;
    --ink: #3a3328;
    --ink-soft: #5c5446;
    --outline: #4a3c26;
    --whitewash: rgba(255, 255, 255, 0.56);
}

html {
    min-height: 100%;
    background: var(--parchment);
}

body {
    min-height: 100vh;
    color: var(--ink);
    font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    background:
        linear-gradient(180deg, rgba(182, 182, 140, 0.24), rgba(255, 255, 255, 0) 32rem),
        linear-gradient(180deg, var(--parchment) 0%, var(--parchment-warm) 100%);
}

.site-shell {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 28px 20px 72px;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 38px;
}

.brand-link {
    color: var(--blue-deep);
    font-family: "New York", ui-serif, Georgia, serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 800;
}

.nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
}

.nav-links a[aria-current="page"] {
    color: var(--blue-deep);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 370px);
    align-items: end;
    gap: 48px;
    margin-bottom: 42px;
}

.eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #7a7a55;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    color: var(--blue-deep);
    font-family: "New York", ui-serif, Georgia, serif;
    line-height: 1.05;
}

h1 {
    max-width: 660px;
    font-size: clamp(46px, 8vw, 76px);
    font-weight: 900;
}

.hero-copy {
    max-width: 610px;
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 19px;
}

.hero-art {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border: 2px solid rgba(74, 60, 38, 0.34);
    border-radius: 8px;
    background: var(--card);
    box-shadow: 0 14px 38px rgba(46, 70, 88, 0.18);
}

.hero-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 10px 14px;
    border: 1px solid rgba(74, 60, 38, 0.28);
    border-radius: 8px;
    color: var(--blue-deep);
    background: rgba(253, 244, 227, 0.9);
    font-size: 14px;
    font-weight: 800;
}

.page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    max-width: 760px;
}

.wide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wide-grid + .page-grid {
    margin-top: 18px;
}

.card {
    border: 1px solid rgba(74, 60, 38, 0.16);
    border-radius: 8px;
    padding: 28px;
    background: var(--card);
    box-shadow: 0 10px 28px rgba(46, 70, 88, 0.1);
}

.card h2 {
    margin-bottom: 16px;
    font-size: 28px;
}

.card h3 {
    margin-top: 20px;
    margin-bottom: 6px;
    color: var(--ink);
    font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    font-weight: 850;
}

.card p {
    margin-bottom: 12px;
    color: var(--ink-soft);
}

.card p:last-child {
    margin-bottom: 0;
}

ul {
    list-style: none;
    margin: 8px 0 14px;
}

li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
    color: var(--ink-soft);
}

li::before {
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--sage);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
    content: "";
}

a {
    color: var(--terracotta);
    font-weight: 800;
}

.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 6px;
    padding: 12px 20px;
    border: 1px solid rgba(74, 60, 38, 0.26);
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
    box-shadow: 0 4px 0 var(--blue-deep);
    font-weight: 850;
    text-decoration: none;
}

.button-link:hover {
    transform: translateY(1px);
    box-shadow: 0 3px 0 var(--blue-deep);
}

.effective {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 12px;
    border: 1px solid rgba(74, 60, 38, 0.16);
    border-radius: 8px;
    color: var(--blue-deep);
    background: var(--whitewash);
    font-size: 13px;
    font-weight: 850;
}

.footer {
    margin-top: 48px;
    color: var(--ink-soft);
    font-size: 14px;
}

.footer a {
    color: var(--blue-deep);
}

@media (max-width: 820px) {
    .hero,
    .wide-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        gap: 28px;
    }

    .hero-art {
        min-height: 360px;
    }
}

@media (max-width: 520px) {
    .site-shell {
        padding: 22px 16px 56px;
    }

    .top-nav {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .card {
        padding: 22px;
    }

    h1 {
        font-size: 44px;
    }
}
