@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Manrope:wght@200..800&family=Quattrocento:wght@400;700&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

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

html, body {
    height: 100%;
    background-color: #F9F8F6;
    overscroll-behavior: none;
}

body {
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

.section-label {
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #F9F8F6;
    display: block;
}

.highlight {
    color: #333;
}


header {
    position: fixed;
    width: 100%;
    padding: 0.75rem 0;
    margin-bottom: 0;
    top: 0;
    z-index: 999;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.2rem 1.5rem;
    border-radius: 0px;
    transition: all 0.3s ease; 
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #F9F8F6;
    letter-spacing: 0.02em;
    margin-left: 0.4rem;
}

.logo-img {
    height: 24px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #F9F8F6;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 25px;
    background-color: transparent;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.nav-links a i {
    font-size: 0.85em;
}

.nav-links a:hover {
    color: #B4B4B4;
    background-color: rgba(0, 0, 0, 0.12);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

@media (max-width: 1140px) {
    nav {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }

    nav {
        margin-left: 0;
        margin-right: 0;
        padding: 0.4rem 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

.hamburger.active {
    opacity: 0;
    pointer-events: none;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #F9F8F6;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #F9F8F6;
    padding: 1rem 1rem;
    gap: 1rem;
    border-left: 1px solid black;
    transition: right 0.3s ease;
    z-index: 1000;
    align-items: flex-start;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    width: auto;
}

.mobile-menu a i {
    font-size: 0.85em;
}

.mobile-menu a:hover {
    text-decoration: underline;
}

.close-menu {
    align-self: flex-end;
    font-size: 2rem;
    cursor: pointer;
    color: black;
    line-height: 1;
}

main {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    padding-top: calc(1rem + 60px);
    padding-bottom: 1rem;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-text-panel {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.hero-text-panel p {
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 300;
    font-size: 1.9rem;
    line-height: 1.3;
    margin: 0;
    color: #F9F8F6;
}

.hero-text-panel .brand-highlight {
    color: #EE3D96;
}

.video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 550px;
}

.hero-text h1 {
    color: #F9F8F6;
    font-family: 'Rethink Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 3.8rem;
    line-height: 1.2;
    margin: 0;
}

.hero-subtitle {
    color: #F9F8F6;
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.hero-image-wrapper {
    display: none;
}

.cta-btn {
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 400;
    display: inline-block;
    padding: 0.25rem 1.5rem;
    color: #F9F8F6;
    text-decoration: none;
    background-color: #EE3D96;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 2px solid #EE3D96;
}

.cta-btn:hover {
    background-color: transparent;
    color: #EE3D96;
    border-color: #EE3D96;
}

.cta-btn-secondary {
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 400;
    display: inline-block;
    padding: 0.25rem 1.5rem;
    color: #EE3D96;
    text-decoration: none;
    background-color: transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 2px solid #EE3D96;
}

.cta-btn-secondary:hover {
    background-color: transparent;
    color: #EE3D96;
    border-color: #EE3D96;
}

/* Mission Section */
.mission-section {
    width: 100%;
    padding: 7rem 2rem;
    background-color: #F9F8F6;
}

.mission-container {
    max-width: 1100px;
    margin: 0 auto;
}

.mission-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.mission-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.mission-content .cta-btn {
    margin-top: 0.5rem;
    animation: none;
}

.mission-section h2 {
    font-family: 'Quattrocento', serif;
    font-weight: 500;
    color: black;
    font-size: 2rem;
    line-height: 1.4;
    max-width: 550px;
}

.mission-text {
    font-family: 'Public Sans', sans-serif;
    font-weight: 200;
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    max-width: 550px;
    margin-bottom: 4rem;
}

.mission-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mission-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
    object-fit: fill;
    border-radius: 8px;
}

/* What We Do Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background-color: transparent;
    padding: 0;
    overflow: hidden;
}

.card-image-container {
    margin: 1rem 1rem 0 1rem;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #B4B4B4
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h3 {
    font-family: 'Quattrocento', serif;
    font-weight: 500;
    color: black;
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.card p {
    font-family: 'Public Sans', sans-serif;
    font-weight: 200;
    color: #333;;
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0 1.5rem 1rem 1.5rem;
    max-width: 450px;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Public Sans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #EE3D96;
    text-decoration: none;
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.25rem 1.5rem;
    border: 1.5px solid #EE3D96;
    border-radius: 25px;
    transition: gap 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    width: fit-content;
}

.card-btn:hover {
    gap: 0.6rem;
    background-color: #EE3D96;
    color: #F9F8F6;
}

.card-btn svg {
    transition: transform 0.2s ease;
}

.card-btn:hover svg {
    transform: translateX(2px);
}

/* Stats Section */
.stats-section {
    width: 100%;
    padding: 5rem 2rem;
    background-color: #F9F8F6;
}

.stats-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background-color: #333;
    border-radius: 12px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Quattrocento', serif;
    font-weight: 300;
    color: #FDFDFD;
    font-size: 3.5rem;
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.stat-label {
    font-family: 'Public Sans', sans-serif;
    font-weight: 200;
    color: #FDFDFD;
    font-size: 0.8rem;
    margin: 0;
}

/* Partners Subsection */
.partners-container {
    max-width: 1100px;
    margin: 4rem auto 0 auto;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.partners-container .section-label {
    text-align: center;
    color: #e0e0e0;
}

.partners-marquee-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.partners-marquee-wrapper::before,
.partners-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #333, transparent);
}

.partners-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #333, transparent);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.partners-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}


.partner-logo {
    flex: 0 0 auto;
    width: 160px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* CTA Section */
.cta-section {
    width: 100%;
    padding: 5rem 2rem;
    background-color: #F9F8F6;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #FDFDFD;
    padding: 4rem 3rem;
    border-radius: 12px;
    border: 1px solid #cccccc;
}

.cta-container h2 {
    font-family: 'Quattrocento', serif;
    font-weight: 500;
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-container p {
    font-family: 'Public Sans', sans-serif;
    font-weight: 200;
    color: #333;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
    }

    .hero-text {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .mission-section,
    .stats-section,
    .cta-section {
        padding: 3rem 1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .mission-section h2 {
        font-size: 1.6rem;
    }

    .mission-text {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-container h2 {
        font-size: 1.6rem;
    }

    .cta-container p {
        font-size: 0.9rem;
    }
}



.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section h4 {
    font-family: 'Quattrocento', serif;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-weight: 200;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section a {
    display: inline-block;
    color: #F9F8F6;
    text-decoration: none;
    font-weight: 200;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
    width: fit-content;
}

.footer-section a:hover {
    color: black;
}

.footer-nav-links {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.footer-nav-links a {
    margin-bottom: 0;
}

.footer-logo-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-group .footer-logo {
    margin-bottom: 0;
}

.footer-connect {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

footer {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    padding: 0;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.footer-social-icons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
}

.social-btn {
    display: inline-flex !important;
    color: #F9F8F6;
    text-decoration: none;
    margin-bottom: 0 !important;
    transition: opacity 0.2s ease;
}

.social-btn:hover {
    opacity: 0.6;
}

.footer-logo {
    height: 32px;
    width: 32px;
    object-fit: contain;
    display: block;
    margin-bottom: 0.6rem;
}

.footer-section .footer-copyright {
    font-weight: 200;
    color: #333;
    font-size: 0.75rem;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-section {
        padding: calc(1rem + 60px) 1.5rem 1.5rem;
        height: 100svh;
    }

    .hero-text-panel p {
        font-size: 1.6rem;
    }

    .hero-text h1 {
        color: #F9F8F6;
    }

    .hero-subtitle {
        color: rgba(255, 255, 255, 0.85);
    }

    footer {
        display: none;
    }

    .mobile-menu-social {
        margin-top: 0.5rem;
        gap: 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .footer-nav-links a {
        margin-bottom: 0.75rem;
    }

    .footer-logo-group {
        flex-direction: row;
        align-items: center;
    }

    .footer-connect {
        flex-direction: row;
        align-items: center;
    }
}

/* About Page */
.about-page {
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}

.about-main {
    flex: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: calc(1rem + 60px) 1.5rem 1.5rem;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 0;
}

.about-section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}

.about-statement {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    max-width: 950px;
    margin: auto 0;
}

.about-statement p {
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 1.3;
    color: black;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.about-statement p strong {
    font-weight: 700;
    color: #1a1a1a;
}

.about-statement .brand-highlight {
    color: #EE3D96;
    font-weight: 400;
}

.about-statement-sub {
    font-size: 1.5rem !important;
    line-height: 1.45 !important;
    animation-delay: 0.35s !important;
}

.about-statement-sub a {
    color: #EE3D96;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.2s ease;
}

.about-statement-sub a:hover {
    border-bottom-color: #EE3D96;
}

/* Logo Carousel */
.logo-carousel {
    width: 100%;
    margin-top: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.logo-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #F9F8F6, transparent);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #F9F8F6, transparent);
}

.logo-carousel-track {
    display: flex;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.carousel-logo {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
}

.carousel-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.carousel-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .about-main {
        padding: calc(1rem + 60px) 1.25rem 1.5rem;
    }

    .about-section {
        gap: 1.75rem;
    }

    .about-statement {
        gap: 1.25rem;
    }

    .about-statement p {
        font-size: 1.55rem;
    }

    .about-statement-sub {
        font-size: 1.05rem !important;
    }

    .carousel-logo {
        width: 120px;
        height: 64px;
        padding: 0.5rem 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-carousel-track {
        animation: none;
    }
}

/* Team Member Modal Styles */
.team-member {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.team-modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.team-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    background-color: #F9F8F6;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.25s ease;
}

.modal-content h2 {
    font-family: 'Quattrocento', serif;
    font-weight: 500;
    color: black;
    font-size: 1.8rem;
    margin: 0 0 0.4rem 0;
    padding-right: 2rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #EE3D96;
}

.modal-role {
    font-family: 'Public Sans', sans-serif;
    font-weight: 400;
    color: #333;
    font-size: 0.95rem;
    margin: 0 0 1.5rem 0;
}

.modal-bio {
    font-family: 'Public Sans', sans-serif;
    font-weight: 300;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }

    .modal-text h2 {
        font-size: 1.5rem;
    }
}

