:root {
    --primary-gold: #B89664;
    --dark-charcoal: #1A1A1A;
    --soft-white: #F9F7F2;
    --muted-gray: #707070;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--soft-white);
    color: var(--dark-charcoal);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, .font-serif { font-family: 'Playfair Display', serif; }

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(184, 150, 100, 0.1);
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark-charcoal) !important;
    font-size: 1.2rem;
    line-height: 1;
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin: 0 0.8rem;
    color: var(--dark-charcoal) !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=2000') center/cover;
    padding: 150px 0 80px;
    color: white;
    text-align: center;
}

section { padding: 100px 0; }

.section-title span {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-gold);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title h2 { font-size: 2.8rem; color: var(--dark-charcoal); font-weight: 400; }

/* Service Cards Detailed */
.service-detail-card {
    background: white;
    border: 1px solid #eee;
    padding: 50px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-detail-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-detail-card i {
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: block;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.03;
    font-family: 'Playfair Display', serif;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--muted-gray);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 1px;
    background: var(--primary-gold);
}

/* Process Section */
.process-bg {
    background-color: var(--dark-charcoal);
    color: white;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.process-icon-wrap {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(184, 150, 100, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.process-step:hover .process-icon-wrap {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* Footer */
footer {
    background-color: var(--dark-charcoal);
    color: white;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 2px;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-link:hover { color: var(--primary-gold); }

@media (max-width: 768px) {
    .section-title h2 { font-size: 2rem; }
    .service-detail-card { padding: 30px; }
}