.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.about-photo { aspect-ratio: 3/4; background: var(--line); position: relative; overflow: hidden; }
.about-photo-inner { width: 100%; height: 100%; background: linear-gradient(135deg, #e8e0d4 0%, #d4c9b8 100%); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold); }
.about-photo::after { content: ''; position: absolute; bottom: -24px; right: -24px; width: 80px; height: 80px; border: 1px solid var(--gold); pointer-events: none; }
.about-text { font-size: 0.98rem; color: #3e3730; line-height: 1.9; font-weight: 300; margin-bottom: 24px; }
.skills-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.skills-list li { padding: 6px 16px; border: 1px solid var(--line); font-size: 0.8rem; letter-spacing: 0.08em; color: var(--muted); }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }