/* --- About Page Specific --- */



/* Our Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 8rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: 30px 30px 0 #c5a059 !important;
}

.story-content p {
    margin-bottom: 2rem;
    font-size: 16px;
    opacity: 0.9;
}

.story-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--dzong-gold);
}

.stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .story-image {
        max-width: 500px;
        margin: 0 auto;
    }
}


/* Vision & Mission Section */
.vision-mission-section {
    padding: 8rem 0;
    background-color: var(--valley-mist);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    position: relative;
}

/* Vertical divider for desktop */
.vision-mission-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 60%;
    background-color: var(--dzong-gold);
    opacity: 0.3;
}

.vm-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vm-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--dzong-gold);
    margin-bottom: 2rem;
    font-weight: 500;
}

.vm-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3.5vw, 25px);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    color: var(--mountain-dusk);
}

.vm-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mountain-dusk);
    opacity: 0.85;
    max-width: 520px;
}

@media (max-width: 991px) {
    .vision-mission-section {
        padding: 6rem 0;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .vision-mission-grid::after {
        display: none;
    }
}

/* Philosophy Section */
.phil-section {
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 6rem;
}

.phil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.phil-card {
    text-align: center;
    padding: 3rem;
    border: 1px solid rgba(201, 185, 154, 0.2);
    transition: all 0.4s ease;
}

.phil-card:hover {
    border-color: var(--dzong-gold);
    transform: translateY(-10px);
}

.phil-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
}

.phil-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--dzong-gold);
}

.phil-card h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.phil-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .phil-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Difference Section */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: flex-start;
}

.diff-list {
    margin-top: 3rem;
}

.diff-list li {
    margin-bottom: 3rem;
    list-style: none;
    padding-left: 2rem;
    border-left: 1px solid var(--dzong-gold);
}

.diff-list li strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 0.8rem;
    color: var(--mountain-dusk);
}

.diff-list li p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
}

.diff-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0;
}

@media (max-width: 991px) {
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .diff-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Animations for About */
.story-section .fade-in,
.phil-section .fade-in,
.diff-section .fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-section .fade-in.is-visible,
.phil-section .fade-in.is-visible,
.diff-section .fade-in.is-visible,
.team-section .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Team Section --- */
.section-header-team {
    margin-bottom: 5rem;
}

.section-header-team .eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--dzong-gold);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.section-header-team h2 {
    font-size: var(--h2-size);
    color: var(--mountain-dusk);
    line-height: 1.1;
}

.section-header-team h2 em {
    font-style: italic;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 650px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    display: flex;
    flex-direction: column;
}

.team-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 1.8rem;
    background-color: #eee;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-info {
    position: relative;
}

.team-info h3 {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--mountain-dusk);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.team-role {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--mountain-dusk);
    opacity: 0.75;
    margin-bottom: 1.2rem;
}

.team-border {
    width: 100%;
    height: 1px;
    background-color: rgba(37, 36, 32, 0.1);
}

/* --- About Page CTA Overrides --- */
.about-cta {
    position: relative;
    background-image: url('../assets/images/The%20Mindful%20destination%20tariff%201.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* For a premium parallax feel */
    overflow: hidden;
}

/* Ensure the overlay covers the entire relative section and stays between image & text */
.about-cta .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* Let clicks pass to buttons */
    background-color: rgba(37, 36, 32, 0.75) !important;
    /* Force opacity on the background overlay */
}

/* Ensure content is above any potential background overlays */
.about-cta .container {
    position: relative;
    z-index: 5;
    /* Higher index for absolute foreground */
}

.big-cta-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 52px);
    margin-bottom: 3.5rem;
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Premium pop effect */
    letter-spacing: -0.01em;
}

.about-cta .eyebrow {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .about-cta {
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }

    .big-cta-title {
        text-align: center;
        font-size: 36px;
        margin-bottom: 2.5rem;
    }
}