/* =============================================================================
   LibParl v3 — about-style.css
   ============================================================================= */

.lp-about-hero { background: #fff; padding: 48px 24px 30px; border-bottom: 1px solid #eeecea; }
.lp-about-hero__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.lp-about-hero__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lp-accent); margin-bottom: 10px; }
.lp-about-hero__name { font-family: 'Nunito Sans', sans-serif; font-size: clamp(28px, 4.5vw, 44px); font-weight: 900; color: #16181d; letter-spacing: -.03em; line-height: 1.05; margin: 0 0 6px; }
.lp-about-hero__name::after { content: ''; display: block; width: 34px; height: 4px; background: var(--lp-accent); border-radius: 2px; margin-top: 14px; }
.lp-about-hero__title { font-size: 15px; color: #5c6066; margin-top: 10px; }
.lp-about-hero__title a { color: #5c6066; text-decoration: underline; text-underline-offset: 3px; }
.lp-about-hero__title a:hover { color: var(--lp-accent); }

.lp-about { max-width: 1200px; margin: 0 auto; padding: 56px 24px 72px; display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
@media (max-width: 860px) { .lp-about { grid-template-columns: 1fr; gap: 40px; } }

.lp-about-sidebar__photo { width: 100%; border-radius: 14px; display: block; object-fit: cover; aspect-ratio: 3/4; margin-bottom: 24px; box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.lp-about-sidebar__photo--placeholder { width: 100%; aspect-ratio: 3/4; border-radius: 14px; margin-bottom: 24px; background: linear-gradient(135deg, rgba(var(--lp-accent-rgb),.13), rgba(var(--lp-accent-rgb),.05)); display: flex; align-items: center; justify-content: center; font-size: 48px; }

.lp-about-contact { background: #f9f9f9; border-radius: 12px; padding: 20px; margin-bottom: 16px; }
.lp-about-contact__label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #787c82; margin-bottom: 10px; }
.lp-about-contact__item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #1d2327; margin-bottom: 8px; line-height: 1.4; }
.lp-about-contact__item:last-child { margin-bottom: 0; }
.lp-about-contact__item a { color: var(--lp-accent); text-decoration: none; }
.lp-about-contact__item a:hover { text-decoration: underline; }
.lp-about-contact__icon { flex-shrink: 0; margin-top: 1px; color: #787c82; }

.lp-about-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
/* Same icon files as the footer, but the footer filters them white for its
   dark bg — on this white page they need the opposite: forced dark. */
.lp-about-social__link img { filter: brightness(0); opacity: .55; transition: opacity .15s; }
.lp-about-social__link:hover img { filter: none; opacity: 1; }
.lp-about-social__link {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    border: 1px solid #dcdcde; background: #fff; transition: border-color .15s, background .15s;
}
.lp-about-social__link:hover { border-color: var(--lp-accent); background: rgba(var(--lp-accent-rgb),.06); }
.lp-about-social__link img { height: 16px; width: auto; }

.lp-about-body__section-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--lp-accent); margin-bottom: 12px; }
.lp-about-body__intro { font-size: 20px; font-weight: 500; color: #1d2327; line-height: 1.5; margin-bottom: 28px; letter-spacing: -.01em; }
.lp-about-body__content { font-size: 16px; line-height: 1.8; color: #2c2c2c; }
.lp-about-body__content p { margin-bottom: 1.4em; }
.lp-about-body__content p:last-child { margin-bottom: 0; }
.lp-about-body__content a { color: var(--lp-accent); text-decoration: underline; text-underline-offset: 3px; }

.lp-about-map {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 32px; padding: 12px 20px; border: 1px solid #dcdcde; border-radius: 8px;
    font-size: 13px; font-weight: 600; color: #1d2327; text-decoration: none; transition: border-color .15s;
}
.lp-about-map:hover { border-color: var(--lp-accent); color: var(--lp-accent); }
.lp-about-empty { color: #787c82; font-size: 15px; font-style: italic; }