/* --- VARIABLES & RESET --- */
:root {
    --primary: #d4a574; /* Warm Gold */
    --secondary: #8b6f5c; /* Muted Bronze */
    --accent: #c9a87c; /* Soft Champagne */
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --light: #faf9f7;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-blur: blur(20px);
    --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
    --font-main: 'DM Sans', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background-color: var(--dark);
    color: #b8b0a8;
    line-height: 1.9;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 120px 0; }
.bg-darker { background: var(--darker); }
.bg-gradient { background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%); }

.text-link {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px dashed var(--primary);
    transition: var(--transition);
}
.text-link:hover { color: var(--accent); border-color: var(--accent); }

.section-header { text-align: center; margin-bottom: 80px; }
.tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(212, 165, 116, 0.12);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #f0ebe6;
    margin-bottom: 16px;
    line-height: 1.15;
    font-weight: 600;
}
.section-header.light h2 { color: #f0ebe6; }

/* --- GLASSMORPHISM --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.glass-pill {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 8px 24px;
    display: inline-block;
    font-size: 0.85rem;
    color: #f0ebe6;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- BUTTONS --- */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #0d0d0d;
}
.btn-glow:hover {
    box-shadow: 0 0 40px rgba(212, 165, 116, 0.4);
    transform: translateY(-3px);
}
.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: #f0ebe6;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--primary);
    color: var(--primary);
}
.full-width { width: 100%; }

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 14px 0;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: #f0ebe6;
    letter-spacing: 1px;
}
.accent { color: var(--primary); }
.nav-links { display: flex; gap: 38px; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; opacity: 0.75; letter-spacing: 0.5px; }
.nav-links a:hover { opacity: 1; color: var(--primary); }
.mobile-toggle { display: none; cursor: pointer; }
.mobile-toggle span {
    display: block; width: 26px; height: 1.5px;
    background: #f0ebe6; margin: 7px 0;
    transition: var(--transition);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 0 110px;
    overflow: hidden;
}
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    z-index: -1;
    animation: float 22s infinite ease-in-out;
}
.shape-1 { width: 550px; height: 550px; background: var(--secondary); top: -12%; left: -18%; opacity: 0.15; }
.shape-2 { width: 450px; height: 450px; background: var(--primary); bottom: -8%; right: -12%; opacity: 0.12; animation-delay: 6s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(35px, -45px) scale(1.08); }
}

.hero-content { max-width: 880px; position: relative; z-index: 2; }
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    color: #f0ebe6;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.hero-text { font-size: 1.2rem; color: #9a918a; margin-bottom: 48px; max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.hero-cta-group { display: flex; gap: 22px; justify-content: center; margin-bottom: 75px; flex-wrap: wrap; }

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    padding: 38px 55px;
    margin-top: 25px;
}
.stat-item { text-align: center; }
.stat-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f0ebe6;
    font-family: var(--font-heading);
}
.stat-item p { font-size: 0.75rem; color: #8a817a; margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.stat-divider { width: 1px; height: 45px; background: var(--glass-border); }

/* --- SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.service-card {
    padding: 48px 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.1);
}
.icon-box { font-size: 2.6rem; margin-bottom: 26px; }
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 14px;
    color: #f0ebe6;
    font-weight: 600;
}
.service-card p { font-size: 0.95rem; margin-bottom: 22px; line-height: 1.7; }
.features { display: flex; gap: 10px; flex-wrap: wrap; }
.features li {
    font-size: 0.7rem;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    color: #9a918a;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- ARTICLE --- */
.article-container { max-width: 860px; }
.glass-article {
    padding: 85px 75px;
    background: rgba(255,255,255,0.015);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
}
.prose h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin: 65px 0 26px;
    color: #f0ebe6;
    font-weight: 600;
}
.prose h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin: 45px 0 20px;
    color: #ddd5ce;
    font-weight: 600;
}
.prose p { margin-bottom: 26px; color: #b8b0a8; font-size: 1.05rem; line-height: 1.9; }
.prose ul, .prose ol { margin: 26px 0 32px 26px; }
.prose li { margin-bottom: 16px; padding-left: 14px; position: relative; line-height: 1.8; }
.prose li::before {
    content: '✦';
    position: absolute;
    left: -22px;
    color: var(--primary);
    font-size: 0.8rem;
    top: 4px;
}
.callout-box {
    margin: 55px 0;
    padding: 38px;
    border-left: 3px solid var(--primary);
    background: rgba(212, 165, 116, 0.04);
    border-radius: 0 16px 16px 0;
}
.callout-box h4 { color: var(--primary); margin-bottom: 14px; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; }

/* --- TIMELINE --- */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
    margin-top: 65px;
}
.timeline-item {
    padding: 42px 26px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.step-number {
    font-size: 3.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    line-height: 1;
}
.timeline-item h3 { color: #f0ebe6; margin-bottom: 14px; font-size: 1.15rem; font-family: var(--font-heading); font-weight: 600; }
.timeline-connector {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    z-index: 1;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.testimonial-card { padding: 52px; }
.stars { color: var(--primary); margin-bottom: 26px; letter-spacing: 5px; font-size: 1rem; }
.client-info { display: flex; align-items: center; gap: 18px; margin-top: 32px; }
.avatar {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #0d0d0d; font-size: 1rem;
    font-family: var(--font-heading);
}
.client-info strong { display: block; color: #f0ebe6; font-size: 1rem; font-weight: 600; }
.client-info span { font-size: 0.8rem; color: #7a716a; font-weight: 500; letter-spacing: 0.5px; }

/* --- FAQ --- */
.faq-container { max-width: 780px; }
.faq-item { margin-bottom: 12px; border-radius: 14px; overflow: hidden; }
.faq-item summary {
    padding: 26px 34px;
    cursor: pointer;
    font-weight: 600;
    color: #f0ebe6;
    list-style: none;
    position: relative;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 34px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
    font-weight: 300;
    font-family: var(--font-heading);
}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item p {
    padding: 0 34px 30px;
    color: #9a918a;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 22px;
    line-height: 1.9;
}

/* --- CONTACT --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}
.contact-info, .contact-form { padding: 58px; }
.contact-info h2 { font-family: var(--font-heading); font-size: 2.6rem; margin-bottom: 20px; color: #f0ebe6; font-weight: 600; }
.info-item { margin: 32px 0; }
.info-item .label {
    display: block; font-size: 0.7rem; color: #6a615a;
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2.5px; font-weight: 700;
}
.info-item a, .info-item p { font-size: 1.2rem; color: #f0ebe6; font-weight: 500; font-family: var(--font-heading); }
.form-group { margin-bottom: 22px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 18px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px; color: #f0ebe6;
    font-family: var(--font-main); font-size: 0.95rem; outline: none;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(212, 165, 116, 0.04);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- FOOTER --- */
.footer {
    background: var(--darker);
    padding: 95px 0 40px;
    border-top: 1px solid var(--glass-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 75px;
}
.footer-col h4 { color: #f0ebe6; margin-bottom: 32px; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; }
.footer-col p { color: #6a615a; margin-bottom: 16px; font-size: 0.9rem; line-height: 1.7; }
.footer-col ul li { margin-bottom: 18px; }
.footer-col ul li a { color: #6a615a; font-size: 0.9rem; font-weight: 500; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }
.copyright {
    text-align: center; padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.03);
    color: #4a413a; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.5px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .timeline { grid-template-columns: 1fr 1fr; }
    .timeline-connector { display: none; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .glass-article { padding: 55px 38px; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 85%; height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column; justify-content: center;
        transition: var(--transition);
    }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block; z-index: 1001; }
    .hero h1 { font-size: 2.5rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .trust-indicators { flex-direction: column; gap: 28px; padding: 38px; }
    .stat-divider { width: 45px; height: 1px; }
    .timeline { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 45px; }
    .contact-info, .contact-form { padding: 38px; }
}

/* --- ANIMATION CLASSES --- */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }