/* ===== 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: #2D1F2B;
    background: #FFFAF7;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F4D4D8;
    --blush-light: #FCE8EA;
    --blush-pale: #FFF5F6;
    --cream: #FFFAF7;
    --warm-white: #FFFDFC;
    --text-dark: #2D1F2B;
    --text-mid: #5A4552;
    --text-light: #8A7280;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.06);
    --shadow-md: 0 8px 30px rgba(123, 45, 59, 0.1);
    --shadow-lg: 0 20px 60px rgba(123, 45, 59, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p { color: var(--text-mid); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px; font-family: 'Inter', sans-serif;
    font-weight: 500; font-size: 0.95rem; border: 2px solid transparent;
    cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.btn-primary:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn-outline:hover { background: var(--burgundy); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-white { background: #fff; color: var(--burgundy); border-color: #fff; }
.btn-white:hover { background: var(--blush-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION TAGS ===== */
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--burgundy); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--blush); border-radius: 2px; }
.section-tag-light { color: rgba(255,255,255,0.8); }
.section-tag-light::before { background: rgba(255,255,255,0.4); }
.section-title { margin-bottom: 20px; }
.section-title-light { color: #fff; }
.section-desc { font-size: 1.1rem; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255, 250, 247, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.06);
    transition: all var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex; align-items: center; gap: 32px;
    padding: 16px 24px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { color: var(--burgundy); }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--text-dark); }
.logo-accent { color: var(--burgundy); font-weight: 400; font-style: italic; }
.logo-accent-light { color: var(--blush); }
.nav { display: flex; align-items: center; gap: 32px; flex: 1; }
.nav a {
    font-size: 0.9rem; font-weight: 500; color: var(--text-mid);
    transition: color var(--transition); position: relative;
}
.nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--burgundy); transition: width var(--transition); border-radius: 2px;
}
.nav a:hover { color: var(--burgundy); }
.nav a:hover::after { width: 100%; }
.nav-cta { display: none; }
.menu-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; padding: 8px;
}
.menu-toggle span {
    width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    padding: 140px 0 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-pale) 50%, var(--blush-light) 100%);
    position: relative; overflow: hidden;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    padding-bottom: 80px;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--burgundy); margin-bottom: 24px;
    background: rgba(123, 45, 59, 0.08); padding: 8px 16px; border-radius: 50px;
}
.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.1; margin-bottom: 24px; color: var(--text-dark);
}
.hero-headline em { color: var(--burgundy); font-style: italic; }
.hero-sub { font-size: 1.15rem; color: var(--text-mid); margin-bottom: 40px; max-width: 480px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-mid); font-weight: 500; }
.trust-item svg { color: var(--burgundy); }

/* Hero Visual */
.hero-visual { position: relative; min-height: 580px; }
.hero-img-main {
    width: 100%; max-width: 480px; border-radius: var(--radius-xl);
    overflow: hidden; box-shadow: var(--shadow-lg);
    position: relative; z-index: 2;
}
.hero-img-main img { width: 100%; height: 640px; object-fit: cover; }
.hero-img-float {
    position: absolute; bottom: 40px; right: -30px; z-index: 3;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid #fff;
}
.hero-img-float img { width: 280px; height: 200px; object-fit: cover; }
.float-badge {
    background: #fff; padding: 10px 16px; font-size: 0.82rem;
    font-weight: 600; color: var(--burgundy); display: flex;
    align-items: center; gap: 6px; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.hero-accent-circle {
    position: absolute; top: -40px; right: 40px; width: 200px; height: 200px;
    border-radius: 50%; background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 100%);
    z-index: 1; opacity: 0.7;
}
.hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0;
    color: var(--cream);
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--cream); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    background: #fff; border-radius: var(--radius-lg); padding: 40px 32px;
    border: 1px solid rgba(123, 45, 59, 0.06);
    transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush));
    transform: scaleX(0); transition: transform var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px; height: 64px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--blush-pale) 0%, var(--blush-light) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--burgundy); margin-bottom: 24px;
    transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--burgundy); color: #fff; }
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-light); }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--blush-pale); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-stack { position: relative; height: 560px; }
.about-img-1 {
    position: absolute; top: 0; left: 0; width: 70%; border-radius: var(--radius-xl);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-1 img { width: 100%; height: 560px; object-fit: cover; }
.about-img-2 {
    position: absolute; bottom: 0; right: 0; width: 55%; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid #fff;
}
.about-img-2 img { width: 100%; height: 240px; object-fit: cover; }
.about-experience {
    position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%);
    background: var(--burgundy); color: #fff; padding: 28px 32px;
    border-radius: var(--radius-lg); text-align: center; z-index: 2;
    box-shadow: var(--shadow-lg);
}
.about-experience .exp-number {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 700; line-height: 1;
}
.about-experience .exp-label {
    display: block; font-size: 0.8rem; opacity: 0.8; margin-top: 4px;
    font-weight: 500; letter-spacing: 0.05em;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text { margin-bottom: 16px; font-size: 1.02rem; }
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; align-items: center; gap: 14px; }
.value-check {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blush-pale), var(--blush-light));
    display: flex; align-items: center; justify-content: center; color: var(--burgundy);
}
.value-item span { font-size: 0.95rem; color: var(--text-mid); font-weight: 500; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%); position: relative; overflow: hidden; }
.why-us::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(244, 212, 216, 0.08) 0%, transparent 60%);
}
.why-us-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    position: relative; z-index: 1;
}
.why-content .section-title { margin-bottom: 20px; }
.why-desc { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 48px; line-height: 1.8; }
.why-list { display: flex; flex-direction: column; gap: 40px; }
.why-item { display: flex; gap: 24px; }
.why-num {
    font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700;
    color: rgba(255,255,255,0.15); line-height: 1; flex-shrink: 0; width: 48px;
}
.why-item h4 { color: #fff; margin-bottom: 8px; font-size: 1.15rem; }
.why-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; }
.why-visual { position: relative; }
.why-img {
    border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
    position: relative;
}
.why-img img { width: 100%; height: 600px; object-fit: cover; }
.why-stat-card {
    position: absolute; bottom: -24px; left: -24px; background: #fff;
    padding: 28px 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.stat-number {
    font-family: 'Playfair Display', serif; font-size: 2.8rem;
    font-weight: 700; color: var(--burgundy); line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: #fff; border-radius: var(--radius-lg); padding: 40px 32px;
    border: 1px solid rgba(123, 45, 59, 0.06); transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; color: #E8A84B; }
.testimonial-text {
    font-size: 0.98rem; line-height: 1.8; color: var(--text-mid);
    margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blush) 0%, var(--burgundy) 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 600; font-size: 1.1rem;
}
.author-name { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
.author-location { font-size: 0.82rem; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--blush-pale) 0%, var(--blush-light) 100%); }
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.cta-content { flex: 1; min-width: 280px; }
.cta-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.cta-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc { font-size: 1.02rem; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm); flex-shrink: 0;
    background: linear-gradient(135deg, var(--blush-pale), var(--blush-light));
    display: flex; align-items: center; justify-content: center; color: var(--burgundy);
}
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 2px; font-family: 'Inter', sans-serif; }
.contact-item span, .contact-item a { font-size: 1rem; color: var(--text-dark); font-weight: 500; }
.contact-item a:hover { color: var(--burgundy); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }

/* Contact Form */
.contact-form-wrap {
    background: #fff; border-radius: var(--radius-xl); padding: 48px;
    box-shadow: var(--shadow-md); border: 1px solid rgba(123, 45, 59, 0.06);
}
.form-title { font-size: 1.5rem; margin-bottom: 8px; }
.form-desc { font-size: 0.95rem; color: var(--text-light); margin-bottom: 32px; }
.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: 500; color: var(--text-mid);
    margin-bottom: 8px;
}
.form-group input, .form-group textarea {
    width: 100%; padding: 14px 18px; border: 1.5px solid rgba(123, 45, 59, 0.12);
    border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 0.95rem;
    color: var(--text-dark); background: var(--cream); transition: all var(--transition);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--burgundy); background: #fff;
    box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none; text-align: center; padding: 40px 20px;
}
.form-success.active { display: block; }
.success-icon { color: var(--burgundy); margin-bottom: 16px; }
.form-success h4 { font-size: 1.4rem; margin-bottom: 8px; color: var(--text-dark); }
.form-success p { color: var(--text-light); }
.contact-form.hidden { display: none; }

/* ===== FOOTER ===== */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
    padding-bottom: 60px;
}
.footer-brand p { margin-top: 16px; font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-links h4, .footer-contact h4 {
    color: #fff; font-family: 'Inter', sans-serif; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; font-weight: 600;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.92rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--blush); }
.footer-contact p { font-size: 0.92rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { color: var(--blush); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }
.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: 16px;
    font-size: 0.85rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--blush); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: #fff; z-index: 999; padding: 100px 40px 40px;
    box-shadow: var(--shadow-lg); transition: right var(--transition);
    display: flex; flex-direction: column; gap: 24px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
    font-size: 1.1rem; font-weight: 500; color: var(--text-dark);
    padding: 12px 0; border-bottom: 1px solid rgba(123, 45, 59, 0.06);
}
.mobile-nav a:hover { color: var(--burgundy); }
.mobile-overlay {
    position: fixed; inset: 0; background: rgba(45, 31, 43, 0.4);
    z-index: 998; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* ===== 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-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 500px; }
    .hero-img-main img { height: 480px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { max-width: 500px; }
    .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
    .why-visual { max-width: 460px; }
    .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, .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    .hero { padding: 120px 0 0; }
    .hero-grid { gap: 40px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-visual { min-height: 400px; }
    .hero-img-main img { height: 400px; }
    .hero-img-float { right: 0; bottom: 20px; }
    .hero-img-float img { width: 200px; height: 160px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-img-stack { height: 400px; }
    .about-img-1 img { height: 400px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .contact-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .why-stat-card { left: 50%; transform: translateX(-50%); bottom: -20px; }
}

@media (max-width: 480px) {
    .hero-trust { flex-direction: column; gap: 12px; }
    .hero-accent-circle { width: 120px; height: 120px; top: -20px; right: 10px; }
    .about-experience { padding: 20px 24px; }
    .about-experience .exp-number { font-size: 1.8rem; }
}
