:root {
    --bg-dark: #E8E1D5;
    --card-dark: #1C1C1E;
    --accent: #C69C6D;
    --text-dark: #1C1C1E;
    --text-light: #E8E1D5;
    --border: rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--card-dark);
    letter-spacing: -1px;
}

.logo span { color: var(--accent); }

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: rgba(0,0,0,0.6);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover { color: var(--accent); }

/* Hero */
.hero {
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(0,0,0,0.6);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cta-button {
    display: inline-block;
    background: var(--card-dark);
    color: var(--text-light);
    padding: 1.2rem 3rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
    transform: translateY(-5px);
    background: #2C2C2E;
}

/* Articles Section */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.article-card {
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

.article-card .tag {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.article-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-card p {
    color: rgba(0,0,0,0.5);
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: rgba(0,0,0,0.4);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    nav { display: none; }
}
