:root {
    --bf-navy-900: #09111a;
    --bf-navy-800: #0b1420;
    --bf-slate-700: #263444;
    --bf-steel-600: #42576e;
    --bf-gray-400: #9da6b0;
    --bf-gray-300: #caced1;
    --bf-cream-50: #f7f5f2;
    --bf-gold-500: #c5a459;
    --bf-gold-600: #ad8d45;

    --bf-text-dark: #0b1420;
    --bf-text-muted: #42576e;
    --bf-text-light: #f7f5f2;
    --bf-text-light-muted: #caced1;

    --bf-radius-sm: 6px;
    --bf-radius-md: 10px;
    --bf-radius-lg: 16px;
    --bf-max-width: 1160px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bf-cream-50);
    color: var(--bf-text-dark);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 760px;
    font-size: clamp(2.75rem, 6.5vw, 5rem);
    line-height: 0.98;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.2;
}

p {
    margin: 0;
    color: inherit;
}

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

a {
    color: inherit;
}

.bf-container {
    width: min(var(--bf-max-width), calc(100% - 48px));
    margin-inline: auto;
}

.bf-section {
    padding: 96px 0;
}

.bf-section-dark {
    background: var(--bf-navy-800);
    color: var(--bf-text-light);
}

.bf-section-slate {
    background: var(--bf-slate-700);
    color: var(--bf-text-light);
}

.bf-eyebrow {
    color: var(--bf-gold-500);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.bf-lede {
    max-width: 680px;
    color: var(--bf-text-muted);
    font-size: 1.08rem;
}

.bf-lede--light,
.bf-section-dark .bf-lede,
.bf-section-slate .bf-lede {
    color: var(--bf-text-light-muted);
}

.bf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--bf-radius-sm);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.bf-button-primary {
    background: var(--bf-gold-500);
    color: var(--bf-navy-900);
}

.bf-button-primary:hover {
    background: var(--bf-gold-600);
}

.bf-button-secondary {
    border-color: var(--bf-steel-600);
    color: var(--bf-text-light);
    background: transparent;
}

.bf-button-secondary:hover {
    border-color: var(--bf-gold-500);
    color: var(--bf-gold-500);
}

.bf-card {
    border: 1px solid rgba(66, 87, 110, 0.28);
    border-radius: var(--bf-radius-md);
    background: #fff;
}

.bf-card-dark {
    border-color: var(--bf-steel-600);
    background: var(--bf-navy-800);
    color: var(--bf-text-light);
}

.bf-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 64px;
    align-items: center;
}

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

.bf-stack-gap {
    margin-top: 1.25rem;
}

.bf-stack-gap-lg {
    margin-top: 2.5rem;
}

/* —— Hero —— */
.bf-hero {
    min-height: 760px;
    padding: 32px 0 96px;
    background:
        radial-gradient(circle at 82% 20%, rgba(197, 164, 89, 0.13), transparent 30%),
        linear-gradient(135deg, var(--bf-navy-900), var(--bf-navy-800));
    color: var(--bf-text-light);
}

.bf-hero-copy {
    display: grid;
    gap: 26px;
}

.bf-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.bf-hero-panel {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    /* border: 1px solid rgba(202, 206, 209, 0.18); */
    border-radius: var(--bf-radius-lg);
    background-color: var(--bf-slate-700);
    background-size: cover;
    background-position: center;
}

.bf-hero-panel::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(197, 164, 89, 0.34);
    border-radius: 12px;
    pointer-events: none;
}

.bf-hero-panel-content {
    position: absolute;
    inset: auto 28px 28px;
    display: grid;
    gap: 12px;
}

.bf-hero-panel-title {
    max-width: 360px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.05;
}

.bf-hero-panel-text {
    max-width: 380px;
    color: var(--bf-text-light-muted);
}

/* —— Nav —— */
.bf-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 96px;
}

body > nav.bf-nav {
    margin: 0;
    padding: 1rem clamp(1rem, 4vw, 2rem);
    background: var(--bf-navy-900);
}

.bf-logo {
    color: var(--bf-text-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.bf-logo:hover {
    color: var(--bf-gold-500);
}

.bf-nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 28px;
}

.bf-nav-links a {
    color: var(--bf-text-light-muted);
    font-size: 0.92rem;
    text-decoration: none;
}

.bf-nav-links a:hover {
    color: var(--bf-gold-500);
}

.bf-nav-links .bf-button-primary {
    color: var(--bf-navy-900);
}

.bf-nav-links .bf-button-primary:hover {
    color: var(--bf-navy-900);
}

/* —— Steps / cards —— */
.bf-step {
    padding: 28px;
}

.bf-step h3 {
    margin-bottom: 12px;
}

.bf-step-number {
    margin-bottom: 36px;
    color: var(--bf-gold-500);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.bf-muted {
    color: var(--bf-text-muted);
}

.bf-section-dark .bf-muted,
.bf-section-slate .bf-muted,
.bf-hero .bf-muted,
.bf-card-dark .bf-muted,
.bf-vendor-panel .bf-muted {
    color: var(--bf-text-light-muted);
}

.bf-quote {
    max-width: 760px;
    border-left: 3px solid var(--bf-gold-500);
    padding-left: 28px;
    color: var(--bf-navy-800);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.15;
}

/* —— Vendor panel + form —— */
.bf-section--vendors {
    padding: 0;
}

.bf-vendor-panel {
    width: 100%;
    padding: 96px 0;
    border: 0;
    border-radius: 0;
    background: var(--bf-navy-800);
    color: var(--bf-text-light);
}

.bf-vendor-panel__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 40px;
    align-items: start;
}

.bf-vendor-panel__form h3 {
    margin-bottom: 0.5rem;
}

.bf-vendor-panel__note {
    margin-bottom: 1.25rem;
    color: var(--bf-text-light-muted);
    font-size: 0.95rem;
}

.bf-form {
    display: grid;
    gap: 0.9rem;
}

.bf-form__row {
    display: grid;
    gap: 0.35rem;
}

.bf-form__row label {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--bf-gray-300);
}

.bf-form input,
.bf-form select,
.bf-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--bf-steel-600);
    border-radius: var(--bf-radius-sm);
    background: var(--bf-navy-900);
    color: var(--bf-text-light);
    font: inherit;
}

.bf-form input:focus,
.bf-form select:focus,
.bf-form textarea:focus {
    outline: 2px solid var(--bf-gold-500);
    outline-offset: 1px;
}

.bf-form .bf-button {
    margin-top: 0.4rem;
    border: 0;
    width: fit-content;
}

.bf-form-messages,
.bf-form-errors {
    margin-bottom: 0.75rem;
}

.bf-form-message,
.bf-form-errors,
.bf-form-errors li {
    color: #f5c7c7;
    font-size: 0.9rem;
}

.bf-form-message--success {
    color: #c8e6c9;
}

.bf-form-errors ul {
    margin: 0;
    padding-left: 1.1rem;
}

/* —— FAQ —— */
.bf-faq {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
}

.bf-faq-list {
    display: grid;
    gap: 10px;
}

.bf-faq-list details {
    border: 1px solid rgba(66, 87, 110, 0.28);
    border-radius: var(--bf-radius-md);
    background: #fff;
    padding: 0;
}

.bf-faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.15rem;
    font-weight: 600;
    color: var(--bf-text-dark);
}

.bf-faq-list summary::-webkit-details-marker {
    display: none;
}

.bf-faq-list summary::after {
    content: "+";
    float: right;
    color: var(--bf-gold-500);
    font-weight: 700;
}

.bf-faq-list details[open] summary::after {
    content: "–";
}

.bf-faq-list details p {
    padding: 0 1.15rem 1.15rem;
    color: var(--bf-text-muted);
}

/* —— Footer —— */
.bf-footer {
    background: var(--bf-navy-900);
    color: var(--bf-text-light-muted);
    padding: 40px 0;
    border-top: 1px solid rgba(197, 164, 89, 0.2);
}

.bf-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.bf-footer__brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    color: var(--bf-text-light);
    letter-spacing: -0.03em;
}

.bf-footer__meta {
    display: flex;
    gap: 1.25rem;
}

.bf-footer__meta a {
    color: var(--bf-text-light-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.bf-footer__meta a:hover {
    color: var(--bf-gold-500);
}

.bf-footer__copy {
    font-size: 0.85rem;
    width: 100%;
}
.bf-footer__copy_version {
    font-size: 0.5rem;
    width: 100%;
}

@media (max-width: 860px) {
    .bf-container {
        width: min(100% - 32px, var(--bf-max-width));
    }

    .bf-section {
        padding: 72px 0;
    }

    .bf-grid-2,
    .bf-grid-3,
    .bf-vendor-panel__inner,
    .bf-faq {
        grid-template-columns: 1fr;
    }

    .bf-nav {
        margin-bottom: 48px;
    }

    .bf-nav-links a:not(.bf-button) {
        display: none;
    }

    .bf-hero {
        min-height: auto;
    }

    .bf-hero-panel {
        min-height: 420px;
    }

    .bf-vendor-panel {
        padding: 72px 0;
    }

    h1 {
        font-size: clamp(2.4rem, 10vw, 3.4rem);
    }
}
