@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@300;400;500;600;700&display=swap');
/* ===========================
   ROOT & RESET
=========================== */
:root {
  --orange:      #c0392b;
  --orange-dark: #922b21;
  --cream:       #fdf6ec;
  --cream-dark:  #f5e6d0;
  --brown:       #5d3a1a;
  --gold:        #d4a847;
  --text:        #1a1a1a;
  --text-muted:  #6b6b6b;
  --white:       #ffffff;
  --radius:      16px;
  --shadow:      0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.15);
  --transition:  .3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block; background: var(--orange); color: var(--white);
  padding: 14px 32px; border-radius: 50px; font-weight: 500; font-size: .95rem;
  letter-spacing: .02em; box-shadow: 0 4px 16px rgba(192,57,43,.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,.45); }

.btn-outline {
  display: inline-block; border: 2px solid rgba(255,255,255,.7);
  color: var(--white); padding: 12px 32px; border-radius: 50px;
  font-weight: 500; font-size: .95rem; transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled,
.navbar.page-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  color: var(--white); font-weight: 700; display: flex; align-items: center; gap: 8px;
  transition: color var(--transition);
}
.navbar.scrolled .nav-logo,
.navbar.page-nav .nav-logo { color: var(--orange); }
.logo-icon { color: var(--gold); font-size: 1.3rem; line-height: 1; }

.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.navbar.scrolled .nav-link,
.navbar.page-nav .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover,
.navbar.page-nav .nav-link:hover { color: var(--orange); background: var(--cream); }

.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  border-radius: 50px !important; padding: 10px 22px !important;
  box-shadow: 0 4px 14px rgba(192,57,43,.3);
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); color: var(--white) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--white);
  border-radius: 2px; transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span,
.navbar.page-nav .nav-toggle span { background: var(--text); }

/* ===========================
   HERO (homepage) 
=========================== */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #3d1a08 0%, #5d3a1a 45%, #7a4a22 100%);
  padding: 100px 0 60px;
}

/* Animated background grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,168,71,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,71,.08) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: heroGridMove 25s linear infinite;
  pointer-events: none;
}
@keyframes heroGridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

/* Glow orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(253,246,236,.12) 0%, transparent 70%);
  top: -150px; left: -200px;
  animation: orbFloat1 9s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,71,.20) 0%, transparent 70%);
  bottom: -120px; right: -150px;
  animation: orbFloat2 11s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(192,57,43,.18) 0%, transparent 70%);
  top: 40%; right: 20%;
  animation: orbFloat1 7s 2s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,25px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,-35px)} }

.deco-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(253,246,236,.10);
  pointer-events: none;
  top: 50%; left: 50%;
}
.dc-1 { width: 500px; height: 500px; transform: translate(-50%,-50%); }
.dc-2 {
  width: 750px; height: 750px;
  transform: translate(-50%,-50%);
  border-style: dashed;
  border-color: rgba(212,168,71,.12);
  animation: rotateSlow 35s linear infinite;
}
.dc-3 { width: 1000px; height: 1000px; transform: translate(-50%,-50%); }
@keyframes rotateSlow {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Floating food cards */
.food-card {
  position: absolute; z-index: 5;
  background: rgba(253,246,236,.08);
  border: 1px solid rgba(253,246,236,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px; overflow: hidden;
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.food-card img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .8; }
.food-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 14px 16px;
  background: linear-gradient(to top, rgba(61,26,8,.92) 0%, transparent 100%);
  font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.88);
  letter-spacing: .08em; text-transform: uppercase;
}
.fc-1 { width: 170px; height: 210px; top: 13%; left: 3%; animation: fcFloat1 7s ease-in-out infinite; transform: rotate(-5deg); }
.fc-2 { width: 130px; height: 130px; bottom: 20%; left: 7%; border-radius: 50%; animation: fcFloat2 9s ease-in-out infinite; }
.fc-3 { width: 160px; height: 200px; top: 10%; right: 3%; animation: fcFloat1 8s 1.5s ease-in-out infinite; transform: rotate(5deg); }
.fc-4 { width: 120px; height: 120px; bottom: 22%; right: 6%; border-radius: 16px; animation: fcFloat2 6s .8s ease-in-out infinite; transform: rotate(-4deg); }
@keyframes fcFloat1 { 0%,100%{transform:rotate(-5deg) translateY(0)} 50%{transform:rotate(-5deg) translateY(-16px)} }
@keyframes fcFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Floating badges */
.hero-badge-float {
  position: absolute; z-index: 6;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 16px;
  font-size: .8rem; white-space: nowrap; pointer-events: none;
}
.hero-badge-float.left {
  background: #d4a847; color: #0d0a07;
  bottom: 28%; left: 2.5%;
  box-shadow: 0 10px 28px rgba(212,168,71,.4);
  animation: fcFloat2 8s 3s ease-in-out infinite;
}
.hero-badge-float.right {
  background: rgba(253,246,236,.10);
  border: 1px solid rgba(253,246,236,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(253,246,236,.9);
  top: 26%; right: 2.5%;
  animation: fcFloat1 10s 2s ease-in-out infinite;
}
.hbf-icon { font-size: 1.1rem; flex-shrink: 0; }
.hero-badge-float strong { display: block; font-weight: 600; font-size: .82rem; line-height: 1.3; }
.hero-badge-float span  { display: block; font-size: .72rem; opacity: .75; margin-top: 1px; }

/* Center content */
.hero-center {
  position: relative; z-index: 10;
  text-align: center; max-width: 800px; padding: 0 24px;
  animation: heroEnter 1.2s cubic-bezier(.16,1,.3,1) both;
}
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: #d4a847; font-size: .75rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 30px;
  animation: heroEnter 1s .1s cubic-bezier(.16,1,.3,1) both;
}
.eyebrow-line { width: 36px; height: 1px; background: #d4a847; opacity: .7; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7.5vw, 6.4rem);
  line-height: 1.05; color: #fff;
  font-weight: 300; letter-spacing: -.02em;
  margin-bottom: 28px;
  animation: heroEnter 1s .2s cubic-bezier(.16,1,.3,1) both;
}
.hero-title em { font-style: italic; color: #d4a847; display: block; }
.hero-title-strong { display: block; font-weight: 600; color: #fff; }

.hero-desc {
  color: rgba(253,246,236,.75); font-size: 1.05rem; line-height: 1.8;
  max-width: 500px; margin: 0 auto 44px; font-weight: 300;
  animation: heroEnter 1s .3s cubic-bezier(.16,1,.3,1) both;
}

/* Button overrides for dark hero */
#hero .btn-primary {
  background: #d4a847; color: #0d0a07 !important;
  box-shadow: 0 8px 28px rgba(212,168,71,.35);
}
#hero .btn-primary:hover {
  background: #c49a3a;
  box-shadow: 0 14px 36px rgba(212,168,71,.5);
  transform: translateY(-3px);
}
#hero .btn-outline {
  border-color: rgba(253,246,236,.45);
  color: rgba(253,246,236,.9);
}
#hero .btn-outline:hover {
  border-color: rgba(253,246,236,.85);
  color: #fdf6ec; background: rgba(253,246,236,.08);
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 64px;
  animation: heroEnter 1s .35s cubic-bezier(.16,1,.3,1) both;
}

/* Stats row */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid rgba(253,246,236,.12);
  padding-top: 32px;
  animation: heroEnter 1s .45s cubic-bezier(.16,1,.3,1) both;
}
.stat-item { flex: 1; max-width: 160px; text-align: center; padding: 0 28px; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: #d4a847;
  line-height: 1; display: block; margin-bottom: 6px;
}
.stat-label { font-size: .72rem; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .1em; }
.stat-divider { display: none; }
.stat { display: none; }

/* Responsive */
@media (max-width: 1024px) {
  .fc-1, .fc-3 { width: 130px; }
  .fc-2, .fc-4 { width: 100px; height: 100px; }
}
@media (max-width: 768px) {
  .fc-1, .fc-3 { display: none; }
  .fc-2 { width: 90px; height: 90px; left: 2%; }
  .fc-4 { width: 80px; height: 80px; right: 2%; }
  .hero-badge-float { display: none; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 3.5rem); }
  .stat-item { padding: 0 16px; }
  .orb-1 { width: 300px; height: 300px; }
  .orb-2 { width: 250px; height: 250px; }
  .dc-2, .dc-3 { display: none; }
}
@media (max-width: 480px) {
  .hero-eyebrow { font-size: .68rem; }
  .eyebrow-line { width: 20px; }
  .stat-num { font-size: 1.8rem; }
}

/* ===========================
   SECTION COMMON
=========================== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-label { color: var(--orange); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,2.8rem); color: var(--text); margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: 1.02rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-head.light .section-label { color: rgba(255,255,255,.7); }
.section-head.light .section-title  { color: var(--white); }
.section-head.light .section-sub   { color: rgba(255,255,255,.8); }

/* ===========================
   MENU CARDS (homepage)
=========================== */
#menu { padding: 100px 0; background: var(--cream); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 28px; }
.menu-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); cursor: pointer; display: block; color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeUp .6s var(--delay,0s) ease both;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.menu-card.featured { border: 2px solid var(--gold); }

.menu-img-wrap { position: relative; overflow: hidden; }
.menu-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.menu-card:hover .menu-img-wrap img { transform: scale(1.06); }
.menu-tag {
  position: absolute; top: 14px; left: 14px; background: var(--orange);
  color: var(--white); font-size: .75rem; font-weight: 600; padding: 4px 12px;
  border-radius: 50px; letter-spacing: .04em;
}
.menu-card.featured .menu-tag { background: var(--gold); }
.menu-hover-cta {
  position: absolute; inset: 0; background: rgba(192,57,43,.72);
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
}
.menu-card:hover .menu-hover-cta { opacity: 1; }

.menu-body { padding: 24px; }
.menu-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 10px; }
.menu-body p  { color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin-bottom: 20px; }
.menu-footer  { display: flex; align-items: center; justify-content: space-between; }
.menu-price   { font-weight: 600; color: var(--orange); font-size: .9rem; }
.menu-order   { font-size: .85rem; font-weight: 600; color: var(--orange); cursor: pointer; }

/* ===========================
   KEUNGGULAN
=========================== */
.keunggulan-section { padding: 100px 0; background: linear-gradient(135deg, var(--orange-dark), var(--orange)); position: relative; }
.keunggulan-section::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,.06)'/%3E%3C/svg%3E"); }
.keunggulan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; position: relative; }
.keung-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 32px 28px; transition: background var(--transition), transform var(--transition); backdrop-filter: blur(4px); }
.keung-item:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.keung-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.keung-item h4 { color: var(--white); font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; }
.keung-item p  { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.65; }

/* ===========================
   ABOUT
=========================== */
#about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-side { position: relative; }
.about-img-main img { width: 90%; border-radius: 20px; box-shadow: var(--shadow-lg); aspect-ratio: 3/4; object-fit: cover; }
.about-img-accent { position: absolute; bottom: -30px; right: -10px; width: 55%; }
.about-img-accent img { border-radius: 16px; box-shadow: var(--shadow-lg); aspect-ratio: 1; object-fit: cover; border: 5px solid var(--white); }
.about-pill { position: absolute; top: 30px; right: 0; background: var(--orange); color: var(--white); padding: 8px 18px; border-radius: 50px; font-size: .85rem; font-weight: 600; box-shadow: var(--shadow); }
.about-text { padding-top: 20px; }
.about-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3.5vw,2.5rem); line-height: 1.2; margin-bottom: 24px; margin-top: 12px; }
.about-text p  { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; font-size: .97rem; }
.about-list { margin: 24px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { font-size: .93rem; color: var(--text); }

/* ===========================
   TESTIMONI SLIDER
=========================== */
#testimoni { padding: 100px 0; background: var(--cream); }
.testi-slider-wrap { position: relative; padding: 0 56px; }
.testi-slider-viewport { overflow: hidden; border-radius: var(--radius); }
.testi-slider-track { display: flex; gap: 28px; transition: transform .5s cubic-bezier(.4,0,.2,1); will-change: transform; }
.testi-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow); border-top: 4px solid transparent;
  flex: 0 0 calc(33.333% - 19px); min-width: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-card.featured { border-top-color: var(--gold); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 18px; letter-spacing: 2px; }
.testi-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.75; margin-bottom: 28px; font-style: italic; position: relative; }
.testi-card p::before { content: '\201C'; font-size: 3rem; line-height: 0; color: var(--orange); opacity: .25; margin-right: 4px; vertical-align: -14px; font-family: 'Cormorant Garamond', serif; }
.testi-profile { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.15rem; flex-shrink: 0; }
.testi-profile strong { display: block; font-size: .9rem; color: var(--text); margin-bottom: 2px; }
.testi-profile span   { font-size: .8rem; color: var(--text-muted); }

.testi-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 2px solid var(--cream-dark); color: var(--orange); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); box-shadow: var(--shadow); z-index: 10; }
.testi-arrow:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-50%) scale(1.08); }
.testi-prev { left: 0; } .testi-next { right: 0; }
.testi-arrow:disabled { opacity: .35; cursor: default; }
.testi-arrow:disabled:hover { background: var(--white); color: var(--orange); transform: translateY(-50%); }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cream-dark); border: none; cursor: pointer; transition: all .3s ease; padding: 0; }
.testi-dot.active { background: var(--orange); width: 28px; border-radius: 4px; }

/* ===========================
   KONTAK
=========================== */
.kontak-section { padding: 100px 0; background: linear-gradient(160deg, var(--brown) 0%, #3b1a08 100%); }
.kontak-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.kontak-info h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3vw,2.4rem); color: var(--white); margin: 12px 0 20px; line-height: 1.2; }
.kontak-info p { color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 36px; }
.kontak-items { display: flex; flex-direction: column; gap: 20px; }
.kontak-item { display: flex; align-items: flex-start; gap: 16px; }
.kontak-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.kontak-icon img { display: block; object-fit: contain; object-position: center; }
.kontak-item strong { display: block; color: var(--white); font-size: .87rem; margin-bottom: 4px; }
.kontak-item a, .kontak-item span { color: rgba(255,255,255,.65); font-size: .9rem; }
.kontak-item a:hover { color: var(--gold); }
.kontak-form-wrap { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.kontak-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 28px; color: var(--text); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid #e5e7eb; border-radius: 10px; padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: .93rem; color: var(--text); transition: border-color var(--transition), box-shadow var(--transition); background: var(--white); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; background: var(--orange); color: var(--white); border: none; border-radius: 50px; padding: 15px 32px; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all var(--transition); box-shadow: 0 4px 16px rgba(192,57,43,.3); }
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,.4); }

/* ===========================
   FOOTER
=========================== */
footer { background: var(--text); color: rgba(255,255,255,.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.footer-brand h4 .logo-icon { font-size: 1.6rem; line-height: 1; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background var(--transition); }
.footer-socials a:hover { background: var(--orange); }
.footer-col h5 { color: var(--white); font-size: .95rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-col p { font-size: .88rem; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; font-size: .82rem; color: rgba(255,255,255,.4); }

/* ===========================
   WA FLOAT BUTTON
=========================== */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; align-items: center; background: #25d366; border-radius: 50px; box-shadow: 0 6px 24px rgba(37,211,102,.45); overflow: hidden; text-decoration: none; animation: waPulse 2.5s ease-in-out infinite; padding: 0; width: 56px; height: 56px; justify-content: center; transition: all .4s ease; }
.wa-icon { font-size: 1.5rem; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; flex-shrink: 0; }
.wa-label { color: var(--white); font-size: .88rem; font-weight: 600; white-space: nowrap; max-width: 0; overflow: hidden; opacity: 0; transition: max-width .4s ease, opacity .3s ease; padding-right: 0; }
.wa-float:hover { width: auto; padding-right: 20px; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,.55); animation: none; }
.wa-float:hover .wa-label { max-width: 240px; opacity: 1; }

/* ===========================
   MENU SUB-PAGE — HERO BANNER
=========================== */
.mp-hero {
  background: #fff8f0;
  padding: 130px 0 80px;
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.mp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(192,57,43,.07) 0%, transparent 70%);
  pointer-events: none;
}
/* decorative circles */
.mp-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(212,168,71,.07);
  right: -120px; top: -100px;
  pointer-events: none;
}

.mp-hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; position: relative; z-index: 2; width: 100%;
}

/* Text side */
.mp-hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.mp-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18; color: #4a1e0a; font-weight: 700; margin-bottom: 22px;
}
.mp-hero-title span { color: var(--orange); display: block; }
.mp-hero-desc {
  color: #7a4c2a; font-size: .97rem; line-height: 1.85;
  max-width: 500px; margin-bottom: 36px;
}
.mp-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; padding: 14px 30px;
  border-radius: 50px; font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.mp-wa-btn:hover { background: #1eb954; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.5); }

/* Image side */
.mp-hero-img-wrap { display: flex; justify-content: center; align-items: center; }
.mp-hero-img-wrap img {
  width: 100%; max-width: 460px;
  border-radius: 24px; object-fit: cover; aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,.14);
}

/* ===========================
   MENU SUB-PAGE — CARDS SECTION
=========================== */
.mp-cards-section { background: var(--white); padding: 80px 0 110px; }
.mp-container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.mp-head { margin-bottom: 48px; }
.mp-head-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.mp-head-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--orange); border-radius: 2px; flex-shrink: 0;
}
.mp-head-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--text);
  font-weight: 700; line-height: 1.2;
}

/* Grid — 4 columns default */
.mp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Individual card */
.mp-card {
  background: var(--white);
  border: 1px solid #ebebeb;
  border-bottom: 4px solid var(--gold);
  border-radius: 14px;
  padding: 26px 22px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
}

.mp-card:hover {
  border-color: var(--orange);
  border-bottom-color: var(--orange);
}

.mp-card-title {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #f0f0f0;
}
.mp-card-subtitle {
  font-size: .8rem; color: var(--text-muted);
  margin-bottom: 14px; font-weight: 500;
}
.mp-card-items {
  list-style: none; display: flex; flex-direction: column;
  gap: 8px; margin-bottom: 22px; flex: 1;
}
.mp-card-items li {
  display: flex; align-items: flex-start;
  gap: 9px; font-size: .85rem; color: #3d3d3d; line-height: 1.4;
}
.mp-card-items li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); color: #fff;
  font-size: .6rem; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.mp-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--orange); margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

/* Back button */
.mp-back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); border: 2px solid var(--orange);
  color: var(--orange); padding: 13px 30px; border-radius: 50px;
  font-size: .93rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.mp-back-btn:hover { background: var(--orange); color: var(--white); transform: translateX(-4px); }

/* ===========================
   BEST SELLER / REKOMENDASI
=========================== */
#rekomendasi { padding: 100px 0; background: var(--white); }

.bs-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: block;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bs-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.bs-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border: none; background: none;
  font-family: 'Inter', sans-serif;
  font-size: .9rem; font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .3s ease;
}
.bs-tab img { opacity: .5; transition: opacity .3s; }
.bs-tab:hover { color: var(--orange); }
.bs-tab:hover img { opacity: .8; }
.bs-tab.active {
  color: var(--orange);
  font-weight: 700;
  border-bottom-color: var(--orange);
}
.bs-tab.active img { opacity: 1; }
/* Fix tab icon jadi inline */
.bs-tab img {
  display: inline !important;
  vertical-align: middle;
}

/* Warna bintang di badge */
.bs-badge .bs-star {
  color: #fff8dc;
  font-size: .85rem;
}

.bs-tabs {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--cream-dark);
}

.bs-tab {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

/* PANEL */
.bs-panel { display: none; }
.bs-panel.active { display: block; animation: fadeUp .4s ease both; }

/* GRID */
.bs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* CARD */
.bs-card {
  background: var(--#fdf2f0);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: block;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bs-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Card tengah */
.bs-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(212,168,71,.25);
  position: relative;
  z-index: 1;
}
.bs-card.featured:hover { transform: translateY(-14px); box-shadow: 0 16px 40px rgba(212,168,71,.35); }
.bs-card.featured .bs-badge { background: var(--gold); }

.bs-img-wrap { position: relative; overflow: hidden; }
.bs-img-wrap img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .5s ease; display: block;
}
.bs-card:hover .bs-img-wrap img { transform: scale(1.06); }

/* Badge */
.bs-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: 5px 12px; border-radius: 50px;
  letter-spacing: .03em;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}

/* Hover overlay CTA */
.bs-hover-cta {
  position: absolute; inset: 0;
  background: rgba(192,57,43,.72);
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
}
.bs-card:hover .bs-hover-cta { opacity: 0; }

/* Body */
.bs-body { padding: 24px; }
.bs-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; margin-bottom: 10px; color: var(--text);
}
.bs-body p {
  color: var(--text-muted); font-size: .88rem;
  line-height: 1.65; margin-bottom: 20px;
}
.bs-footer { display: flex; align-items: center; justify-content: space-between; }
.bs-price { font-weight: 700; color: var(--orange); font-size: .9rem; }
.bs-btn {
  font-size: .85rem; font-weight: 600; color: var(--orange);
  background: var(--cream); border: 1.5px solid var(--orange);
  padding: 7px 16px; border-radius: 50px;
  transition: all var(--transition); text-decoration: none;
}
.bs-btn:hover { background: var(--orange); color: var(--white); }

@media (max-width: 960px) { .bs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) {
  .bs-grid { grid-template-columns: 1fr; }
  .bs-tab { padding: 10px 16px; font-size: .82rem; }
}

/* ===========================
   GALERI
=========================== */
#galeri { padding: 100px 0; background: var(--white); }

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

.galeri-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.galeri-item:hover img { transform: scale(1.08); }

.galeri-overlay {
  position: absolute; inset: 0;
  background: rgba(192,57,43,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}

.galeri-item:hover .galeri-overlay { opacity: 1; }

.galeri-overlay span {
  display: none;
}

/* LIGHTBOX */
.galeri-lightbox {
  position: fixed; inset: 0; z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}

.galeri-lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(4px);
}

.lightbox-img-wrap {
  position: relative; z-index: 2;
  max-width: 90vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute; top: 20px; right: 24px; z-index: 3;
  background: rgba(255,255,255,.15); border: none; color: var(--white);
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--orange); }

.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(255,255,255,.15); border: none; color: var(--white);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--orange); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .85rem; z-index: 3;
  background: rgba(0,0,0,.4); padding: 4px 14px; border-radius: 50px;
}

/* Responsive galeri */
@media (max-width: 960px) {
  .galeri-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .galeri-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ===========================
   KEYFRAMES
=========================== */
@keyframes fadeUp   { from { opacity:0; transform:translateY(30px); }  to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(40px); }  to { opacity:1; transform:translateX(0); } }
@keyframes scrollPulse { 0%,100% { opacity:.6; transform:scaleY(1); }  50% { opacity:1; transform:scaleY(1.2); } }
@keyframes waPulse { 0%,100% { box-shadow:0 6px 24px rgba(37,211,102,.45); }  50% { box-shadow:0 6px 40px rgba(37,211,102,.72); } }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .mp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) and (min-width: 641px) {
  .nav-cta {
    padding: 8px 14px !important;
    font-size: 0.82rem !important;
    border-radius: 50px !important;
    white-space: nowrap;
  }
  .nav-link {
    font-size: 0.82rem;
    padding: 7px 10px;
  }
  .nav-container {
    padding: 0 16px;
  }
}
@media (max-width: 960px) {
  /* Homepage hero */
  #hero { flex-direction:column; text-align:center; padding:120px 0 60px; }
  .hero-content { max-width:100%; }
  .hero-title, .hero-sub { max-width:100%; }
  .hero-actions { justify-content:center; }
  .hero-stats { justify-content:center; }
  .hero-img-wrap { position:relative; width:100%; max-width:420px; margin:40px auto 0; padding:0 24px; }
  .hero-badge { left:-14px; bottom:-18px; min-width:190px; padding:14px 20px; }
  .badge-icon { font-size:2rem; }
  .badge-text strong { font-size:1rem; }
  .badge-text span { font-size:.82rem; }
  /* About & Kontak */
  .about-grid, .kontak-grid { grid-template-columns:1fr; gap:48px; }
  .about-img-side { max-width:480px; margin:0 auto; }
  /* Footer */
  .footer-grid { grid-template-columns:1fr 1fr; }
  /* Slider */
  .testi-card { flex:0 0 calc(50% - 14px); }
  /* Menu sub-page hero */
  .mp-hero { padding:110px 0 60px; }
  .mp-hero-inner { grid-template-columns:1fr; gap:40px; padding:0 32px; text-align:center; }
  .mp-hero-img-wrap img { max-width:360px; margin:0 auto; }
  .mp-hero-desc { max-width:100%; }
  .mp-wa-btn { margin:0 auto; }
  /* Menu cards */
  .mp-grid { grid-template-columns:repeat(2,1fr); }
  .mp-container { padding:0 16px; }
}
@media (max-width: 640px) {
  .nav-menu {
    position:fixed; top:72px; left:0; right:0;
    background:var(--white); flex-direction:column; align-items:stretch;
    padding:12px 16px 16px; gap:2px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    display: none;
    z-index: 998;
    overflow: visible;
  }
  .nav-menu.open {
    display: flex;
    pointer-events:all;
  }
  .nav-link { color:var(--text) !important; }
  .nav-toggle { display:flex; }
  .nav-cta { text-align:center; }
  .stat-divider { display:none; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .kontak-form-wrap {
    padding: 24px 16px;
    border-radius: 16px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
  .kontak-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .testi-card { flex:0 0 100%; }
  .testi-slider-wrap { padding:0 40px; }
  .mp-hero-inner { padding:0 20px; }
  .mp-grid { grid-template-columns:1fr; gap:14px; }
  .mp-card { padding:20px 16px 18px; }
}

/* ===========================
   SCROLL TO TOP BUTTON
=========================== */
.scroll-top-btn {
  position: fixed; bottom: 96px; right: 33px; z-index: 9998;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--orange); color: var(--white); border: none;
  font-size: 1.3rem; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(192,57,43,.35);
  transition: transform .2s, box-shadow .2s;
}
.scroll-top-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(192,57,43,.5); }
.scroll-top-btn.visible { display: flex; }

/* Mobile: */
@media (max-width: 640px) {
  .scroll-top-btn {
    width: 42px;
    height: 42px;
    right: 16px;      
    bottom: 82px;    
    font-size: 1.1rem;
  }
  /* Form kontak */
  .kontak-grid {
    gap: 32px;
  }
  .kontak-section {
    padding: 60px 0;
  }
}

@media (max-width: 420px) {
  .mp-grid { grid-template-columns:1fr; }
}

/* ===========================
   NAVBAR DROPDOWN
=========================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-arrow {
  font-size: .7rem;
  transition: transform .3s ease;
  display: inline-block;
}

.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  padding: 8px;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 999;
  border-top: 3px solid var(--orange);
}

/* Segitiga kecil di atas dropdown */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--orange);
  border-top: none;
}

/* Tampil saat hover atau klik */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open  .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  background: var(--cream);
  color: var(--orange);
}

/* Garis pemisah antar item */
.nav-dropdown-menu li:not(:last-child) a {
  border-bottom: 1px solid var(--cream-dark);
  border-radius: 0;
}
.nav-dropdown-menu li:first-child a { border-radius: 8px 8px 0 0; }
.nav-dropdown-menu li:last-child  a { border-radius: 0 0 8px 8px; border-bottom: none; }

/* Dropdown di mobile: sembunyikan submenu, arrow tetap ada */
@media (max-width: 640px) {
  .nav-dropdown-menu { display: none !important; }
  .nav-arrow { display: none; }
  .nav-dropdown-toggle { pointer-events: auto; }
}

/* iPad (641-1024px): mp-grid 2 kolom */
@media (max-width: 1024px) and (min-width: 641px) {
  .mp-container { padding: 0 20px; }
  .mp-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .mp-card { padding: 22px 18px 20px; }
}

/* ORDER ITEMS */
.order-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }

.order-item { 
  display: flex; 
  flex-direction: row;
  gap: 8px; 
  align-items: center; 
}

.order-select {
  flex: 1;
  min-width: 0;
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 10px 36px 10px 12px; font-family: 'Inter', sans-serif;
  font-size: .88rem; outline: none; cursor: pointer;
  transition: border-color .3s;
}
.order-select:focus { border-color: var(--orange); }

.order-porsi {
  width: 80px;
  flex-shrink: 0;
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 10px; font-family: 'Inter', sans-serif;
  font-size: .88rem; outline: none; text-align: center;
  transition: border-color .3s;
}
.order-porsi:focus { border-color: var(--orange); }

.order-remove {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fee2e2; color: #dc2626;
  border: none; cursor: pointer; font-size: .9rem;
  flex-shrink: 0; transition: all .2s;
}
.order-remove:hover { background: #dc2626; color: #fff; }

.order-add {
  background: none; border: 1.5px dashed var(--orange);
  color: var(--orange); padding: 8px 16px; border-radius: 8px;
  font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: all .2s; width: 100%;
}

/* Override form-group global untuk order items */
.order-item .order-select,
.order-item .order-porsi {
  width: auto !important;
}

.order-add:hover { background: var(--cream); }

/* ============================================================
   Modal Sukses Pesanan
   ============================================================ */

/* ── Overlay ── */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.order-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ── Modal Box ── */
.order-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  transform: translateY(30px) scale(0.97);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  scrollbar-width: none;
}
.order-modal::-webkit-scrollbar { display: none; }
.order-modal-overlay.show .order-modal {
  transform: translateY(0) scale(1);
}

/* ── Header ── */
.order-modal-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  color: #fff;
  padding: 36px 28px 28px;
  text-align: center;
  border-radius: 20px 20px 0 0;
}
.order-modal-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1) .2s both;
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.order-modal-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 8px;
  color: #d4a847;
}

.order-modal,
.order-modal-header p,
.order-modal-body,
.order-modal-summary,
.order-modal-notice,
.order-modal-info,
.order-modal-footer,
.modal-btn-wa,
.modal-btn-close {
  font-family: 'Inter', sans-serif;
}
.order-modal-header p {
  margin: 0;
  font-size: .95rem;
  opacity: .85;
  line-height: 1.5;
}
.order-modal-header p strong { color: #d4a847; }

/* ── Body ── */
.order-modal-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Summary box */
.order-modal-summary {
  background: #fffbf0;
  border: 1px solid #f0e0b0;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: .88rem;
  line-height: 1.7;
  color: #444;
}
.order-modal-summary .summary-row {
  display: grid;
  grid-template-columns: 170px 1fr; /* kolom kiri tetap, kanan menyesuaikan */
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f5e8c8;
  align-items: center;
}
.order-modal-summary .summary-row:last-child { border-bottom: none; }
.order-modal-summary .summary-label {
  font-weight: 600;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
}
.order-modal-summary .summary-row > span:last-child {
  color: #555;
  font-size: .88rem;
  text-align: left;
}
.order-modal-summary .summary-menu-list {
  margin: 4px 0 0;
  padding-left: 16px;
  color: #555;
  font-size: .85rem;
}

.order-modal-summary .summary-row > ul.summary-menu-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.order-modal-summary .summary-row > ul.summary-menu-list li {
  padding: 2px 0;
}

/* Notice WA */
.order-modal-notice {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.notice-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.notice-text { font-size: .87rem; line-height: 1.5; color: #166534; }
.notice-text strong { display: block; margin-bottom: 3px; font-size: .9rem; }

/* Info list */
.order-modal-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: #555;
  line-height: 1.5;
}
.info-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── Footer ── */
.order-modal-footer {
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.modal-btn-wa:hover {
  background: #1da851;
  transform: translateY(-1px);
}
.modal-btn-close {
  background: transparent;
  border: 1.5px solid #ddd;
  color: #888;
  padding: 12px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.modal-btn-close:hover {
  background: #f5f5f5;
  border-color: #bbb;
  color: #444;
}

/* ── Responsive ── */
@media (max-width: 540px) {
  .order-modal-header { padding: 28px 20px 22px; }
  .order-modal-body   { padding: 18px 20px; }
  .order-modal-footer { padding: 0 20px 22px; }
  .order-modal-summary .summary-label { min-width: 100px; }
}

.order-modal-icon i {
    font-size: 4rem;
}

.notice-icon i {
    font-size: 1.8rem;
}

.info-icon i {
    font-size: 1.1rem;
    vertical-align: middle;
}

/* ===========================
   INFO ORDER 
=========================== */
.info-order-section {
  padding: 100px 0;
  background: var(--orange);
}

.io-alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}

.io-alt-row--reverse {
  direction: rtl;
}
.io-alt-row--reverse > * {
  direction: ltr;
}

.io-alt-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.io-alt-eyebrow-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.io-alt-eyebrow-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
  line-height: 1.1;
}

.io-alt-eyebrow-text span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.io-alt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.io-alt-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
}

.io-alt-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.io-alt-list li strong {
  color: var(--white) !important;
  font-weight: 600;
}

.io-alt-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.io-alt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.io-alt-img:hover img {
  transform: scale(1.04);
}

.io-note {
  background: var(--cream);
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--gold);
  margin-top: 64px;
  box-shadow: var(--shadow);
}

.io-note-icon {
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
}

.io-note-text {
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.io-note-text strong { color: var(--text); font-weight: 600; }
.io-note-text a { color: var(--gold); font-weight: 600; }
.io-note-text a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .io-alt-row {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 56px;
    direction: ltr;
  }
  .io-alt-img { order: -1; }
}

/* ── TICKER ── */
.ticker-wrap {
  background: #5d3a1a;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(212,168,71,.15);
  border-bottom: 1px solid rgba(212,168,71,.15);
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 25s linear infinite;
}

.ticker-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #d4a847;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

/* iPad: form kontak tidak mepet/overflow */
@media (max-width: 1024px) and (min-width: 641px) {
  .kontak-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .kontak-form-wrap {
    padding: 32px 28px;
    margin: 0 auto;
    max-width: 600px;
  }
  .kontak-section .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ===========================
   FIX MOBILE — navbar + WA float + order form
=========================== */

/* Navbar: selalu putih di mobile agar tidak invisible */
@media (max-width: 640px) {
  .navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
  }
  .navbar .nav-logo { color: var(--orange) !important; }
  .navbar .nav-link { color: var(--text) !important; }
  .navbar .nav-toggle span { background: var(--text) !important; }

  /* Nav menu dropdown */
  .nav-menu {
    z-index: 999 !important;
  }

  /* Tombol Pesan Sekarang */
  .nav-cta {
    display: block !important;
    text-align: center !important;
    margin-top: 8px !important;
    border-radius: 50px !important;
    padding: 12px 22px !important;
  }
}

/* Navbar bar */
@media (max-width: 640px) {
  .nav-container > .nav-cta {
    display: none !important;
  }
}

/* WA Float */
@media (max-width: 640px) {
  .wa-float {
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    bottom: 20px !important;
    right: 16px !important;
  }
  .wa-label {
    max-width: 0 !important;
    opacity: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
  }
  .wa-float:hover .wa-label {
    max-width: 0 !important;
    opacity: 0 !important;
  }
  .wa-float:hover {
    width: 52px !important;
    padding-right: 0 !important;
    border-radius: 50% !important;
  }
}

/* Order item */
@media (max-width: 480px) {
  .order-item {
    flex-wrap: wrap;
    gap: 6px;
  }
  .order-select {
    flex: 1 1 100%;
    width: 100% !important;
  }
  .order-porsi {
    flex: 1 1 calc(100% - 48px);
    width: auto !important;
  }
  .order-remove {
    flex-shrink: 0;
  }
}

/* FIX: Order porsi  */
@media (max-width: 480px) {
  .order-porsi {
    width: 100% !important;
    flex: 1 1 100%;
  }
}

/* FIX: Hero & halaman utama full layar di mobile */
@media (max-width: 480px) {
  #hero {
    padding: 88px 0 48px;
    min-height: 100vh;
  }
  .hero-center {
    padding: 0 16px;
  }
  .fc-2, .fc-4 {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
  .stat-item {
    padding: 0 10px;
  }
  .stat-num {
    font-size: 1.6rem;
  }
  .container {
    padding: 0 16px;
  }
  #menu, #about, #testimoni, #galeri, #rekomendasi {
    padding: 64px 0;
  }
  .section-head {
    margin-bottom: 36px;
  }
}