
/* ── SHARED ── */
.img-placeholder {
    background: #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder svg {
    width: 48px;
    height: 48px;
    color: #bbb;
}

/* ── SECTION 1: HERO SPLIT ── */
.about-hero {
    width: 100%;
    max-width: 1440px;
    margin: auto;
}

.about-hero-text {
    text-align: center;
    margin-top: 80px;
}

.about-hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin: 0 0 16px;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    text-transform: uppercase;
}

.about-hero-text p {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 26px;
    width: 100%;
    max-width: 800px;
    margin: auto;
    margin-top: 40px;
}

/* ── SECTION 2: MISSION ── */
.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1440px;
    margin: 100px auto;
    padding: 0 20px;
}

.about-mission-text {
    order: 1;
}

.about-mission-text .section-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.about-mission-text h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    color: #111;
    margin-right: auto;
    max-width: 500px;
    margin-bottom: 20px;
}

.about-mission-text p {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.8;
    margin-right: auto;
    max-width: 620px;
    margin-bottom: 20px;
}

.btn-showmore {
    display: inline-block;
    padding: 13px 22px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .15s;
}

.btn-showmore:hover { background: #333; }

/* STACKED IMAGE COLLAGE */
.about-mission-imgs {
    order: 2;
    position: relative;
    height: 380px;
}

.collage-img img{
  width: 100%;
}

.about-why {
    background: #fcc80036;
    padding: 60px 40px;
    max-width: 1440px;
    margin: 60px auto;
}

.about-why h2 {
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 48px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.why-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: #000;
}

.why-item h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.why-item p {
    font-size: 12px;
    line-height:22px;
    text-transform: uppercase;
}

/* ── SECTION 4: VISION ── */
.about-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1440px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.about-vision-img {
    min-height: 260px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-vision-img img {
    width: 100%;
}

.about-vision-img svg {
    width: 56px;
    height: 56px;
}

.about-vision-text .section-label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.about-vision-text h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    margin-right: auto;
    max-width: 650px;
    margin-bottom: 20px;
}

.about-vision-text p {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.8;
    margin-right: auto;
    max-width: 620px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .about-hero           { grid-template-columns: 1fr; border-radius: 12px; margin: 20px 16px; }
    .about-hero-text      { padding: 32px 24px; }
    .about-hero-text h1   { font-size: 22px; }
    .about-mission        { grid-template-columns: 1fr; gap: 32px; margin: 40px 16px; }
    .about-mission-imgs   { height: 280px; order: 1; }
    .about-mission-text   { order: 2; }
    .about-mission-text h2{ font-size: 22px; }
    .about-why            { margin: 40px 16px; padding: 40px 20px; }
    .why-grid             { grid-template-columns: 1fr; gap: 28px; }
    .about-vision         { grid-template-columns: 1fr; gap: 28px; margin: 40px 16px 60px; }
    .about-vision-text h2 { font-size: 22px; }
    .collage-img-1        { width: 200px; height: 150px; left: 30px; }
    .collage-img-2        { width: 140px; height: 120px; }
    .collage-img-3        { width: 160px; height: 140px; left: 80px; }
    .collage-img-4        { width: 130px; height: 110px; left: 180px; }
}