::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #C5A059; }
::-webkit-scrollbar-thumb:hover { background: #9C7A3C; }

.text-gradient-gold {
    background: linear-gradient(45deg, #C5A059, #E8D08D, #C5A059);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
}

#mobile-menu {
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 520px;
    opacity: 1;
}

.nav-link-hover {
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}
.nav-link-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to left, #C5A059, #E8D08D, transparent);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(197,160,89,0.6);
}
.nav-link-hover:hover::after { width: 100%; }
.nav-link-hover:hover {
    color: #C5A059 !important;
    text-shadow: 0 0 10px rgba(197,160,89, 0.4);
    transform: translateY(-2px);
}

.brand-mark {
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.brand-mark--nav { height: 2.75rem; }
@media (min-width: 768px) {
    .brand-mark--nav { height: 3.25rem; }
}
.brand-mark--footer {
    height: 2.75rem;
    margin-bottom: 1.5rem;
}

.btn-luxury {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}
.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: #C5A059;
    z-index: -1;
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-luxury:hover::before { width: 100%; }

.subpage-back {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #C5A059;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    transition: color 0.25s ease, transform 0.25s ease;
}
.subpage-back:hover {
    color: #E8D08D;
    transform: translateX(4px);
}
.subpage-back i {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 9999px;
    font-size: 0.85rem;
}

.subpage-hero {
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}
.subpage-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.subpage-prose p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}
.subpage-prose h3 {
    color: #0a0a0a;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}
.subpage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}
.subpage-list li {
    position: relative;
    padding-right: 1.35rem;
    color: #374151;
    line-height: 1.75;
}
.subpage-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: #C5A059;
    transform: rotate(45deg);
}

.subpage-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-right: 3px solid #C5A059;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}
.subpage-card p {
    margin: 0;
    color: #374151;
    line-height: 1.8;
}

.subpage-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}
