/* ═══════════ SHARED PROJECT STYLES ═══════════ */

:root {
    --bg: #0d0d0f;
    --text: #e8e6e1;
    --text-muted: rgba(232, 230, 225, 0.5);
    --accent: #f5d2b5;
    --border: rgba(232, 230, 225, 0.1);
}

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

html, body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, var(--bg) 60%, transparent);
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 1;
}

/* Hero */
.hero {
    padding: 140px 8vw 60px;
    max-width: 900px;
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.hero__tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Project Images */
.project-images {
    padding: 40px 8vw 120px;
    max-width: 1200px;
}

.project-images img,
.project-images video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 24px;
}

.project-images img:last-child,
.project-images video:last-child {
    margin-bottom: 0;
}

/* Navigation */
.post-nav {
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 8vw;
    background: linear-gradient(to top, var(--bg) 80%, transparent);
    border-top: 1px solid var(--border);
}

.post-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.post-nav a:hover {
    color: var(--text);
}

.post-nav svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    nav { padding: 20px 24px; }
    .hero { padding: 120px 6vw 40px; }
    .project-images { padding: 24px 6vw 100px; }
    .post-nav { padding: 32px 6vw; }
}
