/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Custom Properties ─── */
:root {
  --forest-50: #f2f7f2;
  --forest-100: #e3efe3;
  --forest-200: #c5dfc5;
  --forest-400: #61a161;
  --forest-500: #3d7a3d;
  --forest-600: #2c5c2c;
  --forest-700: #234a23;
  --forest-800: #1c3b1c;
  --forest-900: #162e16;
  --forest-950: #0a170a;
  --cream-50: #faf9f6;
  --cream-100: #f5f3ed;
  --cream-200: #ebe8df;
  --line: rgba(44, 92, 44, 0.12);
  --line-strong: rgba(44, 92, 44, 0.25);
  --shadow-sm: 0 1px 3px rgba(22, 46, 22, 0.06);
  --shadow-md: 0 4px 20px rgba(22, 46, 22, 0.08);
  --shadow-lg: 0 8px 40px rgba(22, 46, 22, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250, 249, 246, 0.95);
  box-shadow: var(--shadow-sm);
}
.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: 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--forest-800);
  letter-spacing: -0.01em;
}
.nav-logo-icon { color: var(--forest-600); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--forest-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--forest-600); background: var(--forest-50); }
.nav-link--cta {
  background: var(--forest-600);
  color: #faf9f6 !important;
  font-weight: 500;
}
.nav-link--cta:hover { background: var(--forest-700); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--forest-700);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu-link {
  padding: 16px 32px;
  font-size: 20px;
  font-weight: 400;
  color: var(--forest-800);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu-link:hover { color: var(--forest-600); background: var(--forest-50); }
.mobile-menu-link--cta {
  margin-top: 16px;
  background: var(--forest-600);
  color: #faf9f6 !important;
  font-weight: 500;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: -0.01em;
}
.btn--primary {
  background: var(--forest-600);
  color: #faf9f6;
}
.btn--primary:hover { background: var(--forest-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--forest-700);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--forest-400); color: var(--forest-600); background: var(--forest-50); }
.btn--white {
  background: #faf9f6;
  color: var(--forest-800);
}
.btn--white:hover { background: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn--full { width: 100%; justify-content: center; }

/* ─── Section Shared ─── */
.section { padding: 120px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-500);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--forest-900);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--forest-700);
  font-weight: 300;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 0 0;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 92, 44, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--forest-50);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  color: var(--forest-600);
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--forest-500);
  border-radius: 50%;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest-950);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--forest-700);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--forest-600);
}
.hero-trust-item svg { color: var(--forest-400); }

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 640/720;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--forest-200);
  border-radius: var(--radius-md);
  z-index: -1;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-image-wrap { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
  .hero { padding: 120px 0 80px; min-height: auto; }
}

/* ─── Services ─── */
.services { background: var(--cream-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #faf9f6;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--forest-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--forest-600);
  margin-bottom: 24px;
}
.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--forest-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--forest-700);
  font-weight: 300;
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
}

/* ─── About ─── */
.about { background: var(--cream-100); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-col { position: relative; }
.about-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 560/640;
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-image-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--cream-100);
  aspect-ratio: 400/240;
  max-width: 280px;
}
.about-image-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-content-col { padding-top: 16px; }
.about-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--forest-700);
  font-weight: 300;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest-800);
}
.about-stat-label { font-size: 12px; color: var(--forest-500); text-transform: uppercase; letter-spacing: 0.06em; }
.about-stat-divider { width: 1px; height: 40px; background: var(--line); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { max-width: 480px; }
  .about-image-secondary { right: -16px; bottom: -16px; }
}

/* ─── Why Us ─── */
.why-us { background: var(--forest-900); }
.why-us-inner { display: flex; flex-direction: column; gap: 64px; }
.why-us-content { max-width: 560px; }
.why-us-content .section-label { color: var(--forest-400); }
.why-us-content .section-title { color: #faf9f6; }
.why-us-content .section-subtitle { color: var(--forest-200); }
.why-us-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.why-card:hover { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); }
.why-card-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: #faf9f6;
  margin-bottom: 10px;
}
.why-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--forest-200);
  font-weight: 300;
}

@media (max-width: 640px) {
  .why-us-grid { grid-template-columns: 1fr; }
}

/* ─── CTA Section ─── */
.cta-section { background: var(--forest-600); padding: 80px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: #faf9f6;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.cta-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--forest-200);
  font-weight: 300;
  margin-top: 12px;
}
.cta-right { flex-shrink: 0; }

/* ─── Contact ─── */
.contact { background: var(--cream-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { padding-top: 8px; }
.contact-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--forest-700);
  font-weight: 300;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 16px; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--forest-600);
}
.contact-detail-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest-500);
  margin-bottom: 4px;
}
.contact-detail-value {
  display: block;
  font-size: 14px;
  color: var(--forest-800);
  line-height: 1.6;
}
.contact-link:hover { color: var(--forest-600); text-decoration: underline; }

/* Form */
.contact-form-col { background: #faf9f6; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest-600);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream-50);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--forest-900);
  transition: var(--transition);
  outline: none;
}
.form-input::placeholder { color: var(--forest-300); }
.form-input:focus { border-color: var(--forest-500); background: #fff; box-shadow: 0 0 0 3px rgba(61, 122, 61, 0.1); }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%233d7a3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4.5l3 3 3-3'/%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 {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--forest-50);
  border: 1px solid var(--forest-200);
  border-radius: var(--radius-sm);
  color: var(--forest-700);
  font-size: 14px;
  margin-top: 16px;
}
.form-success.show { display: flex; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── Footer ─── */
.footer { background: var(--forest-950); color: var(--forest-200); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 64px; }
.footer-brand { max-width: 320px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #faf9f6;
  margin-bottom: 16px;
}
.footer-logo svg { color: var(--forest-400); }
.footer-tagline { font-size: 13px; line-height: 1.75; color: var(--forest-300); font-weight: 300; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-500);
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 13px;
  color: var(--forest-300);
  transition: var(--transition);
}
.footer-links a:hover { color: #faf9f6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--forest-500);
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

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

/* Fallback: ensure content is visible even without JS */
.no-js .reveal,
.reveal { opacity: 1; transform: none; }
