:root {
    --ab-charcoal: #232523;
    --ab-light: #BEBEC8;
    --ab-mid: #8B8C90;
    --ab-dark: #3C3C40;
    --ab-grey: #616266;
    --ab-accent: #2D5A27;
    --ab-gold: #C5A059;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ab-charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(35, 37, 35, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Premium Buttons */
.btn-primary {
    background: var(--ab-charcoal);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.btn-accent {
    background: var(--ab-accent);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.btn-accent:hover {
    background: #1e3d1a;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(45, 90, 39, 0.4);
}

/* Section Spacing */
.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
}

/* Custom Utilities */
.text-balance {
    text-wrap: balance;
}

.heading-gradient {
    background: linear-gradient(to right, var(--ab-charcoal), #4a4d4a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Smooth Focus States */
:focus {
    outline: 2px solid var(--ab-gold);
    outline-offset: 4px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: var(--ab-light);
    border-radius: 10px;
    border: 2px solid #f8fafc;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ab-mid);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}