:root {
    /* Precise color palette from the design */
    --text-dark: #16222d;
    --text-muted: #4a545c;
    --gold: #b88a44;
    --border-color: rgba(22, 34, 45, 0.1);
    --bg-fallback: #EBE2DB; /* Specific background for About Us */
    
    /* Dark Navy Theme for Stats Bar & Leadership */
    --bg-dark: #0d131a;
    --text-white: #ffffff;
    --text-light-gray: #9ba3af;
    --border-light: rgba(255, 255, 255, 0.08);

    /* Light Footer Theme */
    --bg-footer-light: #EBE2DB;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-dark); 
    -webkit-font-smoothing: antialiased; 
    background-color: var(--bg-fallback);
    overflow-x: clip; 
}

a { text-decoration: none; color: inherit; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 60px; width: 100%; }

/* Page Transition Overlay */
.page-transition-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--bg-fallback); z-index: 9999; opacity: 1; visibility: visible; transition: opacity 0.4s ease-in-out, visibility 0.4s; pointer-events: none; }
.page-transition-overlay.hidden { opacity: 0; visibility: hidden; }

/* HERO BACKGROUND WRAPPER */
.hero-bg-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
}

/* HEADER & NAVIGATION */
.header { 
    padding: 40px 0; 
    width: 100%; 
    position: fixed; 
    top: 0;
    left: 0; 
    z-index: 9998;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background-color: var(--bg-fallback);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: relative; 
    z-index: 2;
}

.nav-container::before {
    content: '';
    position: absolute;
    top: -40px;
    bottom: -40px;
    left: -100vw;
    width: calc(100vw + 320px);
    background: linear-gradient(90deg, rgba(235, 226, 219, 0.96) 0%, rgba(235, 226, 219, 0.96) calc(100% - 120px), rgba(235, 226, 219, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.logo { position: relative; z-index: 10; }
.logo img { 
    height: 80px; 
    width: auto; 
    display: block; 
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.nav-links { display: flex; gap: 40px; align-items: center; position: relative; z-index: 10; }
.nav-links a { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dark); position: relative; padding-bottom: 6px; transition: color 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 25px; height: 1.5px; background-color: var(--gold); }

.menu-toggle { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; cursor: pointer; position: relative; z-index: 10; }
.menu-toggle span { display: block; height: 2px; width: 100%; background-color: var(--text-dark); transition: all 0.3s ease; }

/* HERO CONTENT */
.hero-main { flex-grow: 1; display: flex; align-items: center; padding-top: 200px; padding-bottom: 60px; }
.hero-text-box { max-width: 580px; }

.eyebrow { font-size: 10px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; display: flex; align-items: center; gap: 8px; }

h1 { font-family: 'Playfair Display', serif; font-size: 5.2rem; line-height: 1.05; color: var(--text-dark); font-weight: 500; margin-bottom: 40px; letter-spacing: -1.5px; transition: font-size 0.3s ease; }
h1 .gold-text { color: var(--gold); }

.hero-paragraphs p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 25px; max-width: 95%; transition: font-size 0.3s ease; }
.hero-paragraphs p:last-child { margin-bottom: 0; }

/* FOUNDATION SECTION */
.foundation-section { background-color: var(--bg-fallback); padding: 80px 0 100px 0; position: relative; z-index: 2; }
.foundation-grid { display: flex; gap: 60px; align-items: flex-start; }
.foundation-left { flex: 0 0 35%; }
.foundation-left h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; line-height: 1.2; color: var(--text-dark); font-weight: 500; margin-top: 20px; letter-spacing: -0.5px; }

.foundation-right { flex: 1; display: grid; grid-template-columns: 1fr 1fr; }

.f-card { padding: 40px; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.4s ease, box-shadow 0.4s ease; border-radius: 8px; }
.f-card:hover { transform: translateY(-5px); background-color: rgba(255, 255, 255, 0.35); box-shadow: 0 15px 30px rgba(0,0,0,0.03); }

.f-card:nth-child(1) { border-right: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding-top: 0; padding-left: 0; border-radius: 0; background: transparent; box-shadow: none; }
.f-card:nth-child(1):hover { transform: none; }
.f-card:nth-child(2) { border-bottom: 1px solid var(--border-color); padding-top: 0; padding-right: 0; border-radius: 0; }
.f-card:nth-child(3) { border-right: 1px solid var(--border-color); padding-left: 0; padding-bottom: 0; border-radius: 0; }
.f-card:nth-child(4) { padding-right: 0; padding-bottom: 0; border-radius: 0; }

.f-line { width: 25px; height: 1.5px; background-color: var(--gold); margin-bottom: 15px; transition: width 0.3s ease; }
.f-card:hover .f-line { width: 35px; }

.f-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--text-dark); font-weight: 500; margin-bottom: 12px; }
.f-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* === LEADERSHIP SECTION === */
.leadership-section { background-color: var(--bg-dark); padding: 120px 0; color: var(--text-white); position: relative; z-index: 2; overflow: hidden; }
.leadership-header { text-align: center; margin-bottom: 70px; display: flex; flex-direction: column; align-items: center; }
.leadership-header .eyebrow { justify-content: center; width: 100%; margin-bottom: 15px; }
.leadership-header h2 { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 500; margin-bottom: 20px; letter-spacing: -0.5px; color: var(--text-white); }
.header-line { width: 45px; height: 1.5px; background-color: var(--gold); margin: 0 auto 30px auto; }
.leadership-header p { font-size: 1.05rem; color: #d1d5db; line-height: 1.8; max-width: 900px; margin: 0 auto; text-align: center; }

.team-grid { 
    display: grid; 
    grid-template-columns: repeat(3, minmax(300px, 380px)); 
    justify-content: center; 
    gap: 24px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.team-card { 
    background: linear-gradient(145deg, #11151a, #0d1014); 
    border-radius: 12px; 
    overflow: hidden; 
    border: 1px solid rgba(255, 255, 255, 0.06); 
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease; 
    display: flex; 
    flex-direction: column; 
    cursor: pointer; 
    min-height: 250px;
}
.team-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: rgba(184, 138, 68, 0.3); }

.team-info { padding: 40px 30px; display: flex; flex-direction: column; flex-grow: 1; z-index: 2; position: relative; margin-top: 0; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--text-white); font-weight: 500; margin-bottom: 8px; letter-spacing: -0.5px; }
.team-title { font-size: 0.9rem; color: var(--gold); margin-bottom: 30px; font-weight: 400; line-height: 1.4; }

.bio-btn { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border: 1px solid rgba(184, 138, 68, 0.4); color: #d1d5db; font-size: 0.85rem; letter-spacing: 0.5px; border-radius: 4px; transition: all 0.3s ease; margin-top: auto; }
.team-card:hover .bio-btn { border-color: var(--gold); color: var(--gold); }
.bio-btn .arrow { font-size: 1.1rem; transition: transform 0.3s ease; font-family: sans-serif;}
.team-card:hover .arrow { transform: translateX(5px); }

/* Animation Classes */
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* BOTTOM STATS BAR */
.stats-bar { width: 100%; background-color: var(--bg-dark); position: relative; z-index: 3; border-top: 1px solid rgba(255,255,255,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 40px 0; }
.stat-item { padding: 0 40px; border-right: 1px solid var(--border-light); display: flex; flex-direction: column; justify-content: flex-start; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; padding-right: 0; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 12px; font-weight: 500; transition: font-size 0.3s ease; }
.stat-text { font-size: 0.85rem; color: var(--text-white); line-height: 1.6; }
.stat-text span.light { color: var(--text-light-gray); display: block; }

/* FOOTER */
footer { background-color: transparent; color: var(--text-muted); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1.7fr 1fr; gap: 60px; margin-bottom: 60px; }

.footer-logo img { 
    height: 60px; 
    width: auto; 
    margin-bottom: 25px; 
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.footer-logo p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; max-width: 340px; }
.footer-col h4 { font-size: 11px; color: var(--text-dark); letter-spacing: 1.5px; margin-bottom: 30px; font-weight: 600; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 30px; }
.footer-links a, .footer-contact p, .footer-contact a { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 15px; display: block; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer { padding: 40px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.footer-disclaimer h4 { font-size: 11px; color: var(--text-dark); letter-spacing: 1.5px; margin-bottom: 20px; font-weight: 600; text-transform: uppercase; }

/* -------------------------------------------
   UPDATED DISCLAIMER LOGIC & STYLING 
------------------------------------------- */
.footer-disclaimer p { 
    font-size: 0.75rem; 
    color: var(--text-muted); 
    line-height: 1.9; 
    text-align: left; 
    margin-bottom: 15px; 
}
.footer-disclaimer p:last-child { 
    margin-bottom: 0; 
}

/* Base Truncation (Collapsed State) */
.disclaimer-text {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Desktop specifically clamped to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Expanded state (shows full text) */
.disclaimer-text.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

/* See More Button Styling */
.see-more-btn {
    background: transparent;
    border: none;
    color: var(--text-dark) !important; 
    font-family: inherit;
    font-weight: 400; /* As requested */
    font-size: 10px;  /* As requested */
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    transition: opacity 0.2s ease;
    margin-top: 8px;
    display: inline-block;
}

.see-more-btn:hover {
    opacity: 0.7;
}
/* ------------------------------------------- */

.footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom .dev-credit a { text-decoration: none; color: inherit; transition: opacity 0.3s ease; }
.footer-bottom .dev-credit a:hover { opacity: 0.8; }
.footer-bottom .dev-credit span { color: var(--gold); font-weight: 500; }

/* --- BIOGRAPHY SLIDE-IN PANEL --- */
.bio-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(13, 19, 26, 0.45); z-index: 10000;
    opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.bio-overlay.active { opacity: 1; visibility: visible; }

.bio-panel {
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 1200px;
    height: 100%; background: #ffffff; z-index: 10001;
    display: flex; flex-direction: row; 
    transition: right 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -20px 0 50px rgba(13, 19, 26, 0.15);
}
.bio-panel.active { right: 0; }

.bio-left {
    flex: 0 0 38%; background: var(--bg-fallback); display: flex; flex-direction: column;
    align-items: center; justify-content: center; position: relative; padding: 40px; overflow: hidden;
}
/* Soft radial glow behind image for depth */
.bio-left::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.25) 0%, transparent 75%);
    pointer-events: none;
}

.bio-logo-img { 
    width: 220px; 
    z-index: 2; 
    position: relative; 
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.bio-right {
    flex: 1; padding: 70px 80px; overflow-y: auto; position: relative; background: #ffffff;
    -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
}

/* Premium Custom Scrollbar for bio-right */
.bio-right::-webkit-scrollbar { width: 6px; }
.bio-right::-webkit-scrollbar-track { background: rgba(22, 34, 45, 0.03); }
.bio-right::-webkit-scrollbar-thumb { background: rgba(184, 138, 68, 0.3); border-radius: 10px; }
.bio-right::-webkit-scrollbar-thumb:hover { background: rgba(184, 138, 68, 0.6); }

.bio-close {
    position: absolute; top: 40px; right: 40px; background: #ffffff; border: 1px solid var(--border-color);
    font-size: 2rem; cursor: pointer; color: var(--text-muted); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    line-height: 1; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; z-index: 10; box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.bio-close:hover { 
    color: var(--text-dark); background: var(--bg-fallback); 
    transform: rotate(90deg) scale(1.05); border-color: var(--gold);
}

.bio-details-name { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--text-dark); margin-bottom: 8px; font-weight: 500; letter-spacing: -1px; line-height: 1.1; }
.bio-details-title { font-size: 1.15rem; color: var(--gold); margin-bottom: 35px; font-weight: 500; line-height: 1.5; letter-spacing: 0.5px; text-transform: uppercase;}
.bio-intro-text { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(22, 34, 45, 0.08); font-style: italic; }

.bio-dynamic-sections { margin-bottom: 20px; }

/* Staggered Bio Sections Animation */
@keyframes fadeUpSection {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.bio-section-item { 
    display: flex; gap: 28px; margin-bottom: 45px;
    opacity: 0; transform: translateY(30px);
}

.bio-panel.active .bio-section-item {
    animation: fadeUpSection 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.bio-panel.active .bio-section-item:nth-child(1) { animation-delay: 0.15s; }
.bio-panel.active .bio-section-item:nth-child(2) { animation-delay: 0.3s; }
.bio-panel.active .bio-section-item:nth-child(3) { animation-delay: 0.45s; }

.bio-icon-box {
    flex: 0 0 60px; height: 60px; border-radius: 14px; 
    background: rgba(184, 138, 68, 0.06); border: 1px solid rgba(184, 138, 68, 0.15);
    display: flex; align-items: center; justify-content: center; color: var(--gold);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bio-section-item:hover .bio-icon-box {
    background-color: var(--gold);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(184, 138, 68, 0.2);
}

.bio-icon-box svg { width: 26px; height: 26px; fill: currentColor; }

.bio-text-content h4 { font-size: 0.9rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; font-weight: 600;}
.bio-text-content p { font-size: 0.95rem; color: var(--text-dark); line-height: 1.8; margin-bottom: 15px; }
.bio-text-content p:last-child { margin-bottom: 0; }
.bio-text-content ul { list-style-type: disc; color: var(--text-dark); font-size: 0.95rem; line-height: 1.8; padding-left: 20px; }
.bio-text-content li::marker { color: var(--gold); }
.bio-text-content li { margin-bottom: 8px; }

/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 1200px) {
    h1 { font-size: 4.5rem; }
    .foundation-left h2 { font-size: 2.4rem; }
    .leadership-header h2 { font-size: 3.2rem; }
    .team-name { font-size: 1.5rem; }
    
    .team-grid { grid-template-columns: repeat(3, minmax(280px, 1fr)); max-width: 100%; justify-content: center; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .stat-item { padding: 0 30px; }
    .stat-item:nth-child(2) { border-right: none; }
    
    .bio-panel { max-width: 1000px; }
    .bio-right { padding: 60px 50px; }
    .bio-details-name { font-size: 3.2rem; }
}

@media (max-width: 992px) {
    .container { padding: 0 40px; }
    h1 { font-size: 3.8rem; }
    .hero-text-box { max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%; width: 300px; height: 100vh;
        background-color: var(--bg-fallback); flex-direction: column;
        justify-content: center; align-items: center; gap: 30px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000; box-shadow: -5px 0 20px rgba(0,0,0,0.05);
    }
    .nav-links.nav-active { right: 0; }
    .nav-links a { font-size: 12px; }
    
    .menu-toggle.toggle-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.toggle-active span:nth-child(2) { opacity: 0; }
    .menu-toggle.toggle-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .foundation-grid { flex-direction: column; gap: 40px; }
    .foundation-left, .foundation-right { width: 100%; }
    
    .leadership-header p br { display: none; }
    
    .team-grid { grid-template-columns: repeat(2, minmax(280px, 380px)); gap: 24px; justify-content: center; }

    /* Updated Bio Panel Mobile/Tablet Typography Adjustments */
    .bio-panel { flex-direction: column; overflow-y: auto; right: -100%; }
    .bio-left { flex: none; height: auto; padding: 60px 0 40px 0; border-right: none; }
    
    .bio-right { 
        flex: none; padding: 50px 40px; margin-top: 0; z-index: 5;
        border-radius: 0; position: relative;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.06); 
    }

    .bio-details-name { font-size: 2.4rem; }
    .bio-details-title { font-size: 0.95rem; margin-bottom: 25px; }
    .bio-intro-text { font-size: 0.9rem; line-height: 1.7; margin-bottom: 30px; padding-bottom: 30px; }
    .bio-section-item { gap: 20px; margin-bottom: 35px; }
    .bio-text-content p, .bio-text-content ul { font-size: 0.85rem; line-height: 1.7; }
    
    .bio-close { 
        position: fixed; top: 20px; right: -100px; background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
        transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1), transform 0.4s ease, background 0.3s, border-color 0.3s, color 0.3s; 
    }
    .bio-panel.active .bio-close {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .header { padding: 25px 0; }
    
    .nav-container::before {
        top: -25px; bottom: -25px; width: calc(100vw + 240px);
    }

    .hero-bg-wrapper { min-height: 65vh; }
    .hero-main { padding-top: 150px; padding-bottom: 50px; }
    .hero-text-box { margin-top: 20px; }
    
    h1 { font-size: 2.4rem; margin-bottom: 25px; letter-spacing: -0.5px; line-height: 1.15; }
    .eyebrow { font-size: 9px; margin-bottom: 20px; }
    .hero-paragraphs p { font-size: 0.85rem; line-height: 1.6; max-width: 100%; }

    .foundation-section { padding: 50px 0 60px 0; }
    .foundation-left h2 { font-size: 1.8rem; margin-top: 10px; }
    .foundation-right { grid-template-columns: 1fr; }
    
    .f-card { padding: 25px 0; }
    .f-card:nth-child(1), .f-card:nth-child(2), .f-card:nth-child(3) { border-right: none; border-bottom: 1px solid var(--border-color); padding-left: 0; padding-right: 0; }
    .f-card:nth-child(4) { padding-left: 0; padding-right: 0; }
    
    .f-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
    .f-card p { font-size: 0.8rem; line-height: 1.6; }

    .leadership-section { padding: 70px 0; }
    .leadership-header { margin-bottom: 40px; }
    .leadership-header h2 { font-size: 2.4rem; }
    .leadership-header p { font-size: 0.95rem; }

    .stats-grid { grid-template-columns: 1fr; gap: 30px 0; padding: 30px 0; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border-light); padding: 0 0 25px 0; align-items: center; text-align: center; }
    .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
    .stat-number { font-size: 1.6rem; }
    .stat-text { font-size: 0.8rem; }
    
    .footer-links { grid-template-columns: 1fr; }
    .footer-logo p, .footer-links a, .footer-contact p, .footer-contact a { font-size: 0.8rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; font-size: 0.75rem; }
    .footer-logo p { max-width: 100%; }

    /* Responsive adjustments for disclaimer */
    .footer-disclaimer p { 
        font-size: 0.65rem; 
        line-height: 1.7; 
        margin-bottom: 12px; 
    }
    
    .disclaimer-text {
        -webkit-line-clamp: 3; /* Mobile clamp forced to exactly 3 lines */
    }
}

@media (max-width: 480px) {
    .hero-main { padding-top: 130px; }
    
    h1 { font-size: 1.5rem; margin-bottom: 20px; line-height: 1.25; letter-spacing: 0; }
    .eyebrow { font-size: 8px; margin-bottom: 20px; }
    .hero-paragraphs p { font-size: 0.75rem; }
    
    .foundation-left h2 { font-size: 1.4rem; }
    .f-card h3 { font-size: 1rem; }
    .f-card p { font-size: 0.7rem; }
    
    .leadership-header h2 { font-size: 2rem; }
    
    .team-grid { grid-template-columns: minmax(280px, 1fr); gap: 30px; justify-content: center; }
    
    .delay-1, .delay-2, .delay-3, .delay-4 { transition-delay: 0s; }

    .stat-number { font-size: 1.3rem; }
    .stat-text { font-size: 0.75rem; }

    .logo img { height: 60px; }
    footer { padding: 60px 0 30px; }
    .footer-grid { gap: 40px; margin-bottom: 40px; }
    .footer-logo p, .footer-links a, .footer-contact p, .footer-contact a { font-size: 0.75rem; }

    /* Premium Typography scaling for small mobile viewpoints */
    .bio-logo-img { width: 190px; }
    
    .bio-right { padding: 40px 24px; margin-top: 0; border-radius: 0; }
    .bio-close { width: 44px; height: 45px; font-size: 1.6rem; top: 15px; }
    .bio-panel.active .bio-close { right: 15px; }
    
    .bio-details-name { font-size: 1.9rem; margin-bottom: 6px; }
    .bio-details-title { font-size: 0.8rem; margin-bottom: 20px; line-height: 1.4; }
    .bio-intro-text { font-size: 0.75rem; padding-bottom: 20px; margin-bottom: 25px; line-height: 1.6; }
    
    .bio-section-item { flex-direction: column; gap: 10px; margin-bottom: 25px; }
    .bio-icon-box { height: 42px; flex: 0 0 42px; width: 42px; border-radius: 12px; }
    .bio-icon-box svg { width: 18px; height: 18px; }
    .bio-text-content h4 { font-size: 0.75rem; margin-bottom: 8px; }
    .bio-text-content p, .bio-text-content ul { font-size: 0.8rem; line-height: 1.6; }
    .bio-text-content ul { padding-left: 15px; }
    
    /* Responsive adjustments for disclaimer */
    .footer-disclaimer p { 
        font-size: 0.6rem; 
        margin-bottom: 10px; 
    }
}