/* ═══════════════════════════════════════════════
   GOKI CAFE — style.css  (v2 — Hitam Dominan)
   Palette: Pure Black / Off-White / Warm Brown
═══════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --clr-black: #080706;
  --clr-dark: #0d0b09;
  --clr-dark-2: #111009;
  --clr-dark-3: #181510;
  --clr-dark-4: #1f1b15;
  --clr-brown: #7a5230;
  --clr-brown-lt: #9a6a42;
  --clr-amber: #c8865a;
  --clr-amber-lt: #dba07a;
  --clr-white: #f8f4ef;
  --clr-white-dim: rgba(248, 244, 239, 0.72);
  --clr-white-faint: rgba(248, 244, 239, 0.38);
  --clr-accent: #b56b3e;

  --ff-display: "Italiana", serif;
  --ff-heading: "Playfair Display", serif;
  --ff-body: "DM Sans", sans-serif;

  --nav-h: 72px;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-black);
  color: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
address {
  font-style: normal;
}

/* ─── UTILITIES ─── */
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--clr-white);
  letter-spacing: -0.025em;
}
.section-title em {
  font-style: italic;
  color: var(--clr-amber);
}

/* section-title--dark: for light-bg sections (about, jam, lokasi) */
.section-title--dark {
  color: #0d0b09;
}
.section-title--dark em {
  color: var(--clr-brown);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s var(--ease-expo);
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.btn--primary:hover {
  background: var(--clr-brown);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(181, 107, 62, 0.4);
}
.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(248, 244, 239, 0.3);
}
.btn--outline:hover {
  border-color: var(--clr-amber);
  color: var(--clr-amber);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.88rem;
}

/* ─── DIVIDER LINE ─── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--clr-amber);
  margin: 1.25rem 0 1.75rem;
}
.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s var(--ease-expo),
    transform 0.8s var(--ease-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 {
  transition-delay: 0.12s;
}
.reveal--delay-2 {
  transition-delay: 0.24s;
}
.reveal--delay-3 {
  transition-delay: 0.36s;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}
.navbar.is-scrolled {
  background: rgba(8, 7, 6, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}
.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.6);
  transition: color 0.25s;
}
.navbar__link:hover {
  color: var(--clr-amber);
}
.navbar__link--cta {
  background: var(--clr-accent);
  color: var(--clr-white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
  transition:
    background 0.25s,
    transform 0.25s;
}
.navbar__link--cta:hover {
  background: var(--clr-brown);
  transform: translateY(-1px);
}
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  transition: all 0.3s;
}
.navbar__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-black);
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-zoom 12s ease forwards;
  opacity: 0.55;
}
@keyframes hero-zoom {
  to {
    transform: scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 7, 6, 0.97) 0%,
    rgba(8, 7, 6, 0.78) 50%,
    rgba(8, 7, 6, 0.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
}
.hero__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  max-width: 820px;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--clr-amber);
}
.hero__desc {
  font-size: 1rem;
  color: var(--clr-white-dim);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Decorative vertical line right side */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeIn 1.5s 1.5s both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero__scroll-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  writing-mode: vertical-lr;
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(200, 134, 90, 0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════
   ABOUT  — light bg section
═══════════════════════════════════════════════ */
.about {
  background: #f0e8de;
  padding: 8rem 2rem;
}
.about__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__images {
  position: relative;
}
.about__img-main {
  width: 80%;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}
.about__img-accent {
  position: absolute;
  right: 0;
  bottom: -3rem;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  border: 5px solid #f0e8de;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}
.about__badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--ff-heading);
  box-shadow: 0 8px 24px rgba(181, 107, 62, 0.45);
}
.about__badge-year {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about__badge-num {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.about__copy {
  padding-bottom: 3rem;
}
.about__text {
  color: #3d3028;
  font-size: 0.97rem;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}
.about__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.about__stat {
  text-align: center;
}
.about__stat-num {
  display: block;
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-brown);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a6a60;
}

/* ═══════════════════════════════════════════════
   MENU  — pure black
═══════════════════════════════════════════════ */
.menu {
  background: var(--clr-black);
  padding: 8rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.menu__header {
  max-width: 1280px;
  margin: 0 auto 4rem;
  text-align: center;
}
.menu__subtitle {
  font-size: 0.97rem;
  color: var(--clr-white-faint);
  max-width: 480px;
  margin: 1rem auto 0;
  line-height: 1.8;
}
.menu__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.menu__card {
  display: block;
  background: var(--clr-dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-expo),
    box-shadow 0.4s var(--ease-expo),
    border-color 0.4s;
}
.menu__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.6);
  border-color: rgba(200, 134, 90, 0.2);
}
.menu__card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--clr-dark-4);
}
.menu__card-img img {
  transition: transform 0.6s var(--ease-expo);
}
.menu__card:hover .menu__card-img img {
  transform: scale(1.06);
}

.menu__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.menu__card:hover .menu__card-overlay {
  opacity: 1;
}
.menu__card-overlay span {
  color: var(--clr-amber);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.menu__card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}
.menu__card-cat {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 0.45rem;
}
.menu__card-name {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.menu__card-desc {
  font-size: 0.8rem;
  color: var(--clr-white-faint);
  line-height: 1.65;
}
.menu__cta {
  max-width: 1280px;
  margin: 3rem auto 0;
  text-align: center;
}

/* ═══════════════════════════════════════════════
   JAM BUKA  — light bg
═══════════════════════════════════════════════ */
.jam {
  position: relative;
  background: #f0e8de;
  padding: 8rem 2rem;
  overflow: hidden;
}
.jam__deco-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: clamp(10rem, 20vw, 22rem);
  font-weight: 400;
  color: rgba(122, 82, 48, 0.06);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.05em;
}
.jam__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.jam__copy {
  text-align: center;
  margin-bottom: 4rem;
}
.jam__note {
  font-size: 0.97rem;
  color: #6a5a4e;
  margin-top: 1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.jam__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.jam__card {
  background: #ffffff;
  border: 1px solid rgba(122, 82, 48, 0.1);
  border-radius: 3px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition:
    transform 0.4s var(--ease-expo),
    box-shadow 0.4s var(--ease-expo);
}
.jam__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}
.jam__card--featured {
  background: var(--clr-dark);
  border-color: rgba(200, 134, 90, 0.25);
}
.jam__card--featured .jam__card-title {
  color: var(--clr-white);
}
.jam__card--featured .jam__card-time {
  color: var(--clr-amber);
}
.jam__card--featured .jam__card-days {
  color: var(--clr-white-faint);
}

.jam__card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.jam__card-title {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 0.4rem;
}
.jam__card-days {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7060;
  margin-bottom: 0.75rem;
}
.jam__card-time {
  font-family: var(--ff-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--clr-brown);
  letter-spacing: -0.02em;
  line-height: 1;
}
.jam__card-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.25rem;
  background: var(--clr-accent);
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════
   GOFOOD  — near-black
═══════════════════════════════════════════════ */
.gofood {
  background: var(--clr-dark-2);
  padding: 7rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.gofood__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
.gofood__copy {
  flex: 1 1 340px;
}
.gofood__desc {
  font-size: 0.97rem;
  color: var(--clr-white-faint);
  margin-top: 1rem;
  line-height: 1.8;
  max-width: 400px;
}
.gofood__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 320px;
}
.gofood__btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  transition: all 0.35s var(--ease-expo);
  color: var(--clr-white);
}
.gofood__btn:hover {
  border-color: var(--clr-amber);
  background: rgba(200, 134, 90, 0.06);
  transform: translateX(6px);
}
.gofood__btn-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}
.gofood__btn strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}
.gofood__btn small {
  font-size: 0.78rem;
  color: var(--clr-white-faint);
}

/* ═══════════════════════════════════════════════
   LOKASI  — light bg
═══════════════════════════════════════════════ */
.lokasi {
  background: #f0e8de;
  padding: 8rem 2rem;
}
.lokasi__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.lokasi__address {
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.lokasi__address-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #3d3028;
  line-height: 1.65;
}
.lokasi__address-item a {
  color: var(--clr-brown);
  font-weight: 500;
}
.lokasi__address-item a:hover {
  text-decoration: underline;
}
.lokasi__address-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.lokasi__map {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.lokasi__map iframe {
  display: block;
}

/* ═══════════════════════════════════════════════
   RESERVASI  — black + photo
═══════════════════════════════════════════════ */
.reservasi {
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
  overflow: hidden;
}
.reservasi__bg {
  position: absolute;
  inset: 0;
}
.reservasi__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.reservasi__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.88);
}
.reservasi__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.reservasi__desc {
  font-size: 1rem;
  color: var(--clr-white-faint);
  margin: 1.25rem auto 2.5rem;
  line-height: 1.8;
  max-width: 500px;
}
.reservasi__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.reservasi__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #25d366;
  color: white;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s var(--ease-expo);
}
.reservasi__wa-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

/* ═══════════════════════════════════════════════
   FOOTER  — pure black
═══════════════════════════════════════════════ */
.footer {
  background: var(--clr-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 2rem 0;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer__logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.footer__tagline {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--clr-amber);
  margin-bottom: 0.5rem;
}
.footer__address {
  font-size: 0.8rem;
  color: rgba(248, 244, 239, 0.35);
  line-height: 1.65;
}
.footer__heading {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.83rem;
  color: rgba(248, 244, 239, 0.42);
  transition: color 0.25s;
  line-height: 1.5;
}
.footer__links a:hover {
  color: var(--clr-amber);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(248, 244, 239, 0.25);
}

/* ─── FLOATING WA ─── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s var(--ease-back),
    box-shadow 0.3s;
  animation: wa-pop 0.6s 2s var(--ease-back) both;
}
@keyframes wa-pop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .about__images {
    max-width: 520px;
    margin: 0 auto;
  }
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jam__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .lokasi__inner {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .navbar__nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8, 7, 6, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.45s var(--ease-expo);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .navbar__nav.is-open {
    transform: translateY(0);
  }
  .navbar__burger {
    display: flex;
  }
  .menu__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .gofood__inner {
    flex-direction: column;
  }
  .about__stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .reservasi__buttons {
    flex-direction: column;
    align-items: center;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__title {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }
}

@media (max-width: 480px) {
  .menu__grid {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .about,
  .menu,
  .jam,
  .gofood,
  .lokasi,
  .reservasi {
    padding: 5rem 1.25rem;
  }
  .navbar__inner {
    padding: 0 1.25rem;
  }
  .jam__deco-text {
    display: none;
  }
}
