@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

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

:root {
    --red:     #C8102E;
    --dark:    #0a0a0a;
    --mid:     #444444;
    --light:   #f5f4f0;
    --border:  #e2e0db;
    --navy:    #0d1421;
    --white:   #ffffff;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
nav {
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 0 56px;
    height: 88px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 24px rgba(0,0,0,0.05);
}

.nav-logo-img {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 52px;
}

.nav-logo-img img {
    height: 68px;
    display: block;
}

/* fallback text logo */
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 2px;
    margin-right: 48px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
    align-items: center;
    height: 100%;
}

.nav-links li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-links a:hover       { color: var(--dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active      { color: var(--red); }
.nav-links a.active::after { transform: scaleX(1); }

/* Nav CTA button */
.nav-links .nav-cta a {
    background: var(--red);
    color: var(--white);
    padding: 0 22px;
    height: 40px;
    margin-left: 12px;
    border-radius: 1px;
    letter-spacing: 2px;
    transition: background 0.25s;
}
.nav-links .nav-cta a:hover { background: #a50d25; color: var(--white); }
.nav-links .nav-cta a::after { display: none; }

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-top: 2px solid var(--red);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--border);
}

.nav-links li:hover .dropdown-menu { display: block; }

.dropdown-menu a {
    height: auto;
    padding: 14px 20px;
    font-size: 0.70rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--border);
    color: var(--mid);
    display: block;
    transition: all 0.2s;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover  { background: var(--light); color: var(--red); padding-left: 26px; }

/* ── HERO ── */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 0 60px;
    background:
        linear-gradient(rgba(8,8,8,0.58), rgba(8,8,8,0.58)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    background-color: var(--navy);
}

.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    max-width: 880px;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    margin-top: 22px;
    letter-spacing: 0.5px;
    max-width: 520px;
}

/* ── BUTTONS ── */
.btn-red {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    padding: 16px 40px;
    margin-top: 36px;
    transition: background 0.25s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.btn-red:hover { background: #a50d25; transform: translateY(-1px); }

.btn-outline {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: transparent;
    color: var(--red);
    border: 1.5px solid var(--red);
    text-decoration: none;
    padding: 14px 38px;
    transition: all 0.25s;
    cursor: pointer;
}
.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-white {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 14px 38px;
    margin-top: 36px;
    transition: all 0.25s;
}
.btn-white:hover { background: var(--white); color: var(--dark); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
    background: var(--navy);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.page-header .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    display: block;
    margin-bottom: 16px;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 3.4rem;
    color: var(--white);
    letter-spacing: -0.3px;
}

.page-header p {
    color: rgba(255,255,255,0.55);
    margin-top: 14px;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* ── SECTION LAYOUTS ── */
.section        { padding: 88px 60px; }
.section-sm     { padding: 60px 60px; }
.section-inner  { max-width: 1140px; margin: 0 auto; }
.section-gray   { background: var(--light); }
.section-dark   { background: var(--navy); }

/* Eyebrow label */
.eyebrow {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 16px;
}

/* Section titles */
.section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 24px;
}

.section-dark h2 { color: var(--white); }

.section p.lead {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--mid);
    max-width: 740px;
    margin: 0 auto;
    letter-spacing: 0.2px;
}

hr.divider {
    border: none;
    border-top: 1px solid var(--border);
}

/* Rule decoration */
.title-rule {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin: 0 auto 24px;
}

.title-rule-left {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin: 0 0 24px;
}

/* ── STATS ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 56px;
}

.stat-card {
    background: var(--white);
    padding: 52px 32px;
    text-align: center;
}

.section-gray .stat-card { background: var(--light); }

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--red);
    display: block;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-top: 12px;
    display: block;
}

/* ── SPLIT SECTION ── */
.split-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 88px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-section img {
    width: 46%;
    flex-shrink: 0;
    object-fit: cover;
    max-height: 420px;
    display: block;
}

.split-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.split-content p {
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--mid);
    margin-bottom: 32px;
    letter-spacing: 0.2px;
}

/* ── HOLDINGS ── */
.holdings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 52px;
    text-align: left;
}

.holding-card {
    background: var(--white);
    padding: 32px 28px;
    transition: background 0.2s;
    position: relative;
}

.holding-card:hover { background: var(--light); }

.holding-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}

.holding-card:hover::before { transform: scaleX(1); }

.holding-card .sector-icon {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: block;
    opacity: 0.75;
}

.holding-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.holding-card p {
    font-size: 0.82rem;
    font-weight: 300;
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
}

.holding-card .leader-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #aaa;
}

.holding-card .leader-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--red);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

/* ── MEMBERS ── */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 52px;
    text-align: left;
}

.member-card {
    border: 1px solid var(--border);
    padding: 36px 32px;
    background: var(--white);
    transition: box-shadow 0.25s, transform 0.25s;
    text-align: center;
}

.member-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.member-avatar {
    width: 110px;
    height: 110px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 22px;
    letter-spacing: 2px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.member-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.member-card .role {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
    display: block;
}

.member-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
}

/* Analyst cards — name + role only, no bio */
#analysts .member-card {
    padding: 24px 24px;
}

/* ── RESOURCES ── */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 48px;
    text-align: left;
}

.resource-card {
    border: 1px solid var(--border);
    padding: 28px 28px;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: box-shadow 0.2s, transform 0.2s;
}

.resource-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}

.resource-tag {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 12px;
}

.resource-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.resource-card p {
    font-size: 0.84rem;
    font-weight: 300;
    color: #888;
    line-height: 1.75;
}

.resource-section-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--dark);
    margin-top: 60px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

/* ── ABOUT VALUES ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 52px;
    text-align: left;
}

.value-card {
    background: var(--white);
    padding: 36px 32px;
}

.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
}

/* ── PORTFOLIO TABLE ── */
.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    font-size: 0.88rem;
}

.report-table th {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding: 14px 20px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    text-align: left;
}

.report-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--mid);
    font-weight: 300;
}

.report-table tr:hover td { background: var(--light); }
.positive { color: #1a7a3c; font-weight: 500; }
.negative { color: var(--red); font-weight: 500; }

.allocation-bar {
    height: 3px;
    background: var(--border);
    min-width: 80px;
}

.allocation-fill {
    height: 100%;
    background: var(--red);
}

.coming-soon-banner {
    background: #fdf6ec;
    border-left: 3px solid #e0a820;
    padding: 16px 24px;
    margin-top: 28px;
    font-size: 0.88rem;
    color: #6b4f1a;
    font-weight: 300;
}

/* ── GET INVOLVED ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 52px;
    text-align: left;
}

.why-card {
    background: var(--white);
    padding: 36px 32px;
}

.why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
}

/* ── TIMELINE ── */
.timeline {
    list-style: none;
    margin-top: 52px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.timeline li {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    align-items: flex-start;
}

.timeline-dot {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--red);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.timeline-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.75;
}

/* ── FORM ── */
.form-container { max-width: 680px; margin: 0 auto; }

.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
}

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

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── FOOTER ── */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.45);
    padding: 64px 56px 40px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
    height: 72px;
    margin-bottom: 20px;
    display: block;
    background: white;
    padding: 8px 12px;
}

.footer-brand p {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.2px;
}

.footer-col h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
    font-size: 0.84rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-bottom a { color: var(--red); text-decoration: none; }

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

@media (max-width: 768px) {
    nav                     { padding: 0 24px; height: 72px; }
    .nav-logo-img img       { height: 52px; }
    .nav-links a            { padding: 0 10px; font-size: 0.66rem; letter-spacing: 1.5px; }
    .hero h1                { font-size: 3rem; }
    .hero                   { height: 480px; padding: 0 28px; }
    .section                { padding: 60px 28px; }
    .section-sm             { padding: 44px 28px; }
    .split-section          { flex-direction: column; padding: 60px 28px; gap: 40px; }
    .split-section img      { width: 100%; }
    .stats-grid             { grid-template-columns: 1fr; }
    .holdings-grid          { grid-template-columns: 1fr; }
    .members-grid           { grid-template-columns: 1fr; }
    .footer-inner           { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom          { flex-direction: column; gap: 10px; text-align: center; }
    .form-row               { grid-template-columns: 1fr; }
    .page-header            { padding: 60px 28px; }
    .page-header h1         { font-size: 2.4rem; }
}
