/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #faf9f7;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ── Section Tags ── */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5B2C6F;
    background: rgba(91, 44, 111, 0.08);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #1a1a2e;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem;
    color: #555;
    max-width: 640px;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-amber {
    background: #F5B041;
    color: #1a1a2e;
    border-color: #F5B041;
}
.btn-amber:hover { background: #e8a030; border-color: #e8a030; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245, 176, 65, 0.35); }
.btn-outline {
    background: transparent;
    color: #1a1a2e;
    border-color: #1a1a2e;
}
.btn-outline:hover { background: #1a1a2e; color: #fff; transform: translateY(-2px); }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: #fff; color: #1a1a2e; border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-small { padding: 8px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px 28px; font-size: 1rem; }

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(91, 44, 111, 0.08);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a2e;
    white-space: nowrap;
}
.nav-logo small {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #5B2C6F;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.nav-logo-icon { color: #5B2C6F; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    transition: color 0.2s;
}
.nav-links a:hover { color: #5B2C6F; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f0eb 50%, #f0e8e0 100%);
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(91, 44, 111, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(245, 176, 65, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5B2C6F;
    background: rgba(91, 44, 111, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero-headline em {
    font-style: normal;
    color: #5B2C6F;
    position: relative;
}
.hero-headline em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(245, 176, 65, 0.4);
    border-radius: 3px;
    z-index: -1;
}
.hero-subheadline {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #444;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    min-height: 480px;
}
.hero-card-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(91, 44, 111, 0.15);
    position: relative;
}
.hero-card-main img { width: 100%; height: 380px; object-fit: cover; }
.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.85));
    color: #fff;
}
.hero-card-label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}
.hero-card-sublabel {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 4px;
}
.hero-float {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 2;
}
.hero-float-1 {
    bottom: 40px;
    left: -40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 180px;
}
.hero-float-2 {
    top: 20px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 180px;
}
.float-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
}
.float-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #5B2C6F;
}
.float-stat-divider {
    height: 1px;
    background: rgba(91, 44, 111, 0.1);
}

/* ── Services ── */
.services {
    padding: 100px 0;
    background: #fff;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #faf9f7;
    border: 1px solid rgba(91, 44, 111, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5B2C6F, #F5B041);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(91, 44, 111, 0.1); border-color: rgba(91, 44, 111, 0.15); }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(91, 44, 111, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(91, 44, 111, 0.12); }
.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}
.service-card p {
    font-size: 0.925rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 20px;
}
.service-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #5B2C6F;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.service-link:hover { gap: 8px; }

/* ── About ── */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f0eb 100%);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
    min-height: 500px;
}
.about-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(91, 44, 111, 0.12);
}
.about-image-main img { width: 100%; height: 500px; object-fit: cover; }
.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    border: 4px solid #faf9f7;
}
.about-image-accent img { width: 300px; height: 200px; object-fit: cover; }
.about-exp-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: #5B2C6F;
    color: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(91, 44, 111, 0.3);
}
.about-exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}
.about-exp-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
    margin-top: 4px;
}
.about-content { max-width: 520px; }
.about-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* ── Process ── */
.process {
    padding: 100px 0;
    background: #1a1a2e;
    color: #fff;
}
.process .section-tag { background: rgba(245, 176, 65, 0.15); color: #F5B041; }
.process .section-title { color: #fff; }
.process .section-desc { color: rgba(255,255,255,0.6); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(245, 176, 65, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}
.step-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.step-content p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}
.step-connector {
    display: none;
}

/* ── Testimonials ── */
.testimonials {
    padding: 100px 0;
    background: #fff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #faf9f7;
    border: 1px solid rgba(91, 44, 111, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(91, 44, 111, 0.08); }
.testimonial-quote { margin-bottom: 20px; }
.testimonial-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5B2C6F, #8B45A6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
}
.testimonial-role {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #5B2C6F 0%, #3d1f50 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(245, 176, 65, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.cta-content { max-width: 520px; }
.cta-headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #fff;
    margin-bottom: 12px;
}
.cta-subheadline {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-actions .btn-amber { background: #F5B041; border-color: #F5B041; color: #1a1a2e; }
.cta-actions .btn-amber:hover { background: #e8a030; border-color: #e8a030; }

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: #faf9f7;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.contact-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(91, 44, 111, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 4px;
}
.contact-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a2e;
}
.contact-value a { color: #5B2C6F; transition: color 0.2s; }
.contact-value a:hover { color: #3d1f50; }

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(91, 44, 111, 0.06);
    border: 1px solid rgba(91, 44, 111, 0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0d8d0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.925rem;
    color: #1a1a2e;
    background: #faf9f7;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #5B2C6F;
    box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.08);
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}
.form-success.active { display: block; }
.success-icon { margin-bottom: 20px; }
.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.form-success p { color: #666; font-size: 0.95rem; }
.contact-form.hidden { display: none; }

/* ── Footer ── */
.footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.6);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 16px;
}
.footer-logo small {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #F5B041;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.footer-logo-icon { color: #F5B041; }
.footer-desc { font-size: 0.875rem; line-height: 1.65; }
.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.footer-links a:hover { color: #F5B041; }
.footer-contact p { font-size: 0.875rem; line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact a:hover { color: #F5B041; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 48px; }
    .hero-content { max-width: 100%; }
    .hero-visual { max-width: 560px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap { max-width: 480px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 249, 247, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(91, 44, 111, 0.08);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-float { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .step-connector { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-image-accent { right: 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 1.75rem; }
    .section-title { font-size: 1.5rem; }
}
