/*
Theme Name: Meridian Capital Partners
Theme URI: https://meridiancapitalpartners.com
Author: Meridian Capital Partners
Author URI: https://meridiancapitalpartners.com
Description: A professional hedge fund / asset management WordPress theme with Bloomberg-style ticker, strategy cards, performance tables, and institutional investor enquiry form.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
License URI: #
Text Domain: meridian-capital
Tags: finance, fund-management, hedge-fund, institutional, professional, one-page

*/

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #0A1628;
    --navy-mid:    #152240;
    --navy-light:  #1E3258;
    --gold:        #C9A84C;
    --gold-light:  #E8C96A;
    --gold-muted:  #A08030;
    --cream:       #F7F5F0;
    --mist:        #E8EDF4;
    --slate:       #4A5568;
    --slate-light: #6B7A99;
    --text-dark:   #D4DEEE;
    --border-gold: rgba(201,168,76,0.3);
    --border-dark: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    font-weight: 500;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.2;
    max-width: 620px;
}

.section-title.light  { color: #fff; }
.section-title.center { text-align: center; max-width: 100%; }

.divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0 2.5rem;
}
.divider.center { margin-left: auto; margin-right: auto; }

.btn-primary {
    display: inline-block;
    padding: 15px 36px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
    display: inline-block;
    padding: 15px 36px;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
    display: inline-block;
    padding: 15px 40px;
    background: var(--navy);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-1px); }

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    justify-content: space-between;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 32px; height: 32px;
    border: 1.5px solid var(--gold);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-mark span {
    display: block;
    width: 10px; height: 10px;
    background: var(--gold);
}

#primary-navigation ul {
    display: flex;
    gap: 2.5rem;
}

#primary-navigation a {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
}

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

.nav-cta {
    padding: 9px 24px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--gold);
    transition: all 0.2s;
}

/* =========================================================
   TICKER
   ========================================================= */
#market-ticker {
    position: fixed;
    top: 72px; left: 0; right: 0;
    z-index: 999;
    background: var(--gold);
    height: 36px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 2.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-right: 1px solid rgba(10,22,40,0.2);
    height: 36px;
    font-family: 'Inter', sans-serif;
}

.ticker-val   { color: var(--navy-mid); }
.ticker-up    { color: #1a5c2a; font-weight: 700; }
.ticker-down  { color: #7a1a1a; font-weight: 700; }

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================================
   HERO
   ========================================================= */
#hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 3rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute; inset: 0; opacity: 0.04;
    background-image:
        linear-gradient(rgba(201,168,76,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    right: -200px; top: -200px;
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
    pointer-events: none;
}

.hero-circle-inner {
    position: absolute;
    right: -100px; top: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.07);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 36px; height: 1px;
    background: var(--gold);
}

#hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.12;
    max-width: 800px;
    margin-bottom: 1.8rem;
}

#hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    color: var(--text-dark);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* =========================================================
   STATS BAR
   ========================================================= */
#stats-bar {
    background: var(--navy-mid);
    border-top: 1px solid var(--border-gold);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
    padding: 2rem 2.5rem;
    border-right: 1px solid var(--border-dark);
}
.stat-cell:last-child { border-right: none; }

.stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 0.4rem;
    font-family: 'Inter', sans-serif;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}

.stat-sub {
    font-size: 0.74rem;
    color: var(--text-dark);
    margin-top: 0.3rem;
    opacity: 0.55;
    font-family: 'Inter', sans-serif;
}

/* =========================================================
   ABOUT
   ========================================================= */
#about {
    padding: 7rem 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 38px; height: 38px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    margin-top: 2px;
    font-family: 'Inter', sans-serif;
}

.feature-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
    font-family: 'Inter', sans-serif;
}

.feature-text span {
    font-size: 0.84rem;
    color: var(--slate);
    font-family: 'Inter', sans-serif;
}

/* About chart card */
.about-visual { position: relative; }

.about-accent-box {
    position: absolute;
    top: -1.5rem; right: -1.5rem;
    width: 120px; height: 120px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.about-chart-card {
    background: var(--navy);
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.chart-card-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 130px;
    margin-bottom: 1rem;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.bar-pair {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    width: 100%;
}

.bar {
    flex: 1;
    border-radius: 1px 1px 0 0;
    min-height: 4px;
    transition: opacity 0.2s;
}
.bar.fund  { background: var(--gold); }
.bar.bench { background: rgba(255,255,255,0.2); }
.bar:hover { opacity: 0.8; }

.bar-year {
    font-size: 0.62rem;
    color: var(--slate-light);
    font-family: 'Inter', sans-serif;
}

.chart-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.legend-dot {
    width: 10px; height: 10px;
    border-radius: 1px;
}

/* =========================================================
   STRATEGIES
   ========================================================= */
#strategies {
    padding: 7rem 3rem;
    background: var(--mist);
}

#strategies .section-header { text-align: center; }
#strategies .section-title  { margin: 0 auto; }

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 3rem;
    background: rgba(10,22,40,0.12);
}

.strategy-card {
    background: #fff;
    padding: 2.5rem;
    transition: background 0.25s;
    cursor: default;
}

.strategy-card:hover { background: var(--navy); }

.strategy-card:hover .strat-name,
.strategy-card:hover .strat-num  { color: rgba(255,255,255,0.08); }

.strategy-card:hover .strat-title  { color: #fff; }
.strategy-card:hover .strat-desc   { color: var(--text-dark); }
.strategy-card:hover .strat-tag    { border-color: var(--border-gold); color: var(--gold-light); }
.strategy-card:hover .strat-divider { border-color: rgba(255,255,255,0.1); }
.strategy-card:hover .stat-lbl     { color: var(--slate-light); }
.strategy-card:hover .stat-vl      { color: var(--gold); }

.strat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--mist);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.25s;
}

.strat-tag {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(10,22,40,0.2);
    color: var(--slate);
    padding: 3px 8px;
    margin-bottom: 0.75rem;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
}

.strat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
    transition: color 0.25s;
}

.strat-desc {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: color 0.25s;
}

.strat-divider {
    border: none;
    border-top: 1px solid rgba(10,22,40,0.08);
    margin-bottom: 1.25rem;
    transition: border-color 0.25s;
}

.strat-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.stat-lbl {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 2px;
    transition: color 0.25s;
    font-family: 'Inter', sans-serif;
}

.stat-vl {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.25s;
    font-family: 'Inter', sans-serif;
}

/* =========================================================
   PERFORMANCE
   ========================================================= */
#performance {
    padding: 7rem 3rem;
    background: var(--navy);
}

#performance .section-eyebrow { color: var(--gold); }

.perf-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-top: 3rem;
    align-items: start;
}

.perf-intro p {
    color: var(--text-dark);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    opacity: 0.75;
}

.perf-kpis {
    display: flex;
    flex-direction: column;
}

.perf-kpi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border-dark);
}
.perf-kpi:first-child { border-top: 1px solid var(--border-dark); }

.perf-kpi-label {
    font-size: 0.82rem;
    color: var(--text-dark);
    opacity: 0.6;
    font-family: 'Inter', sans-serif;
}

.perf-kpi-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

/* Line chart */
.perf-chart-card {
    background: var(--navy-mid);
    padding: 2rem;
    border: 1px solid var(--border-dark);
}

.perf-chart-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.line-chart-wrap svg {
    width: 100%;
    height: 200px;
    overflow: visible;
}

/* Performance table */
.perf-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.perf-table th {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-light);
    padding: 0.5rem 0;
    text-align: right;
    border-bottom: 1px solid var(--border-dark);
}
.perf-table th:first-child { text-align: left; }

.perf-table td {
    font-size: 0.82rem;
    padding: 0.6rem 0;
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
}
.perf-table td:first-child { text-align: left; color: var(--text-dark); opacity: 0.7; }

.perf-table .positive  { color: #5cb87a; font-weight: 500; }
.perf-table .negative  { color: #d97070; }
.perf-table .highlight { color: var(--gold-light); font-weight: 600; }

/* =========================================================
   PHILOSOPHY
   ========================================================= */
#philosophy {
    padding: 7rem 3rem;
    background: var(--navy-mid);
}

#philosophy .section-eyebrow { color: var(--gold-muted); }

.philosophy-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 3rem;
    background: var(--border-dark);
}

.phil-col {
    background: var(--navy);
    padding: 2.5rem;
}

.phil-numeral {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.phil-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.phil-body {
    font-size: 0.86rem;
    color: var(--text-dark);
    opacity: 0.65;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
}

/* =========================================================
   TEAM
   ========================================================= */
#team {
    padding: 7rem 3rem;
}

#team .section-header { text-align: center; }
#team .section-title  { margin: 0 auto; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {}

.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-end;
}

.team-initials-bg {
    position: absolute; inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.07);
    font-weight: 700;
    letter-spacing: -0.02em;
    user-select: none;
}

.team-photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.team-photo-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(10,22,40,0.45));
}

.team-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    padding: 3px 8px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-title {
    font-size: 0.78rem;
    color: var(--gold-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.team-bio {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
#cta-banner {
    background: var(--gold);
    padding: 6rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-text-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--navy);
}

.cta-text-sub {
    font-size: 1rem;
    color: var(--navy-mid);
    opacity: 0.7;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

/* =========================================================
   CONTACT
   ========================================================= */
#contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-info {
    background: var(--navy);
    padding: 6rem 3.5rem;
}

.contact-info .section-eyebrow { color: var(--gold); }
.contact-info .section-title   { color: #fff; font-size: 1.8rem; }
.contact-info .divider         { background: var(--gold); }

.contact-info > p {
    color: var(--text-dark);
    opacity: 0.65;
    font-size: 0.88rem;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail dt {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.contact-detail dd {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.contact-form-wrap {
    background: var(--cream);
    padding: 6rem 3.5rem;
}

.form-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.form-sub {
    font-size: 0.84rem;
    color: var(--slate);
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.form-row { margin-bottom: 1.25rem; }
.form-row label {
    display: block;
    font-size: 0.67rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(10,22,40,0.15);
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold); }

.form-row textarea  { min-height: 90px; resize: vertical; }
.form-row select    { cursor: pointer; }
.form-two-col       { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-light); }

.form-legal {
    font-size: 0.7rem;
    color: var(--slate-light);
    margin-top: 0.75rem;
    line-height: 1.55;
    font-family: 'Inter', sans-serif;
}

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
    background: #060e1a;
    padding: 4rem 3rem 2rem;
    border-top: 1px solid var(--border-gold);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .site-logo  { margin-bottom: 1rem; }
.footer-brand p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    max-width: 280px;
    font-family: 'Inter', sans-serif;
}

.footer-col-title {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
}

.footer-copyright {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    font-family: 'Inter', sans-serif;
}

.footer-disclaimer {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.2);
    max-width: 420px;
    text-align: right;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

/* =========================================================
   TOAST
   ========================================================= */
#form-toast {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 9999;
    background: var(--navy);
    color: #fff;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--gold);
    font-size: 0.84rem;
    font-family: 'Inter', sans-serif;
    max-width: 300px;
    transform: translateX(200%);
    transition: transform 0.3s ease;
}
#form-toast.visible   { transform: translateX(0); }
#form-toast strong    { display: block; margin-bottom: 4px; font-weight: 600; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    #site-header { padding: 0 1.5rem; }
    #primary-navigation { display: none; }
    #primary-navigation.open { display: block; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); padding: 1.5rem; border-bottom: 1px solid var(--border-gold); }
    #primary-navigation.open ul { flex-direction: column; gap: 0; }
    #primary-navigation.open a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--border-dark); }
    .nav-toggle { display: flex; }

    #hero, #about, #strategies, #performance, #philosophy, #team { padding: 4rem 1.5rem; }
    #cta-banner { padding: 4rem 1.5rem; flex-direction: column; }
    .about-grid, .perf-layout { grid-template-columns: 1fr; gap: 3rem; }
    #stats-bar { grid-template-columns: 1fr 1fr; }
    .strategies-grid { grid-template-columns: 1fr; }
    .philosophy-cols { grid-template-columns: 1fr; }
    #contact { grid-template-columns: 1fr; }
    .contact-info, .contact-form-wrap { padding: 3rem 1.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-disclaimer { text-align: left; }
    .form-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
    #stats-bar { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
}
