/* ===============================
   BRAND VARIABLES
================================ */
:root {
    --primary: #B88E2F;
    --dark: #1F1F1F;
    --light: #F9F9F9;
    --radius: 8px;
}

/* ===============================
   GLOBAL TYPOGRAPHY
================================ */
body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
}

/* ===============================
   BUTTONS
================================ */
.elementor-button {
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.elementor-button:hover {
    transform: translateY(-1px);
}

/* ===============================
   SECTIONS
================================ */
.elementor-section {
    position: relative;
}

/* ===============================
   MOBILE FIXES
================================ */
@media (max-width: 767px) {
    .elementor-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}
