:root {
  --forest: #2d4a22;
  --forest-mid: #3d6030;
  --sage: #7a9e6a;
  --sage-light: #a8c498;
  --cream: #f7f2ea;
  --cream-dark: #ede5d8;
  --sand: #d4b896;
  --amber: #c8832a;
  --amber-light: #e8a84a;
  --white: #ffffff;
  --text-dark: #1a2614;
  --text-mid: #4a5e3a;
  --text-light: #7a8e6a;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 60px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(247, 242, 234, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(45,74,34,0.1);
}

nav.sticky-nav {
  background: rgba(247,242,234,0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  box-shadow: 0 2px 20px rgba(45,74,34,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  transition: color 0.4s;
}

nav.scrolled .nav-logo-text,
nav.sticky-nav .nav-logo-text { color: var(--forest); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--amber-light);
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: white; }

nav.scrolled .nav-links a,
nav.sticky-nav .nav-links a { color: var(--text-mid); }

nav.scrolled .nav-links a:hover,
nav.sticky-nav .nav-links a:hover { color: var(--forest); }

nav.scrolled .nav-links a::after,
nav.sticky-nav .nav-links a::after { background: var(--amber); }

nav.scrolled .nav-links a.active,
nav.sticky-nav .nav-links a.active { color: var(--forest); }

.nav-cta {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.nav-cta:hover {
  background: white;
  color: var(--forest);
  border-color: white;
}

nav.scrolled .nav-cta,
nav.sticky-nav .nav-cta {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
}

nav.scrolled .nav-cta:hover,
nav.sticky-nav .nav-cta:hover {
  background: var(--forest-mid);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-tag::before { content: '— '; }
.section-tag::after  { content: ' —'; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-title em { font-style: italic; color: var(--forest-mid); }

.section-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.btn-green {
  background: var(--sage);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-green:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,74,34,0.4);
}

.btn-ghost {
  background: transparent;
  color: white;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

.btn-amber {
  background: var(--amber);
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,131,42,0.4);
}

.btn-white {
  display: inline-block;
  background: white;
  color: var(--forest);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-outline-forest {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--forest);
  border-radius: 50px;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}

.btn-outline-forest:hover {
  background: var(--forest);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,74,34,0.3);
}

.btn-ghost-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost-white:hover { background: rgba(255,255,255,0.12); }

.btn-sage {
  background: transparent;
  border: 1.5px solid var(--sage-light);
  color: var(--sage-light);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-sage:hover {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}

.btn-wa {
  background: #25D366;
  color: white;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-wa:hover { background: #128C7E; transform: scale(1.03); }

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.badge-green  { background: rgba(122,158,106,0.9); color: white; }
.badge-amber  { background: rgba(200,131,42,0.9);  color: white; }
.badge-pink   { background: rgba(200,100,130,0.9); color: white; }
.badge-jantan { background: rgba(70,130,220,0.88); color: white; }
.badge-betina { background: rgba(210,90,140,0.88); color: white; }
.badge-baby   { background: rgba(200,131,42,0.88); color: white; }
.badge-adult  { background: rgba(60,100,50,0.9);   color: white; }
.badge-pair   { background: rgba(130,70,180,0.88); color: white; }

.cta-banner {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-inner { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner h2 em { font-style: italic; color: var(--sage-light); }

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 36px;
  font-weight: 300;
}

footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 60px 30px;
}

footer.simple {
  text-align: center;
  padding: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

footer a { color: var(--sage-light); text-decoration: none; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo-text {
  color: white;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover { background: var(--sage); color: white; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--sage-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  footer { padding: 50px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-banner { padding: 60px 24px; }
}

.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://i.imgur.com/qf7Px9r.jpeg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,8,0.75) 0%,
    rgba(30,55,20,0.55) 50%,
    rgba(10,22,8,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 60px;
  animation: heroIn 1s ease both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 131, 42, 0.25);
  border: 1px solid rgba(200,131,42,0.5);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber-light); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero h1 em { font-style: italic; color: var(--sage-light); }

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

.stats-bar {
  background: var(--forest);
  padding: 28px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber-light);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.features {
  padding: 90px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #ede5d8;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--sage), var(--amber));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(45,74,34,0.12); }

.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #e8f0e0, #f0e8d8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

.products-section {
  background: linear-gradient(180deg, var(--cream) 0%, #ede5d8 100%);
  padding: 80px 60px;
}

.products-inner { max-width: 1300px; margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(45,74,34,0.15);
}

.product-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-img img { transform: scale(1.08); }

.product-badge-wrap {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  gap: 6px;
}

.product-body { padding: 22px 24px 24px; }

.product-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.product-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; }

.product-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
}

.products-footer { text-align: center; margin-top: 48px; }

.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.about-img { overflow: hidden; position: relative; }

.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(247,242,234,0.2));
}

.about-text {
  background: var(--forest);
  padding: 70px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text .section-tag  { color: var(--sage-light); }
.about-text .section-title { color: white; }
.about-text .section-title em { color: var(--sage-light); }

.about-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-size: 0.92rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-checks { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 32px; }

.about-strip .check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}

.about-strip .check-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonials {
  padding: 90px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.testi-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid #ede5d8;
  position: relative;
}

.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--sage-light);
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
  opacity: 0.5;
}

.testi-stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }

.testi-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1rem;
}

.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); }
.testi-loc  { font-size: 0.78rem; color: var(--text-light); }

@media (max-width: 1024px) {
  .stats-bar         { grid-template-columns: repeat(2,1fr); }
  .features-grid     { grid-template-columns: repeat(2,1fr); }
  .products-grid     { grid-template-columns: repeat(2,1fr); }
  .about-strip       { grid-template-columns: 1fr; }
  .about-img         { height: 300px; }
  .testi-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content      { padding: 0 24px; }
  .features          { padding: 60px 24px; }
  .products-section  { padding: 60px 24px; }
  .testimonials      { padding: 60px 24px; }
  .stats-bar         { padding: 24px; grid-template-columns: repeat(2,1fr); }
  .features-grid, .products-grid, .testi-grid { grid-template-columns: 1fr; }
  .about-text        { padding: 50px 28px; }
}