/* ============================================================
   KOPI KEMPUS & ROASTERY — style.css
   Metodologi: BEM (Block__Element--Modifier)
   Palet: Hitam · Emas · Cream · Putih
============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES — BRAND SYSTEM
============================================================ */
:root {
  --clr-black: #0d0a07;
  --clr-espresso: #1a1208;
  --clr-brown-deep: #2c1a0e;
  --clr-gold: #c9a84c;
  --clr-gold-light: #e2c27d;
  --clr-gold-pale: #f0dda8;
  --clr-cream: #f5ede0;
  --clr-cream-light: #faf5ed;
  --clr-white: #ffffff;
  --clr-text-body: #3d2b1a;
  --clr-text-muted: #7a6252;

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "DM Sans", sans-serif;

  --nav-h: 72px;
  --nav-h-mob: 60px;

  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.18);
  --shadow-card: 0 2px 24px rgba(13, 10, 7, 0.1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* Fix horizontal scroll bug */
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-cream-light);
  color: var(--clr-text-body);
  overflow-x: hidden; /* Prevent horizontal scroll */
  line-height: 1.6;
  width: 100%; /* Ensure body doesn't stretch past viewport */
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   UTILITY
============================================================ */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.u-badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}

/* ============================================================
   GRAIN OVERLAY — subtle texture on all sections
============================================================ */
.grain-overlay {
  position: relative;
}
.grain-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease-expo),
    transform 0.9s var(--ease-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal--delay-3 {
  transition-delay: 0.3s;
}
.reveal--delay-4 {
  transition-delay: 0.4s;
}
.reveal--delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   NAVBAR  — BEM: .nav
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  transition:
    background-color 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth);
  /* start transparent */
  background-color: transparent;
}

/* scrolled state */
.nav.nav--scrolled {
  background-color: var(--clr-espresso);
  box-shadow:
    0 1px 0 rgba(201, 168, 76, 0.25),
    0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002; /* ensure it's clickable above mobile menu */
}
.nav__logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.nav__logo-text {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-gold-light);
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav__logo-sub {
  display: block;
  font-size: 0.6rem;
  font-family: var(--ff-body);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold-pale);
  opacity: 0.75;
  margin-top: 2px;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-cream);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width 0.35s var(--ease-expo);
}
.nav__link:hover {
  color: var(--clr-gold-light);
}
.nav__link:hover::after {
  width: 100%;
}

/* CTA button in nav */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border: 1px solid var(--clr-gold);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  transition:
    background 0.3s,
    color 0.3s;
}
.nav__cta:hover {
  background: var(--clr-gold);
  color: var(--clr-espresso);
}

/* Hamburger — MOBILE ONLY */
/* Hamburger — MOBILE ONLY */
.nav__hamburger {
  display: none; /* Hide on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
  cursor: pointer; /* Pastikan cursor pointer */
}

.nav__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-gold-light);
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease-expo),
    opacity 0.25s;
  transform-origin: left center; /* Ubah transform origin agar efek X lebih rapi */
}

/* Animasi saat menu terbuka */
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(1) {
  transform: rotate(45deg) translate(3px, -3px); /* Penyesuaian translate */
}
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(2) {
  opacity: 0; /* Sembunyikan baris tengah */
}
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(3) {
  transform: rotate(-45deg) translate(3px, 3px); /* Penyesuaian translate */
}

/* Mobile Menu Drawer — FULLY SOLID, no transparency */
.nav__mobile-menu {
  /* SOLID BACKGROUND — no blur, no transparency */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-espresso);
  z-index: 1001; /* High enough to cover, low enough to keep brand/burger visible if needed */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  /* hidden by default */
  clip-path: circle(0% at calc(100% - 36px) 30px);
  transition: clip-path 0.6s var(--ease-expo);
  pointer-events: none;
}
.nav__mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 36px) 30px);
  pointer-events: all;
  overflow-y: auto; /* allow scroll inside if screen is too small */
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}

.nav__mobile-link {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 500;
  color: var(--clr-cream);
  letter-spacing: 0.02em;
  padding: 12px 40px;
  position: relative;
  transition: color 0.25s;
  text-align: center;
}
.nav__mobile-link::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--clr-gold);
  opacity: 0.7;
}
.nav__mobile-link:hover {
  color: var(--clr-gold-light);
}

.nav__mobile-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--clr-gold),
    transparent
  );
  margin: 8px auto;
}

.nav__mobile-footer {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav__mobile-social {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-gold);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.nav__mobile-social:hover {
  opacity: 1;
}

/* Hide Desktop Links on Tablet/Mobile */
@media (max-width: 960px) {
  .nav__links {
    display: none !important;
  }
  .nav__cta {
    display: none !important;
  }
  .nav__hamburger {
    display: flex !important;
  }
}

/* ============================================================
   HERO  — BEM: .hero
============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--clr-black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.55) saturate(0.85);
}

/* subtle color grade */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 10, 7, 0.55) 0%,
    rgba(44, 26, 14, 0.35) 50%,
    rgba(13, 10, 7, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(56px, 8vh, 96px);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--clr-gold);
}
.hero__eyebrow-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--clr-white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--clr-gold-light);
}

.hero__desc {
  max-width: 480px;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 237, 224, 0.8);
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}
.btn--primary {
  background: var(--clr-gold);
  color: var(--clr-espresso);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn--primary:hover {
  background: var(--clr-gold-light);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}
.btn--ghost {
  border: 1px solid rgba(245, 237, 224, 0.5);
  color: var(--clr-cream);
}
.btn--ghost:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold-light);
}
.btn--dark {
  background: var(--clr-espresso);
  color: var(--clr-gold-light);
  border: 1px solid var(--clr-gold);
}
.btn--dark:hover {
  background: var(--clr-gold);
  color: var(--clr-espresso);
}
.btn__icon {
  font-size: 1.1em;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  right: clamp(20px, 5vw, 64px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 221, 168, 0.6);
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-gold));
}
.hero__scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.4;
  }
}

/* ============================================================
   SECTION SHARED
============================================================ */
.section {
  padding-block: clamp(64px, 10vh, 120px);
}

.section__header {
  margin-bottom: clamp(40px, 6vh, 72px);
}
.section__header--center {
  text-align: center;
}

.section__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--clr-espresso);
  letter-spacing: -0.01em;
}
.section__title em {
  font-style: italic;
  color: var(--clr-gold);
}
.section__lead {
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: 540px;
}
.section__header--center .section__lead {
  margin-inline: auto;
}

/* gold divider */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--clr-gold), var(--clr-gold-pale));
  margin-bottom: 24px;
}
.divider--center {
  margin-inline: auto;
}

/* ============================================================
   ABOUT SECTION  — BEM: .about
============================================================ */
.about {
  background-color: var(--clr-cream-light);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.about__img-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
}
.about__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-expo);
}
.about__img:hover {
  transform: scale(1.04);
}

.about__badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--clr-espresso);
  border: 2px solid var(--clr-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.about__badge-float-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--clr-gold-light);
  line-height: 1;
}
.about__badge-float-label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-cream);
  opacity: 0.75;
  margin-top: 4px;
  max-width: 70px;
  line-height: 1.3;
}

.about__content {
}
.about__features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: var(--clr-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 2px;
}
.about__feature-text h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-espresso);
  margin-bottom: 4px;
}
.about__feature-text p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

@media (max-width: 960px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__visual {
    max-width: 520px;
    margin-inline: auto;
  }
  .about__badge-float {
    bottom: -16px;
    right: -8px;
  }
}

/* ============================================================
   STRIP (marquee / ticker)
============================================================ */
.strip {
  background: var(--clr-espresso);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  overflow: hidden; /* Mencegah overflow horizontal */
  padding-block: 14px;
  width: 100vw; /* Pastikan selalu memakan seluruh lebar */
}
.strip__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.strip__item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 56px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold-pale);
}
.strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clr-gold);
  flex-shrink: 0;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   MENU SECTION — BEM: .menu
============================================================ */
.menu {
  background-color: var(--clr-cream);
  position: relative;
}

/* decorative bg circle */
.menu::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.07);
  pointer-events: none;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.menu__card {
  background: var(--clr-cream-light);
  border-radius: 3px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-expo),
    box-shadow 0.4s var(--ease-expo);
  position: relative;
}
.menu__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.menu__card-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.menu__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-expo);
}
.menu__card:hover .menu__card-img {
  transform: scale(1.06);
}

.menu__card-body {
  padding: 20px 22px 22px;
}
.menu__card-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-espresso);
  margin-bottom: 6px;
  line-height: 1.2;
}
.menu__card-desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.menu__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__card-price {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: -0.01em;
}
.menu__card-badge {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-espresso);
  background: var(--clr-gold-pale);
  border-radius: 2px;
  padding: 4px 10px;
}

.menu__cta-wrap {
  margin-top: 56px;
  padding: 44px clamp(24px, 5vw, 60px);
  background: var(--clr-espresso);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}
.menu__cta-wrap::before {
  content: "☕";
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  opacity: 0.04;
  pointer-events: none;
}
.menu__cta-text h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.menu__cta-text p {
  font-size: 0.85rem;
  color: rgba(240, 221, 168, 0.7);
  max-width: 380px;
}

@media (max-width: 600px) {
  .menu__grid {
    grid-template-columns: 1fr;
  }
  .menu__cta-wrap {
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   ATMOSPHERE / MUSIC SECTION  — BEM: .vibe
============================================================ */
.vibe {
  background: var(--clr-black);
  position: relative;
  overflow: hidden;
}
.vibe__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) saturate(0.6);
}
.vibe__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.vibe__copy .section__title {
  color: var(--clr-white);
}
.vibe__copy .section__lead {
  color: rgba(240, 221, 168, 0.65);
}
.vibe__copy .divider {
  background: linear-gradient(to right, var(--clr-gold), transparent);
}

.vibe__playlist {
  background: rgba(26, 18, 8, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 28px;
  backdrop-filter: blur(12px);
}
.vibe__playlist-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.vibe__spotify-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1db954;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.vibe__playlist-meta h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-white);
  font-weight: 500;
}
.vibe__playlist-meta span {
  font-size: 0.72rem;
  color: rgba(240, 221, 168, 0.55);
  letter-spacing: 0.1em;
}
.vibe__track-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.vibe__track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 3px;
  transition: background 0.2s;
}
.vibe__track:hover {
  background: rgba(201, 168, 76, 0.08);
}
.vibe__track-num {
  font-size: 0.7rem;
  color: rgba(240, 221, 168, 0.35);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.vibe__track-info {
  flex: 1;
  min-width: 0;
}
.vibe__track-name {
  font-size: 0.85rem;
  color: var(--clr-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vibe__track-artist {
  font-size: 0.72rem;
  color: rgba(240, 221, 168, 0.45);
}
.vibe__track-dur {
  font-size: 0.72rem;
  color: rgba(240, 221, 168, 0.35);
  flex-shrink: 0;
}
.vibe__playlist-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  border-radius: 3px;
  background: #1db954;
  color: var(--clr-black);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    filter 0.2s,
    transform 0.2s;
}
.vibe__playlist-link:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .vibe__content {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   INFO / CONTACT SECTION  — BEM: .info
============================================================ */
.info {
  background: var(--clr-cream-light);
}
.info__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.info__map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.info__map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.info__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info__item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 3px;
  background: var(--clr-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 2px;
}
.info__item-body {
}
.info__item-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 4px;
}
.info__item-value {
  font-size: 0.92rem;
  color: var(--clr-text-body);
  line-height: 1.6;
}
.info__item-value a {
  color: var(--clr-espresso);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  transition:
    border-color 0.2s,
    color 0.2s;
  padding-bottom: 1px;
}
.info__item-value a:hover {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

.info__ordering {
  margin-top: 4px;
  padding: 24px;
  background: var(--clr-espresso);
  border-radius: 3px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.info__ordering-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-white);
  margin-bottom: 14px;
  font-weight: 500;
}
.info__ordering-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.info__order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.info__order-btn--gofood {
  background: #cc0000;
  color: white;
}
.info__order-btn--gofood:hover {
  background: #e00000;
}
.info__order-btn--tokopedia {
  background: #42b549;
  color: white;
}
.info__order-btn--tokopedia:hover {
  background: #3aa040;
}

@media (max-width: 960px) {
  .info__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOURS BAR
============================================================ */
.hours {
  background: var(--clr-espresso);
  padding-block: clamp(48px, 7vh, 88px);
}
.hours__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: center;
}
.hours__col {
  text-align: center;
  padding-inline: 24px;
}
.hours__sep {
  width: 1px;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 168, 76, 0.4),
    transparent
  );
}
.hours__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 10px;
}
.hours__value {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1.1;
}
.hours__sub {
  font-size: 0.75rem;
  color: rgba(240, 221, 168, 0.5);
  margin-top: 6px;
}

@media (max-width: 960px) {
  .hours__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hours__sep {
    display: none;
  }
}

/* ============================================================
   FOOTER — BEM: .footer
============================================================ */
.footer {
  background: var(--clr-black);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-block: 48px 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--clr-gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.footer__brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  opacity: 0.7;
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 0.82rem;
  color: rgba(240, 221, 168, 0.5);
  line-height: 1.75;
  max-width: 260px;
}
.footer__col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 18px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 0.82rem;
  color: rgba(240, 221, 168, 0.55);
  transition: color 0.2s;
}
.footer__link:hover {
  color: var(--clr-gold-light);
}
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 0.72rem;
  color: rgba(240, 221, 168, 0.3);
  letter-spacing: 0.05em;
}
.footer__made {
  font-size: 0.72rem;
  color: rgba(240, 221, 168, 0.3);
}

@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s var(--ease-back),
    box-shadow 0.3s;
  animation: wa-pulse 2.5s ease-in-out infinite 2s;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}
.wa-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}
@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 36px rgba(37, 211, 102, 0.7),
      0 0 0 10px rgba(37, 211, 102, 0.08);
  }
}

@media (max-width: 600px) {
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

/* ============================================================
   SCROLL TO TOP BUTTON
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 100px; /* Above WhatsApp button */
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: var(--clr-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.4s var(--ease-smooth),
    transform 0.4s var(--ease-smooth),
    background 0.2s;
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--clr-gold-light);
  transform: translateY(-3px) !important;
}

@media (max-width: 600px) {
  .scroll-top {
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   PAGE LOADER
============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--clr-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition:
    opacity 0.6s var(--ease-smooth),
    visibility 0.6s;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__logo {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--clr-gold-light);
  letter-spacing: 0.1em;
}
.page-loader__bar-wrap {
  width: 180px;
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  overflow: hidden;
}
.page-loader__bar {
  height: 100%;
  background: var(--clr-gold);
  animation: loader-fill 1.2s var(--ease-expo) forwards;
}
@keyframes loader-fill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
