/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ========== CONTAINER ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== NAV ========== */
.nav-fixed {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav-fixed.scrolled { box-shadow: 0 4px 30px rgba(192, 96, 58, 0.1); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: #5A2C1A; }
.nav-logo-text { font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #6E6860; transition: color 0.2s; position: relative; }
.nav-links a:hover { color: #C0603A; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #C0603A; border-radius: 1px; transition: width 0.2s; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: #C0603A; color: #fff !important; padding: 10px 22px;
  border-radius: 50px; font-weight: 600; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #A04E2E; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192, 96, 58, 0.3); }
.nav-toggle { display: none; margin-left: auto; padding: 8px; }
.nav-toggle-icon { color: #5A2C1A; }

/* ========== HERO ========== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #FDFBF7 0%, #FFF8F5 50%, #FAF5EC 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,96,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192, 96, 58, 0.08); color: #C0603A;
  padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-headline { font-family: 'DM Serif Display', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.15; color: #24211E; margin-bottom: 24px; }
.hero-headline-line { display: block; }
.hero-headline-accent { color: #C0603A; font-style: italic; }
.hero-desc { font-size: 1.1rem; line-height: 1.75; color: #6E6860; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 24px; align-items: center; }
.hero-trust-stat { text-align: left; }
.hero-trust-num { display: block; font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: #C0603A; line-height: 1; }
.hero-trust-label { font-size: 0.78rem; color: #8C857A; margin-top: 4px; display: block; }
.hero-trust-divider { width: 1px; height: 40px; background: #E2CB9E; flex-shrink: 0; }

/* Hero Visual */
.hero-visual { position: relative; min-height: 560px; }
.hero-img-main {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(90, 44, 26, 0.15);
  width: 100%; aspect-ratio: 6/7.5;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute; bottom: -30px; left: -40px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(90, 44, 26, 0.18);
  width: 55%; border: 4px solid #FDFBF7;
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(253, 251, 247, 0.95); backdrop-filter: blur(8px);
  padding: 12px 16px; display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: #5A2C1A;
}
.hero-pattern {
  position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px; opacity: 0.15;
  background-image: radial-gradient(#C0603A 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 600;
  transition: all 0.25s ease; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: #C0603A; color: #fff; border-color: #C0603A; }
.btn-primary:hover { background: #A04E2E; border-color: #A04E2E; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192, 96, 58, 0.3); }
.btn-outline { background: transparent; color: #C0603A; border-color: #C0603A; }
.btn-outline:hover { background: #C0603A; color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: #C0603A; border-color: #fff; }
.btn-white:hover { background: #FDFBF7; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ========== SECTION COMMON ========== */
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #C0603A;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #24211E; line-height: 1.2; margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: #6E6860; line-height: 1.7; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ========== SERVICES ========== */
.services { padding: 100px 0; background: #FDFBF7; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(192, 96, 58, 0.06);
  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, #C0603A, #E07040);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(90, 44, 26, 0.1); border-color: rgba(192, 96, 58, 0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(192, 96, 58, 0.08); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-title { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: #24211E; margin-bottom: 10px; }
.service-desc { font-size: 0.92rem; color: #6E6860; line-height: 1.7; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: #C0603A;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ========== ABOUT ========== */
.about { padding: 100px 0; background: #FAF5EC; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-stack { position: relative; min-height: 560px; }
.about-img-main {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(90, 44, 26, 0.12);
  width: 100%; aspect-ratio: 56/64;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: 40px; right: -30px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(90, 44, 26, 0.15);
  width: 58%; border: 4px solid #FAF5EC;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-exp-badge {
  position: absolute; top: 30px; right: -20px;
  background: #C0603A; color: #fff; border-radius: 20px;
  padding: 20px 24px; text-align: center;
  box-shadow: 0 16px 40px rgba(192, 96, 58, 0.3);
}
.about-exp-num { display: block; font-family: 'DM Serif Display', serif; font-size: 2.2rem; line-height: 1; }
.about-exp-label { font-size: 0.78rem; font-weight: 600; opacity: 0.9; margin-top: 4px; display: block; }
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }
.about-body { font-size: 1rem; line-height: 1.8; color: #6E6860; margin-bottom: 20px; }
.about-values { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.about-value { display: flex; gap: 16px; align-items: flex-start; }
.about-value-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(192, 96, 58, 0.08); display: flex; align-items: center; justify-content: center;
}
.about-value strong { display: block; font-size: 0.95rem; color: #24211E; margin-bottom: 2px; }
.about-value-desc { font-size: 0.88rem; color: #8C857A; line-height: 1.6; }

/* ========== WHY US ========== */
.why-us { padding: 100px 0; background: #FDFBF7; }
.why-us-header { text-align: center; margin-bottom: 60px; }
.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: #fff; border-radius: 20px; padding: 36px 24px;
  border: 1px solid rgba(192, 96, 58, 0.06);
  transition: all 0.3s ease; position: relative;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(90, 44, 26, 0.08); }
.why-card-num {
  font-family: 'DM Serif Display', serif; font-size: 2.4rem;
  color: rgba(192, 96, 58, 0.15); line-height: 1; margin-bottom: 16px;
}
.why-card-title { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: #24211E; margin-bottom: 10px; }
.why-card-desc { font-size: 0.88rem; color: #6E6860; line-height: 1.7; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 100px 0; background: linear-gradient(135deg, #FFF8F5 0%, #FAF5EC 100%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(192, 96, 58, 0.06);
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(90, 44, 26, 0.08); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-text { font-size: 0.95rem; color: #6E6860; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 40px; height: 40px; object-fit: cover; }
.testimonial-name { display: block; font-size: 0.9rem; color: #24211E; }
.testimonial-role { font-size: 0.8rem; color: #8C857A; }

/* ========== CTA BANNER ========== */
.cta-banner { padding: 80px 0; background: #C0603A; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-content { max-width: 520px; }
.cta-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; margin-bottom: 12px; }
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact { padding: 100px 0; background: #FDFBF7; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-tag { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc { font-size: 1rem; color: #6E6860; line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(192, 96, 58, 0.08); display: flex; align-items: center; justify-content: center;
}
.contact-detail strong { display: block; font-size: 0.9rem; color: #24211E; margin-bottom: 2px; }
.contact-detail span, .contact-detail a { font-size: 0.88rem; color: #6E6860; line-height: 1.6; }
.contact-detail a:hover { color: #C0603A; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(90, 44, 26, 0.08); }

/* Contact Form */
.contact-form-wrap { }
.contact-form-card {
  background: #fff; border-radius: 24px; padding: 40px;
  border: 1px solid rgba(192, 96, 58, 0.08);
  box-shadow: 0 16px 48px rgba(90, 44, 26, 0.06);
}
.contact-form-title { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: #24211E; margin-bottom: 8px; }
.contact-form-sub { font-size: 0.9rem; color: #8C857A; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: #524D47; margin-bottom: 6px; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid #EAE5DD; background: #FAFAFA;
  font-size: 0.92rem; color: #24211E; font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #C0603A; box-shadow: 0 0 0 3px rgba(192, 96, 58, 0.1); background: #fff;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B0AAA0; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238C857A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3cpolyline points='6 9 12 15 18 9'%3E%3c/polyline%3E%3c/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success-icon { color: #C0603A; margin-bottom: 16px; }
.form-success-title { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: #24211E; margin-bottom: 8px; }
.form-success-text { font-size: 0.92rem; color: #6E6860; line-height: 1.6; }

/* ========== FOOTER ========== */
.footer { background: #24211E; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-links strong, .footer-contact strong { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { font-size: 0.88rem; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover, .footer-contact a:hover { color: #FFD5C0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; }
.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; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ========== MOBILE NAV ========== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(253, 251, 247, 0.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 24px; gap: 20px;
    border-bottom: 1px solid rgba(192, 96, 58, 0.08);
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 16px 32px rgba(90, 44, 26, 0.08);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 400px; order: -1; }
  .hero-img-float { left: -10px; bottom: -20px; width: 60%; }
  .hero-trust { flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-stack { min-height: 400px; }
  .about-img-secondary { right: -10px; }
  .about-exp-badge { right: -10px; top: 20px; }
  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .why-us-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ========== 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); }
