/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0A1628;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* ========== SPLASH SCREEN ========== */
#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0A1628;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.splash-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.splash-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37, #FFD700, #B8860B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

.splash-sub {
    font-size: 0.9rem;
    color: #D4AF37;
    margin-top: 10px;
    letter-spacing: 4px;
    font-weight: 300;
}

.splash-loader {
    width: 280px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    margin: 40px auto 15px;
    border-radius: 10px;
    overflow: hidden;
}

.loader-line {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
    border-radius: 10px;
    transition: width 0.1s linear;
}

.splash-percent {
    font-family: 'Montserrat', monospace;
    font-size: 1rem;
    color: #D4AF37;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== HEADER ========== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1px;
}

.logo span {
    color: #FFF;
    font-weight: 400;
}

nav a {
    color: #E8E8E8;
    margin: 0 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

nav a:hover, nav a.active {
    color: #D4AF37;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 5px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #D4AF37;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 40%, rgba(212, 175, 55, 0.08), transparent 70%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1.1;
    min-width: 300px;
}

.hero-badge {
    color: #D4AF37;
    letter-spacing: 5px;
    font-size: 0.7rem;
    font-weight: 500;
    border-left: 3px solid #D4AF37;
    padding-left: 15px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin: 20px 0 15px;
    line-height: 1.2;
    color: #FFF;
}

.gold-text {
    color: #D4AF37;
    position: relative;
    display: inline-block;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    margin: 25px 0;
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #CCCCCC;
    max-width: 500px;
    margin-bottom: 35px;
    font-weight: 400;
}

.cta-btn {
    display: inline-block;
    padding: 14px 38px;
    border: 2px solid #D4AF37;
    border-radius: 40px;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    background: transparent;
    transition: 0.4s;
    font-family: 'Montserrat', sans-serif;
}

.cta-btn:hover {
    background: #D4AF37;
    color: #0A1628;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 1px;
}

.hero-right {
    flex: 1;
    min-width: 350px;
}

.hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0,0,0,0.4);
}

.boardroom-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.95);
}

.graph-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 450"><polyline points="50,350 120,280 200,300 280,220 360,180 440,140 520,100 560,80" fill="none" stroke="%23D4AF37" stroke-width="3" stroke-dasharray="8,4" opacity="0.7"/><polygon points="560,80 545,90 555,75" fill="%23D4AF37" opacity="0.8"/><line x1="50" y1="380" x2="560" y2="380" stroke="%23D4AF37" stroke-width="1" opacity="0.3"/><line x1="50" y1="350" x2="560" y2="350" stroke="%23D4AF37" stroke-width="0.5" opacity="0.2"/></svg>') center/cover no-repeat;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ========== PAGE SECTION GENERAL ========== */
.page-section {
    padding: 120px 60px 100px;
    position: relative;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    color: #D4AF37;
    letter-spacing: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #FFF;
    margin: 10px 0;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: #D4AF37;
    margin: 20px auto;
}

/* ========== ABOUT PAGE ========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 25px;
}

.about-text p {
    color: #CCC;
    line-height: 1.8;
    margin-bottom: 20px;
}

.years-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.years-stats .stat-num {
    font-size: 2.5rem;
}

.about-image {
    background: linear-gradient(135deg, #0E1A2E, #0A1628);
    border-radius: 16px;
    height: 400px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.about-placeholder {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 400"><rect width="500" height="400" fill="%230E1A2E"/><rect x="50" y="50" width="400" height="300" fill="%231A2A3E" rx="8"/><circle cx="250" cy="120" r="40" fill="%23D4AF37" opacity="0.3"/><text x="250" y="250" text-anchor="middle" fill="%23D4AF37" font-size="20" font-family="serif">Est. 1841</text></svg>') center/cover no-repeat;
}

/* ========== REPORTS PAGE ========== */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.report-card {
    background: rgba(14, 26, 46, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s;
}

.report-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.report-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.report-card h3 {
    font-size: 1.3rem;
    color: #FFF;
    margin-bottom: 15px;
}

.report-card p {
    color: #AAA;
    line-height: 1.6;
    margin-bottom: 25px;
}

.report-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ========== INSIGHTS PAGE ========== */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.insight-card {
    background: rgba(14, 26, 46, 0.5);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: 0.3s;
}

.insight-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.insight-date {
    color: #D4AF37;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.insight-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #FFF;
    margin-bottom: 15px;
}

.insight-excerpt {
    color: #BBB;
    line-height: 1.6;
    margin-bottom: 20px;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========== CONTACT PAGE ========== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(14, 26, 46, 0.5);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.1rem;
    color: #D4AF37;
    margin-bottom: 10px;
}

.info-card p {
    color: #CCC;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: rgba(14, 26, 46, 0.5);
    border-radius: 20px;
    padding: 45px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid #D4AF37;
    border-radius: 40px;
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #D4AF37;
    color: #0A1628;
}

.success-msg {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid #D4AF37;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    color: #D4AF37;
}

.error-msg {
    background: rgba(255, 80, 80, 0.15);
    border: 1px solid #ff5555;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    color: #ff8888;
}

/* ========== FOOTER ========== */
footer {
    background: #050D1A;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 60px 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #FFF;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section p, .footer-section a {
    color: #888;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #D4AF37;
}

#newsletterForm {
    display: flex;
    gap: 10px;
}

#newsletterForm input {
    flex: 1;
    padding: 12px;
    background: #0A1628;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #FFF;
}

#newsletterForm button {
    padding: 12px 20px;
    background: #D4AF37;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #0A1628;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: #666;
    font-size: 0.75rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    header {
        padding: 18px 30px;
    }

    nav a {
        margin: 0 15px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero {
        padding: 100px 30px 60px;
    }

    .about-content, .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 25px;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0A1628;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    nav a {
        display: block;
        margin: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .page-section {
        padding: 80px 25px 60px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .reports-grid, .insights-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #newsletterForm {
        flex-direction: column;
    }
}