/* bemoreedriven.com — custom styles */
:root {
    --navy: #0B1E3E;
    --navy-mid: #12306B;
    --navy-light: #1a4a7a;
    --gold: #C8A96E;
    --gold-hover: #e0c080;
    --text-light: #e8edf4;
    --text-muted: #9babc8;
    --bg-light: #F5F7FA;
    --bg-section: #ffffff;
    --shadow: 0 4px 24px rgba(11,30,62,0.12);
}

/* ── Reset body for multi-page layout ── */
html { scroll-behavior: smooth; }
body {
    font-family: 'Georgia', serif;
    background: var(--bg-light);
    color: #1A2B4A;
    padding-top: 72px;
}

/* ── Fixed Top Nav ── */
#topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 72px;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
#topnav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: auto;
    flex-shrink: 0;
}
#topnav .logo-mark {
    width: 38px; height: 38px;
    background: var(--gold);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-family: Georgia, serif;
    font-size: 20px; font-weight: bold;
    color: var(--navy);
    margin-right: 12px;
}
#topnav .logo-text {
    display: flex; flex-direction: column;
}
#topnav .logo-name {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.1;
}
#topnav .logo-tagline {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
#topnav nav ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; gap: 6px;
}
#topnav nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
    font-family: 'Arial', sans-serif;
}
#topnav nav ul li a:hover,
#topnav nav ul li a.active {
    color: var(--gold);
    background: rgba(200,169,110,0.1);
}
.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: bold !important;
    margin-left: 8px;
}
.nav-cta:hover {
    background: var(--gold-hover) !important;
    color: var(--navy) !important;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.22;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,30,62,0.97) 45%, rgba(18,48,107,0.80) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 780px;
    padding: 60px 60px;
}
.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}
.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: normal;
}
.hero h1 em {
    color: var(--gold);
    font-style: normal;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
}
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}
.btn-outline {
    display: inline-block;
    border: 1.5px solid rgba(200,169,110,0.5);
    color: var(--text-light);
    padding: 13px 30px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
    margin-left: 14px;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Stats bar ── */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid #e5e9f0;
    padding: 0;
}
.stats-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 36px 40px;
    border-right: 1px solid #e5e9f0;
    text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: Georgia, serif;
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-number span { color: var(--gold); }
.stat-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7a8ba6;
    font-family: Arial, sans-serif;
}

/* ── Sections ── */
.section {
    padding: 100px 0;
}
.section-alt { background: #EFF3F9; }
.section-dark {
    background: var(--navy);
    color: var(--text-light);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    margin-bottom: 60px;
}
.section-header.centered { text-align: center; }
.eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-family: Arial, sans-serif;
    display: block;
}
.section-header h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: var(--navy);
    font-weight: normal;
    margin-bottom: 18px;
    line-height: 1.25;
}
.section-dark .section-header h2 { color: #fff; }
.section-header p {
    font-size: 1.05rem;
    color: #5a6a80;
    line-height: 1.7;
    max-width: 640px;
}
.section-dark .section-header p { color: var(--text-muted); }
.section-header.centered p { margin: 0 auto; }
.divider {
    width: 48px; height: 3px;
    background: var(--gold);
    margin: 20px 0;
}
.divider.centered { margin: 20px auto; }

/* ── Spotlights (focus areas) ── */
.spotlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.spotlight-item {
    position: relative;
    background: var(--navy-mid);
    overflow: hidden;
    min-height: 320px;
    display: flex; align-items: flex-end;
}
.spotlight-item img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.25;
    transition: opacity 0.3s;
}
.spotlight-item:hover img { opacity: 0.35; }
.spotlight-content {
    position: relative; z-index: 2;
    padding: 32px;
}
.spotlight-content h3 {
    font-family: Georgia, serif;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: normal;
}
.spotlight-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.spotlight-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid rgba(200,169,110,0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.spotlight-link:hover { border-color: var(--gold); }

/* ── Feature grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-top: 3px solid var(--gold);
    padding: 36px 30px;
    border-radius: 2px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.feature-icon {
    width: 44px; height: 44px;
    background: rgba(11,30,62,0.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 18px;
}
.feature-card h3 {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: normal;
}
.feature-card p {
    font-size: 0.91rem;
    color: #5a6a80;
    line-height: 1.65;
}

/* ── Portfolio grid ── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.portfolio-card {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 3px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.portfolio-card:hover { box-shadow: var(--shadow); }
.portfolio-card-img {
    height: 180px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.portfolio-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.portfolio-card-logo {
    position: absolute;
    font-family: Georgia, serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: bold;
    z-index: 2;
}
.portfolio-card-body {
    padding: 24px;
}
.portfolio-card-body h3 {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 6px;
    font-weight: normal;
}
.portfolio-tag {
    display: inline-block;
    background: rgba(11,30,62,0.07);
    color: var(--navy-mid);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}
.portfolio-card-body p {
    font-size: 0.88rem;
    color: #5a6a80;
    line-height: 1.6;
    margin-bottom: 14px;
}
.portfolio-meta {
    font-size: 0.82rem;
    color: #9babc8;
    font-family: Arial, sans-serif;
    display: flex;
    gap: 16px;
    border-top: 1px solid #f0f2f6;
    padding-top: 12px;
}

/* ── Team grid ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.team-card {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: var(--shadow); }
.team-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
}
.team-card-body { padding: 18px 16px; }
.team-card-body h3 {
    font-family: Georgia, serif;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
    font-weight: normal;
}
.team-card-body .role {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: Arial, sans-serif;
}

/* ── Insights grid ── */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.insight-card {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 3px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex; flex-direction: column;
}
.insight-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.insight-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}
.insight-card-body {
    padding: 28px 24px;
    flex: 1;
    display: flex; flex-direction: column;
}
.insight-meta {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9babc8;
    font-family: Arial, sans-serif;
    margin-bottom: 12px;
    display: flex;
    gap: 14px;
}
.insight-tag {
    color: var(--gold);
    font-weight: bold;
}
.insight-card-body h3 {
    font-family: Georgia, serif;
    font-size: 1.12rem;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: normal;
}
.insight-card-body p {
    font-size: 0.88rem;
    color: #5a6a80;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}
.read-more {
    color: var(--navy-mid);
    text-decoration: none;
    font-size: 12px;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
    font-weight: bold;
    border-bottom: 1px solid var(--navy-mid);
    padding-bottom: 1px;
    align-self: flex-start;
    transition: color 0.2s, border-color 0.2s;
}
.read-more:hover { color: var(--gold); border-color: var(--gold); }

/* ── Co-investor section ── */
.coinvestor-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}
.coinvestor-text { flex: 1; }
.coinvestor-logos {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}
.gc-card {
    background: #ffffff;
    border: 1px solid #e0e5ed;
    border-radius: 6px;
    padding: 20px 28px;
    display: flex; align-items: center; justify-content: center;
    min-width: 160px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.gc-card img { max-height: 36px; max-width: 130px; }
.gc-card-text {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

/* ── Contact layout ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info h2 {
    font-family: Georgia, serif;
    font-size: 2rem;
    color: var(--navy);
    font-weight: normal;
    margin-bottom: 20px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-icon {
    width: 40px; height: 40px;
    background: rgba(11,30,62,0.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
    font-size: 16px;
}
.contact-detail-text strong {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9babc8;
    font-family: Arial, sans-serif;
    margin-bottom: 4px;
}
.contact-detail-text span,
.contact-detail-text a {
    font-size: 0.95rem;
    color: var(--navy);
    text-decoration: none;
    line-height: 1.5;
}
.contact-detail-text a:hover { color: var(--gold); }

.contact-form { background: #fff; border: 1px solid #e5e9f0; padding: 40px; border-radius: 3px; }
.contact-form h3 {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: var(--navy);
    font-weight: normal;
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7a8ba6;
    font-family: Arial, sans-serif;
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0d8e8;
    border-radius: 2px;
    font-size: 0.93rem;
    color: var(--navy);
    font-family: Georgia, serif;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--navy-mid);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Article layout ── */
.article-hero {
    height: 420px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex; align-items: flex-end;
}
.article-hero img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
.article-hero-content {
    position: relative; z-index: 2;
    padding: 48px 60px;
    max-width: 900px;
}
.article-hero-content .eyebrow { font-size: 11px; letter-spacing: 2px; }
.article-hero-content h1 {
    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: #fff;
    font-weight: normal;
    line-height: 1.3;
    margin: 10px 0;
}
.article-hero-content .meta {
    font-size: 12px;
    color: var(--text-muted);
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
}
.article-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 40px;
}
.article-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #2c3e5a;
    margin-bottom: 24px;
}
.article-body h2 {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: normal;
    margin: 48px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e9f0;
}
.article-body h3 {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: normal;
    margin: 32px 0 12px;
}
.article-body ul, .article-body ol {
    padding-left: 24px;
    margin-bottom: 24px;
}
.article-body li {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #2c3e5a;
    margin-bottom: 8px;
}
.article-blockquote {
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    margin: 36px 0;
    background: #f9fbfd;
    font-style: italic;
    color: #3a4e68;
    font-size: 1.08rem;
    line-height: 1.7;
}
.article-tags {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin: 40px 0;
    padding-top: 24px;
    border-top: 1px solid #e5e9f0;
}
.article-tag {
    background: rgba(11,30,62,0.07);
    color: var(--navy-mid);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: Arial, sans-serif;
}
.article-nav {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 40px 60px;
    display: flex;
    gap: 20px;
}
.article-nav a {
    color: var(--navy-mid);
    text-decoration: none;
    font-size: 13px;
    font-family: Arial, sans-serif;
    padding: 10px 20px;
    border: 1px solid #d0d8e8;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}
.article-nav a:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* ── About page ── */
.about-hero {
    height: 440px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center;
}
.about-hero img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.2;
}
.about-hero-content {
    position: relative; z-index: 2;
    padding: 60px;
    max-width: 700px;
}
.about-hero-content h1 {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 16px;
}
.about-hero-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ── Two-col layout ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.two-col.reversed > *:first-child { order: 2; }
.two-col.reversed > *:last-child { order: 1; }
.two-col-img {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.two-col-img img {
    width: 100%;
    display: block;
    border-radius: 2px;
}
.two-col-text h2 {
    font-family: Georgia, serif;
    font-size: 2rem;
    color: var(--navy);
    font-weight: normal;
    margin-bottom: 20px;
    line-height: 1.25;
}
.two-col-text p {
    font-size: 1.02rem;
    color: #3a4e68;
    line-height: 1.75;
    margin-bottom: 18px;
}
.two-col-text ul {
    padding-left: 20px;
    margin-bottom: 24px;
}
.two-col-text li {
    font-size: 1rem;
    color: #3a4e68;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* ── Values grid ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.value-block {
    background: rgba(255,255,255,0.05);
    padding: 48px 32px;
    border-top: 2px solid var(--gold);
}
.value-block h3 {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: normal;
}
.value-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Legal ── */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}
.legal-content h1 {
    font-family: Georgia, serif;
    font-size: 2.2rem;
    color: var(--navy);
    font-weight: normal;
    margin-bottom: 8px;
}
.legal-content .last-updated {
    font-size: 0.85rem;
    color: #9babc8;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}
.legal-content h2 {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: var(--navy);
    font-weight: normal;
    margin: 40px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e9f0;
}
.legal-content h3 {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: normal;
    margin: 24px 0 10px;
}
.legal-content p {
    font-size: 0.97rem;
    color: #3a4e68;
    line-height: 1.8;
    margin-bottom: 18px;
}
.legal-content ul, .legal-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}
.legal-content li {
    font-size: 0.95rem;
    color: #3a4e68;
    line-height: 1.75;
    margin-bottom: 8px;
}
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 0.93rem;
}
.legal-content th {
    background: var(--navy);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.legal-content td {
    padding: 10px 14px;
    border-bottom: 1px solid #e5e9f0;
    color: #3a4e68;
    vertical-align: top;
}
.legal-content tr:nth-child(even) td { background: #f9fbfd; }

/* ── Footer ── */
#sitefooter {
    background: #060f1f;
    color: var(--text-muted);
    padding: 70px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand .logo-name {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}
.footer-brand .logo-tagline {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
    color: #7a8ba6;
}
.footer-col h4 {
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.footer-col ul {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #7a8ba6;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #3d5070;
}
.footer-bottom a {
    color: #3d5070;
    text-decoration: none;
}
.footer-bottom a:hover { color: var(--text-muted); }

/* ── Page header (non-home pages) ── */
.page-header {
    background: var(--navy);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
}
.page-header-content {
    position: relative; z-index: 2;
}
.page-header h1 {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    font-weight: normal;
    margin-bottom: 12px;
}
.page-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
}
.breadcrumb {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #7a8ba6;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Cookie banner ── */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    color: var(--text-muted);
    padding: 18px 40px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 2px solid var(--gold);
    font-size: 0.87rem;
    font-family: Arial, sans-serif;
}
#cookie-banner p { margin: 0; flex: 1; line-height: 1.5; }
#cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 10px 22px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    white-space: nowrap;
}
.cookie-accept:hover { background: var(--gold-hover); }
.cookie-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 22px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    white-space: nowrap;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* ── Misc ── */
.text-gold { color: var(--gold); }
.tag-pill {
    display: inline-block;
    background: rgba(200,169,110,0.12);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: Arial, sans-serif;
}
.map-embed {
    width: 100%; height: 320px;
    background: #e5e9f0;
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    color: #7a8ba6;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    overflow: hidden;
    position: relative;
}
.map-embed iframe {
    width: 100%; height: 100%;
    border: none;
    border-radius: 3px;
}
.timeline {
    position: relative;
    padding-left: 32px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 7px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
    position: relative;
    margin-bottom: 36px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px; top: 5px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--gold);
}
.timeline-year {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: Arial, sans-serif;
    margin-bottom: 4px;
}
.timeline-item h3 {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: normal;
    margin-bottom: 6px;
}
.timeline-item p {
    font-size: 0.92rem;
    color: #5a6a80;
    line-height: 1.65;
}
.news-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    font-family: Arial, sans-serif;
    border-radius: 2px;
    margin-bottom: 8px;
}
.portfolio-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.portfolio-news-card {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-left: 4px solid var(--gold);
    padding: 28px;
    border-radius: 2px;
}
.portfolio-news-card .date {
    font-size: 11px;
    color: #9babc8;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.portfolio-news-card h3 {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: normal;
    margin-bottom: 10px;
}
.portfolio-news-card p {
    font-size: 0.9rem;
    color: #5a6a80;
    line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .spotlights { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    body { padding-top: 60px; }
    #topnav { height: 60px; padding: 0 20px; }
    #topnav nav { display: none; }
    .hero-content { padding: 40px 24px; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .two-col.reversed > * { order: unset !important; }
    .contact-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .insights-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .portfolio-news-grid { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
    .section { padding: 60px 0; }
    #cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
    .coinvestor-row { flex-direction: column; gap: 30px; }
}
