/* ==========================================================================
   Cendol88 — style.css
   Palet: Pandan Deep, Pandan Bright, Gula Gold, Gula Merah, Santan Cream
   ========================================================================== */

:root{
  --pandan-deep: #0F3324;
  --pandan-deep-2: #133F2C;
  --pandan-bright: #3F8F5C;
  --pandan-light: #8FCB9F;
  --gula-gold: #E7A63A;
  --gula-gold-2: #F4C566;
  --gula-merah: #A6432B;
  --santan: #FCF6E8;
  --santan-2: #F6ECD6;
  --ink: #16231B;
  --ink-soft: #3C4A3F;
  --white: #FFFFFF;

  --font-display: "Baloo 2", "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 40px -18px rgba(15,51,36,0.35);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--santan);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; line-height:1.08; }
p{ margin:0; }
section{ position:relative; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(20px, 5vw, 48px);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:0.8rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gula-gold);
}
.eyebrow::before{
  content:"";
  width:22px; height:3px;
  background:var(--gula-gold);
  border-radius:3px;
  display:inline-block;
}
.section--light .eyebrow{ color:var(--pandan-bright); }
.section--light .eyebrow::before{ background:var(--pandan-bright); }

/* Focus visibility */
a:focus-visible, button:focus-visible{
  outline:3px solid var(--gula-gold);
  outline-offset:3px;
  border-radius:6px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:1rem;
  padding:14px 26px;
  border-radius:100px;
  border:none;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-3px); }
.btn-primary{
  background:var(--gula-gold);
  color:var(--pandan-deep);
  box-shadow:0 14px 30px -12px rgba(231,166,58,0.7);
}
.btn-primary:hover{ background:var(--gula-gold-2); }
.btn-outline{
  background:transparent;
  color:var(--santan);
  border:2px solid rgba(252,246,232,0.5);
}
.btn-outline:hover{ border-color:var(--santan); background:rgba(252,246,232,0.08); }
.btn-dark{
  background:var(--pandan-deep);
  color:var(--santan);
}
.btn-dark:hover{ background:var(--pandan-deep-2); }
.btn-block{ width:100%; }
.btn svg{ width:20px; height:20px; flex-shrink:0; }

/* ===================== HEADER ===================== */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  padding:14px 0;
  transition:background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.is-scrolled{
  background:rgba(15,51,36,0.92);
  backdrop-filter:blur(10px);
  padding:8px 0;
  box-shadow:0 10px 30px -14px rgba(0,0,0,0.4);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand img{
  width:46px; height:46px;
  border-radius:50%;
  border:2px solid var(--gula-gold);
}
.brand-name{
  font-family:var(--font-display);
  font-size:1.3rem;
  color:var(--santan);
  font-weight:700;
}
.brand-name span{ color:var(--gula-gold); }

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
}
.nav-links a{
  color:var(--santan);
  font-weight:600;
  font-size:0.95rem;
  opacity:0.88;
  position:relative;
  padding:6px 0;
}
.nav-links a:hover{ opacity:1; }
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px;
  background:var(--gula-gold);
  transition:width .25s ease;
}
.nav-links a:hover::after{ width:100%; }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width:40px; height:40px;
  position:relative;
}
.nav-toggle span{
  position:absolute; left:8px; right:8px; height:2.5px;
  background:var(--santan); border-radius:2px;
  transition:transform .25s ease, opacity .25s ease, top .25s ease;
}
.nav-toggle span:nth-child(1){ top:14px; }
.nav-toggle span:nth-child(2){ top:20px; }
.nav-toggle span:nth-child(3){ top:26px; }
.nav-toggle.is-open span:nth-child(1){ top:20px; transform:rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ top:20px; transform:rotate(-45deg); }

/* ===================== HERO ===================== */
.hero{
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(143,203,159,0.18), transparent 60%),
    radial-gradient(800px 500px at -5% 100%, rgba(231,166,58,0.16), transparent 55%),
    linear-gradient(180deg, var(--pandan-deep) 0%, var(--pandan-deep-2) 100%);
  padding:150px 0 120px;
  overflow:hidden;
}
.hero .container{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  align-items:center;
  gap:48px;
}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(231,166,58,0.14);
  border:1px solid rgba(231,166,58,0.4);
  color:var(--gula-gold-2);
  padding:8px 16px;
  border-radius:100px;
  font-size:0.82rem;
  font-weight:600;
  letter-spacing:0.03em;
  margin-bottom:22px;
}
.hero-badge .dot{
  width:8px; height:8px; border-radius:50%;
  background:#7CD98B;
  box-shadow:0 0 0 4px rgba(124,217,139,0.25);
}
.hero h1{
  font-size:clamp(2.4rem, 4.6vw, 3.8rem);
  color:var(--santan);
  font-weight:700;
  margin-bottom:20px;
}
.hero h1 em{
  font-style:normal;
  color:var(--gula-gold);
  position:relative;
  white-space:nowrap;
}
.hero-lede{
  font-size:1.08rem;
  color:rgba(252,246,232,0.78);
  max-width:520px;
  margin-bottom:34px;
  line-height:1.65;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:40px;
}
.hero-stats{
  display:flex;
  gap:34px;
  flex-wrap:wrap;
}
.hero-stat b{
  font-family:var(--font-display);
  font-size:1.6rem;
  color:var(--santan);
  display:block;
}
.hero-stat span{
  font-size:0.82rem;
  color:rgba(252,246,232,0.62);
}

.hero-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-visual .blob{
  position:absolute;
  width:min(480px, 92%);
  aspect-ratio:1;
  background:radial-gradient(circle at 35% 30%, var(--pandan-bright), var(--pandan-deep-2) 72%);
  border-radius:62% 38% 55% 45% / 48% 55% 45% 52%;
  animation:blobMove 12s ease-in-out infinite;
  filter:blur(0.5px);
}
@keyframes blobMove{
  0%,100%{ border-radius:62% 38% 55% 45% / 48% 55% 45% 52%; }
  50%{ border-radius:45% 55% 40% 60% / 55% 40% 60% 45%; }
}
.hero-photo{
  position:relative;
  width:min(380px, 78%);
  border-radius:50%;
  border:6px solid rgba(252,246,232,0.9);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  z-index:2;
}
.hero-photo img{ width:100%; height:100%; object-fit:cover; }
.hero-chip{
  position:absolute;
  background:var(--santan);
  color:var(--ink);
  padding:10px 16px;
  border-radius:16px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:0.85rem;
  box-shadow:var(--shadow-soft);
  display:flex; align-items:center; gap:8px;
  z-index:3;
  animation:floatChip 5s ease-in-out infinite;
}
.hero-chip svg{ width:18px; height:18px; }
.chip-1{ top:6%; left:-6%; animation-delay:0s; }
.chip-2{ bottom:8%; right:-8%; animation-delay:1.2s; background:var(--gula-gold); }
@keyframes floatChip{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

.hero-drip{
  position:absolute;
  left:0; right:0; bottom:-1px;
  line-height:0;
  z-index:1;
}
.hero-drip svg{ width:100%; height:auto; display:block; }

/* ===================== MARQUEE ===================== */
.marquee{
  background:var(--gula-gold);
  overflow:hidden;
  padding:12px 0;
}
.marquee-track{
  display:flex;
  gap:40px;
  width:max-content;
  animation:marqueeScroll 26s linear infinite;
}
@keyframes marqueeScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
.marquee-item{
  font-family:var(--font-display);
  font-weight:700;
  font-size:0.95rem;
  color:var(--pandan-deep);
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
}
.marquee-item::after{ content:"•"; opacity:0.5; margin-left:28px; }

/* ===================== SECTION HEADINGS ===================== */
.section-head{
  max-width:640px;
  margin-bottom:52px;
}
.section-head h2{
  font-size:clamp(1.9rem, 3.4vw, 2.6rem);
  margin-top:14px;
  color:var(--ink);
}
.section--dark .section-head h2{ color:var(--santan); }
.section-head p{
  margin-top:14px;
  color:var(--ink-soft);
  font-size:1.02rem;
  line-height:1.65;
}
.section--dark .section-head p{ color:rgba(252,246,232,0.7); }

.section-pad{ padding:100px 0; }

/* ===================== KEUNGGULAN ===================== */
.section--light{ background:var(--santan); }
.perks{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}
.perk-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:30px 24px;
  box-shadow:0 16px 32px -22px rgba(15,51,36,0.25);
  transition:transform .25s ease, box-shadow .25s ease;
}
.perk-card:hover{ transform:translateY(-6px); box-shadow:0 22px 40px -20px rgba(15,51,36,0.32); }
.perk-icon{
  width:56px; height:56px;
  border-radius:16px;
  background:var(--santan-2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.perk-icon svg{ width:28px; height:28px; color:var(--pandan-bright); }
.perk-card h3{
  font-size:1.08rem;
  margin-bottom:8px;
  color:var(--ink);
}
.perk-card p{
  font-size:0.92rem;
  color:var(--ink-soft);
  line-height:1.55;
}

/* ===================== MENU ===================== */
.section--forest{
  background:var(--pandan-deep);
  clip-path:polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin:-40px 0;
  padding-top:140px;
  padding-bottom:140px;
}
.menu-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.menu-card{
  background:var(--pandan-deep-2);
  border:1px solid rgba(252,246,232,0.08);
  border-radius:var(--radius-md);
  padding:26px;
  display:flex;
  flex-direction:column;
  gap:14px;
  transition:transform .25s ease, border-color .25s ease;
}
.menu-card:hover{ transform:translateY(-6px); border-color:rgba(231,166,58,0.5); }
.menu-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.menu-icon{
  width:52px; height:52px;
  border-radius:14px;
  background:rgba(231,166,58,0.14);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.menu-icon svg{ width:28px; height:28px; }
.menu-price{
  font-family:var(--font-display);
  font-weight:700;
  color:var(--gula-gold);
  font-size:1.15rem;
  white-space:nowrap;
}
.menu-card h3{
  color:var(--santan);
  font-size:1.15rem;
}
.menu-card p{
  color:rgba(252,246,232,0.62);
  font-size:0.9rem;
  line-height:1.55;
}
.menu-tag{
  display:inline-flex;
  align-self:flex-start;
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
  padding:4px 10px;
  border-radius:100px;
  background:rgba(143,203,159,0.15);
  color:var(--pandan-light);
}
.menu-note{
  text-align:center;
  color:rgba(252,246,232,0.55);
  font-size:0.88rem;
  margin-top:36px;
}

/* ===================== GALERI ===================== */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:140px;
  gap:18px;
}
.gallery-item{
  border-radius:var(--radius-md);
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--santan);
  isolation:isolate;
}
.gallery-item svg{ width:44%; height:44%; opacity:0.95; }
.gallery-item span{
  position:absolute;
  left:16px; bottom:14px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:0.85rem;
  z-index:2;
}
.gallery-item.big{ grid-column:span 2; grid-row:span 2; }
.g-1{ background:linear-gradient(135deg, var(--pandan-bright), var(--pandan-deep)); }
.g-2{ background:linear-gradient(135deg, var(--gula-gold), var(--gula-merah)); }
.g-3{ background:linear-gradient(135deg, #6FB98A, var(--pandan-deep-2)); }
.g-4{ background:linear-gradient(135deg, var(--gula-merah), #6C2A1A); }
.g-5{ background:linear-gradient(135deg, var(--pandan-deep-2), var(--pandan-bright)); }
.g-6{ background:linear-gradient(135deg, var(--gula-gold-2), var(--gula-gold)); }

/* ===================== CARA PESAN ===================== */
.order-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.order-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:34px 28px;
  text-align:center;
  box-shadow:0 16px 32px -22px rgba(15,51,36,0.25);
  border:2px solid transparent;
  transition:border-color .25s ease, transform .25s ease;
}
.order-card:hover{ transform:translateY(-6px); }
.order-card.gofood{ border-color:#00AA13; }
.order-card.grabfood{ border-color:#00B14F; }
.order-card.wa{ border-color:#25D366; }
.order-logo{
  width:64px; height:64px;
  margin:0 auto 18px;
  border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display);
  font-weight:700;
  color:#fff;
  font-size:0.95rem;
}
.order-card.gofood .order-logo{ background:#00AA13; }
.order-card.grabfood .order-logo{ background:#00B14F; }
.order-card.wa .order-logo{ background:#25D366; }
.order-card h3{ font-size:1.15rem; margin-bottom:8px; }
.order-card p{ color:var(--ink-soft); font-size:0.9rem; margin-bottom:22px; line-height:1.55; }

/* ===================== LOKASI ===================== */
.location-wrap{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:0;
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.location-info{
  padding:46px 40px;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.info-row{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.info-icon{
  width:44px; height:44px;
  border-radius:12px;
  background:var(--santan-2);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.info-icon svg{ width:22px; height:22px; color:var(--pandan-bright); }
.info-row h4{
  font-family:var(--font-display);
  font-size:1rem;
  margin-bottom:4px;
}
.info-row p, .info-row a{
  font-size:0.92rem;
  color:var(--ink-soft);
  line-height:1.55;
}
.location-map{
  min-height:380px;
}
.location-map iframe{
  width:100%; height:100%;
  border:0;
  display:block;
  min-height:380px;
}

/* ===================== FOOTER ===================== */
.site-footer{
  background:var(--pandan-deep);
  color:rgba(252,246,232,0.7);
  padding:64px 0 28px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
  padding-bottom:44px;
  border-bottom:1px solid rgba(252,246,232,0.1);
}
.footer-brand .brand-name{ color:var(--santan); }
.footer-brand p{
  margin-top:14px;
  font-size:0.9rem;
  line-height:1.65;
  max-width:320px;
  color:rgba(252,246,232,0.55);
}
.footer-col h4{
  font-family:var(--font-display);
  color:var(--santan);
  font-size:0.95rem;
  margin-bottom:16px;
}
.footer-col ul li{ margin-bottom:10px; }
.footer-col a{
  font-size:0.9rem;
  color:rgba(252,246,232,0.6);
  transition:color .2s ease;
}
.footer-col a:hover{ color:var(--gula-gold); }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  padding-top:24px;
  font-size:0.82rem;
  color:rgba(252,246,232,0.45);
}

/* WhatsApp floating button */
.wa-float{
  position:fixed;
  right:22px; bottom:22px;
  width:60px; height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(0,0,0,0.4);
  z-index:200;
  animation:pulseWa 2.4s ease-in-out infinite;
}
.wa-float svg{ width:30px; height:30px; color:#fff; }
@keyframes pulseWa{
  0%,100%{ box-shadow:0 14px 30px -10px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50%{ box-shadow:0 14px 30px -10px rgba(0,0,0,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* Reveal on scroll */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px){
  .hero .container{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; margin-bottom:10px; }
  .perks{ grid-template-columns:repeat(2, 1fr); }
  .menu-grid{ grid-template-columns:repeat(2, 1fr); }
  .order-grid{ grid-template-columns:1fr; }
  .location-wrap{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; gap:32px; }
  .gallery-grid{ grid-template-columns:repeat(2, 1fr); }
  .gallery-item.big{ grid-column:span 2; grid-row:span 1; }
}
@media (max-width: 760px){
  .nav-links{
    position:fixed;
    top:70px; left:16px; right:16px;
    background:var(--pandan-deep);
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    padding:18px;
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-soft);
    transform:translateY(-14px);
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease, transform .25s ease;
  }
  .nav-links.is-open{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }
  .nav-links a{ padding:10px 6px; width:100%; }
  .nav-toggle{ display:block; }
  .nav-cta .btn-outline{ display:none; }
  .hero{ padding:130px 0 90px; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-stats{ gap:22px; }
  .perks{ grid-template-columns:1fr; }
  .menu-grid{ grid-template-columns:1fr; }
  .section-pad{ padding:70px 0; }
  .section--forest{ padding-top:90px; padding-bottom:90px; }
}
