/* About Us Page Styles */

/* 1. Hero Section */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    color: white;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding-left: 5%;
}

.brand-label {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    font-weight: 600;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    /* Thin luxury font */
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-hero p.lead {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* 2. Brand Story Section */
.brand-story {
    padding: var(--section-spacing) 0;
    background: white;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-grey-500);
    margin-bottom: 2rem;
}

.story-image {
    position: relative;
    border-radius: 4px;
    /* Less rounded */
    overflow: hidden;
    border: 1px solid var(--color-grey-100);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.03);
}

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


/* 3. Brand Philosophy & Values */
.philosophy-section {
    padding: var(--section-spacing) 0;
    background: var(--color-off-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    /* Less rounded */
    transition: all 0.3s ease;
    border: 1px solid var(--color-grey-100);
}

.value-card:hover {
    border-color: var(--color-gold);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-grey-500);
    line-height: 1.6;
}


/* 4. Differentiation Section */
.different-section {
    padding: var(--section-spacing) 0;
    background: var(--color-off-black);
    color: white;
}

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

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 4px;
    /* Less rounded */
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
    border: 1px solid transparent;
}

.diff-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.diff-icon {
    font-size: 2rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

.diff-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.diff-text p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}


/* 5. Safety Standards Section */
.safety-section {
    padding: var(--section-spacing) 0;
    background: white;
}

.safety-content {
    order: 2;
    /* Image on left, text on right? No, standard split usually alternates */
}

.safety-image {
    order: 1;
    position: relative;
    border-radius: 4px;
    /* Less rounded */
    overflow: hidden;
    border: 1px solid var(--color-grey-100);
}

.safety-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.safety-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 968px) {

    .safety-content,
    .safety-image {
        order: initial;
    }
}


/* 7. Home Experience Section */
.home-experience-section {
    padding: var(--section-spacing) 0;
    background: var(--color-grey-100);
}

.experience-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.experience-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--color-grey-500);
}

.experience-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* 8. Commitment to Results */
.commitment-section {
    padding: var(--section-spacing) 0;
    background: white;
    text-align: center;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.results-preview {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.mini-result-card {
    width: 200px;
    border-radius: 4px;
    /* Less rounded */
    overflow: hidden;
    border: 1px solid var(--color-grey-100);
}

.mini-result-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* 9. Awards Section */
.awards-section {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.award-item {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
}




/* 2b. Founder Section */
.founder-section {
    padding: var(--section-spacing) 0;
    background: var(--color-grey-100);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.founder-image {
    position: relative;
    border-radius: 4px;
    /* Less rounded */
    overflow: hidden;
    border: 1px solid var(--color-grey-100);
    height: 100%;
    min-height: 500px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-content {
    padding-right: 2rem;
}

.founder-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.4;
    color: var(--color-black);
    margin-bottom: 2rem;
    font-style: italic;
}

.founder-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-grey-500);
    margin-bottom: 2rem;
}

.founder-signature {
    margin-top: 2rem;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
}

@media (max-width: 968px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-image {
        min-height: 400px;
        order: -1;
    }

    .founder-content {
        padding-right: 0;
    }

    .about-hero {
        height: 60vh;
        min-height: 450px;
    }

    .about-hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero p.lead {
        font-size: 1.2rem;
    }

    .story-content h2,
    .section-header h2 {
        font-size: 2.5rem;
    }

    .story-content p {
        font-size: 1rem;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .awards-grid {
        gap: 2rem;
    }

    .founder-quote {
        font-size: 1.5rem;
    }

    .founder-text {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .about-hero {
        height: auto;
        /* Allow auto height */
        min-height: 500px;
        padding-top: 80px;
        /* Space for fixed navbar */
        background-attachment: scroll;
        align-items: center;
        /* Center content vertically */
    }

    .about-hero-content {
        padding: 4rem 1.5rem;
        /* More padding */
        text-align: center;
    }

    .brand-label {
        font-size: 0.8rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .about-hero p.lead {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .story-content h2,
    .section-header h2 {
        font-size: 2rem;
    }

    .story-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

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

    .value-card {
        padding: 1.75rem 1.25rem;
    }

    .value-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    .diff-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .diff-icon {
        font-size: 1.5rem;
    }

    .diff-text h4 {
        font-size: 1.1rem;
    }

    .diff-text p {
        font-size: 0.9rem;
    }

    .results-preview {
        gap: 1rem;
    }

    .mini-result-card {
        width: 150px;
    }

    .awards-grid {
        gap: 1.5rem;
    }

    .award-item {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        /* Center align founder content on mobile */
    }

    .founder-content {
        padding: 0 1rem;
    }

    /* Ensure image is strictly respected */
    .founder-image-wrapper {
        min-height: 400px;
        margin: 0 1rem;
        /* Add side margin */
    }

    .founder-roles {
        justify-content: center;
        /* Center badges */
        gap: 0.5rem;
    }

    .role-badge {
        font-size: 0.7rem;
        /* Smaller text */
        padding: 0.3rem 0.8rem;
    }

    .founder-quote {
        font-size: 1.3rem;
        line-height: 1.5;
        border-left: none;
        /* Remove side border on center align */
        border-top: 3px solid var(--color-gold);
        /* Top border instead */
        padding-left: 0;
        padding-top: 1.5rem;
        margin-top: 2rem;
    }

    .founder-text {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
        /* Keep body text readable */
    }

    .long-Bio {
        text-align: left;
        /* Keep bio text left aligned even if header is centered */
    }

    .founder-name {
        font-size: 1.3rem;
    }

    .founder-title {
        font-size: 0.8rem;
    }

    .experience-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    /* Adjust Expert Cards Grid */
    .experts-grid {
        grid-template-columns: 1fr;
        /* Single column */
        gap: 2rem;
        padding: 0 1rem;
    }

}