/* NORTH FRONT ADVANTAGE - PARENT COMPANY STYLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Brand Palette - The "Platinum Standard" */
    --onyx: #020617;       /* Deepest Blue/Black - The Foundation */
    --slate: #1e293b;      /* Charcoal - Connection to Subsidiary */
    --platinum: #f8fafc;   /* Off-White - Background */
    --burnished: #b45309;  /* Dark Gold - Wealth & Heritage */
    --text-main: #334155;  /* Body Text */
    --text-light: #64748b; /* Muted Text */
    --border: #e2e8f0;     /* Subtle Borders */
}

/* --- GLOBAL RESET & TYPOGRAPHY --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--platinum);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--onyx);
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
}

a {
    transition: all 0.3s ease;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--onyx);
    text-decoration: none;
    font-family: 'Inter', sans-serif; /* Keep logo modern */
}

.logo span {
    color: var(--burnished);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 35px;
    text-decoration: none;
    color: var(--slate);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:hover {
    color: var(--burnished);
}

/* CTA Button in Nav */
.nav-cta {
    border: 1px solid var(--slate);
    padding: 10px 24px;
    margin-left: 35px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--slate);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--onyx);
    color: white;
    border-color: var(--onyx);
}

/* --- HERO SECTION --- */
.hero {
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(rgba(2, 6, 23, 0.75), rgba(2, 6, 23, 0.5)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    color: white;
    position: relative;
}

.hero-label {
    color: var(--burnished);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    font-weight: 600;
    display: block;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
    max-width: 900px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 650px;
    opacity: 0.9;
    font-weight: 300;
    border-left: 3px solid var(--burnished);
    padding-left: 25px;
    margin-left: 5px;
}

/* --- GOVERNANCE / MISSION --- */
.governance {
    padding: 120px 10%;
    background: white;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.governance-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.governance h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.quote-box {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--slate);
    line-height: 1.5;
    background: var(--platinum);
    padding: 50px;
    border-left: 4px solid var(--onyx);
}

.signature {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--burnished);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- PORTFOLIO / HOLDINGS --- */
.portfolio {
    padding: 120px 10%;
    background: var(--onyx);
    color: white;
}

.portfolio-header {
    margin-bottom: 70px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.portfolio-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.portfolio-link {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid var(--burnished);
    font-size: 0.9rem;
    padding-bottom: 5px;
    transition: color 0.3s, border-color 0.3s;
}

.portfolio-link:hover {
    color: var(--burnished);
    border-color: white;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.holding-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 45px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                background 0.3s, 
                border-color 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.holding-card:hover {
    transform: translateY(-8px);
    border-color: var(--burnished);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-light);
    transition: color 0.3s;
}

.holding-card:hover .card-icon {
    color: var(--burnished);
}

.holding-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.holding-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.link-arrow {
    color: var(--burnished);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

/* --- STRATEGY / PILLARS --- */
.strategy {
    padding: 120px 10%;
    background-color: var(--platinum);
}

.strategy-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.strategy-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.stat-item {
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--burnished);
}

.stat-item h4 {
    font-size: 3.5rem;
    margin-top: 15px;
    margin-bottom: 15px;
    color: var(--slate);
    opacity: 0.15;
    font-family: 'Inter', sans-serif; /* Use sans for the numbers */
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--onyx);
    font-weight: 600;
    line-height: 1.6;
}

/* --- FOOTER --- */
footer {
    background: white;
    padding: 80px 10%;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer p {
    margin-bottom: 10px;
}

footer strong {
    color: var(--onyx);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 8px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .governance { grid-template-columns: 1fr; gap: 50px; }
    .stat-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    nav { padding: 20px; flex-direction: column; gap: 20px; }
    .nav-links { flex-direction: column; gap: 15px; width: 100%; }
    .nav-links a, .nav-cta { margin: 0; width: 100%; text-align: center; }
    
    .hero { height: auto; padding: 150px 20px; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { padding-left: 0; border-left: none; margin: 0 auto; }
    
    .portfolio-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    
    .stat-grid { grid-template-columns: 1fr; }
    
    footer { flex-direction: column; gap: 40px; text-align: center; }
    footer div { width: 100%; }
}