/* === BASE STYLES — Moonshine Marketing and Solutions === */

:root {
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.35rem;
    --font-size-2xl: 1.65rem;
    --font-size-3xl: clamp(1.75rem, 3vw, 2.25rem);
    --font-size-4xl: clamp(1.85rem, 3.4vw, 2.5rem);
    --font-size-5xl: clamp(2rem, 4.4vw, 3.15rem);
    --font-size-6xl: clamp(2.25rem, 5vw, 3.5rem);

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.9rem;
    --space-lg: 1.25rem;
    --space-xl: 1.75rem;
    --space-2xl: 2.25rem;
    --space-3xl: 2.75rem;
    --space-4xl: 3.5rem;

    /* Moonshine palette — warm ink + whiskey gold */
    --color-bg: #110e0b;
    --color-bg-2: #18130e;
    --color-primary: #e0a84a;
    --color-primary-deep: #c4892a;
    --color-accent: #f3d7a0;
    --color-text: #f6efe3;
    --color-text-muted: rgba(246, 239, 227, 0.62);
    --color-border: rgba(224, 168, 74, 0.18);
    --color-surface: #19140f;
    --color-ink: #1a1208;

    --transition-fast: 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-medium: 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 22px;
    --nav-height: 78px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-size: var(--font-size-base);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
}

.container {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
}

h1, .h1 {
    font-size: var(--font-size-5xl);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h2, .h2 {
    font-size: var(--font-size-4xl);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h3, .h3 {
    font-size: var(--font-size-xl);
    font-weight: 500;
    line-height: 1.25;
}

h4, .h4 {
    font-size: var(--font-size-lg);
    font-weight: 500;
    line-height: 1.3;
}

.text-lg { font-size: var(--font-size-lg); }
.text-sm { font-size: var(--font-size-sm); }
.text-xs { font-size: var(--font-size-xs); }

.story-highlight {
    color: var(--color-accent);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 768px) {
    .container {
        width: min(1120px, calc(100% - 1.5rem));
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
