/* ==========================================================
   ABOUT PAGE
   ========================================================== */

#page-about {
    overflow: hidden;
}

.about-hero {
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-24);
    position: relative;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero__bg canvas {
    width: 100% !important;
    height: 100% !important;
}

.about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.about-hero__greeting {
    display: inline-block;
    margin-bottom: var(--space-6);
}

.about-hero__name-large {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.92;
    color: var(--clr-text);
    margin-bottom: var(--space-8);
}

.about-hero__tagline {
    font-size: clamp(1rem, 2vw, 1.375rem);
    color: var(--clr-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: var(--space-8);
}

.about-hero__meta {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.about-hero__meta-item {
    display: flex;
    flex-direction: column;
}

.about-hero__meta-value {
    font-family: var(--font-head);
    font-size: var(--size-3xl);
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-hero__meta-label {
    font-size: var(--size-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-top: 2px;
}

/* Glow Divider */
.glow-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-primary), var(--clr-accent), transparent);
    margin: var(--space-16) 0;
    opacity: 0.4;
}

/* Story sections */
.about-story {
    max-width: 820px;
    margin: 0 auto;
}

.about-story__block {
    margin-bottom: var(--space-16);
    padding-left: var(--space-8);
    border-left: 2px solid var(--clr-border);
    transition: border-color var(--dur-std);
}

.about-story__block:hover {
    border-color: var(--clr-primary);
}

.about-story__block h3 {
    font-size: var(--size-2xl);
    color: var(--clr-text);
    margin-bottom: var(--space-4);
}

.about-story__block p {
    font-size: var(--size-lg);
    color: var(--clr-muted);
    line-height: 1.9;
}

/* Highlight text */
.highlight {
    color: var(--clr-text);
    font-weight: 500;
}

/* Profile Image */
.about-profile-img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    object-fit: cover;
    background: var(--clr-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
}

.about-profile-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.about-profile-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192, 160, 98, 0.08), rgba(212, 184, 118, 0.05));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-16);
    align-items: start;
}

.about-interests {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

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

    .about-profile-placeholder {
        max-width: 280px;
        margin: 0 auto;
    }
}