/* --- ABOUT PAGE VARIABLES --- */
:root {
    --bg-body: #F4F3F0;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --accent: #B85C38;
    --accent-dark: #2C1810;
    --white: #ffffff;
    --font-head: 'Clash Display', sans-serif;
    --font-body: 'Satoshi', sans-serif;
    --radius-lg: 32px;
    --radius-md: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    font-family: var(--font-body);
    color: var(--text-main);
    overflow-x: hidden;
}

/* --- REUSABLE UTILITIES --- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 40px 0;
}

.text-center {
    text-align: center;
}

.sub-head {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 600;
}

.section-head {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
}

/* --- PAGE HEADER (HERO) --- */
.page-header {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
}

/* --- STORY SECTION --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.story-img-row img:nth-child(2) {
    margin-top: 50px;
    /* Offset effect */
}

/* --- VISION SECTION (New) --- */
.vision-hero {
    background: var(--accent-dark);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1549488344-c705847b38d5?q=80&w=2000&auto=format&fit=crop') center/cover;
    opacity: 0.1;
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.vision-quote {
    font-size: 2.2rem;
    font-family: var(--font-head);
    line-height: 1.4;
    margin-bottom: 30px;
}

.vision-author {
    font-size: 1.1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- VALUES GRID (Renamed from Vision Grid) --- */
.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #eee;
    transform: translateY(-5px);
}


/* --- BUSINESS MODEL / IDEA SECTION --- */
.business-model-section {
    background: #fff;
    overflow: hidden;
}

.model-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.model-row:last-child {
    margin-bottom: 0;
}

.model-row.reverse {
    flex-direction: row-reverse;
}

.model-img {
    flex: 1;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.model-text {
    flex: 1;
}

.model-badge {
    display: inline-block;
    background: rgba(184, 92, 56, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.model-head {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.model-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

.check-list i {
    color: var(--accent);
}

/* --- VISION & MISSION (Old styles kept for reference if needed, but overridden/unused) --- */

.vision-section {
    background: var(--white);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vision-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.vision-card:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #eee;
    transform: translateY(-5px);
}

.v-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.v-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.v-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- TEAM SECTION --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.team-img {
    height: 350px;
    width: 100%;
    transition: var(--transition);
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-info {
    transform: translateY(0);
    opacity: 1;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .page-title {
        font-size: 3rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-img-row {
        order: -1;
    }

    /* Image on top */
    .vision-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .model-img {
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .model-row {
        flex-direction: column;
        text-align: center;
    }

    .model-row.reverse {
        flex-direction: column;
    }

    .model-img {
        width: 100%;
        height: 400px;
    }

    .check-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}