/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
	--font-heading: "Poppins", sans-serif;
	--font-body: "Source Sans 3", sans-serif;
}

/* Font Face Declarations */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/source-sans-3-v15-latin-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/source-sans-3-v15-latin-600.ttf') format('truetype');
}

@font-face {
    font-family: 'DM Serif Display', serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.3px;
    font-display: swap;
    src: url('../fonts/dm-serif-display-v17-latin-400.woff2') format('woff2');
}

/* Typography */
body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1rem, 0.4vw + 0.9rem, 1.125rem);
    line-height: 1.6;
    color: #333;
}

h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1.hero-title {
    font-weight: 700;
}

h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h2 {
    font-size: clamp(1.5rem, 2.5vw + 1rem, 2.25rem);
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 1rem;
}

strong,
b,
.emphasis,
.cta-text {
    font-family: var(--font-body);
    font-weight: 600;
}

/* Layout */
body {
    margin: 0;
    padding: 0;
}

.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

.site-content {
    padding: 20px 0;
}

.site-footer {
    border-top: 1px solid #ddd;
    margin-top: 40px;
    text-align: center;
}

