.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

body {
    font-family: 'Varela Round', sans-serif;
    background-color: #fcf9f4;
    color: #1c1c19;
}

h1, h2, h3 {
    font-family: 'Rubik', 'Varela Round', sans-serif;
}

/* Nav & footer link touch targets */
nav a, footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.diagonal-pattern {
    background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(116, 90, 48, 0.03) 20px, rgba(116, 90, 48, 0.03) 40px);
}

.glass-effect {
    background: rgba(252, 249, 244, 0.8);
    backdrop-filter: blur(20px);
}

/* Mobile menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.open {
    max-height: 500px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Page transition */
main {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Counter animation */
.counter-animate {
    transition: all 0.6s ease-out;
}
