:root {
    --terracotta: #B8603C;
    --terracotta-dark: #3E271C;
    --sand-light: #F5E6D3;
    --sand-dark: #C4A882;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background: var(--white);
}

.font-dm-serif {
    font-family: 'DM Serif Display', serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--terracotta);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
}

.btn-primary:hover {
    background: #A35230;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184, 96, 60, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

/* INPUTS */
.input-field {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
}

.input-field::placeholder {
    color: var(--gray-400);
}

.input-field:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184, 96, 60, 0.1);
    background: var(--white);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE MENU */
.mobile-link {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-link:last-child {
    border-bottom: none;
}

/* NAV LINKS */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.2s ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .font-dm-serif {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}
