:root {
  color-scheme: dark;
  color: #111;
  font-family: 'Inter', sans-serif;
  background: #f6f6f4;
  line-height: 1.7;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(32, 111, 61, 0.12), transparent 30%), linear-gradient(to bottom, #fdfaf6, #f2f2ea);
  color: #1b1b1b;
  cursor: none;
  scroll-behavior: smooth;
}
/* Scroll animation trigger class */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}
.stagger-item-1 { animation-delay: 0.1s; }
.stagger-item-2 { animation-delay: 0.2s; }
.stagger-item-3 { animation-delay: 0.3s; }
.stagger-item-4 { animation-delay: 0.4s; }
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(30, 70, 40, 0.08);
}
.header-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  width: 100%;
}
.brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: #15421f;
  text-decoration: none;
  margin-left: 0;
}
.brand .logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 0.8rem;
  vertical-align: middle;
  box-shadow: 0 6px 18px rgba(28, 78, 34, 0.12);
}
.brand span { vertical-align: middle; }

/* Leaf cursor */
.cursor-leaf { 
  position: fixed; 
  left: 0; 
  top: 0; 
  width: 44px; 
  height: 44px; 
  pointer-events: none; 
  z-index: 9999; 
  mix-blend-mode: multiply; 
  will-change: transform;
  opacity: 0.95;
}
.cursor-leaf .leaf-cursor { 
  width: 100%; 
  height: 100%; 
  color: rgba(22, 90, 33, 0.92); 
  filter: drop-shadow(0 2px 8px rgba(30, 110, 45, 0.3));
  transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.cursor-leaf.enlarge .leaf-cursor { 
  transform: scale(1.35) brightness(1.1);
  filter: drop-shadow(0 4px 16px rgba(30, 110, 45, 0.5));
}

/* Interactive element hover hint */
.interactive-hover { transition: transform 0.22s ease, box-shadow 0.22s ease; }
.interactive-hover:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 48px rgba(24, 78, 30, 0.12); }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav-links a {
  color: #3b4f34;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2f7a3d;
  transition: width 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.nav-links a:hover {
  color: #16411f;
}
.nav-links a:hover::after {
  width: 100%;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 4rem 0;
}
.hero-copy {
  max-width: 640px;
  animation: fadeInUp 0.9s ease-out both;
}
.hero-copy p {
  animation: fadeInUp 0.9s ease-out both;
  animation-delay: 0.15s;
}
.hero-copy h1 {
  animation: fadeInUp 0.9s ease-out both;
  animation-delay: 0.08s;
}
.eyebrow {
  animation: fadeInUp 0.9s ease-out both;
  animation-delay: 0.02s;
  display: inline-flex;
  margin-bottom: 1rem;
  color: #276b3b;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #0d3617;
}
.hero p {
  font-size: 1.08rem;
  max-width: 42rem;
  color: #333;
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 1s ease-out both;
  animation-delay: 0.28s;
}
.hero-actions .button:first-child {
  animation: scaleUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.35s;
}
.hero-actions .button:last-child {
  animation: scaleUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.45s;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
  z-index: 0;
}
.button:hover::before {
  left: 100%;
}
.button:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(47, 122, 61, 0.24);
}
.primary {
  background: linear-gradient(135deg, #2f7a3d 0%, #1e5a2b 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(47, 122, 61, 0.18);
}
.primary:hover {
  box-shadow: 0 16px 40px rgba(47, 122, 61, 0.28);
}
.secondary {
  background: rgba(47, 122, 61, 0.12);
  color: #15421f;
  border: 2px solid rgba(47, 122, 61, 0.3);
}
.secondary:hover {
  background: rgba(47, 122, 61, 0.22);
  border-color: rgba(47, 122, 61, 0.5);
  box-shadow: 0 12px 32px rgba(47, 122, 61, 0.12);
}

/* Master Hero Image Layout Box Container Config */
.hero-media {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(180deg, rgba(118, 189, 124, 0.28), rgba(255, 255, 255, 0.42));
  box-shadow: 0 45px 120px rgba(20, 60, 25, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(160, 210, 170, 0.4);
  animation: slideInRight 1s ease-out both;
  animation-delay: 0.3s;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.4s ease;
  display: flex;
}
.hero-media:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 60px 140px rgba(15, 50, 20, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.4);
}
.hero-image-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}
.dashboard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: zoomIn 0.9s ease-out both;
  animation-delay: 0.5s;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slidePan {
  0% { background-position: 40% 45%; }
  50% { background-position: 60% 55%; }
  100% { background-position: 40% 45%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatCard {
  from { transform: translateY(0) rotate(-0.1deg); }
  to { transform: translateY(-6px) rotate(0.2deg); }
}

/* Image cards enhanced */
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) saturate(1.18) brightness(1.02);
  transform-origin: center center;
  transition: transform 12s ease, filter 0.6s ease;
}
.image-card {
  animation: cardFadeIn 0.6s ease-out both;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.image-card:nth-child(1) { animation-delay: 0.05s; }
.image-card:nth-child(2) { animation-delay: 0.1s; }
.image-card:nth-child(3) { animation-delay: 0.15s; }
.image-card:nth-child(4) { animation-delay: 0.2s; }
.image-card:nth-child(5) { animation-delay: 0.25s; }
.image-card:nth-child(6) { animation-delay: 0.3s; }
.image-card:nth-child(7) { animation-delay: 0.35s; }
.image-card:nth-child(8) { animation-delay: 0.4s; }
.image-card:nth-child(n+9) { animation-delay: 0.45s; }
.image-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 35px 90px rgba(20, 60, 25, 0.2), 0 0 30px rgba(47, 122, 61, 0.08);
}
.image-card:hover img {
  transform: scale(1.08) translateY(-8px);
  filter: contrast(1.15) saturate(1.3) brightness(1.05);
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: scale(0.85) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Decorative leaves scattered around website */
.decorative-leaf {
  position: absolute;
  pointer-events: none;
  color: rgba(47, 122, 61, 0.6);
  filter: drop-shadow(0 2px 4px rgba(30, 110, 45, 0.2));
  z-index: 1;
}
.decorative-leaf.autumn { color: rgba(220, 100, 20, 0.6); }
.decorative-leaf.flower { color: rgba(200, 100, 150, 0.65); }
.decorative-leaf.blossom { color: rgba(255, 150, 180, 0.6); }

@keyframes decorativeLeafFloat {
  0% { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0.4; }
  25% { transform: translateY(-20px) rotate(45deg) translateX(15px); opacity: 0.7; }
  50% { transform: translateY(-40px) rotate(90deg) translateX(-10px); opacity: 0.8; }
  75% { transform: translateY(-20px) rotate(135deg) translateX(20px); opacity: 0.6; }
  100% { transform: translateY(0) rotate(180deg) translateX(0); opacity: 0.4; }
}

/* Old leaf styles - kept for compatibility */
.leaf {
  position: absolute;
  width: 38px;
  height: 38px;
  color: rgba(26, 103, 39, 0.95);
  transform-origin: center bottom;
  opacity: 0;
  display: none;
}
.leaf.animate {
  animation: leafGrow 2.2s ease forwards, leafFloat 6s ease-in-out infinite 2.8s;
}
@keyframes leafGrow {
  from { transform: scale(0) translateY(6px) rotate(-10deg); opacity: 0; }
  to { transform: scale(1) translateY(0) rotate(0); opacity: 1; }
}
@keyframes leafFloat {
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-6px) rotate(6deg); }
  100% { transform: translateY(0) rotate(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
.shimmer-load {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Farming-themed typing effect */
@keyframes typewriter {
  from { width: 0; }
  to { width: 700px; }
}
@keyframes blink {
  0%, 49% { border-right-color: rgba(47, 122, 61, 0.8); }
  50%, 100% { border-right-color: transparent; }
}
.typing-text {
  display: inline-block;
  overflow: visible;
  white-space: nowrap;
  animation: typewriter 2.8s steps(40, end) both;
  font-weight: 600;
}
.farming-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(47, 122, 61, 0.1) 0%, rgba(47, 122, 61, 0.05) 100%);
  border: 1px solid rgba(47, 122, 61, 0.3);
  border-radius: 24px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: #1e5a2b;
  font-weight: 600;
  letter-spacing: 0.04em;
  animation: fadeInUp 0.8s ease-out both;
  transition: all 0.3s ease;
}
.farming-tag:hover {
  background: linear-gradient(135deg, rgba(47, 122, 61, 0.15) 0%, rgba(47, 122, 61, 0.08) 100%);
  border-color: rgba(47, 122, 61, 0.5);
  transform: translateY(-2px);
}
.farming-icon {
  display: inline-block;
  margin-right: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.image-grid { gap: 1rem; }
.image-card { position: relative; overflow: hidden; min-height: 220px; }
.image-card p { position: absolute; left: 0; bottom: 0; margin: 0; padding: 0.7rem 1rem; background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.28)); color: #fff; font-weight: 600; }
.image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(ellipse at 20% 10%, rgba(16,69,22,0.06), transparent 12%), linear-gradient(180deg, rgba(0,0,0,0.0), rgba(2,12,3,0.06));
  transform: translateZ(0);
  transition: transform 6s ease;
}
.image-card:hover::before { transform: translateY(-6px) scale(1.01); }
.image-card a { display: block; color: inherit; text-decoration: none; }
.section { padding: 5rem 0; }
.section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #2e6c3d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  animation: slideInLabel 0.6s ease-out both;
}
h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  color: #12401c;
  animation: slideInHeader 0.7s ease-out both;
  animation-delay: 0.1s;
}
@keyframes slideInLabel {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInHeader {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}
.info-card, .contact-card {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(34, 85, 38, 0.08);
  box-shadow: 0 16px 40px rgba(35, 74, 35, 0.08);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  animation: slideInCard 0.7s ease-out both;
}
.info-card:hover, .contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(32, 70, 40, 0.15);
  border-color: rgba(47, 122, 61, 0.15);
}
@keyframes slideInCard {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.info-card h3, .contact-card h3 { margin-top: 0; }
.info-card ul, .contact-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.info-card li, .contact-list li {
  margin-bottom: 0.9rem;
  color: #4a4a4a;
  animation: slideInList 0.5s ease-out both;
  padding-left: 1.5rem;
  position: relative;
}
.info-card li::before, .contact-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2f7a3d;
  font-weight: 700;
  animation: checkmark 0.5s ease-out both;
}
.info-card li:nth-child(1) { animation-delay: 0.1s; }
.info-card li:nth-child(2) { animation-delay: 0.2s; }
.info-card li:nth-child(3) { animation-delay: 0.3s; }
.info-card li:nth-child(4) { animation-delay: 0.4s; }
@keyframes slideInList {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes checkmark {
  from { opacity: 0; transform: scale(0) rotate(-90deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2.5rem;
}
.card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(33, 79, 30, 0.08);
  box-shadow: 0 16px 40px rgba(44, 82, 51, 0.06);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  animation: scaleUp 0.6s ease-out both;
}
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(32, 70, 40, 0.18), 0 0 40px rgba(47, 122, 61, 0.1);
  border-color: rgba(47, 122, 61, 0.2);
}
.card h3 { margin-top: 0; color: #18401c; transition: color 0.3s ease; }
.card:hover h3 { color: #2f7a3d; }
@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.gallery .image-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}
.section-intro {
  max-width: 720px;
  color: #3f463b;
  font-size: 1.05rem;
}
.awards {
  background: linear-gradient(180deg, rgba(255, 248, 231, 0.85), rgba(238, 246, 230, 0.55));
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.award-card {
  background: #fff;
  border: 1px solid rgba(129, 86, 28, 0.14);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(72, 55, 25, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(72, 55, 25, 0.18);
}
.award-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.award-card div {
  padding: 1.4rem;
}
.award-card h3 {
  margin: 1rem 0 0.4rem;
  color: #5b3610;
}
.award-card p {
  margin: 0;
  color: #4f4a42;
}
.image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(30, 82, 38, 0.08);
  box-shadow: 0 20px 45px rgba(34, 75, 35, 0.08);
  margin: 0;
}
.image-card img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.image-card p { margin: 0; padding: 1rem; font-size: 0.98rem; color: #3b3b3b; }
.photo-gallery {
  grid-auto-flow: dense;
}
.photo-gallery .feature-card {
  grid-column: span 2;
}
.photo-gallery .image-card {
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.35s ease, z-index 0s;
}
.photo-gallery .image-card:hover {
  z-index: 5;
  transform: translateY(-10px) scale(1.06);
  box-shadow: 0 34px 80px rgba(18, 55, 24, 0.24);
}
.photo-gallery .image-card img {
  transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1), filter 0.35s ease;
}
.photo-gallery .image-card:hover img {
  transform: scale(1.14);
  filter: contrast(1.12) saturate(1.18) brightness(1.04);
}
.image-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.2rem 1rem 1rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(12, 25, 10, 0.66));
}
.image-fallback {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: #5b6b54;
  font-size: 0.95rem;
  padding: 2rem;
  background: linear-gradient(180deg, #f3f6ef, #e6f1df);
}
.contact-list a { color: #235c2a; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
.footer { background: #1d3c23; color: #eef3e8; padding: 2rem 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: #d5e7d1; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; gap: 2rem; align-items: center; }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.95rem;
  color: #d5e7d1;
}
.footer-contact strong {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.footer-contact a { color: #a8d899; text-decoration: none; transition: color 0.3s ease; }
.footer-contact a:hover { color: #fff; }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .split-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .footer-contact p {
    display: grid;
    grid-template-columns: 5.8rem minmax(0, 1fr);
    gap: 0.35rem;
    width: 100%;
  }
  .footer-contact a {
    overflow-wrap: anywhere;
  }
  .photo-gallery .feature-card { grid-column: span 1; }
}
@media (max-width: 640px) {
  .header-fluid { flex-direction: column; align-items: flex-start; padding: 1rem; }
  .nav-links { width: 100%; justify-content: flex-start; }
  .button { width: 100%; }
  .awards-grid { grid-template-columns: 1fr; }
}
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor-leaf { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
