/* ===================================================
   ABOUT PAGE — Upgraded with real images & gradient SVGs
   Purple/Gold storytelling vibe
   =================================================== */

/* === ABOUT HERO === */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--bg-black);
    background-image:
        radial-gradient(ellipse at 25% 30%, rgba(233, 30, 140, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 70%, rgba(123, 47, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 230, 118, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 20%, rgba(255, 107, 26, 0.06) 0%, transparent 40%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: saturate(1.3);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
    text-align: center;
    width: 100%;
}

.about-hero-content .section-label {
    justify-content: center;
}

.about-hero-content .section-label::before {
    display: none;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 7rem);
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 20px;
}

.about-hero-sub {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto;
}

/* === STORY SECTION === */
.story-section {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-visual {
    position: relative;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.story-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-visual:hover .story-photo {
    transform: scale(1.05);
}

.story-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.6) 100%),
        linear-gradient(135deg, rgba(123, 47, 247, 0.2) 0%, transparent 60%);
}

.story-content .section-title {
    text-align: left;
}

.story-text {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--text-white);
}

.story-highlight {
    padding: 20px 24px;
    background: rgba(123, 47, 247, 0.08);
    border-left: 3px solid var(--purple);
    border-radius: 0 8px 8px 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* === VALUES SECTION === */
.values-section {
    padding: var(--section-pad) 0;
    background: var(--bg-black);
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-purple);
    border-radius: 0 0 16px 16px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    border-color: rgba(123, 47, 247, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(123, 47, 247, 0.08);
}

.value-icon-img {
    width: 100%;
    height: 320px;
    /* Taller for vertical card look */
    margin: 0 0 24px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.value-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}



.value-card:hover .value-icon-img {
    transform: scale(1.05);
    border-color: var(--purple);
}

.value-card:hover .value-icon-img img {
    transform: scale(1.15);
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === EXPERIENCE SECTION (timeline) === */
.experience-section {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(123, 47, 247, 0.06) 0%, transparent 50%),
        var(--bg-dark);
}

.experience-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--purple), var(--orange), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: -34px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--gradient-fire);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 107, 26, 0.3);
}

.timeline-step {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 4px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === ABOUT CTA === */
.about-cta {
    padding: 80px 0;
    background: var(--bg-black);
    text-align: center;
}

.about-cta .section-title {
    margin-bottom: 16px;
}

.about-cta p {
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}