/* ── Spacing overrides ──────────────────────────────────────────────────── */

.divider {
    margin: 3.5rem 0 2.5rem 0;
}

.about,
.portfolio,
.skills-section,
.contact {
    padding: 3.5rem 0;
}

/* ── About ──────────────────────────────────────────────────────────────── */

.about {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-photo {
    width: 240px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.about-photo img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(10%);
}

.about-bio .about-intro {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.about-bio p {
    color: var(--text-secondary);
    line-height: 1.9;
    letter-spacing: 0.03em;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.about-bio p:last-child {
    margin-bottom: 0;
}

.about-bio strong {
    color: var(--accent-gold);
    font-weight: 400;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    padding-left: 2.5rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 400;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

/* ── Skills & Tools ─────────────────────────────────────────────────────── */

.skills-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.skill-category h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.skill-category ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-category ul li {
    color: var(--text-secondary);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.skill-category ul li:hover {
    border-color: rgba(201, 168, 76, 0.6);
    color: var(--accent-gold);
}

/* ── Hero override — name-focused layout ────────────────────────────────── */

.hero h1 {
    font-size: 6rem;
    line-height: 1.05;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 180px 1fr;
        gap: 2.5rem;
    }

    .about-highlights {
        grid-column: 1 / -1;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(201, 168, 76, 0.2);
        padding-top: 2rem;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }

    .about-photo {
        width: 200px;
    }

    .about-bio,
    .about-highlights {
        width: 100%;
    }

    .about-highlights {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(201, 168, 76, 0.2);
        padding-top: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

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

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

    .hero h1 {
        font-size: 3rem;
    }
}
