.blm-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
}

.logo span {
    color: #C9A96E;
}

/* Menu */
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: 0.3s;
}

/* Unique underline animation */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: #C9A96E;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #fff;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* CTA */
.nav-cta button {
    background: transparent;
    border: 1px solid #C9A96E;
    color: #C9A96E;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-cta button:hover {
    background: #C9A96E;
    color: #000;
}

/* Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
}

/* Responsive */
@media(max-width: 900px) {
    .nav-container {
        padding: 18px 16px;
    }

    .nav-menu {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;

        display: none;
        padding: 20px 16px;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }
}

.blm-footer {
    background: #0a0a0a;
    padding: 60px 20px 20px;
    color: #aaa;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Brand */
.footer-brand h2 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

/* Links */
.footer-links h4,
.footer-newsletter h4 {
    color: #C9A96E;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: #aaa;
    margin-bottom: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Newsletter */
.footer-newsletter input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background: #111;
    border: none;
    color: #fff;
}

.footer-newsletter button {
    width: 100%;
    padding: 10px;
    background: #C9A96E;
    border: none;
    color: #000;
    cursor: pointer;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    border-top: 1px solid #222;
    padding-top: 15px;
}

/* Responsive */
@media(max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;

    }

    .blm-footer {

        padding: 30px 16px 16px;

    }
}

@media(max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F8FAFC;
    color: #111827;
}

/* CONTAINER */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    display: flex;
    min-height: 100vh;
}

/* LEFT */
.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px;
}

/* RIGHT */
.hero-right {
    flex: 1;
    background: #0F172A;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 60px;
}

/* TEXT */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin: 20px 0;
}

.hero button {
    margin-top: 20px;
    padding: 12px 24px;
    background: #0F172A;
    color: #fff;
    border: none;
}

.tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #BFA46F;
}

/* STATS */
.stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat h2 {
    font-size: 40px;
    color: #BFA46F;
}

/* SECTION */
.insights-pro {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

/* SECTION HEADER */
.section-header {
    margin-bottom: 60px;
    max-width: 600px;
}

/* SMALL LINE (OPTIONAL PREMIUM TOUCH) */
.section-header::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #BFA46F;
    margin-bottom: 15px;
}

/* TITLE */
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* SUBTEXT */
.section-header p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.insights {
    padding: 80px 0;
    /* more breathing space */
    background: #ffffff;
}

/* GRID */
.insights-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ITEM */
.insight-item {
    padding: 40px 30px 0 30px;
    transition: 0.3s;
    border-top: 1px solid #c3c5c9;
}

/* ICON */
.insight-item i {
    font-size: 26px;
    color: #BFA46F;
    margin-bottom: 20px;
    display: inline-block;
}

/* LABEL */
.insight-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #ceae70;
    display: block;
    margin-bottom: 12px;
}

/* TITLE */
.insight-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* TEXT */
.insight-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 320px;
}

/* HOVER */
.insight-item:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .insights-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .insights {
        padding: 50px 0;

    }


}

.feature-story {
    padding: 100px 0;
    background: #F8FAFC;
}

/* GRID */
.feature-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.feature-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 100px 0 100px 0;
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

/* CONTENT */
.feature-content .tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #BFA46F;
}

.feature-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin: 20px 0;
}

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* BUTTON */
.feature-content button {
    margin-top: 20px;
    padding: 12px 20px;
    background: #0F172A;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-story {
        padding: 50px 0;

    }

    .feature-image img {
        height: 260px;
    }
}

.editorial-alt {
    padding: 80px 0;
    background: #ffffff;
}

/* GRID */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

/* MAIN STORY */
.main-story img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 20px;
}

.story-content .tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #BFA46F;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin: 15px 0;
}

.story-content p {
    color: #6b7280;
    margin-bottom: 10px;
}

.story-content a {
    text-decoration: none;
    color: #0F172A;
    font-weight: 500;
}

/* SIDE STORIES */
.side-stories {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-right: 1px solid #b8b9bb;
    padding-left: 30px;
}

.side-item {
    cursor: pointer;
}

.side-item .tag {
    font-size: 11px;
    letter-spacing: 2px;
    color: #BFA46F;
}

.side-item h3 {
    font-size: 18px;
    margin-top: 6px;
    line-height: 1.4;
}

/* HOVER */
.side-item:hover h3 {
    text-decoration: underline;
}

/* RESPONSIVE */
@media(max-width: 900px) {

    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .editorial-alt {
        padding: 50px 0;

    }

    .side-stories {
        border-left: none;
        padding-left: 0;
    }

    .main-story img {
        height: 220px;
    }
}

.company-directory {
    padding: 100px 0;
    background: #F8FAFC;
}

/* TABLE */
.directory-table {
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
}

/* ROW */
.directory-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

/* LEFT */
.industry {
    font-weight: 500;
    color: #0F172A;
}

/* RIGHT */
.companies {
    color: #6b7280;
    line-height: 1.6;
}

/* HOVER */
.directory-row:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .directory-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .company-directory {
        padding: 50px 0;

    }

    .industry {
        font-size: 14px;
    }
}

/* CTA */
.cta {
    background: #0F172A;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta button {
    margin-top: 20px;
    padding: 12px 24px;
    background: #BFA46F;
    border: none;
}

@media (max-width: 900px) {

    .hero {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-right {
        padding: 40px 0;
    }

    .hero-left {
        padding: 40px;
    }

    .container {
        padding: 0 16px;
    }
}