﻿/* ── Bribeck Diversified LLC — site.css ── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --navy: #1A2744;
    --navy-mid: #243258;
    --slate: #4A5568;
    --slate-lt: #718096;
    --bg: #F7F8FA;
    --white: #FFFFFF;
    --gold: #C9A84C;
    --gold-lt: #E8C97A;
    --border: #E2E8F0;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 2px 12px rgba(26,39,68,0.08);
    --shadow-md: 0 6px 24px rgba(26,39,68,0.12);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--slate);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
}

    .logo-mark.sm {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
        border-radius: 4px;
    }

.site-nav {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate);
}

    .site-nav a {
        transition: color 0.15s;
    }

        .site-nav a:hover {
            color: var(--navy);
        }

.hero {
    background: var(--navy);
    color: var(--white);
    padding: 7rem 0 0;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -80px;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-inner {
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

    .hero-headline .accent {
        color: var(--gold);
    }

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-rule {
    height: 72px;
    background: var(--bg);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.18s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

    .btn-primary:hover {
        background: var(--gold-lt);
        border-color: var(--gold-lt);
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(201,168,76,0.35);
    }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}

    .btn-ghost:hover {
        border-color: var(--white);
        background: rgba(255,255,255,0.08);
    }

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.about-content p {
    color: var(--slate);
    margin-bottom: 1rem;
    font-size: 0.975rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 2px solid var(--border);
    padding-left: 2rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--slate-lt);
    line-height: 1.4;
}

.ventures {
    background: var(--bg);
}

.ventures-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.venture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.venture-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
}

    .venture-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

    .venture-card.featured {
        border-color: var(--gold);
        border-width: 2px;
    }

.venture-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    border-radius: 4px;
    padding: 0.2rem 0.6rem;
    margin-bottom: 1rem;
}

.venture-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.venture-card p {
    font-size: 0.9rem;
    color: var(--slate);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.venture-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy
