/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #74C69D;
  --green-pale:   #EDF6F0;
  --earth:        #8B5E3C;
  --earth-light:  #C8956A;
  --cream:        #FAFAF7;
  --cream-dark:   #EEECE7;
  --text-dark:    #1A1A1A;
  --text-mid:     #555555;
  --text-light:   #888888;
  --gold:         #B8860B;
  --white:        #ffffff;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.12);
  --radius:       8px;
  --radius-lg:    16px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  font-feature-settings: 'cv01', 'cv02', 'cv11';
}

img { max-width: 100%; height: auto; display: block; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; line-height: 1.2; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--green-mid);
}

.section-title {
  font-size: 1.7rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 600px;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251,248,243,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, border-color 0.3s;
}

nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); border-color: transparent; }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  gap: 1rem;
  list-style: none;
  border-bottom: 1px solid var(--cream-dark);
}

.nav-links.open { display: flex; }

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green-dark); }

.nav-cta {
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  text-align: center;
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover { background: var(--green-mid) !important; transform: translateY(-1px); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  background:
    linear-gradient(160deg, rgba(27,67,50,0.92) 0%, rgba(45,106,79,0.75) 50%, rgba(116,198,157,0.35) 100%),
    url('images/IMG_20260801_174625.jpg') center/cover no-repeat;
  background-color: var(--green-dark);
  display: flex;
  align-items: center;
  padding: 80px 1rem 60px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(200,146,42,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-motto {
  font-family: 'DM Serif Display', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--green-light);
  display: block;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.18); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.15rem;
}

/* ===== SECTIONS ===== */
section { padding: 60px 1rem; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== GALLERY ===== */
#gallery { background: var(--cream); }

.gallery-header { text-align: center; margin-bottom: 2rem; }

/* ===== SLIDESHOW ===== */
.slideshow-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--text-dark);
}

.slideshow {
  position: relative;
  width: 100%;
  height: 65vw;
  max-height: 650px;
  min-height: 280px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.slide-btn.prev { left: 0.75rem; }
.slide-btn.next { right: 0.75rem; }

.slide-counter {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  z-index: 10;
  letter-spacing: 0.04em;
}

.slide-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 5px;
  z-index: 10;
}

.slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.slide-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ===== ABOUT ===== */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.about-image-block { position: relative; }

.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 0.5rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge .num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-badge .label {
  font-size: 0.7rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}

.story-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-top: 1rem;
  line-height: 1.85;
}

.story-highlight {
  background: var(--green-pale);
  border-left: 3px solid var(--green-mid);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.25rem 0;
  font-style: italic;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.team-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
}

.founder-tag .avatar {
  width: 36px; height: 36px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.founder-tag .info .name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.founder-tag .info .role {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* ===== PLANTS ===== */
#plants { background: var(--cream); }

.plants-header { text-align: center; margin-bottom: 2.5rem; }
.plants-header .section-subtitle { margin: 0 auto; }

.plants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.plant-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.plant-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green-light); }

.plant-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }

.plant-card h3 { font-size: 0.95rem; color: var(--green-dark); margin-bottom: 0.35rem; }

.plant-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; }

.plants-note {
  text-align: center;
  margin-top: 2rem;
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.plants-note p { font-size: 0.88rem; color: var(--green-dark); font-weight: 500; }

/* ===== SERVICES ===== */
#services {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.services-header { text-align: center; margin-bottom: 2.5rem; }
.services-header .section-label { color: var(--green-light); }
.services-header .section-title { color: var(--white); }
.services-header .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: background 0.25s, transform 0.25s;
  position: relative;
}

.service-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }

.service-card.coming-soon { opacity: 0.7; }

.coming-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
}

.service-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.service-card p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ===== WHY US ===== */
#why-us { background: var(--white); }

.why-header { text-align: center; margin-bottom: 2.5rem; }
.why-header .section-subtitle { margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.why-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.25s, transform 0.25s;
}

.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green-light); }

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.why-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.why-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.35rem; }
.why-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; }

/* ===== CONTACT ===== */
#contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-info .section-subtitle { margin-bottom: 1.5rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item { display: flex; gap: 0.75rem; align-items: flex-start; }

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text .label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.1rem;
}

.contact-item-text .value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.contact-item-text .value a { color: var(--green-dark); text-decoration: none; }
.contact-item-text .value a:hover { text-decoration: underline; }

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-green:hover { background: var(--green-mid); transform: translateY(-1px); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 2rem 1rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img { height: 70px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }

.footer-motto {
  font-family: 'DM Serif Display', serif;
  font-size: 0.9rem;
  color: var(--green-light);
  font-style: italic;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green-light); }

.footer-copy { font-size: 0.72rem; opacity: 0.5; }

/* ===== FLOAT CALL BUTTON ===== */
.call-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 50px;
  height: 50px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(27,67,50,0.35);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}

.call-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(27,67,50,0.45);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =================================================================
   TABLET (min-width: 600px)
   ================================================================= */
@media (min-width: 600px) {
  .section-title { font-size: 2rem; }

  .nav-inner { padding: 0 1.5rem; height: 64px; }
  .nav-logo img { height: 44px; }

  #hero { padding: 100px 1.5rem 70px; }
  .hero-title { font-size: 3.5rem; }
  .hero-actions { flex-direction: row; }
  .hero-stats { grid-template-columns: repeat(4, auto); gap: 2rem; }

  section { padding: 70px 1.5rem; }

  .plants-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; }

  .map-container iframe { height: 100%; min-height: 380px; }

  .slide-dots { display: flex; }
}

/* =================================================================
   DESKTOP (min-width: 1024px)
   ================================================================= */
@media (min-width: 1024px) {
  .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); }

  .nav-inner { padding: 0 2rem; height: 72px; }
  .nav-logo img { height: 52px; }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    gap: 2rem;
    background: none;
    border-bottom: none;
  }

  .hamburger { display: none; }

  #hero { padding: 120px 2rem 80px; }
  .hero-title { font-size: clamp(3.5rem, 6vw, 5rem); }
  .hero-desc { font-size: 1.1rem; }
  .hero-motto { font-size: 1.1rem; }

  section { padding: 90px 2rem; }

  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-img-main { aspect-ratio: 4/5; }
  .about-badge { right: -1.5rem; }

  .plants-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .plant-card { padding: 2rem 1.5rem; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .contact-grid { gap: 4rem; }

  .call-float { bottom: 2rem; right: 2rem; width: 58px; height: 58px; font-size: 1.6rem; }
}
