*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --honey: #F5A623;
  --butter: #FFF3D4;
  --brown: #5C3317;
  --cream: #FFFBF2;
  --syrup: #C47A2B;
  --soft: #FDE8B0;
  --text-muted: #7a5230;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.ppk-nav {
  background: var(--cream);
  border-bottom: 1.5px solid #F5D08A;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.ppk-nav .nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 28px;
  color: var(--brown);
  text-decoration: none;
}
.ppk-nav .nav-logo span { color: var(--honey); }
.ppk-nav ul { list-style: none; display: flex; gap: 28px; }
.ppk-nav ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
  transition: color .2s;
}
.ppk-nav ul li a:hover { color: var(--brown); }
.ppk-nav .nav-order {
  background: var(--brown);
  color: var(--butter);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.ppk-nav .nav-order:hover { opacity: .88; transform: translateY(-1px); }

/* ── HERO ── */
.ppk-hero {
  background: linear-gradient(135deg, #FFF3D4 0%, #FFE0A0 55%, #FECF6A 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ppk-hero::before {
  content: '🥞';
  font-size: 220px;
  position: absolute;
  right: -30px; top: -30px;
  opacity: .1;
  transform: rotate(15deg);
  pointer-events: none;
}
.ppk-hero::after {
  content: '🍯';
  font-size: 140px;
  position: absolute;
  left: -20px; bottom: -20px;
  opacity: .09;
  transform: rotate(-10deg);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: var(--brown);
  color: var(--butter);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-logo {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(52px, 10vw, 80px);
  color: var(--brown);
  line-height: 1.05;
  margin-bottom: .5rem;
}
.hero-logo span { color: var(--honey); }
.hero-tagline {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--brown);
  color: var(--butter);
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,51,23,.28); }

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform .15s;
}
.btn-outline:hover { transform: translateY(-2px); background: rgba(92,51,23,.06); }

/* pancake stack */
.pancake-stack { display: flex; justify-content: center; align-items: flex-end; gap: 10px; margin-top: 3rem; }
.p-layers { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.p-layer { border-radius: 50%; background: linear-gradient(180deg, #FCBF49, #D97706); }
.p-l1 { width: 130px; height: 24px; animation: floatUp 3s ease-in-out infinite; }
.p-l2 { width: 110px; height: 22px; animation: floatUp 3s ease-in-out infinite .15s; }
.p-l3 { width: 90px; height: 20px; animation: floatUp 3s ease-in-out infinite .3s; }
.p-drip { width: 5px; height: 32px; background: linear-gradient(180deg, #C47A2B, transparent); margin-bottom: 4px; border-radius: 4px; animation: drip 2.4s ease-in-out infinite; }
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes drip { 0%, 100% { opacity: .5; transform: scaleY(.85); } 50% { opacity: 1; transform: scaleY(1.15); } }

/* ── STATS ── */
.ppk-stats { background: var(--brown); color: var(--butter); display: flex; justify-content: center; flex-wrap: wrap; }
.stat-item { padding: 1.5rem 3rem; text-align: center; border-right: 1px solid rgba(255,243,212,.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Fredoka One', cursive; font-size: 36px; color: var(--honey); line-height: 1; }
.stat-label { font-size: 13px; opacity: .75; margin-top: 4px; }

/* ── SECTIONS ── */
.ppk-section { padding: 4rem 2rem; }
.section-eyebrow { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--honey); margin-bottom: .5rem; }
.section-title { font-family: 'Fredoka One', cursive; font-size: clamp(28px, 5vw, 40px); color: var(--brown); text-align: center; margin-bottom: .5rem; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 15px; margin-bottom: 3rem; }

/* ── MENU ── */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.menu-card { background: #fff; border-radius: 24px; padding: 2rem 1.25rem 1.5rem; text-align: center; border: 1.5px solid #F5D08A; transition: transform .2s, box-shadow .2s; position: relative; }
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(245,166,35,.22); }
.menu-card.popular::before { content: '🔥 Terlaris'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--honey); color: var(--brown); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.menu-emoji { font-size: 52px; margin-bottom: 1rem; display: block; }
.menu-name { font-family: 'Fredoka One', cursive; font-size: 22px; color: var(--brown); margin-bottom: .35rem; }
.menu-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.menu-price { display: inline-block; background: var(--soft); color: var(--syrup); font-weight: 700; font-size: 15px; padding: 5px 16px; border-radius: 20px; }

/* ── WHY ── */
.ppk-why { background: var(--butter); padding: 4rem 2rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.why-card { background: #fff; border-radius: 20px; padding: 2rem 1.5rem; text-align: center; border: 1.5px solid #F5D08A; }
.why-icon { font-size: 40px; margin-bottom: .9rem; }
.why-title { font-family: 'Fredoka One', cursive; font-size: 19px; color: var(--brown); margin-bottom: .4rem; }
.why-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.ppk-testi { padding: 4rem 2rem; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.testi-card { background: #fff; border-radius: 20px; padding: 1.75rem 1.5rem; border: 1.5px solid #F5D08A; }
.testi-stars { color: var(--honey); font-size: 18px; margin-bottom: .75rem; }
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--soft); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--syrup); flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; color: var(--brown); }
.testi-loc { font-size: 12px; color: var(--text-muted); }

/* ── PROMO ── */
.ppk-promo { background: var(--brown); border-radius: 28px; margin: 2rem; padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden; }
.ppk-promo::before { content: '🍓'; font-size: 120px; position: absolute; left: -20px; bottom: -20px; opacity: .12; transform: rotate(-15deg); }
.ppk-promo::after { content: '🍫'; font-size: 100px; position: absolute; right: -10px; top: -10px; opacity: .12; transform: rotate(10deg); }
.promo-label { display: inline-block; background: var(--honey); color: var(--brown); font-size: 12px; font-weight: 700; letter-spacing: 1px; padding: 6px 16px; border-radius: 20px; margin-bottom: 1rem; }
.promo-title { font-family: 'Fredoka One', cursive; font-size: clamp(32px, 6vw, 52px); color: var(--butter); line-height: 1.1; margin-bottom: .75rem; }
.promo-sub { color: rgba(255,243,212,.7); font-size: 15px; margin-bottom: 2rem; }
.btn-honey { background: var(--honey); color: var(--brown); border: none; padding: 15px 36px; border-radius: 50px; font-size: 17px; font-weight: 700; font-family: 'Nunito', sans-serif; cursor: pointer; text-decoration: none; display: inline-block; transition: transform .15s, box-shadow .15s; }
.btn-honey:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

/* ── CONTACT ── */
.ppk-contact { padding: 4rem 2rem; background: var(--butter); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 780px; margin: 0 auto; }
.contact-card { background: #fff; border-radius: 20px; padding: 1.75rem 1.5rem; text-align: center; border: 1.5px solid #F5D08A; transition: transform .2s; }
.contact-card:hover { transform: translateY(-4px); }
.contact-icon { font-size: 36px; margin-bottom: .75rem; }
.contact-title { font-family: 'Fredoka One', cursive; font-size: 18px; color: var(--brown); margin-bottom: .35rem; }
.contact-info { font-size: 14px; color: var(--text-muted); }
.contact-info a { color: var(--syrup); text-decoration: none; font-weight: 600; }

/* ── FOOTER ── */
.ppk-footer { background: var(--brown); color: rgba(255,243,212,.7); text-align: center; padding: 2.5rem 2rem; font-size: 14px; }
.ppk-footer strong { color: var(--honey); }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 1rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,243,212,.55); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--butter); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .ppk-nav ul { display: none; }
  .stat-item { padding: 1.25rem 1.5rem; }
  .ppk-promo { margin: 1rem; }
}
