:root {
    --bg-color: #FAFAFA;
    --text-main: #171717;
    --accent: #E6E2D9;
    --font-head: 'Prata', serif;
    --font-body: 'Outfit', sans-serif;
}

body { font-family: var(--font-body); background: var(--bg-color); color: var(--text-main); margin: 0; }
a { text-decoration: none; color: inherit; }

/* Layout Maestro Asimétrico */
.layout-grid { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }

/* Sidebar Fija */
.sidebar { 
    background: white; 
    padding: 3rem 2rem; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    border-right: 1px solid #eee;
    position: sticky;
    top: 0;
    height: 100vh;
}
.logo-big { font-family: var(--font-head); font-size: 2rem; }
.vertical-nav { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 4rem; }
.vertical-nav a { font-size: 0.9rem; font-weight: 400; color: #888; transition: all 0.3s; }
.vertical-nav a:hover { color: var(--text-main); padding-left: 10px; }
.social-links { font-size: 0.75rem; color: #BBB; display: flex; gap: 1rem; }

/* Main Content */
.main-content { padding: 4rem 6rem; }

/* Hero */
.hero-minimal { min-height: 80vh; display: flex; flex-direction: column; justify-content: center; }
.tag-line { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 2rem; display: block; }
.hero-minimal h1 { font-family: var(--font-head); font-size: 5rem; line-height: 1; margin-bottom: 2rem; }
.hero-minimal h1 em { font-style: italic; color: #666; }
.hero-minimal p { font-size: 1.2rem; max-width: 400px; line-height: 1.6; margin-bottom: 3rem; color: #555; }
.btn-minimal { border: 1px solid var(--text-main); padding: 1rem 2rem; font-weight: 600; display: inline-block; transition: background 0.3s; }
.btn-minimal:hover { background: var(--text-main); color: white; }

/* About */
.about-minimal { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 6rem 0; border-top: 1px solid #eee; }
.text-block h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 2rem; }
.text-block p { font-size: 1rem; line-height: 2; color: #555; }
.image-block img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); opacity: 0.8; }

/* Contact */
.contact-minimal { padding: 6rem 0; text-align: center; border-top: 1px solid #eee; }
.email-big { font-size: 2.5rem; font-weight: 700; margin: 1rem 0 2rem; font-family: var(--font-head); }

/* Responsive */
@media (max-width: 900px) {
    .layout-grid { grid-template-columns: 1fr; }
    .sidebar { display: none; } /* Ocultar sidebar en móvil */
    .main-content { padding: 2rem; }
    .hero-minimal h1 { font-size: 3rem; }
    .about-minimal { grid-template-columns: 1fr; }
}