/* ══════════════════════════════════════════════
   ABOUT ME PAGE
   ══════════════════════════════════════════════ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #000;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ─── ABOUT LAYOUT ─── */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* ─── PHOTO SIDE ─── */
.about-photo {
    position: relative;
    background: #f2f2f2;
}

.about-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
}

.about-photo-placeholder span {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.15);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── TEXT SIDE ─── */
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vw 6vw;
}

.about-label {
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 2.5vw;
}

.about-name {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.15;
    margin-bottom: 3vw;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-body p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.55);
}

.about-contact {
    margin-top: 3.5vw;
    padding-top: 2vw;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-contact a {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    transition: color 0.3s ease;
}

.about-contact a:hover {
    color: #000;
}

/* ─── MOBILE ─── */
@media (max-width: 600px) {

    .about {
        grid-template-columns: 1fr;
    }

    .about-photo-placeholder {
        min-height: 50vh;
    }

    .about-text {
        padding: 12vw 7vw;
    }
}
