/*
 * KEC About Us page
 */

.about-hero {
    padding: 4.5rem 0;
}

/* ── Founder section ── */
.founder-section {
    padding: 5rem 0;
    background: var(--white);
}

.founder-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 3.5rem;
    align-items: center;
}

.founder-portrait-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-portrait-glow {
    position: absolute;
    inset: 8% 5% 15%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 204, 49, 0.55) 0%, rgba(255, 204, 49, 0.12) 45%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.founder-portrait-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--black);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    background: var(--black-soft);
}

.founder-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(160deg, #2a2a2a 0%, var(--black) 100%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.founder-portrait-placeholder i {
    font-size: 4rem;
    color: var(--yellow);
    opacity: 0.6;
}
.founder-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    margin: 0.65rem 0 0.25rem;
    letter-spacing: -0.02em;
}

.founder-arabic {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    direction: rtl;
    text-align: left;
}

.founder-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--yellow-hover);
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--border);
}

.founder-content p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.15rem;
    font-size: 1rem;
}

.founder-content p strong {
    color: var(--black);
}

.founder-content p em {
    color: var(--black);
    font-style: normal;
    font-weight: 700;
}

/* ── Timeline ── */
.about-timeline-section {
    padding: 5rem 0;
    background: #FAFAFA;
}

.about-timeline {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 72px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--yellow) 0%, var(--black) 100%);
    border-radius: 999px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-year {
    font-size: 1rem;
    font-weight: 800;
    color: var(--black);
    text-align: right;
    padding-top: 0.15rem;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -1.65rem;
    top: 0.45rem;
    width: 14px;
    height: 14px;
    background: var(--yellow);
    border: 3px solid var(--black);
    border-radius: 50%;
    transform: translateX(50%);
}

.timeline-body {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--shadow);
}

.timeline-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.timeline-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.timeline-item--memorial .timeline-body {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.timeline-item--memorial .timeline-body h3 {
    color: var(--yellow);
}

.timeline-item--memorial .timeline-body p {
    color: rgba(255, 255, 255, 0.82);
}

.timeline-item--memorial .timeline-year::after {
    background: var(--white);
    border-color: var(--yellow);
}

/* ── Storefront ── */
.about-store-section {
    padding: 5rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.about-store-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 1fr;
    gap: 3rem;
    align-items: center;
}

.about-store-photo-wrap {
    margin: 0;
    border: 4px solid var(--black);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: var(--black-soft);
}

.about-store-photo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.about-store-content h2 {
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 800;
    margin: 0.65rem 0 1rem;
    letter-spacing: -0.02em;
}

.about-store-content p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-store-address {
    font-size: 0.95rem !important;
    color: var(--black) !important;
    padding: 1rem 1.15rem;
    background: #FAFAFA;
    border-left: 4px solid var(--yellow);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 1.5rem !important;
    line-height: 1.65 !important;
}

.about-store-address strong {
    font-weight: 800;
}

/* ── Values ── */
.about-values-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.about-value-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.about-value-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.about-value-card i {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 1rem;
    display: block;
}

.about-value-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.about-value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Memorial banner ── */
.founder-memorial {
    padding: 4rem 0;
    background: var(--black);
    border-top: 4px solid var(--yellow);
    border-bottom: 4px solid var(--yellow);
}

.founder-memorial-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.founder-memorial-inner > i {
    font-size: 1.5rem;
    color: var(--yellow);
    margin-bottom: 1.25rem;
    display: block;
}

.founder-memorial blockquote {
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.memorial-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 0.35rem;
}

.memorial-dates {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ── CTA ── */
.about-cta {
    padding: 4rem 0 5rem;
    background: #FAFAFA;
}

.about-cta-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
}

.about-cta-inner h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.about-cta-inner p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

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

    .about-store-content {
        text-align: center;
    }

    .about-store-address {
        text-align: left;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .founder-portrait-wrap {
        margin: 0 auto;
        max-width: 320px;
    }

    .founder-arabic {
        text-align: center;
    }

    .about-timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding-left: 2.75rem;
    }

    .timeline-year {
        text-align: left;
        font-size: 0.9rem;
        color: var(--yellow-hover);
    }

    .timeline-year::after {
        right: auto;
        left: -2.1rem;
        transform: none;
    }
}

@media (max-width: 480px) {
    .founder-section,
    .about-timeline-section,
    .about-values-section {
        padding: 3.5rem 0;
    }

    .about-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-actions .btn-primary,
    .about-cta-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}
