/* Explain: Theme tokens with orange, black, and white primary colors. */
:root {
    --primary-color: #F97316;
    --primary-hover: #EA580C;
    --secondary-color: #171717;
    --accent-color: #F97316;
    --logo-subtitle-color: #171717;
    --button-color: #F97316;
    --background-color: #FFFFFF;
    --surface-color: #FAFAFA;
    --footer-bg: #111111;
    --text-color: #171717;
    --text-muted: #52525B;
    --border-color: rgba(23, 23, 23, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(249, 115, 22, 0.32);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --field-bg: rgba(255, 255, 255, 0.9);
    --accent-soft: rgba(249, 115, 22, 0.12);
    --accent-dark: #C2410C;
    --terracotta-soft: rgba(23, 23, 23, 0.08);
    --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.06);
    --shadow-button: 0 16px 36px rgba(249, 115, 22, 0.25);
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-logo: 'Playfair Display', serif;
}