.about-hero {
    min-height: 560px;
    display: flex;
    align-items: end;
    padding: 150px 0 90px;
    color: var(--gold-pale);
    background: linear-gradient(90deg, rgba(8, 6, 4, 0.82), rgba(27, 77, 30, 0.42)), url('/assets/images/regions/rajasthan-farm.webp') center/cover;
}

.about-hero p {
    max-width: 620px;
    color: rgba(245, 237, 219, 0.76);
    font-size: 17px;
}

.story-section {
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.story-grid figure {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-green);
}

.story-grid img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.story-grid p+p {
    margin-top: 16px;
}

.footprint-section {
    background: var(--warm-white);
}

.footprint-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.footprint-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow-green);
}

.footprint-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(var(--gold-mid), var(--green-dark));
}

.footprint-card span,
.director-info span {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-mid);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.footprint-card h3 {
    margin-bottom: 10px;
    color: var(--green-dark);
}

.timeline {
    position: relative;
    display: grid;
    gap: 18px;
    margin-top: 36px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 67px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.55);
}

.timeline-item strong {
    color: var(--gold-mid);
    font-family: var(--font-display);
    font-size: 28px;
}

.values-section {
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.values-grid article {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.55);
}

.team-section {
    color: var(--gold-pale);
}

.leadership-section {
    background: var(--warm-gray);
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.director-card {
    display: grid;
    grid-template-columns: minmax(150px, 0.42fr) 1fr;
    gap: 26px;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-green);
}

.director-photo {
    height: 100%;
    overflow: hidden;
    min-height: 260px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    border: 1px solid rgba(197, 150, 58, 0.26);
    border-radius: 6px;
    background: radial-gradient(circle at 50% 35%, rgba(232, 192, 112, 0.28), transparent 34%), linear-gradient(145deg, rgba(27, 77, 30, 0.96), rgba(8, 6, 4, 0.92));
    color: var(--gold-pale);
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.director-photo span {
    color: #fff6de;
    font-family: var(--font-display);
    font-size: 50px;
    line-height: 1;
}

.director-photo small {
    color: rgba(245, 237, 219, 0.54);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.director-info {
    padding: 14px 10px 12px 0;
}

.director-info h3 {
    margin-bottom: 12px;
    color: var(--green-dark);
}

.director-info p {
    margin-bottom: 18px;
}

.director-info ul {
    display: grid;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
}

.director-info li {
    position: relative;
    padding-left: 18px;
}

.director-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-mid);
}

.team-card {
    max-width: 780px;
}

.team-card h2 {
    margin-bottom: 18px;
    color: #fff6de;
}

.team-card p {
    margin-bottom: 28px;
    color: rgba(245, 237, 219, 0.68);
}

.sourcing-section {
    background: var(--warm-white);
}

@media (max-width: 900px) {

    .story-grid,
    .values-grid,
    .footprint-grid,
    .directors-grid {
        grid-template-columns: 1fr;
    }

    .story-grid img {
        height: 340px;
    }
}

@media (max-width: 560px) {
    .timeline::before {
        display: none;
    }

    .timeline-item,
    .director-card {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .director-info {
        padding: 12px 4px 4px;
    }

    .director-photo {
        min-height: 220px;
    }
}