/* ============================================
   Base - Reset, variables, tipografía y estilos globales
   Contiene: reset de CSS, variables CSS (:root),
   estilos de tipografía (body, headings, links),
   y el contenedor principal.
   ============================================ */

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Variables */
:root {
    --primary: #c8a97e;
    --primary-dark: #b8956a;
    --dark: #1a1a1a;
    --darker: #111;
    --light: #f8f6f3;
    --text: #333;
    --text-light: #777;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Container */
.container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
