/* ========== ROOT VARIABLES ========== */
:root {
    --primary-color: #6A3E3F;
    --secondary-blue: #6A3E3F;
    --accent-color: #D4A574;
    --light-bg: #F8FBFF;
    --light-text: #6B7280;
    --heading: #1F2937;
    --paragraph: #4B5563;
}

/* ========== ABOUT HERO SECTION ========== */
.about-hero {
    margin-top: 0;
    padding: calc(var(--topbar-h, 85px) + clamp(2.5rem, 5vh, 4rem)) 0 clamp(3rem, 8vh, 6rem);
    background: linear-gradient(135deg, #F8FBFF 0%, #FFFFFF 100%);
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    justify-items: center;
    text-align: center;
    max-width: 850px;
}

.about-hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.about-hero-title {
    margin: 0 0 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
}

.about-hero-title .highlight {
    color: var(--secondary-blue);
    font-style: italic;
}

.about-hero-subtitle {
    margin: 0 0 1.5rem;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--secondary-blue);
    font-weight: 600;
}

.about-hero-description {
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--paragraph);
    line-height: 1.8;
    max-width: 600px;
}

.about-hero-image {
    animation: slideInRight 0.8s ease-out;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(106, 62, 63, 0.15);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== ABOUT INTRO SECTION ========== */
.about-intro {
    padding: clamp(3rem, 10vh, 8rem) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(106, 62, 63, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.intro-header {
    text-align: center;
    margin-bottom: clamp(3rem, 8vh, 6rem);
    animation: fadeInDown 0.8s ease-out;
}

.intro-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(106, 62, 63, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    border: 1px solid rgba(106, 62, 63, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-blue);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.intro-section-title {
    margin: 0 0 1rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--heading);
    line-height: 1.1;
    letter-spacing: -1px;
}

.intro-section-title .highlight {
    color: var(--secondary-blue);
    font-style: italic;
}

.intro-subtitle {
    margin: 0;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--paragraph);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(2rem, 5vw, 3.5rem);
    perspective: 1200px;
    position: relative;
    z-index: 1;
}

.intro-card-wrapper {
    perspective: 1200px;
    height: 100%;
}

.intro-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.320, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

.intro-card-wrapper:nth-child(1) .intro-card { animation-delay: 0.1s; }
.intro-card-wrapper:nth-child(2) .intro-card { animation-delay: 0.25s; }
.intro-card-wrapper:nth-child(3) .intro-card { animation-delay: 0.4s; }

.intro-card:hover {
    transform: rotateY(180deg) scale(1.02);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-front {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 95%);
    border: 1.5px solid rgba(106, 62, 63, 0.12);
    box-shadow: 0 16px 48px rgba(106, 62, 63, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 2;
    position: relative;
    transition: all 0.7s ease;
}

.card-back {
    transform: rotateY(180deg);
    z-index: 1;
    padding: 3rem 2.5rem;
    border: 1.5px solid transparent;
    box-shadow: 0 16px 48px rgba(106, 62, 63, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-front:hover {
    box-shadow: 0 20px 64px rgba(106, 62, 63, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.card-border-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-blue) 50%, transparent 100%);
    border-radius: 2px;
}

.card-border-accent.back-accent {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}

.vision-accent {
    background: linear-gradient(90deg, transparent 0%, var(--secondary-blue) 50%, transparent 100%);
}

.commitment-accent {
    background: linear-gradient(90deg, transparent 0%, var(--secondary-blue) 50%, transparent 100%);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(106, 62, 63, 0.08);
}

.card-icon-wrapper {
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.icon-circle {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(106, 62, 63, 0.15) 0%, rgba(198, 131, 102, 0.08) 100%);
    border: 2px solid rgba(106, 62, 63, 0.15);
    font-size: 2.5rem;
    color: var(--secondary-blue);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(106, 62, 63, 0.1);
}

.icon-circle.vision-icon {
    color: var(--secondary-blue);
    border-color: rgba(106, 62, 63, 0.15);
    background: linear-gradient(135deg, rgba(106, 62, 63, 0.15) 0%, rgba(198, 131, 102, 0.08) 100%);
}

.icon-circle.commitment-icon {
    color: var(--secondary-blue);
    border-color: rgba(106, 62, 63, 0.15);
    background: linear-gradient(135deg, rgba(106, 62, 63, 0.15) 0%, rgba(198, 131, 102, 0.08) 100%);
}

.intro-card:hover .icon-circle {
    transform: scale(1.2) rotate(-10deg);
    box-shadow: 0 12px 32px rgba(106, 62, 63, 0.2);
}

.card-title {
    margin: 0 0 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-weight: 700;
    color: var(--heading);
    letter-spacing: -0.5px;
}

.card-subtitle {
    margin: 0 0 2rem;
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.flip-hint {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--secondary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: pulse 2s ease-in-out infinite;
}

.flip-hint i {
    font-size: 0.75rem;
}

/* Back Card Styles */
.card-back {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #4E2C2D 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-back.vision-back {
    background: linear-gradient(135deg, #6A3E3F 0%, #4E2C2D 100%);
}

.card-back.commitment-back {
    background: linear-gradient(135deg, #4E2C2D 0%, #4E2C2D 100%);
}

.back-content {
    width: 100%;
}

.back-title {
    margin: 0 0 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.back-description {
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 400;
}

.back-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
}

.highlight-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== WHO WE ARE SECTION ========== */
.who-we-are {
    padding: clamp(3rem, 8vh, 6rem) 0;
    background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}

.section-title {
    margin: 0 0 clamp(2rem, 5vh, 4rem);
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--secondary-blue);
    font-style: italic;
}

.who-we-are-content {
    max-width: 900px;
    margin: 0 auto;
}

.who-we-are-content p {
    margin: 0 0 1.5rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--paragraph);
    line-height: 1.8;
}

.who-we-are-content p:last-child {
    margin-bottom: 0;
}

/* ========== FOUNDERS SECTION ========== */
.founders {
    padding: clamp(3rem, 8vh, 6rem) 0;
    background: #FFFFFF;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.founder-card {
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 100%);
    border: 1px solid rgba(106, 62, 63, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(106, 62, 63, 0.06);
    transition: all 0.4s ease;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

.founder-card:nth-child(1) { animation-delay: 0.1s; }
.founder-card:nth-child(2) { animation-delay: 0.2s; }

.founder-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(106, 62, 63, 0.15);
    border-color: var(--secondary-blue);
}

.founder-icon {
    width: 70px;
    height: 70px;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(106, 62, 63, 0.15) 0%, rgba(198, 131, 102, 0.1) 100%);
    border-radius: 16px;
    font-size: 2rem;
    color: var(--secondary-blue);
    transition: all 0.4s ease;
}

.founder-card:hover .founder-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(106, 62, 63, 0.25) 0%, rgba(198, 131, 102, 0.15) 100%);
}

.founder-name {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading);
}

.founder-role {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--secondary-blue);
    font-weight: 600;
}

.founder-bio {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--paragraph);
    line-height: 1.6;
}

.founder-skills {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.founder-skills li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--paragraph);
}

.founder-skills li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
}

/* ========== STATS SECTION ========== */
.about-stats {
    padding: clamp(3rem, 8vh, 6rem) 0;
    background: linear-gradient(135deg, #6A3E3F 0%, #4E2C2D 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.stat-card {
    padding: clamp(2rem, 4vw, 2.5rem);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card.visible {
    animation: slideInUp 0.8s ease-out forwards;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-number {
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* ========== CTA SECTION ========== */
.about-cta {
    padding: clamp(3rem, 8vh, 6rem) 0;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #4E2C2D 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInScale 0.8s ease-out;
}

.cta-content h2 {
    margin: 0 0 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #FFFFFF;
}

.cta-content p {
    margin: 0 0 2rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-content .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #6A3E3F;
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid #6A3E3F;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(106, 62, 63, 0.3);
    background: #FFFFFF;
    color: #6A3E3F;
}

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

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero {
        margin-top: 0;
        padding: calc(var(--topbar-h, 85px) + 2.5rem) 0 3rem;
    }

    .about-hero-content {
        order: 2;
    }

    .about-hero-image {
        order: 1;
    }

    .about-hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .about-hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .about-hero-description {
        font-size: clamp(0.95rem, 2vw, 1rem);
    }

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

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

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

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: clamp(1.5rem, 4vh, 3rem);
    }
}

@media (max-width: 480px) {
    .about-hero {
        margin-top: 0;
        padding: calc(var(--topbar-h, 85px) + 2.5rem) 0 2rem;
    }

    .about-hero-container {
        gap: 1.5rem;
    }

    .about-hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .about-hero-subtitle {
        font-size: clamp(0.95rem, 2vw, 1rem);
        margin-bottom: 1rem;
    }

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

    .stat-number {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .intro-grid,
    .founders-grid {
        gap: 1rem;
    }

    .intro-card,
    .founder-card {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-content .btn {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }
}


/* ========== VISIONARY LEADERS (SIMPLE) ========== */
.leaders {
    padding: clamp(3rem, 8vh, 6rem) 0;
    background: #FFFFFF;
}

.leaders-title {
    margin: 0 0 clamp(2.5rem, 5vh, 4rem);
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
}

.leaders-title span {
    color: var(--secondary-blue);
    font-style: italic;
}

.leaders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    background: #FFFFFF;
    border: 1px solid #ECEFF4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(106, 62, 63, 0.06);
    /* Only the card elevates on hover — no infinite/auto animations. */
    transition: all .35s ease;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(106, 62, 63, .12);
}

/* Image is completely static — never animates, zooms, or floats. */
.leader-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;   /* anchor to top so faces aren't cropped */
    display: block;
    animation: none !important;
    transform: none !important;
    transition: none !important;
}

.leader-content {
    padding: 1.75rem;
}

.leader-name {
    margin: 0 0 0.35rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--heading);
}

.leader-role {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--secondary-blue);
    text-transform: uppercase;
}

.leader-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--paragraph);
}

@media (max-width: 768px) {
    .leaders-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
    }

    .leader-img {
        height: 380px;
    }
}

