body {
    background-color: var(--sand);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--text-base);
    line-height: 1.7;
    position: relative;
}

/* World map background — image from assets */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../assets/backgrounds/Gemini_Generated_Image_64tsyf64tsyf64ts.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

h1 { font-size: var(--text-6xl); letter-spacing: -2px; }
h2 { font-size: var(--text-4xl); letter-spacing: -1px; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
    color: var(--text-secondary);
    max-width: 680px;
}

/* Section labels — light weight, wide spacing like logo tagline */
.section-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 6px;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-lg);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--navy);
    opacity: 0.2;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}
