/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #3D2C2C;
  background: #FDF6EE;
  line-height: 1.7;
  overflow-x: hidden;
}
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; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.25; color: #2A1F1F; }
.text-accent { color: #C0603A; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.1);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(192, 96, 58, 0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 800; color: #2A1F1F; line-height: 1.2; }
.logo-accent { color: #C0603A; }

/* NAV */
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list a { padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: background 0.2s, color 0.2s; }
.nav-list a:hover { background: rgba(192, 96, 58, 0.1); color: #C0603A; }
.nav-cta { background: #C0603A !important; color: #fff !important; }
.nav-cta:hover { background: #A84E2E !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 24px; height: 2px; background: #2A1F1F; border-radius: 2px; transition: transform 0.3s; }
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -7px; }
.hamburger::after { content: ''; position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { padding: 120px 0 0; background: #FDF6EE; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding-bottom: 80px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192, 96, 58, 0.1); color: #C0603A;
  padding: 8px 18px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-title { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 20px; }
.hero-subtitle { font-size: 1.15rem; color: #6B5555; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; color: #6B5555; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; transition: all 0.25s ease;
}
.btn-primary { background: #C0603A; color: #fff; border-color: #C0603A; }
.btn-primary:hover { background: #A84E2E; border-color: #A84E2E; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192, 96, 58, 0.3); }
.btn-secondary { background: transparent; color: #C0603A; border-color: #C0603A; }
.btn-secondary:hover { background: rgba(192, 96, 58, 0.08); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* HERO IMAGE */
.hero-image-wrap { position: relative; }
.hero-image-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(192, 96, 58, 0.15); }
.hero-image-main img { width: 100%; height: 500px; object-fit: cover; }
.hero-image-float {
  position: absolute; bottom: -32px; left: -40px;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 4px solid #FDF6EE;
}
.hero-image-float img { width: 280px; height: 200px; object-fit: cover; }
.float-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(192, 96, 58, 0.9); color: #fff;
  padding: 10px 16px; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block; font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: #C0603A;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: #6B5555; max-width: 640px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: #FDF6EE; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(192, 96, 58, 0.06);
  border: 1px solid rgba(192, 96, 58, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(192, 96, 58, 0.12); }
.service-icon { width: 64px; height: 64px; border-radius: 16px; background: rgba(192, 96, 58, 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card h3 { font-family: 'Nunito', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; color: #6B5555; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #F5E6D3; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(192, 96, 58, 0.15); }
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -28px; right: -28px;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 4px solid #F5E6D3;
}
.about-img-accent img { width: 300px; height: 200px; object-fit: cover; }
.about-content .lead { font-size: 1.1rem; color: #3D2C2C; margin-bottom: 16px; }
.about-content p { color: #6B5555; margin-bottom: 24px; }
.about-stats { display: flex; gap: 40px; margin-bottom: 32px; }
.stat { text-align: center; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: #C0603A; }
.stat-label { font-size: 0.85rem; color: #6B5555; font-weight: 600; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: #FDF6EE; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-card {
  background: #fff; border-radius: 20px; padding: 36px 24px;
  border: 1px solid rgba(192, 96, 58, 0.08);
  box-shadow: 0 4px 20px rgba(192, 96, 58, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative; overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(192, 96, 58, 0.12); }
.why-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; color: rgba(192, 96, 58, 0.1); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: #6B5555; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #F5E6D3; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-details { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(192, 96, 58, 0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #C0603A; margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; color: #3D2C2C; }
.contact-item a { color: #3D2C2C; text-decoration: underline; text-underline-offset: 3px; }
.contact-item a:hover { color: #C0603A; }
.map-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(192, 96, 58, 0.1); }

/* FORM */
.contact-form-wrap { background: #fff; border-radius: 24px; padding: 44px; box-shadow: 0 8px 40px rgba(192, 96, 58, 0.1); }
.contact-form h3 { font-size: 1.6rem; margin-bottom: 6px; }
.form-hint { font-size: 0.9rem; color: #6B5555; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; color: #2A1F1F; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border-radius: 12px;
  border: 2px solid #E8D5C4; background: #FDF6EE;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: #3D2C2C;
  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: #C0603A; box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex; align-items: center; gap: 12px;
  background: #E8F5E9; border: 1px solid #A5D6A7;
  border-radius: 12px; padding: 16px 20px;
  margin-top: 16px; font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer { background: #2A1F1F; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer .logo-text { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; }
.footer h4 { font-family: 'Nunito', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: #C0603A; margin-bottom: 20px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.9rem; transition: color 0.2s; }
.footer ul a:hover { color: #C0603A; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; font-size: 0.85rem; }
.footer-bottom p { text-align: center; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed; top: 76px; left: 0; right: 0;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column; padding: 24px;
    gap: 4px; border-bottom: 1px solid rgba(192, 96, 58, 0.1);
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }
  .nav-list.open { transform: translateY(0); opacity: 1; }
  .nav-list a { width: 100%; text-align: center; padding: 12px 16px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-float { left: 16px; bottom: -20px; }
  .hero-image-main img { height: 360px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { right: 16px; bottom: -20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}
