:root {
    --color-bg: #FDFBF7; /* Papel viejo */
    --color-text: #111111;
    --color-accent: #8B0000; /* Rojo tinta */
    --font-head: 'Playfair Display', serif;
    --font-body: 'Source Sans Pro', sans-serif;
}

body { font-family: var(--font-body); background: var(--color-bg); color: var(--color-text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header { border-bottom: 2px solid #000; padding: 1rem 0; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; letter-spacing: 2px; }
nav a { margin-left: 2rem; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
nav a:hover { color: var(--color-accent); }

/* Hero Editorial */
.editorial-hero { padding: 5rem 0; text-align: center; border-bottom: 1px solid #ddd; }
.edition { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: #666; display: block; margin-bottom: 1rem; }
.editorial-hero h1 { font-family: var(--font-head); font-size: clamp(3rem, 8vw, 5rem); line-height: 1; margin-bottom: 1.5rem; }
.editorial-hero h1 em { font-style: italic; color: var(--color-accent); }
.lead { font-size: 1.25rem; max-width: 600px; margin: 0 auto; color: #444; }

/* Grid de Artículos */
.article-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; padding: 4rem 0; border-bottom: 1px solid #ddd; }
.main-article { border-right: 1px solid #ddd; padding-right: 3rem; }
.cat-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--color-accent); letter-spacing: 1px; }
.main-article h2 { font-family: var(--font-head); font-size: 2.5rem; line-height: 1.2; margin: 1rem 0; }
.main-article h2 a:hover { text-decoration: underline; }
.read-more { font-weight: 600; border-bottom: 2px solid var(--color-accent); padding-bottom: 2px; }

.side-articles article { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #eee; }
.side-articles h3 { font-family: var(--font-head); font-size: 1.25rem; margin: 0.5rem 0; }

/* Cita */
.quote-section { background: #111; color: #fff; padding: 4rem 0; text-align: center; }
blockquote { font-family: var(--font-head); font-size: 2rem; font-style: italic; max-width: 800px; margin: 0 auto; }

/* Contacto */
.contact-strip { padding: 3rem 0; }
.contact-flex { display: flex; justify-content: space-between; align-items: center; }
.inline-form { display: flex; gap: 1rem; }
.inline-form input { padding: 0.8rem; border: 1px solid #000; font-family: var(--font-body); width: 250px; }
.inline-form button { background: #000; color: #fff; border: none; padding: 0 2rem; cursor: pointer; font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
    .article-grid { grid-template-columns: 1fr; }
    .main-article { border-right: none; padding-right: 0; border-bottom: 1px solid #ddd; padding-bottom: 2rem; }
    .contact-flex, .inline-form { flex-direction: column; gap: 1rem; }
}