:root {
    --color-bg-neutral: #faf8f5;
    --color-text-dark: #222222;
    --color-text-muted: #555555;
    --color-text-light: #ffffff;
    --color-ochre: #b45014;
    --color-ochre-light: #e67327;
    --color-ochre-dark: #4a1e05;
    --color-purple-dark: #1e0a28;
    --color-blue-vibrant: #0028a0;
    --color-blue-navy: #050b24;
    --color-magenta-neon: #ff3296;
    --color-footer-bg: #eae6df;
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Arial', 'Helvetica', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-neutral);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.title-condensed {
    font-family: 'Arial Narrow', var(--font-sans);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-serif {
    font-family: var(--font-serif);
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-ochre);
}

.cta-button {
    display: inline-block;
    background-color: var(--color-ochre);
    color: var(--color-text-light);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
    font-size: 14px;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--color-ochre-light);
    transform: translateY(-2px);
}

main {
    min-height: 80vh;
}

section {
    padding: 120px 20px 80px 20px;
}