:root {
    --bg: #0A0A0B;
    --card: #121214;
    --text-main: #F7F7F7;
    --text-dim: #9A9A9A;
    --accent: #E5E5E5;
    --border: rgba(255, 255, 255, 0.08);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* CURSOR */
#cursor { position: fixed; width: 6px; height: 6px; background: white; border-radius: 50%; pointer-events: none; z-index: 10000; }
#cursor-ring { position: fixed; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; pointer-events: none; z-index: 9999; transition: 0.3s; }

/* NAV */
nav {
    position: fixed; top: 0; width: 100%; z-index: 5000;
    padding: 2rem 5%; height: 100px;
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(to bottom, var(--bg), transparent);
    backdrop-filter: blur(10px);
}
.nav-logo { font-family: var(--font-serif); font-size: 1.8rem; letter-spacing: -1px; font-weight: 700; text-decoration: none; color: white; }
.nav-links { display: flex; gap: 3rem; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.nav-links a { color: var(--text-dim); text-decoration: none; transition: 0.3s; }
.nav-links a:hover { color: white; }

/* HERO */
header#hero {
    height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
    position: relative; overflow: hidden;
}
.hero-title { font-family: var(--font-serif); font-size: clamp(4rem, 12vw, 12rem); line-height: 0.9; font-weight: 700; margin-bottom: 2rem; }
.hero-sub { color: var(--text-dim); font-size: 0.8rem; letter-spacing: 12px; text-transform: uppercase; margin-bottom: 4rem; }

/* BLOG GRID */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.blog-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; padding-bottom: 15rem; }

.post-card {
    background: var(--card); border: 1px solid var(--border);
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative; overflow: hidden;
    list-style: none; text-decoration: none; color: white; display: block;
}
.post-card:hover { transform: translateY(-15px); border-color: rgba(255,255,255,0.2); box-shadow: 0 40px 100px rgba(0,0,0,0.5); }

.post-img { height: 450px; overflow: hidden; position: relative; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1); filter: grayscale(1) brightness(0.8); }
.post-card:hover .post-img img { transform: scale(1.05); filter: grayscale(0) brightness(1); }

.post-body { padding: 3rem; }
.post-tag { font-size: 0.65rem; letter-spacing: 3px; color: var(--text-dim); text-transform: uppercase; margin-bottom: 1rem; display: block; }
.post-title { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 1.5rem; line-height: 1.2; }

/* SINGLE VIEW */
.single-hero { height: 80vh; position: relative; display: flex; align-items: flex-end; padding-bottom: 6rem; }
.single-bg { position: absolute; inset:0; z-index: -1; }
.single-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); }
.single-header { max-width: 1000px; padding-left: 5%; }
.single-content { max-width: 800px; margin: 8rem auto; font-size: 1.15rem; line-height: 2; color: #BBB; }
.single-content h2 { font-family: var(--font-serif); color: white; font-size: 2.8rem; margin: 4rem 0 2rem; }
.single-content p { margin-bottom: 2rem; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); }

/* FOOTER */
footer { padding: 4rem 5%; text-align: center; border-top: 1px solid var(--border); opacity: 0.3; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }

@media (max-width: 1024px) {
    .blog-list { grid-template-columns: 1fr; }
    .hero-title { font-size: 5rem; }
}
