/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #3D2C24;
  background: #FDF8F4;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Lora', Georgia, serif; font-weight: 600; line-height: 1.25; color: #2C1E16; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C0603A;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 20px; }
.section-desc { color: #6B5344; font-size: 1.05rem; max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  border-radius: 60px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #C0603A;
  color: #fff;
  padding: 14px 32px;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(192, 96, 58, 0.3);
}
.btn-primary:hover { background: #A84E2C; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(192, 96, 58, 0.4); }
.btn-secondary {
  background: transparent;
  color: #C0603A;
  padding: 14px 32px;
  font-size: 0.95rem;
  border: 2px solid #C0603A;
}
.btn-secondary:hover { background: #C0603A; color: #fff; transform: translateY(-2px); }
.btn-medium { padding: 14px 32px; font-size: 0.95rem; }
.btn-large { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px 32px; font-size: 1rem; }
.btn-white {
  background: #fff;
  color: #C0603A;
  padding: 18px 40px;
  font-size: 1.05rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { background: #FDF6F0; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 18px 40px;
  font-size: 1.05rem;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(61, 44, 36, 0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 40px; height: 40px;
  background: #C0603A;
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.nav-logo-text { font-family: 'Lora', serif; font-weight: 600; font-size: 1.1rem; color: #2C1E16; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a { font-size: 0.9rem; font-weight: 500; color: #5A4234; transition: color 0.2s; }
.nav-menu a:hover { color: #C0603A; }
.nav-cta {
  background: #C0603A !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 60px !important;
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
}
.nav-cta:hover { background: #A84E2C !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle-bar { width: 24px; height: 2px; background: #3D2C24; border-radius: 2px; transition: all 0.3s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  padding: 120px 0 0;
  background: #FDF8F4;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(192, 96, 58, 0.1);
  color: #C0603A;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 60px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: #2C1E16;
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-headline em { color: #C0603A; font-style: italic; }
.hero-desc { color: #6B5344; font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 24px; align-items: center; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num { font-family: 'Lora', serif; font-weight: 600; font-size: 1.1rem; color: #2C1E16; }
.hero-stat-label { font-size: 0.8rem; color: #8B7060; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(192, 96, 58, 0.25); }
.hero-visual { position: relative; }
.hero-img-hero { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(44, 30, 22, 0.15); }
.hero-img-hero img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute;
  bottom: -40px;
  left: -60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44, 30, 22, 0.2);
  border: 4px solid #FDF8F4;
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute;
  top: 40px;
  right: -30px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(44, 30, 22, 0.12);
  max-width: 280px;
}
.hero-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #C0603A;
}
.hero-card-text { font-size: 0.9rem; color: #5A4234; line-height: 1.55; }
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #F5E6D8;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ─── ABOUT ─── */
.about { padding: 100px 0; background: #F5E6D8; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual img { border-radius: 24px; width: 100%; height: 640px; object-fit: cover; box-shadow: 0 20px 60px rgba(44, 30, 22, 0.12); }
.about-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: #C0603A;
  color: #fff;
  padding: 14px 24px;
  border-radius: 60px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600;
  box-shadow: 0 8px 24px rgba(192, 96, 58, 0.35);
}
.about-badge svg { flex-shrink: 0; }
.about-copy .section-title { margin-bottom: 24px; }
.about-text { color: #5A4234; font-size: 1.02rem; line-height: 1.75; margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.about-feature { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; font-weight: 600; color: #3D2C24; }
.about-feature-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #C0603A;
}
.about-copy .btn { margin-top: 8px; }

/* ─── SERVICES ─── */
.services { padding: 100px 0; background: #FDF8F4; }
.section-header { margin-bottom: 60px; }
.section-header .section-title { margin-bottom: 16px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44, 30, 22, 0.06);
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(44, 30, 22, 0.12); }
.service-card-visual { overflow: hidden; height: 200px; }
.service-card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-visual img { transform: scale(1.05); }
.service-card-body { padding: 32px; }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #C0603A;
  margin-bottom: 20px;
}
.service-title { font-size: 1.35rem; margin-bottom: 12px; }
.service-desc { color: #6B5344; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: #5A4234;
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: #C0603A;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── AREAS ─── */
.areas { padding: 100px 0; background: #F5E6D8; }
.areas-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.areas-desc { color: #5A4234; font-size: 1.02rem; line-height: 1.75; margin-bottom: 32px; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.area-tag {
  background: #fff;
  color: #5A4234;
  padding: 10px 20px;
  border-radius: 60px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid rgba(192, 96, 58, 0.15);
  transition: all 0.2s;
}
.area-tag:hover { background: #C0603A; color: #fff; border-color: #C0603A; }
.areas-visual { position: relative; }
.areas-visual img { border-radius: 24px; width: 100%; height: 480px; object-fit: cover; box-shadow: 0 20px 60px rgba(44, 30, 22, 0.12); }
.areas-map-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 24px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(44, 30, 22, 0.12);
  font-size: 0.9rem; color: #5A4234;
}
.areas-map-card svg { color: #C0603A; flex-shrink: 0; }
.areas-copy .btn { margin-top: 8px; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 0; background: #FDF8F4; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(44, 30, 22, 0.06);
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44, 30, 22, 0.1); }
.testimonial-quote {
  position: absolute;
  top: 24px; right: 32px;
  font-family: 'Lora', serif;
  font-size: 5rem;
  color: rgba(192, 96, 58, 0.1);
  line-height: 1;
}
.testimonial-text { font-size: 1rem; color: #5A4234; line-height: 1.75; margin-bottom: 28px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #C0603A;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: #2C1E16; }
.testimonial-detail { font-size: 0.82rem; color: #8B7060; }

/* ─── CTA ─── */
.cta { padding: 100px 0; background: #C0603A; position: relative; overflow: hidden; }
.cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-copy .section-label { color: rgba(255,255,255,0.7); }
.cta-title { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.cta-desc { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.7; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ─── CONTACT ─── */
.contact { padding: 100px 0; background: #F5E6D8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-desc { color: #5A4234; font-size: 1.02rem; line-height: 1.75; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #C0603A;
}
.contact-detail-label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #8B7060; margin-bottom: 4px; }
.contact-detail-value { font-size: 1rem; color: #3D2C24; font-weight: 500; line-height: 1.6; }
.contact-detail-value a { color: #C0603A; transition: color 0.2s; }
.contact-detail-value a:hover { color: #A84E2C; }
.contact-img { border-radius: 20px; overflow: hidden; box-shadow: 0 12px 40px rgba(44, 30, 22, 0.1); }
.contact-img img { width: 100%; height: 260px; object-fit: cover; }
.contact-form-wrap { }
.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 8px 40px rgba(44, 30, 22, 0.08);
}
.contact-form-title { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-desc { color: #6B5344; font-size: 0.95rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #3D2C24; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E8D5C4;
  border-radius: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #3D2C24;
  background: #FDF8F4;
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C0603A;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B89880; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success-icon { color: #4CAF50; margin-bottom: 16px; }
.form-success-title { font-size: 1.4rem; margin-bottom: 8px; color: #2C1E16; }
.form-success-text { color: #6B5344; font-size: 0.95rem; }

/* ─── FOOTER ─── */
.footer { background: #2C1E16; 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-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark {
  width: 40px; height: 40px;
  background: #C0603A;
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 0.85rem;
}
.footer-logo-text { font-family: 'Lora', serif; font-weight: 600; font-size: 1.1rem; color: #fff; }
.footer-tagline { font-size: 0.92rem; line-height: 1.7; max-width: 280px; }
.footer-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-links nav { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.92rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: #C0603A; }
.footer-contact p { font-size: 0.92rem; line-height: 1.7; }
.footer-contact-link { color: #C0603A; transition: color 0.2s; }
.footer-contact-link:hover { color: #D4784F; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-size: 0.85rem; }
.footer-disclaimer { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(192, 96, 58, 0.1);
    box-shadow: 0 8px 32px rgba(44, 30, 22, 0.08);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-img-accent { left: -20px; bottom: -24px; }
  .hero-card { right: -12px; top: 20px; }
  .about-grid,
  .areas-layout,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .about-badge { left: 16px; }
  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .cta-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
