@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
    --ra-bg-deep: #250b06;
    --ra-bg-mid: #6a1e0f;
    --ra-bg-warm: #cf6d1f;
    --ra-bg-soft: #fff1dd;
    --ra-surface: rgba(255, 251, 245, 0.96);
    --ra-surface-strong: #fffdf9;
    --ra-surface-accent: #fff5e8;
    --ra-border: rgba(140, 69, 24, 0.18);
    --ra-text: #2b140c;
    --ra-text-soft: #6d4c39;
    --ra-shadow: 0 24px 60px rgba(55, 20, 9, 0.16);
    --ra-max-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ra-text);
    font-family: "Outfit", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 203, 133, 0.4), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 147, 56, 0.2), transparent 26%),
        linear-gradient(180deg, #fff7ee 0%, #fff2e2 44%, #ffe5c0 100%);
}

a {
    color: inherit;
}

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

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(37, 11, 6, 0.88);
    border-bottom: 1px solid rgba(255, 183, 87, 0.18);
}

.site-header__inner {
    max-width: var(--ra-max-width);
    margin: 0 auto;
    padding: 0.95rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: #fff5e8;
}

.brand__mark {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffb14a 0%, #ef6d1c 100%);
    color: #2f130a;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(189, 79, 20, 0.28);
}

.brand__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand__label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 233, 203, 0.72);
}

.brand__name {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.45rem;
    line-height: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    color: #ffe7c9;
    font-size: 0.95rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 194, 118, 0.14);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    transform: translateY(-1px);
    color: #31150c;
    background: linear-gradient(135deg, #ffd390 0%, #ff9b2c 100%);
    border-color: transparent;
}

.site-main {
    flex: 1;
}

.hero {
    max-width: var(--ra-max-width);
    margin: 1.8rem auto 0;
    padding: 0 1.25rem;
}

.hero__panel {
    position: relative;
    overflow: hidden;
    padding: 2.25rem;
    border-radius: 2rem;
    color: #fff8ef;
    background:
        radial-gradient(circle at top right, rgba(255, 213, 151, 0.28), transparent 28%),
        linear-gradient(135deg, rgba(41, 11, 6, 0.98) 0%, rgba(108, 30, 15, 0.92) 54%, rgba(207, 109, 31, 0.88) 100%);
    box-shadow: 0 28px 70px rgba(73, 25, 9, 0.22);
}

.hero__panel::after {
    content: "";
    position: absolute;
    inset: auto -3rem -3rem auto;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 221, 172, 0.22), rgba(255, 221, 172, 0));
    pointer-events: none;
}

.hero__eyebrow,
.panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 210, 143, 0.18);
    color: #ffe8c6;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 1rem 0 0.85rem;
    max-width: 14ch;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 0.98;
}

.hero p {
    margin: 0;
    max-width: 46rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 244, 229, 0.9);
}

.hero__actions {
    margin-top: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--solid {
    color: #35160d;
    background: linear-gradient(135deg, #ffe2b4 0%, #ffad3c 100%);
    box-shadow: 0 14px 32px rgba(255, 153, 43, 0.22);
}

.button--ghost {
    color: #fff8ef;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 211, 156, 0.22);
}

.content {
    max-width: var(--ra-max-width);
    margin: 1.4rem auto 3rem;
    padding: 0 1.25rem 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
    gap: 1.25rem;
    align-items: start;
}

.stack {
    display: grid;
    gap: 1.25rem;
}

.panel {
    padding: 1.75rem;
    border-radius: 1.6rem;
    background: var(--ra-surface);
    border: 1px solid var(--ra-border);
    box-shadow: var(--ra-shadow);
}

.panel h2 {
    margin: 0 0 0.95rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.75rem;
    line-height: 1.05;
}

.panel h3 {
    margin: 1.2rem 0 0.55rem;
    font-size: 1.05rem;
    color: var(--ra-text);
}

.panel p,
.panel li {
    color: var(--ra-text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

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

.panel ul {
    margin: 0.85rem 0 0;
    padding-left: 1.15rem;
}

.panel__lede {
    margin: 0 0 1rem;
    color: #3f2418;
    font-size: 1.04rem;
}

.panel__eyebrow {
    background: linear-gradient(135deg, #fff4de 0%, #ffe3bc 100%);
    border-color: rgba(255, 177, 74, 0.22);
    color: #8a430f;
}

.info-list {
    display: grid;
    gap: 0.85rem;
}

.info-item {
    padding: 1rem 1.05rem;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, var(--ra-surface-strong) 0%, var(--ra-surface-accent) 100%);
    border: 1px solid rgba(166, 84, 28, 0.12);
}

.info-item strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--ra-text);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.stat-card {
    padding: 1rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, #fff7eb 0%, #ffe9cc 100%);
    border: 1px solid rgba(255, 175, 85, 0.18);
}

.stat-card span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #975220;
}

.stat-card strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--ra-text);
    font-size: 1.15rem;
}

.stat-card p {
    margin: 0.45rem 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.checklist li {
    position: relative;
    padding-left: 1.6rem;
}

.checklist li::before {
    content: "";
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb95a 0%, #ec6f1c 100%);
    box-shadow: 0 0 0 0.18rem rgba(255, 184, 89, 0.18);
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.quick-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    color: #7d3d10;
    background: linear-gradient(135deg, #fff4df 0%, #ffe2b7 100%);
    border: 1px solid rgba(255, 175, 85, 0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.quick-links a:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ffe4b6 0%, #ffc166 100%);
}

.callout {
    padding: 1.15rem 1.2rem;
    border-radius: 1.2rem;
    color: #fff6eb;
    background: linear-gradient(135deg, rgba(55, 15, 7, 0.98) 0%, rgba(123, 33, 14, 0.95) 100%);
    border: 1px solid rgba(255, 187, 107, 0.18);
}

.callout strong {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1rem;
}

.callout p,
.callout li {
    color: rgba(255, 242, 224, 0.86);
}

.footer {
    padding: 0 1.25rem 2rem;
}

.footer__inner {
    max-width: var(--ra-max-width);
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
    color: #fff4e2;
    border-radius: 1.8rem;
    background: rgba(33, 10, 6, 0.94);
    border: 1px solid rgba(255, 183, 87, 0.14);
}

.footer__brand {
    margin: 0 0 0.55rem;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.45rem;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.footer__nav a {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    color: #ffe7c9;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 194, 118, 0.12);
}

.footer__nav a:hover {
    color: #30120a;
    background: linear-gradient(135deg, #ffd390 0%, #ff9b2c 100%);
    border-color: transparent;
}

.small {
    margin: 0;
    max-width: 38rem;
    color: rgba(255, 236, 212, 0.72);
    font-size: 0.96rem;
    line-height: 1.7;
}

@media (max-width: 960px) {
    .content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header__inner,
    .hero,
    .content,
    .footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero__panel,
    .panel,
    .footer__inner {
        padding: 1.35rem;
        border-radius: 1.35rem;
    }

    .hero h1 {
        max-width: none;
    }

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