:root {
    --black: #050505;
    --ink: #0a0a0a;
    --panel: #101010;
    --panel-soft: #161514;
    --line: rgba(214, 174, 96, .22);
    --gold: #d5ad5d;
    --gold-deep: #b98d3d;
    --text: #f6f1e9;
    --muted: #a8a29a;
    --paper: #f6f0e6;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
}

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

.site-header,
.site-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 14px 24px;
    background: rgba(4, 4, 4, .95);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    position: sticky;
    top: 0;
    z-index: 10;
}

.admin-bar .site-header {
    top: 32px;
}

.brand {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    white-space: nowrap;
}

.primary-nav .menu,
.footer-nav .menu {
    align-items: center;
    display: flex;
    gap: 26px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav a,
.footer-nav a {
    color: #b8b2aa;
    font-size: 14px;
    font-weight: 600;
    transition: color .2s ease;
}

.primary-nav a:hover,
.footer-nav a:hover,
.current-menu-item > a {
    color: var(--gold);
}

.header-cta,
.footer-cta,
.button {
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
}

.header-cta,
.footer-cta,
.button-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #0b0906;
}

.button-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.menu-toggle {
    background: transparent;
    border: 0;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    background: var(--gold);
    display: block;
    height: 2px;
    width: 24px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    min-height: calc(100vh - 66px);
    overflow: hidden;
    position: relative;
}

.hero::before {
    background: radial-gradient(circle at 58% 45%, rgba(213, 173, 93, .14), transparent 25%),
        linear-gradient(90deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, .94) 36%, rgba(5, 5, 5, .5) 68%, rgba(5, 5, 5, .24) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.hero-copy {
    align-self: end;
    max-width: 720px;
    padding: 52px 24px 40px;
    position: relative;
    z-index: 2;
}

.hero h1,
.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(58px, 7vw, 92px);
    line-height: .92;
    margin: 0 0 28px;
}

.hero h1 span {
    color: var(--gold);
    display: block;
}

.hero p,
.page-hero p,
.section-intro {
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
    margin: 0;
    max-width: 680px;
}

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

.stats {
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
    max-width: 680px;
    padding-top: 30px;
}

.stats strong {
    color: var(--gold);
    display: block;
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1;
}

.stats span {
    color: #928c84;
    display: block;
    font-size: 13px;
    margin-top: 6px;
}

.hero-image {
    background-image: linear-gradient(90deg, rgba(5, 5, 5, .1), rgba(5, 5, 5, .55)), url("https://media.base44.com/images/public/6a108199a56b775fe975b669/17b5fbaed_generated_484f3dd7.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 620px;
}

.section,
.page-hero,
.final-cta {
    padding: 96px 24px;
}

.section,
.final-cta {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.section > *,
.page-hero > *,
.final-cta > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
}

.section-label {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

h2,
h3,
p {
    overflow-wrap: anywhere;
}

h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    margin: 0 0 22px;
}

h3 {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 14px;
}

.split {
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
}

.split p {
    color: var(--muted);
    font-size: 19px;
    margin: 0 0 18px;
}

.quote-card,
.feature-card,
.case-card,
.insight-list a,
.path-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
    border: 1px solid var(--line);
    border-radius: 8px;
}

.quote-card {
    padding: 32px;
}

.quote-card > span {
    color: var(--gold);
    display: block;
    font-family: var(--serif);
    font-size: 76px;
    height: 48px;
    line-height: .7;
}

.quote-card ul,
.feature-card ul {
    color: #c7c0b8;
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.quote-card li,
.feature-card li {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 11px 0;
}

.pathway,
.card-grid,
.case-grid,
.insight-list {
    display: grid;
    gap: 18px;
    margin-top: 36px;
}

.pathway {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.card-grid,
.case-grid,
.insight-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-card,
.feature-card,
.case-card,
.insight-list a {
    padding: 26px;
}

.path-card span,
.case-card span,
.insight-list span {
    color: var(--gold);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.path-card p,
.feature-card p,
.case-card p,
.insight-list p {
    color: var(--muted);
    margin: 0;
}

.tagline {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 34px;
    margin-top: 44px;
    text-align: center;
}

.section-header {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.text-link {
    border-bottom: 1px solid currentColor;
    color: var(--gold);
    font-weight: 700;
    padding-bottom: 4px;
}

.page-hero {
    background: linear-gradient(90deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, .78)), url("https://media.base44.com/images/public/6a108199a56b775fe975b669/9f8e8bc33_generated_2d423c74.png");
    background-position: center;
    background-size: cover;
    min-height: 480px;
    padding-top: 150px;
}

.content-page {
    color: var(--muted);
    font-size: 18px;
}

.final-cta {
    background: var(--paper);
    color: var(--ink);
    text-align: center;
}

.final-cta p {
    color: #605a52;
    font-size: 22px;
    margin-bottom: 28px;
}

.site-footer {
    border-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    position: static;
}

.site-footer p {
    color: var(--muted);
    font-size: 13px;
    margin: 8px 0 0;
    max-width: 280px;
}

@media (max-width: 1100px) {
    .pathway,
    .card-grid,
    .case-grid,
    .insight-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .primary-nav .menu,
    .footer-nav .menu {
        gap: 16px;
    }
}

@media (max-width: 860px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .primary-nav,
    .header-cta {
        display: none;
    }

    .site-header.is-open .primary-nav,
    .site-header.is-open .header-cta {
        display: block;
        grid-column: 1 / -1;
    }

    .primary-nav .menu {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 16px 0 8px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(5, 5, 5, .72), rgba(5, 5, 5, .98));
    }

    .hero-copy {
        order: 2;
        padding-top: 34px;
    }

    .hero-image {
        min-height: 440px;
        order: 1;
    }

    .split,
    .pathway,
    .card-grid,
    .case-grid,
    .insight-list {
        grid-template-columns: 1fr;
    }

    .section-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        display: flex;
    }

    .footer-nav .menu {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .hero h1,
    .page-hero h1 {
        font-size: 52px;
    }

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

    .button,
    .header-cta,
    .footer-cta {
        width: 100%;
    }

    .section,
    .page-hero,
    .final-cta {
        padding-left: 18px;
        padding-right: 18px;
    }
}

