/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2e1a;
  background: #f7f5f0;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── PALETTE ─── */
:root {
  --green-900: #0d3b10;
  --green-800: #1B5E20;
  --green-700: #2e7d32;
  --green-600: #388e3c;
  --green-500: #4caf50;
  --green-100: #e8f5e9;
  --green-50:  #f1f8f2;
  --cream:     #f7f5f0;
  --cream-dark:#ede9e0;
  --white:     #ffffff;
  --dark:      #1a2e1a;
  --gray-600:  #4a5a4a;
  --gray-400:  #8a9a8a;
  --gray-200:  #d0d8d0;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(13,59,16,0.08);
  --shadow-lg: 0 12px 48px rgba(13,59,16,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-900);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
p { color: var(--gray-600); }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green-600);
  border-radius: 2px;
}
.section-title { margin-bottom: 16px; }
.section-sub {
  font-size: 1.1rem;
  max-width: 560px;
  color: var(--gray-600);
  margin-bottom: 48px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,94,32,0.3);
}
.btn-primary:hover {
  background: var(--green-700);
  box-shadow: 0 6px 24px rgba(27,94,32,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--green-800);
  border: 2px solid var(--green-200);
}
.btn-outline:hover {
  border-color: var(--green-600);
  background: var(--green-50);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247,245,240,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,94,32,0.08);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(247,245,240,0.96);
  box-shadow: var(--shadow);
}
.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: 700;
  font-size: 1rem;
  color: var(--green-900);
  line-height: 1.2;
}
.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.nav-logo-icon { color: var(--green-700); flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--green-800); background: var(--green-50); }
.nav-cta {
  background: var(--green-800) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-700) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  padding: 120px 0 96px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,94,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  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: 6px 16px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-700);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  min-height: 420px;
}
.hero-card-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.hero-card-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.hero-stat {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.hero-stat-1 {
  top: -16px;
  left: -24px;
  animation-delay: 0s;
}
.hero-stat-2 {
  bottom: 60px;
  right: -24px;
  animation-delay: 1.3s;
}
.hero-stat-3 {
  bottom: -16px;
  left: 40px;
  animation-delay: 2.6s;
  flex-direction: column;
  align-items: flex-start;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-800);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.4;
  margin-top: 4px;
}
.hero-stat-3 svg { color: var(--green-600); flex-shrink: 0; }
.hero-stat-3 span { font-size: 0.78rem; color: var(--gray-600); line-height: 1.4; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── SERVICES ─── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px 28px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--green-100);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  background: var(--white);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 12px;
  color: var(--green-700);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
}
.service-card h3 { margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 700; color: var(--green-900); }
.service-card p { font-size: 0.92rem; line-height: 1.65; }

/* ─── ABOUT ─── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; min-height: 420px; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 360px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-img-accent img { width: 260px; height: 200px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  top: -16px;
  right: 40px;
  background: var(--green-800);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(27,94,32,0.3);
}
.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.about-value svg { color: var(--green-600); flex-shrink: 0; margin-top: 2px; }

/* ─── WHY ─── */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-content { order: 1; }
.why-visual { order: 2; }
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-image img { width: 100%; height: 600px; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.why-item { display: flex; gap: 20px; }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-100);
  line-height: 1;
  min-width: 48px;
}
.why-item h4 { margin-bottom: 6px; color: var(--green-900); }
.why-item p { font-size: 0.92rem; line-height: 1.65; }

/* ─── REVIEWS ─── */
.reviews { background: var(--green-900); color: var(--white); }
.reviews .section-label { color: var(--green-500); }
.reviews .section-label::before { background: var(--green-500); }
.reviews .section-title { color: var(--white); }
.reviews .section-sub { color: rgba(255,255,255,0.6); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; color: #f5c518; }
.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ─── CONTACT ─── */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: none; }
.contact-item:hover .contact-icon { background: var(--green-800); color: var(--white); }
.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 10px;
  color: var(--green-700);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--green-900);
  font-weight: 500;
  line-height: 1.5;
}
.contact-map { margin-top: 24px; border-radius: var(--radius); overflow: hidden; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.form-note {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--green-50);
  border: 2px solid var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
}
.form-success h3 { margin-bottom: 12px; color: var(--green-900); }
.form-success p { font-size: 0.95rem; color: var(--gray-600); }

/* ─── FOOTER ─── */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}
.footer-logo svg { color: var(--green-500); }
.footer p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-visual { order: -1; }
  .why-image img { height: 400px; }
  .hero-visual { min-height: 360px; }
  .hero-stat-1 { left: 0; }
  .hero-stat-2 { right: 0; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(247,245,240,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(27,94,32,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { width: 100%; padding: 12px 16px; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero { padding: 100px 0 72px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stat { display: none; }
  .hero-visual { min-height: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .about-img-accent { right: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.75rem; }
  .about-img-badge { right: 16px; }
}
