/* ============================================
   RistoKit — Agenzie
   SaaS premium-editorial · nory.ai inspired
   Deep plum + warm cream + acid lime
   Same design system as Ristoratori
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&family=Instrument+Serif:ital@0;1&display=swap');

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

:root {
    /* ── Core palette ── */
    --plum: #1A0F1F;
    --plum-soft: #241529;
    --plum-lighter: #2E1B35;
    --cream: #F5F0E8;
    --cream-warm: #EDE7DC;
    --cream-dark: #E5DDD0;
    --white: #FFFFFF;
    --off-white: #FAFAF7;

    /* ── Accent (dark backgrounds) ── */
    --lime: #BEFF03;
    --lime-hover: #A8E600;
    --lime-soft: rgba(190, 255, 3, 0.12);
    --lime-glow: rgba(190, 255, 3, 0.20);

    /* ── Accent (light backgrounds) ── */
    --lavender: rgb(176, 176, 254);
    --lavender-hover: rgb(156, 156, 244);
    --lavender-soft: rgba(176, 176, 254, 0.15);
    --lavender-glow: rgba(176, 176, 254, 0.25);

    /* ── Text ── */
    --text-dark: #1A1A1A;
    --text-secondary: #6B6560;
    --text-muted: #9B9590;
    --text-on-dark: #FFFFFF;
    --text-on-dark-muted: rgba(255, 255, 255, 0.55);

    /* ── Semantic ── */
    --green: #22C55E;
    --green-soft: rgba(34, 197, 94, 0.10);
    --red: #EF4444;
    --red-soft: rgba(239, 68, 68, 0.08);
    --blue: #3B82F6;
    --blue-soft: rgba(59, 130, 246, 0.08);
    --amber: #F59E0B;
    --amber-soft: rgba(245, 158, 11, 0.10);

    /* ── Borders & shadows ── */
    --border-light: rgba(26, 15, 31, 0.08);
    --border-cream: rgba(26, 15, 31, 0.06);
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-dark-hover: rgba(255, 255, 255, 0.15);

    --shadow-sm: 0 1px 3px rgba(26, 15, 31, 0.04);
    --shadow-md: 0 4px 16px rgba(26, 15, 31, 0.06);
    --shadow-lg: 0 12px 40px rgba(26, 15, 31, 0.08);
    --shadow-xl: 0 24px 64px rgba(26, 15, 31, 0.12);

    /* ── Typography ── */
    --font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-brand: 'Instrument Serif', Georgia, serif;

    /* ── Spacing ── */
    --section-padding: clamp(100px, 12vw, 160px);
    --container: 1140px;

    /* ── Radius ── */
    --radius: 6px;
    --radius-md: 8px;
    --radius-lg: 8px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

input, select, textarea {
    font-family: var(--font-body);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Selection ── */
::selection {
    background: var(--lavender);
    color: var(--plum);
}
