:root {
    /* ── Brand colors ── */
    --primary-color: #0f172a;   /* Slate 900 - Deep Navy */
    --primary-light: #1e293b;   /* Slate 800 */
    --accent-color: #0d9488;    /* Teal 600 - The "Colibrì" energy */
    --accent-hover: #0f766e;    /* Teal 700 */
    --text-color: #334155;      /* Slate 700 - Readable dark gray */
    --text-light: #64748b;      /* Slate 500 - Metatags/Subtitles */
    --bg-color: #f8fafc;        /* Slate 50 - Very light cool gray */
    --white: #ffffff;
    --border-color: #e2e8f0;    /* Slate 200 */

    /* ── Calendar aliases (used by calendar.css) ── */
    --teal:        var(--accent-color);
    --teal-dark:   var(--accent-hover);
    --teal-light:  #ccfbf1;
    --teal-glow:   rgba(13, 148, 136, 0.15);
    --navy:        var(--primary-color);
    --navy-mid:    var(--primary-light);
    --text:        var(--text-color);
    --muted:       #94a3b8;
    --border:      var(--border-color);
    --bg:          var(--bg-color);
    --shadow-teal: 0 8px 24px rgba(13, 148, 136, 0.22);

    /* ── Typography ── */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* ── Spacing & Layout ── */
    --container-width: 1200px;
    --header-height: 80px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* ── Shadows & Radius ── */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* ── Transitions ── */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}
