/* 1. SYSTEM ROOT & RESET */
:root {
    --primary-red: #de3f21;
    --navy-dark: #1E2538;
    --beige: #D2C9BD;
    --off-white: #fdfcfb;
    --gold: #FFC132;
    --text-dark: #1A1A1A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--beige);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
}

.section-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.05;
    color: var(--navy-dark);
    margin-bottom: 2rem;
}

.accent {
    color: var(--primary-red);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.15rem;
    opacity: 0.85;
}


/* ========================================= */
/* 2. NAVIGATION */
/* ========================================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 5%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 34px;
    width: auto;
}

.logo span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-dark);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links .initiate {
    background-color: var(--gold);
    color: var(--text-dark) !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.nav-links .initiate:hover {
    transform: translateY(-2px);
}


/* ========================================= */
/* 3. HERO */
/* ========================================= */

.hero {
    position: relative;
    min-height: 88vh;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('assets/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            45deg,
            rgba(222,63,33,0.95) 0%,
            rgba(222,63,33,0.65) 18%,
            transparent 18%
        );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 0 5%;
}

.brand-box {
    position: relative;
    padding: 4.5rem 3rem 3rem;
    min-width: 340px;
    max-width: 500px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    text-align: left;
}

.hero-logo {
    position: absolute;
    top: -40px;
    left: -35px;
    width: 90px;
    height: auto;
}

.brand-box h1 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.brand-box p {
    opacity: 0.9;
    font-size: 1.05rem;
}

.hero-tagline h2 {
    font-size: 2.5rem;
    max-width: 500px;
    text-align: left;
    line-height: 1.25;
    text-shadow: 0 5px 20px rgba(0,0,0,0.4);
}


/* ========================================= */
/* 4. TRANSITION SECTION */
/* ========================================= */

.transition-vision {
    position: relative;
    padding: 140px 0;
    background:
        radial-gradient(circle at top right, rgba(222,63,33,0.08), transparent 30%),
        linear-gradient(to bottom, #d9d0c5, #cec4b8);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
    text-align: left;
}

.vision-copy {
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--navy-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.vision-copy p {
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
}

.vision-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.4;
    color: var(--primary-red);
    border-left: 4px solid var(--primary-red);
    padding-left: 30px;
    font-style: italic;
}


/* ========================================= */
/* 5. WHO WE WORK WITH (NEW) */
/* ========================================= */

.who-we-work-with {
    padding: 140px 0;
    background: linear-gradient(to bottom, #cec4b8, #f5f1eb);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-item {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.85);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.audience-item h3 {
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.audience-item p {
    font-size: 0.98rem;
    opacity: 0.85;
    line-height: 1.7;
}


/* ========================================= */
/* 6. COLLECTIVE SECTION */
/* ========================================= */

.collective-section {
    padding: 140px 0;
    background: #f5f1eb;
}

.collective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 70px;
}

.collective-card {
    position: relative;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: left;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

.collective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.collective-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.collective-card p {
    line-height: 1.8;
    opacity: 0.85;
}


/* ========================================= */
/* 7. IMPLEMENTATION & SYSTEM DESIGN (NEW) */
/* ========================================= */

.implementation {
    padding: 140px 0;
    background: linear-gradient(to bottom, #f5f1eb, #fbfaf8);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.45rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.98rem;
    opacity: 0.85;
    line-height: 1.7;
}

/* Distinctive formatting for the field team card */
.deployment-card {
    background: rgba(30, 37, 56, 0.03);
    border: 1px dashed rgba(30, 37, 56, 0.25);
}


/* ========================================= */
/* 8. COORDINATION SECTION */
/* ========================================= */

.coordination-section {
    padding: 160px 0;
    background: var(--navy-dark);
    color: white;
}

.coordination-section .section-title {
    color: white;
}

.coordination-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 60px;
    margin-top: 70px;
    align-items: start;
}

.coordination-text {
    text-align: left;
}

.coordination-text p {
    margin-bottom: 1.6rem;
    line-height: 1.9;
    opacity: 0.92;
}

.coordination-list {
    list-style: none;
    margin-top: 2rem;
}

.coordination-list li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}

.coordination-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.coordination-panel {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
    border-radius: 22px;
    padding: 45px;
    text-align: left;
}

.coordination-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2rem;
}

.tag-group span {
    background: rgba(255,255,255,0.08);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 0.88rem;
}


/* ========================================= */
/* 9. REAL-WORLD APPLICATIONS (NEW) */
/* ========================================= */

.applications {
    padding: 140px 0;
    background: linear-gradient(to bottom, #fbfaf8, #ece4d9);
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.application-card {
    background: rgba(255,255,255,0.65);
    border-left: 3px solid var(--primary-red);
    border-radius: 4px 16px 16px 4px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.07);
}

.application-card h3 {
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.application-card p {
    font-size: 0.98rem;
    opacity: 0.85;
    line-height: 1.7;
}


/* ========================================= */
/* 10. ROADMAP */
/* ========================================= */

.roadmap {
    padding: 140px 0;
    background: linear-gradient(to bottom, #ece4d9, #d9cfc2);
}

.era-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 70px;
}

.era-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 60px 45px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.era-card:hover {
    transform: translateY(-10px);
}

.era-number {
    font-size: 4rem;
    color: rgba(222,63,33,0.18);
    font-weight: 900;
    margin-bottom: 1.2rem;
    display: block;
}

.label-accent {
    color: var(--primary-red);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 1rem;
    display: block;
}

.era-card h3 {
    font-size: 2rem;
    margin-bottom: 1.3rem;
}

.era-card p {
    line-height: 1.8;
    opacity: 0.85;
}


/* ========================================= */
/* 11. WORKSHOPS */
/* ========================================= */

.workshops {
    padding: 150px 0;
    background: linear-gradient(to bottom, #f7f3ee, #1e2538);
}

.workshop-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 80px 0 0 0;
}

.workshop-item {
    background: white;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}

.workshop-item:hover {
    transform: translateY(-8px);
}

.workshop-item h4 {
    color: var(--primary-red);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.workshop-item p {
    line-height: 1.8;
    opacity: 0.82;
}


/* ========================================= */
/* 12. PHILOSOPHY BRIDGE (NEW) */
/* ========================================= */

.philosophy-bridge {
    background: #1E2538;
    padding: 100px 5%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bridge-statement {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    color: var(--off-white);
    font-style: italic;
    line-height: 1.45;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}


/* ========================================= */
/* 13. CTA */
/* ========================================= */

.cta {
    position: relative;
    background: var(--navy-dark);
    color: white;
    text-align: center;
    padding: 140px 5%;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    top: -300px;
    right: -250px;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.btn-primary {
    position: relative;
    z-index: 2;
    background-color: var(--gold);
    color: var(--text-dark);
    border: none;
    padding: 18px 45px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}


/* ========================================= */
/* 14. MOBILE RESPONSIVENESS */
/* ========================================= */

@media (max-width: 1000px) {
    .hero-content,
    .vision-grid,
    .coordination-layout {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .hero-tagline h2,
    .brand-box,
    .coordination-text,
    .coordination-panel,
    .vision-copy,
    .collective-card,
    .audience-item,
    .service-card,
    .application-card {
        text-align: center;
    }

    .hero-tagline h2 {
        max-width: 100%;
    }

    .brand-box {
        max-width: 100%;
    }

    .coordination-list li {
        padding-left: 0;
    }

    .coordination-list li::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 18px;
        padding: 1rem 5%;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .brand-box h1 {
        font-size: 2.8rem;
    }

    .hero-tagline h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .collective-card,
    .vision-copy,
    .coordination-panel,
    .era-card,
    .workshop-item,
    .audience-item,
    .service-card,
    .application-card {
        padding: 35px 25px;
    }

    .hero-logo {
        width: 70px;
        left: -15px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            45deg,
            rgba(222,63,33,0.95) 0%,
            rgba(222,63,33,0.65) 18%,
            transparent 18%
        );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 0 5%;
}

.brand-box {
    position: relative;
    padding: 4.5rem 3rem 3rem;
    min-width: 340px;
    max-width: 500px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    text-align: left;
}

.hero-logo {
    position: absolute;
    top: -40px;
    left: -35px;
    width: 90px;
    height: auto;
}

.brand-box h1 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.brand-box p {
    opacity: 0.9;
    font-size: 1.05rem;
}

.hero-tagline h2 {
    font-size: 2.5rem;
    max-width: 500px;
    text-align: left;
    line-height: 1.25;
    text-shadow: 0 5px 20px rgba(0,0,0,0.4);
}


/* ========================================= */
/* 4. TRANSITION SECTION */
/* ========================================= */

.transition-vision {
    position: relative;
    padding: 140px 0;
    background:
        radial-gradient(circle at top right, rgba(222,63,33,0.08), transparent 30%),
        linear-gradient(to bottom, #d9d0c5, #cec4b8);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
    text-align: left;
}

.vision-copy {
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--navy-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.vision-copy p {
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
}

.vision-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.4;
    color: var(--primary-red);
    border-left: 4px solid var(--primary-red);
    padding-left: 30px;
    font-style: italic;
}


/* ========================================= */
/* 5. COLLECTIVE SECTION */
/* ========================================= */

.collective-section {
    padding: 140px 0;
    background: #f5f1eb;
}

.collective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 70px;
}

.collective-card {
    position: relative;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: left;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

.collective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.collective-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.collective-card p {
    line-height: 1.8;
    opacity: 0.85;
}


/* ========================================= */
/* 6. COORDINATION SECTION */
/* ========================================= */

.coordination-section {
    padding: 160px 0;
    background: var(--navy-dark);
    color: white;
}

.coordination-section .section-title {
    color: white;
}

.coordination-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 60px;
    margin-top: 70px;
    align-items: start;
}

.coordination-text {
    text-align: left;
}

.coordination-text p {
    margin-bottom: 1.6rem;
    line-height: 1.9;
    opacity: 0.92;
}

.coordination-list {
    list-style: none;
    margin-top: 2rem;
}

.coordination-list li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}

.coordination-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.coordination-panel {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
    border-radius: 22px;
    padding: 45px;
    text-align: left;
}

.coordination-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2rem;
}

.tag-group span {
    background: rgba(255,255,255,0.08);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 0.88rem;
}


/* ========================================= */
/* 7. ROADMAP */
/* ========================================= */

.roadmap {
    padding: 140px 0;
    background:
        linear-gradient(to bottom, #ece4d9, #d9cfc2);
}

.era-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 70px;
}

.era-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 60px 45px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.era-card:hover {
    transform: translateY(-10px);
}

.era-number {
    font-size: 4rem;
    color: rgba(222,63,33,0.18);
    font-weight: 900;
    margin-bottom: 1.2rem;
    display: block;
}

.label-accent {
    color: var(--primary-red);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 1rem;
    display: block;
}

.era-card h3 {
    font-size: 2rem;
    margin-bottom: 1.3rem;
}

.era-card p {
    line-height: 1.8;
    opacity: 0.85;
}


/* ========================================= */
/* 8. WORKSHOPS */
/* ========================================= */

.workshops {
    padding: 150px 0;
    background:
        linear-gradient(to bottom, #f7f3ee, #eee7dd);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    opacity: 0.85;
}

.workshop-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 80px 0;
}

.workshop-item {
    background: white;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}

.workshop-item:hover {
    transform: translateY(-8px);
}

.workshop-item h4 {
    color: var(--primary-red);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.workshop-item p {
    line-height: 1.8;
    opacity: 0.82;
}


/* ========================================= */
/* 9. CTA */
/* ========================================= */

.cta {
    position: relative;
    background: var(--navy-dark);
    color: white;
    text-align: center;
    padding: 140px 5%;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    top: -300px;
    right: -250px;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.btn-primary {
    position: relative;
    z-index: 2;
    background-color: var(--gold);
    color: var(--text-dark);
    border: none;
    padding: 18px 45px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}


/* ========================================= */
/* 10. FOOTER */
/* ========================================= */

.footer {
    padding: 140px 0 60px;
    background: url('footer-bg.png') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 0 5%;
    z-index: 2;
}

.footer-glass-box {
    flex: 1;
    max-width: 480px;
    min-height: 260px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: white;
    text-align: left;
    position: relative;
}

.footer-logo-over {
    position: absolute;
    top: -25px;
    left: -20px;
    width: 60px;
    height: auto;
}

.contact-label {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.contact-entry {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.15rem;
}

.mission-text {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.85;
}

.footer-brand-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.footer-brand-box p {
    font-size: 1.1rem;
    line-height: 1.4;
}

.copyright {
    margin-top: 80px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}


/* ========================================= */
/* 11. MOBILE RESPONSIVENESS */
/* ========================================= */

@media (max-width: 1000px) {

    .hero-content,
    .vision-grid,
    .coordination-layout {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .hero-tagline h2,
    .brand-box,
    .coordination-text,
    .coordination-panel,
    .vision-copy,
    .collective-card {
        text-align: center;
    }

    .hero-tagline h2 {
        max-width: 100%;
    }

    .brand-box {
        max-width: 100%;
    }

    .coordination-list li {
        padding-left: 0;
    }

    .coordination-list li::before {
        display: none;
    }

    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .footer-glass-box {
        width: 100%;
        max-width: 100%;
    }

    .footer-logo-over {
        left: 50%;
        transform: translateX(-50%);
        top: -35px;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.7rem;
    }
}

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 18px;
        padding: 1rem 5%;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .brand-box h1 {
        font-size: 2.8rem;
    }

    .hero-tagline h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .collective-card,
    .vision-copy,
    .coordination-panel,
    .era-card,
    .workshop-item {
        padding: 35px 25px;
    }

    .hero-logo {
        width: 70px;
        left: -15px;
    }
}

/* ========================================= */
/* 13. PHILOSOPHY BRIDGE STATEMENT           */
/* ========================================= */

.philosophy-bridge {
    background-color: var(--navy-dark);
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Subtle architectural accent line above the text */
.philosophy-bridge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
}

.bridge-statement {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.4;
    color: var(--off-white);
    max-width: 950px;
    margin: 0 auto;
    font-style: italic;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Responsive adjustment for cleaner line breaks on smaller devices */
@media (max-width: 768px) {
    .philosophy-bridge {
        padding: 70px 0;
    }
}

/* ========================================= */
/* 15. SPECIALIZED BRAND DIFFERENTIATION STYLES */
/* ========================================= */

/* Practical Example Callout Container */
.scenario-callout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgba(222, 63, 33, 0.04);
    border: 1px solid rgba(222, 63, 33, 0.15);
    border-left: 5px solid var(--primary-red);
    padding: 35px;
    border-radius: 12px;
    margin-top: 55px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.scenario-icon {
    font-size: 2rem;
    line-height: 1;
    background: rgba(222, 63, 33, 0.08);
    padding: 12px;
    border-radius: 8px;
}

.scenario-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.scenario-content p {
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Feature Hook Focus Layout Tuning */
.featured-card {
    grid-column: 1 / -1; /* Forces the card to bridge beautifully across top layout columns */
    background: linear-gradient(145deg, #ffffff, #fdfbf7) !important;
    border: 2px solid var(--navy-dark) !important;
    position: relative;
    box-shadow: 0 20px 50px rgba(30,37,56,0.1) !important;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--navy-dark);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
}

.featured-card h3 {
    font-size: 2.2rem !important;
    margin-top: 0.5rem;
    color: var(--navy-dark);
}

.featured-card p {
    font-size: 1.1rem !important;
    max-width: 900px;
}

/* Blueprint Architecture Visual Text Hook Placeholder */
.blueprint-placeholder {
    margin-top: 25px;
    background: #020617;
    border: 1px dashed rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 0.82rem;
    color: var(--gold);
    letter-spacing: 1.5px;
}

/* Adjust Responsive Properties for Callouts and Features */
@media (max-width: 768px) {
    .scenario-callout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
    
    .featured-card h3 {
        font-size: 1.7rem !important;
    }
    
    .blueprint-placeholder {
        font-size: 0.7rem;
        padding: 15px 10px;
    }
}