/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #2C2C2C;
  background: #FDF8F4;
  line-height: 1.6;
  -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 1.5rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; color: #1A1A1A; }
.accent { color: #C2704E; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(194, 112, 78, 0.12);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.15rem; color: #1A1A1A; }
.nav-logo-icon { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #4A4A4A; transition: color 0.2s; }
.nav-links a:hover { color: #C2704E; }
.nav-cta {
  background: #C2704E; color: #fff !important; padding: 0.55rem 1.4rem; border-radius: 8px;
  font-weight: 600; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #a85a3a; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: #1A1A1A; padding: 0.5rem; margin-left: auto; }

/* ===== HERO ===== */
.hero {
  padding-top: 72px;
  background: linear-gradient(135deg, #FDF8F4 0%, #F5EDE6 50%, #EDE0D6 100%);
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(194,112,78,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(194,112,78,0.1); color: #C2704E;
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700; color: #1A1A1A;
  line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem; color: #5A5A5A; line-height: 1.7;
  max-width: 500px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s ease; cursor: pointer; border: none;
}
.btn-primary { background: #C2704E; color: #fff; }
.btn-primary:hover { background: #a85a3a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,112,78,0.3); }
.btn-outline { background: transparent; color: #1A1A1A; border: 2px solid rgba(26,26,26,0.2); }
.btn-outline:hover { border-color: #C2704E; color: #C2704E; }
.btn-white { background: #fff; color: #C2704E; }
.btn-white:hover { background: #f8f8f8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* HERO CARD + STATS */
.hero-right { position: relative; }
.hero-card-main {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  aspect-ratio: 520/640;
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-stat-card {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 1rem 1.3rem; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.stat-float-1 { bottom: 10%; left: -2rem; }
.stat-float-2 { top: 15%; right: -1.5rem; }
.stat-float-3 { bottom: 2%; right: 0; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #C2704E; }
.stat-label { font-size: 0.78rem; color: #6A6A6A; font-weight: 500; }

/* ===== TRUST BAR ===== */
.trust-bar { background: #1A1A1A; padding: 1.5rem 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; font-weight: 500; color: #d4c4b8; }
.trust-divider { width: 1px; height: 24px; background: rgba(194,112,78,0.3); }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #C2704E;
  margin-bottom: 0.75rem;
}
.section-tag.light { color: rgba(255,255,255,0.7); }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.section-desc { font-size: 1.05rem; color: #6A6A6A; max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 3.5rem; }

/* ===== SERVICES ===== */
.services { padding: 6rem 0; background: #FDF8F4; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff; border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(194,112,78,0.1);
  transition: all 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(194,112,78,0.1); border-color: rgba(194,112,78,0.25); }
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(194,112,78,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-title { font-size: 1.2rem; margin-bottom: 0.6rem; }
.service-desc { font-size: 0.92rem; color: #6A6A6A; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 6rem 0; background: #F5EDE6; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -2rem; right: -1rem;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 4px solid #F5EDE6;
}
.about-accent-box {
  position: absolute; top: -1.5rem; left: -1rem;
  background: #C2704E; color: #fff;
  padding: 1.2rem 1.5rem; border-radius: 14px;
  box-shadow: 0 12px 32px rgba(194,112,78,0.35);
}
.accent-box-number { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; }
.accent-box-text { font-size: 0.82rem; opacity: 0.85; }
.about-content .section-title { margin-bottom: 1.5rem; }
.about-text { font-size: 1rem; color: #5A5A5A; line-height: 1.8; margin-bottom: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 1.5rem; margin-top: 1.5rem; }
.about-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; font-weight: 500; color: #2C2C2C; }

/* ===== GALLERY ===== */
.gallery { padding: 6rem 0; background: #FDF8F4; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-item { border-radius: 14px; overflow: hidden; aspect-ratio: 420/520; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 6rem 0; background: #1A1A1A; }
.testimonials .section-header { text-align: center; }
.testimonials .section-title { color: #fff; }
.testimonials .section-desc { color: #a09080; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 2rem;
  transition: background 0.2s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.08); }
.testimonial-quote { margin-bottom: 1.25rem; opacity: 0.7; }
.testimonial-text { font-size: 0.95rem; color: #d4c4b8; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #C2704E; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.author-name { font-weight: 600; color: #fff; font-size: 0.92rem; }
.author-detail { font-size: 0.8rem; color: #8a7a6a; }

/* ===== CTA ===== */
.cta-section { padding: 5rem 0; background: linear-gradient(135deg, #C2704E 0%, #a05530 100%); }
.cta-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-content { max-width: 560px; }
.cta-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: #fff; margin-bottom: 1rem; }
.cta-text { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 6rem 0; background: #FDF8F4; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-desc { font-size: 1rem; color: #6A6A6A; line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; }
.detail-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(194,112,78,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.detail-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #8A8A8A; margin-bottom: 0.2rem; }
.detail-value { font-size: 0.95rem; color: #2C2C2C; line-height: 1.6; }
.detail-value a { color: #C2704E; font-weight: 500; transition: color 0.2s; }
.detail-value a:hover { color: #a85a3a; }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* FORM */
.contact-form-wrap { }
.contact-form-card {
  background: #fff; border-radius: 20px; padding: 2.5rem;
  border: 1px solid rgba(194,112,78,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.form-title { font-size: 1.5rem; margin-bottom: 0.4rem; }
.form-sub { font-size: 0.9rem; color: #8A8A8A; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #4A4A4A; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 10px;
  border: 1.5px solid #e8e0d8; background: #FDF8F4;
  font-family: 'Inter', sans-serif; font-size: 0.92rem; color: #2C2C2C;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #C2704E; box-shadow: 0 0 0 3px rgba(194,112,78,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.form-success svg { opacity: 0.8; }
.form-success h4 { font-size: 1.3rem; color: #1B4332; }
.form-success p { font-size: 0.92rem; color: #5A7A5A; }

/* ===== FOOTER ===== */
.footer { background: #111; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-desc { font-size: 0.9rem; color: #8a7a6a; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #C2704E; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.9rem; color: #a09080; transition: color 0.2s; }
.footer-col ul a:hover { color: #C2704E; }
.footer-address { font-size: 0.9rem; color: #a09080; line-height: 1.7; font-style: normal; }
.footer-phone, .footer-email { font-size: 0.9rem; margin-top: 0.5rem; }
.footer-phone a, .footer-email a { color: #C2704E; transition: color 0.2s; }
.footer-phone a:hover, .footer-email a:hover { color: #e08a60; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.82rem; color: #6a5a4a; }

/* ===== REVEAL (progressive enhancement) ===== */
.reveal { opacity: 1; transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(253,248,244,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column; padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(194,112,78,0.12);
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.05rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-right { max-width: 400px; margin: 0 auto; }
  .stat-float-1 { left: 0; }
  .stat-float-2 { right: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .cta-card { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
  .hero-stat-card { display: none; }
}
