/* ========== 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, sans-serif;
  background: #f7f4ee;
  color: #1a2e23;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
em { font-style: italic; }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 77, 46, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(26, 46, 35, 0.08); }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-mark {
  width: 44px; height: 44px;
  background: #1a4d2e;
  color: #f7f4ee;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.nav__logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 15px; line-height: 1.25; color: #1a2e23; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 14px; font-weight: 500; color: #3d5a45; transition: color 0.2s; }
.nav__links a:hover { color: #1a4d2e; }
.nav__cta {
  background: #1a4d2e;
  color: #f7f4ee !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.nav__cta:hover { background: #143d24; transform: translateY(-1px); }
.nav__toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 8px; color: #1a2e23; transition: background 0.2s; }
.nav__toggle:hover { background: rgba(26, 77, 46, 0.08); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 60px;
  background: #1a4d2e;
  position: relative;
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,255,255,0.04) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero__container { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero__card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(8px);
}
.hero__card-label {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247, 244, 238, 0.6);
  margin-bottom: 20px;
  border: 1px solid rgba(247, 244, 238, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
}
.hero__headline { font-size: clamp(2.4rem, 5vw, 4rem); color: #f7f4ee; margin-bottom: 20px; }
.hero__headline em { color: #a8d5ba; }
.hero__subhead { font-size: 1.1rem; color: rgba(247, 244, 238, 0.7); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.btn--primary { background: #f7f4ee; color: #1a4d2e; }
.btn--primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn--ghost { background: transparent; color: #f7f4ee; border: 1.5px solid rgba(247, 244, 238, 0.35); }
.btn--ghost:hover { border-color: #f7f4ee; background: rgba(247, 244, 238, 0.08); }
.btn--light { background: #f7f4ee; color: #1a4d2e; }
.btn--light:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn--outline-light { background: transparent; color: #f7f4ee; border: 1.5px solid rgba(247, 244, 238, 0.4); }
.btn--outline-light:hover { background: rgba(247, 244, 238, 0.1); border-color: #f7f4ee; }
.btn--full { width: 100%; justify-content: center; }

/* STAT CARDS */
.hero__stats { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 4px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.stat-card:hover { transform: translateX(6px); background: rgba(255,255,255,0.1); }
.stat-card--accent { background: rgba(247, 244, 238, 0.12); border-color: rgba(247, 244, 238, 0.2); }
.stat-card__number { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: #f7f4ee; }
.stat-card__label { font-size: 0.85rem; color: rgba(247, 244, 238, 0.55); }
.hero__scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(247, 244, 238, 0.35);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ========== SECTION COMMON ========== */
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #1a4d2e; margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; color: #1a2e23; }
.section-title em { color: #1a4d2e; }
.section-title--light { color: #f7f4ee; }
.section-title--light em { color: #a8d5ba; }
.section-subtitle { font-size: 1.1rem; color: #4a6352; max-width: 560px; line-height: 1.7; }

/* ========== SERVICES ========== */
.services { padding: 120px 0; background: #f7f4ee; }
.services .container { text-align: center; }
.services .section-subtitle { margin: 0 auto 64px; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: left;
  border: 1px solid rgba(26, 77, 46, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(26, 77, 46, 0.1); }
.service-card__icon {
  width: 64px; height: 64px;
  background: rgba(26, 77, 46, 0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #1a4d2e;
  margin-bottom: 24px;
}
.service-card__title { font-size: 1.25rem; margin-bottom: 12px; color: #1a2e23; }
.service-card__desc { font-size: 0.95rem; color: #4a6352; line-height: 1.7; }

/* ========== ABOUT ========== */
.about { padding: 120px 0; background: #edead8; }
.about__split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__image-wrap { position: relative; }
.about__image-wrap img { border-radius: 20px; width: 100%; height: 700px; object-fit: cover; }
.about__image-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 200px; height: 200px;
  background: #1a4d2e;
  border-radius: 20px;
  z-index: -1;
  opacity: 0.12;
}
.about__content .section-label { margin-bottom: 16px; }
.about__content .section-title { margin-bottom: 28px; }
.about__body { font-size: 1rem; color: #4a6352; line-height: 1.8; margin-bottom: 20px; }
.about__badges { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: #1a4d2e; }
.badge svg { color: #1a4d2e; }

/* ========== WHY US ========== */
.why-us { padding: 120px 0; background: #1a4d2e; position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.why-us .container { position: relative; z-index: 1; }
.why-us__content { text-align: center; margin-bottom: 64px; }
.why-us__content .section-label { color: rgba(247, 244, 238, 0.5); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 28px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.why-card:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-4px); }
.why-card__num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: rgba(168, 213, 186, 0.25); line-height: 1; margin-bottom: 20px; }
.why-card__title { font-size: 1.2rem; color: #f7f4ee; margin-bottom: 12px; }
.why-card__desc { font-size: 0.9rem; color: rgba(247, 244, 238, 0.6); line-height: 1.7; }

/* ========== CTA BANNER ========== */
.cta-banner { padding: 100px 0; background: #f7f4ee; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner__headline { font-size: clamp(1.8rem, 3.5vw, 2.75rem); margin-bottom: 12px; color: #1a2e23; }
.cta-banner__headline em { color: #1a4d2e; }
.cta-banner__sub { font-size: 1.05rem; color: #4a6352; }
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact { padding: 120px 0; background: #edead8; }
.contact__split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact__info .section-label { margin-bottom: 16px; }
.contact__info .section-title { margin-bottom: 20px; }
.contact__body { font-size: 1rem; color: #4a6352; line-height: 1.8; margin-bottom: 40px; }
.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: 48px; height: 48px; background: rgba(26, 77, 46, 0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #1a4d2e; flex-shrink: 0; }
.contact-detail__label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #1a4d2e; margin-bottom: 4px; }
.contact-detail__value { display: block; font-size: 0.95rem; color: #1a2e23; line-height: 1.5; }
.contact-detail__value-link { font-size: 0.95rem; color: #1a4d2e; font-weight: 500; transition: color 0.2s; }
.contact-detail__value-link:hover { color: #143d24; text-decoration: underline; }
.contact__map { border-radius: 12px; overflow: hidden; }

/* FORM */
.contact__form-wrap { background: #fff; border-radius: 24px; padding: 48px; border: 1px solid rgba(26, 77, 46, 0.07); }
.contact__form-title { font-size: 1.5rem; margin-bottom: 8px; color: #1a2e23; }
.contact__form-sub { font-size: 0.95rem; color: #4a6352; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: #1a4d2e; margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid rgba(26, 77, 46, 0.15);
  border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #1a2e23;
  background: #f7f4ee;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus { border-color: #1a4d2e; box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1); }
.form-input::placeholder { color: #9aac9f; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a4d2e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success__icon { color: #1a4d2e; margin-bottom: 16px; }
.form-success__title { font-size: 1.5rem; margin-bottom: 8px; color: #1a2e23; }
.form-success__text { color: #4a6352; }

/* ========== FOOTER ========== */
.footer { background: #112a1c; color: rgba(247, 244, 238, 0.6); padding: 80px 0 0; }
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 60px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: #f7f4ee; }
.footer__tagline { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__col-title { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247, 244, 238, 0.4); margin-bottom: 20px; }
.footer__col a, .footer__col span { display: block; font-size: 0.9rem; color: rgba(247, 244, 238, 0.6); margin-bottom: 12px; transition: color 0.2s; }
.footer__col a:hover { color: #a8d5ba; }
.footer__bottom { border-top: 1px solid rgba(247, 244, 238, 0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.footer__bottom a { color: #a8d5ba; transition: color 0.2s; }
.footer__bottom a:hover { color: #f7f4ee; }

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(247, 244, 238, 0.98);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 600; color: #1a2e23; }
.mobile-menu a:hover { color: #1a4d2e; }
.mobile-menu-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: #1a2e23; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 140px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about__split { grid-template-columns: 1fr; }
  .about__image-wrap img { height: 450px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .hero { padding: 100px 20px 80px; }
  .hero__card { padding: 32px 24px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .why-us { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 80px 0; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
  .contact { padding: 80px 0; }
  .contact__split { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 32px 24px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero__stats { flex-direction: column; }
  .about__badges { flex-direction: column; gap: 12px; }
  .footer__links { grid-template-columns: 1fr; }
}
