body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    color: #1f2937;
}
.font-serif { font-family: 'Playfair Display', serif; }
.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1593961568249-5c4c77285929?q=80&w=2832&auto=format&fit=crop');
    background-size: cover;
    background-position: center 30%;
}
.accent-text { color: #b48c56; }
.btn-primary {
    background-color: #1f2937;
    color: white;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #374151;
    transform: translateY(-2px);
}
.btn-primary:disabled {
    background-color: #4b5563;
    cursor: not-allowed;
}
.btn-secondary {
    background-color: #b48c56;
    color: white;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: #a07b4c;
    transform: translateY(-2px);
}
.form-input {
    background-color: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
}
.form-input:focus {
    --tw-ring-color: #b48c56;
    border-color: #b48c56;
}
.input-error { border-color: #ef4444 !important; }
.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
.scrolling-wrapper {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}
.scrolling-content {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}
.scrolling-content:hover { animation-play-state: paused; }
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.nav-link {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}
.nav-link:hover {
    border-bottom-color: #b48c56;
    color: #b48c56;
}
.nav-link.active {
    border-bottom-color: #1f2937;
    color: #1f2937;
    font-weight: 600;
}
.modal-overlay {
    transition: opacity 0.3s ease;
}
.modal-content {
    transition: transform 0.3s ease;
}
