/* =============================================
   WARUNG WOK — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ─── Variables & Reset ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #f2c230;
  --accent:     #f2921d;
  --bg:         #f24f13;
  --text:       #8082a6;
  --secondary:  #46334f;
  --white:      #ffffff;
  --light:      #fdf7f0;
  --shadow:     0 4px 24px rgba(70,51,79,.12);
  --shadow-lg:  0 8px 40px rgba(70,51,79,.2);
  --sidebar:    260px;
  --r:          20px;
  --rs:         12px;
  --ease:       all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--light); color: var(--secondary); overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: 'Poppins', sans-serif; }

/* ─── Preloader ─────────────────────────────── */
.preloader {
  position: fixed; inset: 0;
  background: var(--secondary);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.pl-logo {
  font-size: 2.6rem; font-weight: 900;
  color: var(--primary); letter-spacing: -1px;
  margin-bottom: 1.5rem;
  animation: plPop .6s ease both;
}
.pl-logo span { color: var(--accent); }

.pl-spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(242,194,48,.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}
.pl-tagline {
  margin-top: 1rem; color: var(--text);
  font-size: .78rem; letter-spacing: 3px;
  text-transform: uppercase;
  animation: plPop .6s .15s ease both;
}

@keyframes spin    { to { transform: rotate(360deg); } }
@keyframes plPop   { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform:none; } }

/* ─── Sidebar Navigation ────────────────────── */
.sidebar {
  position: fixed; top: 0; left: 0;
  width: var(--sidebar); height: 100vh;
  background: var(--secondary);
  z-index: 1000;
  display: flex; flex-direction: column;
  padding: 2rem 1.5rem;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.sidebar-logo { margin-bottom: 2rem; }
.logo-text { font-size: 1.65rem; font-weight: 900; color: var(--primary); line-height: 1; letter-spacing: -.5px; }
.logo-wok  { color: var(--accent); }
.logo-tag  { font-size: .68rem; color: var(--text); text-transform: uppercase; letter-spacing: 2.5px; margin-top: 4px; }

.logo-img {
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.logo-img-sidebar {
  width: 76px;
  height: 76px;
  border: 2px solid rgba(242,194,48,.25);
  margin-bottom: .75rem;
}
.logo-img-footer {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255,255,255,.1);
  margin-bottom: .75rem;
}
.logo-img-preloader {
  width: 100px;
  height: 100px;
  border: 3px solid rgba(242,194,48,.3);
  margin-bottom: 1.25rem;
}

.nav-label { font-size: .62rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text); opacity: .5; margin-bottom: .6rem; padding-left: .5rem; }
.nav-links { display: flex; flex-direction: column; gap: .2rem; }

.nav-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem; border-radius: var(--rs);
  color: rgba(255,255,255,.55); font-size: .875rem; font-weight: 500;
  transition: var(--ease); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(242,194,48,.1); }
.nav-link.active::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 55%; background: var(--primary); border-radius: 0 3px 3px 0;
}
.nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.sidebar-divider { height: 1px; background: rgba(255,255,255,.07); margin: 1.25rem 0; }

.sidebar-hours {
  background: rgba(242,194,48,.08); border: 1px solid rgba(242,194,48,.18);
  border-radius: var(--rs); padding: 1rem; margin-bottom: 1.5rem;
}
.sidebar-hours h4 { color: var(--primary); font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .4rem; }
.sidebar-hours p  { color: rgba(255,255,255,.65); font-size: .78rem; line-height: 1.65; }
.open-badge {
  display: inline-block; background: #22c55e; color: #fff;
  font-size: .62rem; padding: 2px 8px; border-radius: 20px;
  margin-top: .4rem; font-weight: 700; letter-spacing: .5px;
}

.sidebar-social { display: flex; gap: .65rem; margin-top: auto; padding-top: 1rem; }
.social-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: var(--ease); font-size: .9rem;
}
.social-icon:hover { background: var(--primary); color: var(--secondary); border-color: var(--primary); transform: translateY(-2px); }
.social-icon svg { width: 15px; height: 15px; }

/* ─── Hamburger ─────────────────────────────── */
.hamburger {
  display: none; position: fixed; top: .9rem; left: .9rem;
  z-index: 1100; width: 44px; height: 44px;
  border-radius: 11px; background: var(--secondary);
  border: none; cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; padding: 10px;
  box-shadow: var(--shadow);
}
.hamburger span { display: block; width: 21px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 999; backdrop-filter: blur(4px);
}
.sidebar-overlay.active { display: block; }

/* ─── Main Wrapper ──────────────────────────── */
.main-wrapper { margin-left: var(--sidebar); min-height: 100vh; }

/* ─── Hero ──────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://picsum.photos/seed/warungwok/1600/900') center/cover no-repeat;
  transform: scale(1.1); will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(70,51,79,.88) 0%, rgba(242,79,19,.65) 100%);
}
.hero-content { position: relative; text-align: center; color: #fff; padding: 2rem; max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(242,194,48,.12); border: 1px solid rgba(242,194,48,.3);
  color: var(--primary); padding: .4rem 1.1rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 1.5rem; backdrop-filter: blur(8px);
}
.hero-badge::before {
  content:''; width:6px; height:6px;
  background: #22c55e; border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.hero h1 {
  font-size: clamp(3rem,7vw,5.5rem);
  font-weight: 900; line-height: .95; letter-spacing: -2px; margin-bottom: .5rem;
}
.hero h1 .hi { color: var(--primary); }
.hero-tag  { font-size: clamp(1.1rem,2.5vw,1.7rem); font-weight: 700; color: var(--accent); margin-bottom: 1rem; letter-spacing: 1px; }
.hero-desc { font-size: .95rem; color: rgba(255,255,255,.7); margin-bottom: 2.5rem; line-height: 1.75; max-width: 480px; margin-left: auto; margin-right: auto; }

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.85rem; border-radius: 50px;
  font-size: .875rem; font-weight: 700; cursor: pointer;
  border: none; transition: var(--ease); letter-spacing: .3px;
}
.btn-primary { background: var(--primary); color: var(--secondary); }
.btn-primary:hover { background: #e8b820; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,194,48,.45); }
.btn-outline { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .7rem; text-transform: uppercase; letter-spacing: 2px;
}
.scroll-mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.3); border-radius: 12px; display: flex; align-items: flex-start; justify-content: center; padding-top: 5px; }
.scroll-wheel { width: 3px; height: 5px; background: rgba(255,255,255,.5); border-radius: 2px; animation: swh 2s infinite; }
@keyframes swh { 0%{transform:translateY(0);opacity:1;} 100%{transform:translateY(11px);opacity:0;} }

/* ─── Section Shared ────────────────────────── */
.section { padding: 5rem 2.5rem; }

.section-tag {
  display: inline-block; background: rgba(242,194,48,.1); color: var(--accent);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  padding: .32rem .9rem; border-radius: 50px; border: 1px solid rgba(242,146,29,.2); margin-bottom: .65rem;
}
.section-title { font-size: clamp(1.8rem,4vw,2.7rem); font-weight: 800; color: var(--secondary); line-height: 1.12; letter-spacing: -.5px; }
.section-title span { color: var(--bg); }
.section-desc { color: var(--text); font-size: .95rem; line-height: 1.75; max-width: 500px; margin-top: .65rem; }

/* ─── Bento Grid ────────────────────────────── */
.bento-section { background: var(--light); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 220px;
  gap: 1.15rem;
}

.bento-card { border-radius: var(--r); overflow: hidden; position: relative; cursor: pointer; transition: var(--ease); }
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.bento-card.c2  { grid-column: span 2; }
.bento-card.c3  { grid-column: span 3; }
.bento-card.r2  { grid-row: span 2; }
.bento-card.cA  { grid-column: 1/-1; }

.bento-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bento-card:hover .bento-img { transform: scale(1.05); }

.bento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(70,51,79,.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem;
}
.bento-cat   { font-size: .62rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 700; margin-bottom: .3rem; }
.bento-title { font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.3; }
.bento-price { font-size: .88rem; color: var(--primary); font-weight: 700; margin-top: .3rem; }

.bento-info { padding: 1.4rem; display: flex; flex-direction: column; justify-content: space-between; }
.bento-info.dark   { background: var(--secondary); }
.bento-info.gold   { background: var(--primary); }
.bento-info.orange { background: var(--accent); }
.bento-info.spice  { background: var(--bg); }
.bento-info .bi-icon { font-size: 2.2rem; margin-bottom: auto; }
.bento-info h3     { font-size: 1.45rem; font-weight: 800; line-height: 1.2; color: #fff; }
.bento-info.gold h3 { color: var(--secondary); }
.bento-info p      { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: .25rem; }
.bento-info.gold p  { color: rgba(70,51,79,.6); }

/* ─── Specials ──────────────────────────────── */
.specials-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #5a4168 100%);
  padding: 5rem 2.5rem;
}
.specials-section .section-title { color: #fff; }
.specials-section .section-desc  { color: rgba(255,255,255,.5); }

.specials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1.15rem; margin-top: 2.5rem; }

.special-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: 1.6rem; backdrop-filter: blur(8px);
  transition: var(--ease);
}
.special-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); border-color: rgba(242,194,48,.3); }
.sc-emoji { font-size: 2.6rem; margin-bottom: 1rem; }
.special-card h3  { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; }
.special-card p   { color: rgba(255,255,255,.5); font-size: .82rem; line-height: 1.65; }
.sc-foot { margin-top: 1rem; display: flex; align-items: center; justify-content: space-between; }
.sc-price { color: var(--primary); font-size: 1.2rem; font-weight: 800; }
.sc-badge { font-size: .68rem; background: rgba(242,194,48,.12); color: var(--primary); padding: .28rem .7rem; border-radius: 20px; border: 1px solid rgba(242,194,48,.2); }

/* ─── Testimonials ──────────────────────────── */
.testimonials-section { background: #fff; }
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 1.4rem; transition: transform .5s cubic-bezier(.4,0,.2,1); }

.testi-card { min-width: calc(33.333% - 1rem); background: var(--light); border-radius: var(--r); padding: 1.85rem; flex-shrink: 0; }
.testi-quote { font-size: 3rem; color: var(--primary); line-height: 1; font-family: Georgia,serif; margin-bottom: .85rem; }
.testi-text  { color: var(--text); font-size: .9rem; line-height: 1.8; margin-bottom: 1.4rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.testi-name  { font-weight: 700; color: var(--secondary); font-size: .875rem; }
.testi-loc   { font-size: .72rem; color: var(--text); }
.testi-stars { color: var(--primary); font-size: .8rem; margin-bottom: .3rem; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.carousel-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--secondary);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); transition: var(--ease);
}
.carousel-btn:hover { background: var(--secondary); color: #fff; }
.carousel-btn svg { width: 16px; height: 16px; }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(70,51,79,.18); cursor: pointer; transition: var(--ease); border: none; }
.carousel-dot.active { background: var(--secondary); width: 24px; border-radius: 4px; }

/* ─── Hours & Map ───────────────────────────── */
.hours-map { background: var(--light); padding: 5rem 2.5rem; }
.hours-map-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 1.75rem; align-items: start; }

.hours-card { background: var(--secondary); border-radius: var(--r); padding: 2.25rem; }
.hours-card h2 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 1.4rem; }
.hours-list { display: flex; flex-direction: column; gap: .6rem; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: .7rem 1rem; border-radius: var(--rs); background: rgba(255,255,255,.05); }
.hours-row.today { background: rgba(242,194,48,.14); border: 1px solid rgba(242,194,48,.28); }
.hours-row.today .hday { color: var(--primary); font-weight: 700; }
.hday  { color: rgba(255,255,255,.65); font-size: .875rem; }
.htime { color: #fff; font-size: .875rem; font-weight: 600; }

.map-card { border-radius: var(--r); overflow: hidden; height: 400px; box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── Contact Bar ───────────────────────────── */
.contact-bar { background: var(--bg); padding: 3rem 2.5rem; }
.cbar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.cbar-item { display: flex; align-items: flex-start; gap: 1rem; color: #fff; }
.cbar-icon { width: 48px; height: 48px; background: rgba(255,255,255,.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.cbar-item h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.55); margin-bottom: .2rem; }
.cbar-item p  { font-size: .9rem; font-weight: 600; line-height: 1.55; }

/* ─── Footer ────────────────────────────────── */
.footer { background: var(--secondary); color: #fff; padding: 4rem 2.5rem 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .logo-text { font-size: 1.9rem; font-weight: 900; color: var(--primary); letter-spacing: -1px; margin-bottom: .65rem; display: block; }
.footer-brand p  { color: rgba(255,255,255,.45); font-size: .82rem; line-height: 1.75; margin-bottom: 1.4rem; }
.footer-social   { display: flex; gap: .65rem; }
.fcol h4 { font-size: .68rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.35); margin-bottom: 1.15rem; }
.fcol-links { display: flex; flex-direction: column; gap: .55rem; }
.fcol-links a { color: rgba(255,255,255,.55); font-size: .82rem; transition: var(--ease); }
.fcol-links a:hover { color: var(--primary); padding-left: 4px; }
.fcol-contact { display: flex; flex-direction: column; gap: .7rem; }
.fci { display: flex; align-items: flex-start; gap: .5rem; color: rgba(255,255,255,.55); font-size: .82rem; }
.fci-icon { flex-shrink: 0; margin-top: 1px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p   { color: rgba(255,255,255,.28); font-size: .78rem; }
.fbot-links { display: flex; gap: 1.5rem; }
.fbot-links a { color: rgba(255,255,255,.28); font-size: .78rem; transition: var(--ease); }
.fbot-links a:hover { color: var(--primary); }

/* ─── Marquee Strip ─────────────────────────── */
.marquee-section {
  background: var(--primary);
  padding: .8rem 0;
  overflow: hidden;
  border-top: 3px solid var(--secondary);
  border-bottom: 3px solid var(--secondary);
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  padding: 0 2.5rem;
}
.marquee-dot { color: rgba(70,51,79,.35); padding: 0 .5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Statement Section ─────────────────────── */
.statement-section {
  background: var(--bg);
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.statement-num {
  font-size: clamp(6rem,14vw,11rem);
  font-weight: 900;
  color: rgba(255,255,255,.12);
  line-height: .9;
  letter-spacing: -6px;
  user-select: none;
}
.statement-body h2 {
  font-size: clamp(1.6rem,3.5vw,2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -.5px;
}
.statement-body p { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.8; max-width: 420px; }
.statement-body .btn { margin-top: 1.5rem; }

/* ─── Quote Section ─────────────────────────── */
.quote-section { background: var(--secondary); padding: 5rem 2.5rem; }
.quote-wrap { max-width: 860px; }
.quote-mark { font-size: 8rem; line-height: .6; color: var(--primary); font-family: Georgia,serif; opacity: .5; }
.quote-text {
  font-size: clamp(1.4rem,3vw,2.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  letter-spacing: -.3px;
  border-left: 4px solid var(--primary);
  padding-left: 1.75rem;
  margin-bottom: 2rem;
  font-style: italic;
}
.quote-meta { display: flex; align-items: center; gap: 1rem; padding-left: 1.75rem; }
.quote-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.quote-name { font-weight: 700; color: var(--primary); font-size: .875rem; }
.quote-loc  { color: rgba(255,255,255,.4); font-size: .78rem; }

/* ─── Mini Quotes Row ───────────────────────── */
.mini-quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.15rem; margin-top: 3rem; }
.mini-q { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--rs); padding: 1.5rem; }
.mini-q p { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.7; margin-bottom: 1rem; }
.mini-q-name { color: rgba(255,255,255,.35); font-size: .75rem; font-weight: 600; }

/* ─── Price Strip ───────────────────────────── */
.price-strip { background: var(--light); padding: 4rem 2.5rem; }
.price-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap: 0;
  border: 2px solid var(--secondary);
  border-radius: var(--r);
  overflow: hidden;
}
.price-item { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(70,51,79,.1); }
.price-item:last-child { border-right: none; }
.price-item:nth-child(even) { display: none; }
.price-num { font-size: 2.4rem; font-weight: 900; color: var(--bg); line-height: 1; }
.price-label { font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); margin-top: .4rem; font-weight: 600; }
.price-divider { width: 1px; background: rgba(70,51,79,.1); }

/* ─── Reveal Animations ─────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ─── Menu Page ─────────────────────────────── */
.menu-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 100%);
  padding: 7rem 2.5rem 4.5rem; text-align: center;
}
.menu-hero h1 { font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 900; color: #fff; margin-bottom: .5rem; }
.menu-hero h1 span { color: var(--primary); }
.menu-hero p  { color: rgba(255,255,255,.55); font-size: .95rem; max-width: 460px; margin: 0 auto; line-height: 1.75; }

.menu-filter { background: #fff; padding: 1.6rem 2.5rem; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-tab {
  padding: .55rem 1.2rem; border-radius: 50px;
  border: 2px solid rgba(70,51,79,.1); background: transparent;
  cursor: pointer; font-size: .82rem; font-weight: 600;
  color: var(--text); transition: var(--ease);
}
.filter-tab:hover { border-color: var(--secondary); color: var(--secondary); }
.filter-tab.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }

.menu-masonry { padding: 2.5rem; columns: 3; column-gap: 1.15rem; }
.menu-item { break-inside: avoid; margin-bottom: 1.15rem; background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); transition: var(--ease); }
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mi-img { width: 100%; object-fit: cover; }
.mi-img.h160 { height: 160px; }
.mi-img.h200 { height: 200px; }
.mi-img.h260 { height: 260px; }
.mi-body { padding: 1.2rem; }
.mi-cat  { font-size: .62rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 700; margin-bottom: .3rem; }
.mi-name { font-size: 1.02rem; font-weight: 700; color: var(--secondary); margin-bottom: .45rem; }
.mi-desc { font-size: .8rem; color: var(--text); line-height: 1.65; margin-bottom: .9rem; }
.mi-foot { display: flex; align-items: center; justify-content: space-between; }
.mi-price { font-size: 1.08rem; font-weight: 800; color: var(--bg); }
.mi-badge { font-size: .68rem; padding: .28rem .7rem; border-radius: 20px; background: rgba(242,79,19,.08); color: var(--bg); border: 1px solid rgba(242,79,19,.15); font-weight: 600; }
.mi-badge.popular { background: rgba(242,194,48,.12); color: var(--accent); border-color: rgba(242,146,29,.2); }

/* ─── About Page ────────────────────────────── */
.about-hero { background: var(--secondary); padding: 7rem 2.5rem 5rem; }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; max-width: 1100px; }
.about-hero h1  { font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1.4rem; }
.about-hero h1 span { color: var(--primary); }
.about-hero p   { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.82; margin-bottom: 2rem; }
.about-hero-img { border-radius: var(--r); overflow: hidden; height: 440px; }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.15rem; margin-top: 2.5rem; }
.astat { text-align: center; background: rgba(255,255,255,.05); border-radius: var(--rs); padding: 1.4rem; border: 1px solid rgba(255,255,255,.07); }
.astat-num { font-size: 2.4rem; font-weight: 900; color: var(--primary); line-height: 1; }
.astat-lbl { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .4rem; line-height: 1.4; }

.values-section { background: var(--light); padding: 5rem 2.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 1.15rem; margin-top: 2.5rem; }
.value-card { background: #fff; border-radius: var(--r); padding: 1.9rem; box-shadow: var(--shadow); transition: var(--ease); border-bottom: 4px solid transparent; }
.value-card:hover { transform: translateY(-4px); border-bottom-color: var(--primary); }
.value-icon { width: 52px; height: 52px; background: rgba(242,194,48,.1); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.65rem; margin-bottom: 1.15rem; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: .45rem; }
.value-card p  { font-size: .82rem; color: var(--text); line-height: 1.68; }

.team-section { background: #fff; padding: 5rem 2.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1.4rem; margin-top: 2.5rem; }
.team-card { background: var(--light); border-radius: var(--r); overflow: hidden; transition: var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-img { height: 230px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-body { padding: 1.2rem; }
.team-name { font-size: 1.02rem; font-weight: 700; color: var(--secondary); }
.team-role { font-size: .78rem; color: var(--accent); font-weight: 600; margin-top: .2rem; }
.team-desc { font-size: .8rem; color: var(--text); line-height: 1.65; margin-top: .65rem; }

/* ─── Contact Page ──────────────────────────── */
.contact-page { background: var(--light); }

.contact-page-hero { background: linear-gradient(rgba(70,51,79,.72), rgba(70,51,79,.85)), url('../images/betopackaging.jpg') center/cover no-repeat; padding: 7rem 2.5rem 4rem; text-align: center; }
.contact-page-hero h1 { font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 900; color: #fff; margin-bottom: .65rem; }
.contact-page-hero h1 span { color: var(--primary); }
.contact-page-hero p { color: rgba(255,255,255,.55); max-width: 460px; margin: 0 auto; line-height: 1.75; }

.contact-main { padding: 4rem 2.5rem 5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.5rem; align-items: start; }

.form-card { background: #fff; border-radius: var(--r); padding: 2.4rem; box-shadow: var(--shadow); }
.form-card h2 { font-size: 1.55rem; font-weight: 800; color: var(--secondary); margin-bottom: .4rem; }
.form-card > p { color: var(--text); font-size: .875rem; margin-bottom: 1.85rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .75rem; font-weight: 700; color: var(--secondary); margin-bottom: .45rem; text-transform: uppercase; letter-spacing: .5px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: .85rem 1rem; border: 2px solid rgba(70,51,79,.1); border-radius: var(--rs); font-size: .875rem; font-family: 'Poppins',sans-serif; color: var(--secondary); background: #fff; transition: var(--ease); outline: none; resize: none; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(242,194,48,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit { width: 100%; padding: 1rem; background: var(--secondary); color: #fff; border: none; border-radius: 50px; font-size: .9rem; font-weight: 700; cursor: pointer; font-family: 'Poppins',sans-serif; transition: var(--ease); margin-top: .5rem; }
.btn-submit:hover { background: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,79,19,.3); }

.contact-stack { display: flex; flex-direction: column; gap: 1.2rem; }
.ci-card { background: #fff; border-radius: var(--r); padding: 1.65rem; box-shadow: var(--shadow); display: flex; align-items: flex-start; gap: 1rem; transition: var(--ease); }
.ci-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ci-icon { width: 50px; height: 50px; background: rgba(242,194,48,.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; flex-shrink: 0; }
.ci-card h4 { font-size: .7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); margin-bottom: .3rem; }
.ci-card p  { font-size: .9rem; font-weight: 600; color: var(--secondary); line-height: 1.55; }
.contact-map-wrap { border-radius: var(--r); overflow: hidden; height: 260px; box-shadow: var(--shadow); }
.contact-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── Page Inner Hero (generic) ─────────────── */
.page-hero { background: linear-gradient(135deg, var(--secondary) 0%, #5a4168 100%); padding: 7rem 2.5rem 4rem; text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 900; color: #fff; margin-bottom: .6rem; }
.page-hero h1 span { color: var(--primary); }
.page-hero p  { color: rgba(255,255,255,.55); max-width: 460px; margin: 0 auto; line-height: 1.75; }

/* ─── Branches (Linktree style) ─────────────── */
.branches-section {
  background: var(--secondary);
  padding: 4rem 1.5rem 5rem;
}
.branches-section .section-title { color: #fff; }
.branches-section .section-title span { color: var(--primary); }

.branches-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 560px;
  margin: 2rem auto 0;
}

.branch-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  transition: var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.branch-link:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.branch-link-icon {
  width: 42px;
  height: 42px;
  background: rgba(242,194,48,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.branch-link-icon svg { width: 18px; height: 18px; }

.branch-link-body { flex: 1; min-width: 0; }
.branch-link-name {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.branch-link-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}

.branch-link-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}
.branch-action-btn {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem .85rem;
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--ease);
  white-space: nowrap;
}
.branch-action-btn.call {
  background: var(--primary);
  color: var(--secondary);
}
.branch-action-btn.call:hover { background: #e8b820; }
.branch-action-btn.map {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.1);
}
.branch-action-btn.map:hover { background: rgba(255,255,255,.15); color: #fff; }
.branch-action-btn svg { width: 12px; height: 12px; }

.branch-svc-dots {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}
.svc-dot {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,.3);
}
.svc-dot.active { color: var(--primary); }

.branch-link.sentul { border-left: 3px solid rgba(242,146,29,.4); }

.svc-badge {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .25rem .65rem;
  border-radius: 6px;
  background: rgba(70,51,79,.07);
  color: var(--text);
}
.svc-badge.dine { background: rgba(242,194,48,.15); color: #a07800; }
.svc-badge.dlvr { background: rgba(242,79,19,.1); color: var(--bg); }

@media (max-width: 600px) {
  .branch-link-actions { flex-direction: column; gap: .35rem; }
  .branch-action-btn { justify-content: center; }
}

/* ─── Gallery Page ──────────────────────────── */
.gallery-section { background: var(--light); padding: 4rem 2.5rem 5rem; }
.gallery-masonry { columns: 3; column-gap: 1.15rem; margin-top: 2.5rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1.15rem; border-radius: var(--r); overflow: hidden; cursor: pointer; position: relative; box-shadow: var(--shadow); transition: var(--ease); }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; display: block; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(70,51,79,0); display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.gallery-item:hover .gallery-item-overlay { background: rgba(70,51,79,.4); }
.gallery-overlay-icon { color: #fff; font-size: 2rem; opacity: 0; transform: scale(.5); transition: var(--ease); }
.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--rs); object-fit: contain; }
.lightbox-close { position: absolute; top: 1.25rem; right: 1.25rem; width: 42px; height: 42px; background: rgba(255,255,255,.1); border: none; border-radius: 50%; color: #fff; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: none; color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

/* ─── Responsive ────────────────────────────── */
@media (max-width: 1200px) {
  .bento-grid { grid-template-columns: repeat(3,1fr); }
  .bento-card.c3 { grid-column: span 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .menu-masonry { columns: 2; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 1024px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .hamburger { display: flex; }
  .main-wrapper { margin-left: 0; }
  .hours-map-grid { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-img { height: 300px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .bento-card.c3 { grid-column: span 2; }
}

@media (max-width: 768px) {
  .statement-section { grid-template-columns: 1fr; gap: 1rem; }
  .statement-num { font-size: 5rem; }
  .mini-quotes { grid-template-columns: 1fr; }
  .price-strip-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 3.5rem 1.25rem; }
  .bento-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 175px; }
  .bento-card.c3 { grid-column: span 2; }
  .bento-card.r2 { grid-row: span 1; }
  .testi-card { min-width: 100%; }
  .cbar-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .menu-masonry { columns: 1; padding: 1.25rem; }
  .menu-filter { padding: 1rem 1.25rem; }
  .gallery-masonry { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .hours-map { padding: 3.5rem 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .contact-bar { padding: 2.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.c2,.bento-card.c3,.bento-card.cA,.bento-card.r2 { grid-column: span 1; grid-row: span 1; }
  .section { padding: 3rem 1rem; }
  .menu-masonry,.gallery-masonry { padding: 1rem; }
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .specials-section { padding: 3.5rem 1.25rem; }
}
