/* ================================================================
   LICHT BAKE HOUSE — style.css
   Theme: Earthy Green & Warm Brown | Fun, Youthful, Breezy
   Fonts: Playfair Display (headings) + DM Sans (body) + Caveat (accent)
================================================================ */

/* ----------------------------------------------------------------
   0. CSS CUSTOM PROPERTIES
---------------------------------------------------------------- */
:root {
  /* Palette */
  --clr-green-dark: #2d4a35;
  --clr-green-mid: #4a7c59;
  --clr-green-light: #a8c5a0;
  --clr-green-pale: #ebf2e8;

  --clr-brown-dark: #3d2b1f;
  --clr-brown-mid: #7a5c45;
  --clr-brown-light: #c8a882;
  --clr-brown-pale: #f5ede3;

  --clr-accent: #d4884a;
  --clr-yellow: #f4c96b;

  --clr-white: #fdfaf6;
  --clr-text: #2c2218;
  --clr-text-muted: #7a6a5a;

  /* Typography */
  --ff-display: "Playfair Display", Georgia, serif;
  --ff-body: "DM Sans", system-ui, sans-serif;
  --ff-accent: "Caveat", cursive;

  /* Spacing */
  --section-px: clamp(1.25rem, 5vw, 5rem);
  --section-py: clamp(4rem, 8vw, 8rem);
  --max-w: 1180px;
  --nav-h: 72px;

  /* Radius */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 32px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-card: 0 4px 24px rgba(61, 43, 31, 0.1);
  --shadow-lift: 0 12px 40px rgba(61, 43, 31, 0.18);
}

/* ----------------------------------------------------------------
   1. RESET & BASE
---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-white);
  color: var(--clr-text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ----------------------------------------------------------------
   2. LOADING SCREEN
---------------------------------------------------------------- */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.loader-logo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--clr-green-light);
  box-shadow: 0 0 40px rgba(168, 197, 160, 0.35);
  animation: loader-pulse 1.4s ease-in-out infinite;
}

.loader-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes loader-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(168, 197, 160, 0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 55px rgba(168, 197, 160, 0.55);
  }
}

.loader-tagline {
  font-family: var(--ff-accent);
  color: var(--clr-green-light);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.loader-bar {
  width: 180px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.loader-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--clr-green-light), var(--clr-yellow));
  border-radius: var(--r-pill);
  animation: bar-fill 1.8s ease forwards;
}

@keyframes bar-fill {
  to {
    width: 100%;
  }
}

/* ----------------------------------------------------------------
   3. NAVBAR
---------------------------------------------------------------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 168, 130, 0.2);
  transition: box-shadow 0.3s;
  height: var(--nav-h);
}

#navbar.scrolled {
  box-shadow: 0 4px 20px rgba(61, 43, 31, 0.09);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--clr-green-dark);
  letter-spacing: 0.01em;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-green-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-pill);
  color: var(--clr-text);
  transition:
    background 0.2s,
    color 0.2s;
}

.nav-link:hover {
  background: var(--clr-green-pale);
  color: var(--clr-green-dark);
}

.nav-cta {
  background: var(--clr-green-dark);
  color: var(--clr-white) !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-pill);
  margin-left: 0.5rem;
  transition:
    background 0.25s,
    transform 0.2s;
}

.nav-cta:hover {
  background: var(--clr-green-mid);
  transform: translateY(-1px);
}

/* PERBAIKAN: Tampilan Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: var(--r-sm);
  z-index: 950;
  position: relative;
}

body.menu-open .hamburger .ham-line {
  background: var(--clr-white);
}

.ham-line {
  display: block;
  height: 2.5px;
  background: var(--clr-green-dark);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.25s,
    background 0.2s;
  transform-origin: center;
  width: 22px;
}

.hamburger.active .ham-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .ham-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* PERBAIKAN: Memastikan overlay muncul dengan sempurna */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--clr-green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    clip-path 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0% 0);
}

.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 960;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.mobile-close span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  position: absolute;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}
.mobile-close span:last-child {
  transform: rotate(-45deg);
}
.mobile-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.mobile-link {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--r-pill);
  letter-spacing: 0.01em;
  transition:
    color 0.2s,
    background 0.2s;
}

.mobile-link:hover,
.mobile-link:focus-visible {
  color: var(--clr-green-dark);
  background: var(--clr-white);
  outline: none;
}

.mobile-cta {
  display: inline-block;
  background: var(--clr-yellow);
  color: var(--clr-brown-dark) !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.8rem 2.2rem;
  border-radius: var(--r-pill);
  margin-top: 0.75rem;
  transition:
    transform 0.2s,
    background 0.2s;
  box-shadow: 0 4px 18px rgba(244, 201, 107, 0.35);
}

.mobile-cta:hover {
  transform: scale(1.04);
  background: var(--clr-accent);
}

.mobile-tagline {
  font-family: var(--ff-accent);
  color: var(--clr-green-light);
  font-size: 1.1rem;
  opacity: 0.7;
}

/* ----------------------------------------------------------------
   4. UTILITY: BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--r-pill);
  padding: 0.75rem 1.8rem;
  cursor: pointer;
  border: none;
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    background 0.22s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--clr-green-dark);
  color: var(--clr-white);
}
.btn-primary:hover {
  background: var(--clr-green-mid);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-green-dark);
  border: 2px solid var(--clr-green-dark);
}
.btn-ghost:hover {
  background: var(--clr-green-pale);
}

/* ----------------------------------------------------------------
   5. UTILITY: SECTION HEADERS
---------------------------------------------------------------- */
.section-eyebrow {
  font-family: var(--ff-accent);
  font-size: 1.1rem;
  color: var(--clr-green-mid);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--clr-brown-dark);
  margin-bottom: 1rem;
}

.section-title em {
  color: var(--clr-green-mid);
  font-style: italic;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 520px;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ----------------------------------------------------------------
   6. SCROLL REVEAL ANIMATIONS
---------------------------------------------------------------- */
.reveal,
.reveal-delay-1,
.reveal-delay-2 {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-delay-1 {
  transition-delay: 0.18s;
}
.reveal-delay-2 {
  transition-delay: 0.34s;
}

.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ----------------------------------------------------------------
   7. HERO
---------------------------------------------------------------- */
#hero {
  min-height: 100svh;
  padding: calc(var(--nav-h) + 2.5rem) var(--section-px) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--clr-white);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  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.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: clamp(280px, 42vw, 560px);
  height: clamp(280px, 42vw, 560px);
  background: radial-gradient(
    circle,
    rgba(168, 197, 160, 0.55),
    transparent 70%
  );
  top: -12%;
  right: -8%;
  animation: blob-drift 10s ease-in-out infinite alternate;
}

.blob-2 {
  width: clamp(180px, 28vw, 380px);
  height: clamp(180px, 28vw, 380px);
  background: radial-gradient(
    circle,
    rgba(245, 237, 227, 0.8),
    transparent 70%
  );
  bottom: 8%;
  left: -6%;
  animation: blob-drift 13s ease-in-out infinite alternate-reverse;
}

@keyframes blob-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(2.5%, 3.5%) scale(1.07);
  }
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
}

.hero-text {
  /* PERBAIKAN: Mengatur line-height dan space agar teks rapi */
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--clr-accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--clr-brown-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  color: var(--clr-green-mid);
  font-style: italic;
}

.hero-title-wave {
  display: inline-block;
  position: relative;
}

.hero-title-wave::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8'%3E%3Cpath d='M0 4 Q12.5 0 25 4 Q37.5 8 50 4 Q62.5 0 75 4 Q87.5 8 100 4' fill='none' stroke='%234A7C59' stroke-width='2.5'/%3E%3C/svg%3E");
  background-size: 60px 6px;
  background-repeat: repeat-x;
}

.hero-sub {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.hero-hours {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--clr-brown-pale);
  border: 1.5px solid var(--clr-brown-light);
  border-radius: var(--r-md);
  padding: 0.9rem 1.25rem;
  max-width: fit-content;
}

.hours-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--clr-text);
}

.hours-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green {
  background: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.hero-visual {
  position: relative;
}

.hero-img-frame {
  position: relative;
  overflow: visible;
}

.hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(61, 43, 31, 0.22);
  position: relative;
  z-index: 2;
  display: block;
}

.hero-img-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.deco-ring {
  width: 80%;
  height: 80%;
  border-radius: var(--r-lg);
  border: 3px dashed var(--clr-green-light);
  top: -4%;
  right: -4%;
  opacity: 0.6;
}

.deco-dots {
  bottom: -3%;
  left: -4%;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(
    circle,
    var(--clr-brown-mid) 1.8px,
    transparent 1.8px
  );
  background-size: 12px 12px;
  opacity: 0.4;
  z-index: 3;
}

.hero-flavour-badge {
  position: absolute;
  top: -4%;
  right: -6%;
  z-index: 4;
  width: 68px;
  height: 68px;
  background: var(--clr-yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--clr-brown-dark);
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 16px rgba(212, 136, 74, 0.3);
  animation: badge-float 5s ease-in-out infinite 1s;
}

.hero-flavour-badge span:first-child {
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 1px;
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-accent);
  color: var(--clr-green-mid);
  font-size: 1.1rem;
}

.scroll-arrow {
  width: 2px;
  height: 24px;
  background: var(--clr-green-light);
  position: relative;
  overflow: hidden;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--clr-green-dark);
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(30px);
  }
}

/* ----------------------------------------------------------------
   8. FEATURES STRIP
---------------------------------------------------------------- */
#features {
  background: var(--clr-green-dark);
  padding: clamp(3rem, 6vw, 5rem) var(--section-px);
}

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1.5px solid rgba(168, 197, 160, 0.25);
  border-radius: var(--r-lg);
  transition:
    background 0.3s,
    transform 0.3s;
}

.feat-card:hover {
  background: rgba(168, 197, 160, 0.08);
  transform: translateY(-4px);
}

.feat-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 1rem;
}

.feat-card h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.feat-card p {
  font-size: 0.9rem;
  color: var(--clr-green-light);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   9. MENU SECTION
---------------------------------------------------------------- */
#menu {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-white);
}

.menu-grid {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.menu-card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(200, 168, 130, 0.2);
  transition:
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: var(--shadow-lift);
}

.menu-img-wrap {
  position: relative;
  overflow: hidden;
}

.menu-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-img {
  transform: scale(1.06);
}

.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--clr-green-dark);
  color: var(--clr-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  letter-spacing: 0.03em;
}

.menu-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-brown-dark);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.menu-slice {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  font-style: normal;
  color: var(--clr-text-muted);
  letter-spacing: 0.08em;
  font-family: var(--ff-body);
}

.menu-desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.menu-price {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-green-dark);
}

.menu-order-btn {
  background: var(--clr-green-dark);
  color: var(--clr-white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1.15rem;
  border-radius: var(--r-pill);
  transition:
    background 0.2s,
    transform 0.2s;
}

.menu-order-btn:hover {
  background: var(--clr-green-mid);
  transform: scale(1.04);
}

.menu-cta {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  background: var(--clr-brown-pale);
  border: 2px dashed var(--clr-brown-light);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
}

.menu-cta p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.2rem;
  font-family: var(--ff-accent);
  font-size: 1.25rem;
}

/* ----------------------------------------------------------------
   10. ABOUT SECTION
---------------------------------------------------------------- */
#about {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-green-pale);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.about-photo-stack {
  position: relative;
  padding-bottom: 3rem;
}

.about-photo {
  border-radius: var(--r-lg);
  object-fit: cover;
}

.photo-main {
  width: 100%;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lift);
  position: relative;
  z-index: 2;
}

.photo-secondary {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  border: 4px solid var(--clr-white);
  box-shadow: var(--shadow-lift);
  z-index: 3;
}

.about-sticker {
  position: absolute;
  top: 5%;
  right: -3%;
  background: var(--clr-yellow);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--clr-brown-dark);
  text-align: center;
  box-shadow: 0 4px 16px rgba(212, 136, 74, 0.35);
  z-index: 4;
  animation: badge-float 4s ease-in-out infinite;
}

.sticker-emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.about-desc {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-green-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.about-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-green-light);
  border-radius: var(--r-pill);
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-green-dark);
  transition:
    background 0.2s,
    transform 0.2s;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.social-btn:hover {
  background: var(--clr-green-pale);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   11. TESTIMONIALS / VIBE (PERBAIKAN PROFIL)
---------------------------------------------------------------- */
#vibe {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-white);
  overflow: hidden;
}

.vibe-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.vibe-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.testi-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.testi-track-wrap:active {
  cursor: grabbing;
}

.testi-track {
  display: flex;
  gap: 1.25rem;
  animation: marquee 22s linear infinite;
  will-change: transform;
  width: max-content;
}

.testi-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testi-card {
  background: var(--clr-brown-pale);
  border: 1.5px solid rgba(200, 168, 130, 0.3);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.testi-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--clr-text);
  margin-bottom: 1.2rem;
  font-style: italic;
  flex: 1; /* Supaya profile terdorong ke bawah dengan rapi */
}

/* PERBAIKAN: Menyusun avatar dan teks profil agar center dan sejajar */
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  background: var(--clr-green-dark);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testi-author-info {
  display: flex;
  flex-direction: column;
}

.testi-author-info strong {
  font-size: 0.88rem;
  color: var(--clr-brown-800);
}

.testi-author-info span {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

/* ----------------------------------------------------------------
   12. LOCATION SECTION
---------------------------------------------------------------- */
#location {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-green-pale);
}

.location-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
}

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/3;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-block h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-brown-dark);
  margin-bottom: 0.3rem;
}

.info-block p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.contact-link {
  font-size: 0.9rem;
  color: var(--clr-green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}

.contact-link:hover {
  text-decoration-color: var(--clr-green-dark);
}

.location-order-btn {
  margin-top: 0.5rem;
  justify-content: center;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
}

/* ----------------------------------------------------------------
   13. FOOTER
---------------------------------------------------------------- */
#footer {
  background: var(--clr-brown-dark);
  color: var(--clr-white);
  padding: clamp(3rem, 6vw, 5rem) var(--section-px) 1.5rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255, 255, 255, 0.25);
}

.footer-tagline {
  font-family: var(--ff-accent);
  font-size: 1.05rem;
  color: var(--clr-green-light);
}

.footer-addr {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-links h5,
.footer-social h5 {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--clr-green-light);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}
.footer-socials a:hover {
  background: var(--clr-green-mid);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ----------------------------------------------------------------
   14. FLOATING ELEMENTS (WA + BACK TO TOP)
---------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 800;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--trans-bounce);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

/* PERBAIKAN: Tombol Scroll to Top */
.back-to-top {
  position: fixed;
  bottom: 6rem; /* Posisinya di atas tombol WA */
  right: 1.75rem;
  z-index: 799;
  width: 46px;
  height: 46px;
  background: var(--clr-green-dark);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--trans-smooth);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-green-mid);
  transform: translateY(-4px);
}

/* ----------------------------------------------------------------
   16. RESPONSIVE
---------------------------------------------------------------- */

/* Tablet: 768px – 1023px */
@media (max-width: 1023px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-hours {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-eyebrow {
    display: none;
  }
  .floating-badge.badge-top {
    top: auto;
    bottom: 56%;
    right: 3%;
  }
  .floating-badge.badge-bottom {
    bottom: 4%;
    left: 3%;
  }

  .features-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .feat-card {
    padding: 1.5rem 1.25rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-visual {
    max-width: 420px;
    margin: 0 auto;
  }
  .about-photo-stack {
    padding-bottom: 4rem;
  }

  .location-inner {
    grid-template-columns: 1fr;
  }
  .map-wrap {
    aspect-ratio: 16/9;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile: ≤ 767px */
/* PERBAIKAN HAMBURGER MENU VISIBILITY */
@media (max-width: 767px) {
  :root {
    --nav-h: 64px;
  }

  /* Force display flex to overwrite any previous rule */
  .hamburger {
    display: flex !important;
  }
  .nav-links {
    display: none !important;
  }

  .nav-logo span {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .hero-hours {
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
  }

  .about-stats {
    gap: 1rem;
  }

  .testi-card {
    min-width: 260px;
    max-width: 280px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: auto;
  }

  .location-order-btn {
    font-size: 0.9rem;
  }

  .blob-1,
  .blob-2 {
    opacity: 0.25;
  }
}

/* Extra small: ≤ 400px */
@media (max-width: 400px) {
  :root {
    --section-px: 1rem;
  }
  .hero-title {
    font-size: 1.9rem;
  }
}
