/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #3a2a1f;
  background: #fefdf8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(254,253,248,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,96,48,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(60,40,20,0.07); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 72px; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 1.15rem; color: #3d914f;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-links a {
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500; color: #5a4230;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: #fdf0ea; color: #b04a20; }
.nav-cta {
  display: flex; align-items: center; gap: 6px;
  background: #3d914f !important; color: #fff !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #287138 !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: #3a2a1f; padding: 8px; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 60px;
  background: linear-gradient(135deg, #fefdf8 0%, #fdf0ea 50%, #faeccd 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(61,145,79,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(226,173,85,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(61,145,79,0.1); color: #287138;
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700; line-height: 1.15;
  color: #2a1f14; margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem; color: #6b5644; line-height: 1.7;
  margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 24px; align-items: center; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #b04a20; }
.stat-label { font-size: 0.78rem; color: #8a7060; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(201,96,48,0.2); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  transition: all 0.25s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: #c96030; color: #fff;
  box-shadow: 0 4px 20px rgba(201,96,48,0.3);
}
.btn-primary:hover { background: #b04a20; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,96,48,0.35); }
.btn-outline {
  background: transparent; color: #3a2a1f;
  border: 2px solid rgba(58,42,31,0.2);
}
.btn-outline:hover { border-color: #c96030; color: #c96030; }
.btn-white { background: #fff; color: #c96030; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* Hero Image */
.hero-image-wrap { position: relative; }
.hero-image-glow {
  position: absolute; inset: 20px -20px -20px 20px;
  background: linear-gradient(135deg, rgba(61,145,79,0.15), rgba(226,173,85,0.1));
  border-radius: 24px; z-index: 0;
}
.hero-image-wrap img {
  position: relative; z-index: 1;
  border-radius: 24px; width: 100%; height: 720px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(40,30,20,0.15);
}
.hero-float-card {
  position: absolute; bottom: 40px; left: -30px; z-index: 2;
  background: #fff; border-radius: 16px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 40px rgba(40,30,20,0.12);
  animation: float 3s ease-in-out infinite;
}
.float-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #f0faf2; display: flex; align-items: center; justify-content: center;
  color: #3d914f; flex-shrink: 0;
}
.hero-float-card strong { display: block; font-size: 0.88rem; color: #2a1f14; }
.hero-float-card span { font-size: 0.78rem; color: #8a7060; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Section Shared ── */
.section { padding: 100px 24px; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: #c96030;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.2; color: #2a1f14; margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: #6b5644; line-height: 1.7; }
.text-terra-500 { color: #c96030; }

/* ── Services ── */
.services { background: #fefdf8; }
.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(201,96,48,0.08);
  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, #3d914f, #c96030);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(60,40,20,0.1); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, #f0faf2, #ddf4e0);
  display: flex; align-items: center; justify-content: center;
  color: #3d914f; margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600; color: #2a1f14; margin-bottom: 10px;
}
.service-card p { font-size: 0.92rem; color: #6b5644; line-height: 1.65; }

/* ── About ── */
.about { background: linear-gradient(180deg, #fdf0ea 0%, #fefdf8 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(40,30,20,0.12); }
.about-img-main img { width: 100%; height: 620px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -30px; right: -30px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(40,30,20,0.15);
  border: 5px solid #fff;
}
.about-img-secondary img { width: 400px; height: 300px; object-fit: cover; }
.about-experience-badge {
  position: absolute; top: -20px; left: -20px;
  background: linear-gradient(135deg, #c96030, #b04a20);
  color: #fff; border-radius: 20px; padding: 20px 24px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 12px 30px rgba(201,96,48,0.35);
}
.about-experience-badge .exp-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.about-experience-badge .exp-label { font-size: 0.78rem; opacity: 0.85; text-align: center; line-height: 1.3; }
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-text { font-size: 1rem; color: #6b5644; line-height: 1.75; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: #3a2a1f; font-weight: 500; }
.check-icon { color: #3d914f; flex-shrink: 0; }

/* ── Gallery ── */
.gallery { background: #fefdf8; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item { border-radius: 20px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(40,30,20,0.2) 0%, transparent 50%);
  border-radius: 20px; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #2a1f14 0%, #4a3528 50%, #3a2a1f 100%);
  padding: 80px 24px;
}
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-content { max-width: 560px; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 16px;
}
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Contact ── */
.contact { background: linear-gradient(180deg, #fefdf8 0%, #fdf0ea 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-desc { font-size: 1rem; color: #6b5644; line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.detail-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, #f0faf2, #ddf4e0);
  display: flex; align-items: center; justify-content: center;
  color: #3d914f; flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: #8a7060; margin-bottom: 4px; }
.contact-detail span, .contact-detail a { font-size: 1rem; color: #3a2a1f; }
.contact-detail a:hover { color: #c96030; }
.contact-map { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 30px rgba(40,30,20,0.1); }

/* Form */
.contact-form-wrap {
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 12px 40px rgba(60,40,20,0.08);
  border: 1px solid rgba(201,96,48,0.08);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: #2a1f14; margin-bottom: 8px;
}
.form-desc { font-size: 0.92rem; color: #8a7060; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #5a4230; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid rgba(201,96,48,0.15);
  background: #fefdf8; font-family: inherit; font-size: 0.95rem;
  color: #3a2a1f; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #c96030; box-shadow: 0 0 0 3px rgba(201,96,48,0.1);
}
.form-group textarea { resize: vertical; }

/* Success */
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.active { display: block; }
.success-icon { margin: 0 auto 16px; }
.form-success h4 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #2a1f14; margin-bottom: 8px; }
.form-success p { color: #6b5644; font-size: 0.95rem; }

/* ── Footer ── */
.footer { background: #2a1f14; color: rgba(255,255,255,0.6); padding: 60px 24px 30px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #f5c4aa; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact strong { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-contact p, .footer-contact a { font-size: 0.9rem; }
.footer-contact a:hover { color: #f5c4aa; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px; text-align: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.3);
}

/* ── Mobile Menu ── */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(254,253,248,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column; padding: 24px;
    gap: 8px; border-bottom: 1px solid rgba(201,96,48,0.08);
    transform: translateY(-120%); transition: transform 0.35s ease;
    box-shadow: 0 12px 30px rgba(40,30,20,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
  .nav-cta { justify-content: center; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { max-width: 500px; margin: 0 auto; }
  .hero-image-wrap img { height: 500px; }
  .hero-float-card { left: 10px; bottom: 20px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .about-img-main img { height: 400px; }
  .about-img-secondary { right: -10px; bottom: -20px; }
  .about-img-secondary img { width: 260px; height: 200px; }
  .about-content .section-tag, .about-content .section-title { text-align: center; }
  .about-text { text-align: center; }
  .about-features { justify-items: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 260px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info .section-tag, .contact-info .section-title { text-align: center; }
  .contact-desc { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 240px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .hero-image-wrap img { height: 380px; }
  .hero-float-card { display: none; }
}

/* ── Animations ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
