/* Font Face Declarations */
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin_Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin_Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin_Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin_Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin_ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Base Typography */
body {
    font-family: var(--font-family);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    background-color: var(--color-background);
    text-transform: uppercase;
    font-weight: 400;
}

/* Headings - All use tracking 500 */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.service-title,
.form-title {
    letter-spacing: var(--tracking-heading);
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 600;
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: 0.15em;
    max-width: 100%;
}

.service-title,
.form-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    letter-spacing: 0.03em;
    max-width: 100%;
    word-wrap: break-word;
}

/* Body Text - Uses tracking 100 */
.body-text,
p,
.form-label,
.contact-link {
    letter-spacing: var(--tracking-body);
    line-height: 1.6;
}

.body-text,
p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: var(--tracking-heading);
    color: var(--color-medium);
    margin-bottom: var(--space-sm);
}

/* Links */
a {
    transition: color var(--transition-base);
}

a:hover {
    color: var(--color-medium);
}
