:root { --accent: #d4a373; --bg: #fdfcf0; }
body { margin: 0; font-family: 'Montserrat', sans-serif; background: var(--bg); color: #333; line-height: 1.6; }

nav { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.95); z-index: 1000; padding: 20px 0; text-align: center; border-bottom: 1px solid #eee; }
nav a { margin: 0 20px; text-decoration: none; color: #333; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; transition: 0.3s; }
nav a:hover { color: var(--accent); }

.container { max-width: 1200px; margin: 120px auto 60px; padding: 0 20px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 3.5rem; text-align: center; margin-bottom: 50px; font-style: italic; }

/* Сетка Портфолио */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 40px; }
.portfolio-item { background: #fff; border-radius: 2px; overflow: hidden; box-shadow: 0 15px 45px rgba(0,0,0,0.03); transition: 0.4s; }
.portfolio-item:hover { transform: translateY(-10px); }
.portfolio-item img { width: 100%; height: 450px; object-fit: cover; }
.portfolio-info { padding: 30px; }
.portfolio-info h3 { margin: 0; font-family: 'Playfair Display', serif; font-size: 1.6rem; }
.portfolio-info p { color: #999; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 15px; }

/* Кнопки */
.btn { display: inline-block; padding: 12px 30px; border: 1px solid var(--accent); color: var(--accent); text-decoration: none; font-size: 0.8rem; letter-spacing: 1px; transition: 0.3s; margin-top: 20px; }
.btn:hover { background: var(--accent); color: white; }