: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; }
}

.about-hero {
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.about-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://i.imgur.com/qf7Px9r.jpeg') center 30%/cover;
  animation: none;
  transform: none;
}

.about-hero .hero-overlay {
  background: linear-gradient(to top, rgba(10,22,8,0.9) 0%, rgba(10,22,8,0.4) 60%, rgba(10,22,8,0.2) 100%);
}

.about-hero .hero-content {
  position: relative; z-index: 1;
  padding: 0 60px 60px;
  animation: none;
}

.about-hero .hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
}

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

.story {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.story-img { position: relative; }

.story-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.story-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--amber);
  color: white;
  border-radius: 18px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(200,131,42,0.3);
}

.story-img-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.story-img-badge .label { font-size: 0.72rem; opacity: 0.85; letter-spacing: 0.06em; }

.story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.story-text h2 em { font-style: italic; color: var(--forest-mid); }
.story-text p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }

.values { background: var(--forest); padding: 80px 60px; }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 50px; }
.values-header .section-tag { color: var(--sage-light); }

.values-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: white;
}

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

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

.value-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 28px;
  transition: background 0.3s, transform 0.3s;
}

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

.value-icon { font-size: 2.2rem; margin-bottom: 18px; display: block; }
.value-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 10px; }
.value-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 300; }

.timeline-section { max-width: 900px; margin: 0 auto; padding: 80px 60px; }
.timeline-section .section-tag { text-align: center; display: block; margin-bottom: 12px; }

.timeline-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
}

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

.timeline { position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: var(--cream-dark);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
  position: relative;
}

.tl-item::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--sage);
  border: 3px solid var(--cream);
  z-index: 1;
}

.tl-left { text-align: right; padding-right: 30px; }
.tl-right { padding-left: 30px; }

.tl-item.reverse .tl-left { order: 2; text-align: left; padding-left: 30px; padding-right: 0; }
.tl-item.reverse .tl-right { order: 1; text-align: right; padding-right: 30px; padding-left: 0; }

.tl-year { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--amber); display: block; line-height: 1; margin-bottom: 4px; }
.tl-content h4 { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 6px; }
.tl-content p  { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; }

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

.about-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: white; margin-bottom: 14px; }
.about-cta h2 em { font-style: italic; color: var(--sage-light); }
.about-cta p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 32px; font-weight: 300; }

@media (max-width: 1024px) {
  .story { grid-template-columns: 1fr; gap: 48px; }
  .story-img img { height: 300px; }
  .story-img-badge { right: 10px; bottom: -15px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .about-hero .hero-content { padding: 0 24px 48px; }
  .story, .timeline-section { padding-left: 24px; padding-right: 24px; }
  .values, .about-cta { padding-left: 24px; padding-right: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 1fr; }
  .tl-item::after { left: 20px; }
  .tl-left, .tl-right { text-align: left; padding-left: 50px; padding-right: 0; }
  .tl-item.reverse .tl-left,
  .tl-item.reverse .tl-right { order: unset; text-align: left; padding-left: 50px; padding-right: 0; }
}