/* 01 — FOUNDATIONS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --np-bg: #fafaf7;
    --np-surface: #ffffff;
    --np-surface-alt: #f4f1ec;
    --np-ink: #1a1612;
    --np-ink-soft: #4a423a;
    --np-ink-mute: #8b8278;
    --np-line: rgba(26,22,18,0.08);
    --np-line-strong: rgba(26,22,18,0.16);
    --np-gold: #b8893a;
    --np-gold-deep: #8a6428;
    --np-gold-soft: #d4b06e;
    --np-gold-glow: rgba(184,137,58,0.12);
    --np-success: #2d8659;
    --np-error: #c14545;
    --np-font-display: 'Cormorant Garamond', Georgia, serif;
    --np-font-body: 'Inter', -apple-system, sans-serif;
    --np-text-xs: 0.75rem;
    --np-text-sm: 0.875rem;
    --np-text-base: 1rem;
    --np-text-lg: 1.125rem;
    --np-text-xl: 1.375rem;
    --np-text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    --np-text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --np-text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);
    --np-space-1: 0.25rem; --np-space-2: 0.5rem; --np-space-3: 0.75rem;
    --np-space-4: 1rem; --np-space-5: 1.5rem; --np-space-6: 2rem;
    --np-space-7: 3rem; --np-space-8: 4rem; --np-space-9: 6rem;
    --np-container: min(1280px, 92vw);
    --np-radius-sm: 6px; --np-radius: 12px; --np-radius-lg: 20px;
    --np-radius-xl: 28px; --np-radius-full: 999px;
    --np-shadow-sm: 0 1px 2px rgba(26,22,18,0.04), 0 1px 3px rgba(26,22,18,0.04);
    --np-shadow: 0 4px 6px rgba(26,22,18,0.04), 0 10px 30px rgba(26,22,18,0.08);
    --np-shadow-lg: 0 20px 50px rgba(26,22,18,0.12), 0 8px 20px rgba(26,22,18,0.08);
    --np-shadow-gold: 0 8px 30px rgba(184,137,58,0.25);
    --np-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --np-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --np-duration: 0.3s;
}

body {
    font-family: var(--np-font-body);
    font-size: var(--np-text-base);
    line-height: 1.65;
    color: var(--np-ink);
    background: var(--np-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--np-font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--np-ink);
}

p { line-height: 1.7; }

::selection { background: var(--np-gold-glow); color: var(--np-ink); }

:focus-visible {
    outline: 2px solid var(--np-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: var(--np-line-strong);
    border-radius: 10px;
    border: 2px solid var(--np-bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--np-gold); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
