/* ==========================================================================
   KREDO Marketing - Typography System
   ========================================================================== */

/* Typography Overrides */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Headings - Using Inter for strong, modern look */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 600;
}

h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

/* Typography utility classes */
.serif {
    font-family: 'Georgia', 'Times New Roman', serif;
}

.sans {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mono {
    font-family: 'Courier New', monospace;
}

/* Micro label system */
.micro-label {
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gray-medium);
}

.kicker {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gray-medium);
}

.eyebrow {
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-medium);
}

/* Special text styles */
.lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray-dark);
}

.page-intro {
    font-size: 18px;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* Section titles */
.section-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-medium);
}

.section-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 28px;
    color: var(--black);
    line-height: 1.4;
    font-weight: 500;
}

/* Responsive Typography */
@media (max-width: 900px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .lead,
    .page-intro {
        font-size: 16px;
    }
}
