:root {
  --forest: #2d4a22;
  --forest-mid: #3d6030;
  --sage: #7a9e6a;
  --sage-light: #a8c498;
  --cream: #f7f2ea;
  --cream-dark: #ede5d8;
  --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; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); }

nav {
  background: rgba(247,242,234,0.96);
  backdrop-filter: blur(12px);
  padding: 0 60px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0; z-index: 200;
  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: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--forest); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-mid); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-cta { background: var(--forest); color: white; padding: 9px 22px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; text-decoration: none; }

.page-header {
  background: linear-gradient(135deg, rgba(45, 74, 34, 0.85), rgba(61, 96, 48, 0.85)), url('background_panduan.png') center/cover no-repeat;
  padding: 64px 60px 56px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(122,158,106,0.2), transparent 60%);
}

.leaf-deco {
  position: absolute;
  right: 60px; top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.08;
  filter: blur(2px);
}

.page-header-inner { position: relative; z-index: 1; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: white; }

.page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 600; color: white; line-height: 1.15; margin-bottom: 10px; }
.page-header h1 em { font-style: italic; color: var(--sage-light); }
.page-header p { color: rgba(255,255,255,0.68); font-size: 0.95rem; font-weight: 300; max-width: 500px; }

.intro-strip {
  background: var(--amber);
  padding: 24px 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-strip-icon { font-size: 1.4rem; flex-shrink: 0; }
.intro-strip p { color: white; font-size: 0.9rem; font-weight: 500; }
.intro-strip strong { font-weight: 700; }

.guide-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 60px 80px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.fact-card {
  background: white;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: transform 0.25s, box-shadow 0.25s;
}

.fact-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(45,74,34,0.1); }

.fact-emoji { font-size: 2rem; margin-bottom: 10px; display: block; }
.fact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 4px; }
.fact-value { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--forest); }

.guide-section {
  margin-bottom: 60px;
}

.guide-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-dark);
}

.guide-section-num {
  width: 44px; height: 44px;
  background: var(--forest);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.guide-section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.guide-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.guide-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.guide-item {
  background: white;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--sage);
  transition: border-left-color 0.2s;
}

.guide-item:hover { border-left-color: var(--amber); }

.guide-item h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guide-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.food-table-wrap {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: var(--forest);
  color: white;
}

thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tbody tr { border-bottom: 1px solid var(--cream-dark); transition: background 0.15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--cream); }

tbody td {
  padding: 14px 20px;
  font-size: 0.87rem;
  color: var(--text-mid);
}

tbody td:first-child { font-weight: 600; color: var(--text-dark); }

.food-ok { color: #2d7a3e; font-weight: 700; }
.food-no { color: #c0392b; font-weight: 700; }
.food-limit { color: var(--amber); font-weight: 700; }

.warning-box {
  background: #fff8e8;
  border: 1.5px solid var(--amber-light);
  border-radius: 16px;
  padding: 24px 24px;
  margin-top: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.warning-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.warning-content h4 { font-weight: 700; color: var(--amber); margin-bottom: 6px; font-size: 0.95rem; }
.warning-content p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
.warning-content ul { list-style: none; margin-top: 8px; }
.warning-content ul li { font-size: 0.83rem; color: #c0392b; padding: 2px 0; }
.warning-content ul li::before { content: '✕ '; font-weight: 700; }

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.check-item {
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--cream-dark);
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.check-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.guide-cta {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  border-radius: 24px;
  padding: 50px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.guide-cta::before {
  content: '🌿';
  position: absolute;
  font-size: 8rem;
  opacity: 0.06;
  top: -20px; right: -10px;
}

.guide-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.guide-cta h2 em { font-style: italic; color: var(--sage-light); }
.guide-cta p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 28px; font-weight: 300; }

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

.btn-amber {
  background: var(--amber); color: white; padding: 13px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem; text-decoration: none; transition: all 0.2s;
}
.btn-amber:hover { background: var(--amber-light); transform: translateY(-2px); }

.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); }

.smamda-footer {
  background: #0a1608;
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 60px 20px;
  font-family: 'DM Sans', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.smamda-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}

.smamda-footer .footer-col {
  padding: 0 20px;
}

.smamda-footer .footer-col:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.smamda-footer h3 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.smamda-footer p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.smamda-footer .footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 15px;
}

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

.smamda-footer a:hover {
  color: white;
}

.smamda-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
}

.smamda-footer .footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

@media (max-width: 768px) {
  .smamda-footer .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .smamda-footer .footer-col {
    padding: 0;
  }
  .smamda-footer .footer-col:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-header, .intro-strip, .guide-main { padding-left: 20px; padding-right: 20px; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .guide-grid-2, .guide-grid-3, .checklist { grid-template-columns: 1fr; }
  .guide-cta { padding: 36px 24px; }
}
