/* ============================================
   PANDA TEA CO. — STYLES
   Brand: Chinese-Style Fresh Tea
   ============================================ */

:root {
  --panda-blue: #0066D9;
  --panda-blue-dark: #004FA8;
  --panda-blue-light: #E6F0FC;
  --cream: #FFF7EA;
  --cream-warm: #FBEFD8;
  --charcoal: #191919;
  --charcoal-soft: #2C2C2C;
  --red: #D9271E;
  --yellow: #FFC845;
  --grey: #8A8A8A;
  --grey-light: #E8E8E8;

  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-cn: 'ZCOOL KuaiLe', sans-serif;

  --container: 1240px;
  --radius: 24px;
  --ease: cubic-bezier(.65,.05,.36,1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  padding-top: max(18px, env(safe-area-inset-top, 18px));
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 247, 234, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  padding-top: max(12px, env(safe-area-inset-top, 12px));
  box-shadow: 0 4px 30px rgba(0, 102, 217, 0.06);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 42px;
  width: auto;
  transition: transform 0.4s var(--ease-bounce);
}
.nav-logo:hover img { transform: scale(1.06) rotate(-2deg); }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  padding: 2px 0;
}
.nlt-1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--panda-blue);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.nlt-1 em {
  font-style: italic;
  font-weight: 600;
}
.nlt-2 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--panda-blue);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--panda-blue); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--panda-blue);
  color: var(--cream) !important;
  padding: 10px 20px !important;
  border-radius: 100px;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover {
  background: var(--panda-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 102, 217, 0.3);
}
.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(0, 102, 217, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255, 200, 69, 0.12), transparent 50%),
    var(--cream);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}
.blob-1 {
  width: 480px; height: 480px;
  background: var(--panda-blue);
  top: -120px; right: -120px;
  opacity: 0.18;
  animation: blobFloat 20s ease-in-out infinite;
}
.blob-2 {
  width: 380px; height: 380px;
  background: var(--yellow);
  bottom: -100px; left: -100px;
  opacity: 0.25;
  animation: blobFloat 24s ease-in-out infinite reverse;
}
.blob-3 {
  width: 280px; height: 280px;
  background: var(--red);
  top: 40%; left: 40%;
  opacity: 0.08;
  animation: blobFloat 18s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-25px, 35px) scale(0.95); }
}

.leaf {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
  animation: leafFloat 8s ease-in-out infinite;
}
.leaf-1 { width: 44px; top: 12%; right: 38%; animation-delay: 0s; }
.leaf-2 { width: 32px; top: 70%; right: 6%; animation-delay: 1.5s; }
.leaf-3 { width: 40px; bottom: 12%; right: 32%; animation-delay: 3s; }

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-25px) rotate(15deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 102, 217, 0.08);
  border: 1px solid rgba(0, 102, 217, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--panda-blue);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-pill .dot {
  width: 8px;
  height: 8px;
  background: var(--panda-blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--panda-blue);
  position: relative;
}
.hero-title .ko {
  font-family: var(--font-cn);
  font-weight: normal;
  font-size: 0.45em;
  color: var(--red);
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 6px 18px;
  background: rgba(217, 39, 30, 0.08);
  border-radius: 10px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--charcoal-soft);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--panda-blue); font-weight: 700; }
.hero-sub em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-bounce);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--panda-blue);
  color: var(--cream);
  box-shadow: 0 10px 28px rgba(0, 102, 217, 0.28);
}
.btn-primary:hover {
  background: var(--panda-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 102, 217, 0.4);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0; height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.btn-primary:hover::before { width: 320px; height: 320px; }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-3px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--panda-blue);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--panda-blue);
  border: 2px solid var(--panda-blue);
}
.btn-outline:hover {
  background: var(--panda-blue);
  color: var(--cream);
  transform: translateY(-3px);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 102, 217, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: max-content;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--panda-blue);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--charcoal-soft);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 102, 217, 0.2);
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 620px;
}

.float-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 102, 217, 0.12), transparent 70%),
    radial-gradient(circle at 30% 30%, rgba(255, 200, 69, 0.15), transparent 60%);
  transform: translate(-50%, -50%);
  animation: haloRotate 30s linear infinite;
}
.halo::before, .halo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 102, 217, 0.3);
}
.halo::before {
  inset: 30px;
  animation: haloRotate 40s linear infinite reverse;
}
.halo::after {
  inset: -30px;
  border-style: dotted;
  border-color: rgba(0, 102, 217, 0.2);
}
@keyframes haloRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbit ring with floating items */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  animation: orbitSpin 28s linear infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes orbitSpin {
  0% { transform: translate(-50%, -50%) rotate(0); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.orbit-item {
  position: absolute;
  animation: orbitCounter 28s linear infinite;
}
@keyframes orbitCounter {
  0% { transform: rotate(0); }
  100% { transform: rotate(-360deg); }
}
.orbit-1 { top: 6%; right: 8%; }
.orbit-2 { bottom: 12%; right: -2%; }
.orbit-3 { top: 18%; left: 2%; }

.orbit-seal {
  width: 56px;
  height: 72px;
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cn);
  font-size: 32px;
  border-radius: 6px 6px 30px 30px;
  box-shadow: 0 12px 24px rgba(217, 39, 30, 0.4);
  transform: rotate(-8deg);
}
.orbit-2 svg { width: 50px; height: 64px; filter: drop-shadow(0 6px 14px rgba(0, 102, 217, 0.3)); }
.orbit-dot {
  width: 24px;
  height: 24px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(255, 200, 69, 0.5);
}

.hero-products {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  max-width: 420px;
  transform: translate(-50%, -50%);
  animation: floatMain 5s ease-in-out infinite;
  z-index: 3;
}
.hero-products img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(0, 102, 217, 0.3));
}
@keyframes floatMain {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 16px)); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.scroll-indicator span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--charcoal-soft);
  text-transform: uppercase;
}
.scroll-line {
  width: 1.5px;
  height: 42px;
  background: rgba(25, 25, 25, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--panda-blue);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -12px; }
  100% { top: 42px; }
}

/* Marquee */
.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--panda-blue);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  border-top: 3px solid var(--charcoal);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.marquee-track span:nth-child(even) { color: var(--yellow); font-size: 14px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HELPERS
   ============================================ */
.section-head { margin-bottom: 72px; }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--panda-blue);
  margin-bottom: 18px;
  padding: 4px 14px;
  background: rgba(0, 102, 217, 0.08);
  border-radius: 100px;
}

.section-head.light .eyebrow {
  color: var(--yellow);
  background: rgba(255, 200, 69, 0.18);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}
.section-head.light .section-title { color: var(--cream); }
.section-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--panda-blue);
}
.section-head.light .section-title em { color: var(--yellow); }

.section-sub {
  font-size: 17px;
  color: var(--charcoal-soft);
  margin-top: 18px;
  max-width: 640px;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-head.light .section-sub { color: rgba(255, 247, 234, 0.85); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 130px 0;
  position: relative;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text .lead {
  font-size: 22px;
  line-height: 1.55;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
}
.about-text p {
  font-size: 16px;
  color: var(--charcoal-soft);
  margin-bottom: 18px;
  line-height: 1.7;
}
.about-text strong { color: var(--panda-blue); }
.about-text em { font-style: italic; font-family: var(--font-display); }

.about-points {
  list-style: none;
  margin-top: 32px;
}
.about-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.about-points li:last-child { border-bottom: none; }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--panda-blue);
  color: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: bold;
}
.about-points strong { font-size: 16px; color: var(--charcoal); display: block; margin-bottom: 2px; }
.about-points li div { font-size: 14.5px; color: var(--charcoal-soft); }

.about-card {
  background: linear-gradient(140deg, var(--panda-blue), var(--panda-blue-dark));
  color: var(--cream);
  padding: 50px 40px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 102, 217, 0.25);
}
.card-decor {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 2px dashed rgba(255, 247, 234, 0.15);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
.bao-card {
  width: 220px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  animation: floatGentle 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}
.about-card .bao-card-wrap {
  position: relative;
  width: 240px;
  margin: 0 auto 16px;
}
.about-card .bao-card-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(255,247,234,0.18), transparent 65%);
  border-radius: 50%;
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.about-card p {
  font-size: 15px;
  opacity: 0.92;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 247, 234, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.card-tag span {
  font-family: var(--font-cn);
  background: var(--red);
  width: 22px; height: 22px;
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  position: relative;
  overflow: hidden;
}

.menu::before {
  content: '茶';
  position: absolute;
  font-family: var(--font-cn);
  font-size: 600px;
  color: rgba(0, 102, 217, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.menu-showcase {
  max-width: 720px;
  margin: 0 auto 56px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 102, 217, 0.18);
  position: relative;
  z-index: 1;
}
.menu-showcase img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.menu-showcase:hover img {
  transform: scale(1.02);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.menu-card {
  background: var(--cream);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--ease);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.menu-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

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

.menu-tag-float {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 247, 234, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--panda-blue);
  z-index: 2;
}

.menu-info {
  padding: 22px 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.menu-info-left { flex: 1; }
.menu-info h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.15;
}
.menu-info p {
  font-size: 12.5px;
  color: var(--charcoal-soft);
  line-height: 1.45;
}

.menu-price-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--panda-blue);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-bounce);
}
.menu-price-circle svg { width: 18px; height: 18px; }
.menu-card:hover .menu-price-circle {
  background: var(--yellow);
  color: var(--charcoal);
  transform: rotate(45deg);
}

.menu-cta { text-align: center; margin-top: 56px; position: relative; z-index: 1; }

/* ============================================
   OUTLET
   ============================================ */
.outlet {
  padding: 130px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.outlet-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 217, 0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 200, 69, 0.08), transparent 50%);
}

.outlet .container { position: relative; z-index: 2; }

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

.outlet-card {
  background: rgba(255, 247, 234, 0.04);
  border: 1px solid rgba(255, 247, 234, 0.1);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  position: relative;
}
.outlet-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 247, 234, 0.07);
  border-color: rgba(255, 200, 69, 0.4);
}
.outlet-card.featured {
  background: rgba(0, 102, 217, 0.15);
  border-color: var(--panda-blue);
}

.outlet-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.outlet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.outlet-card:hover .outlet-img img { transform: scale(1.08); }

.outlet-meta { padding: 28px 28px 32px; color: var(--cream); position: relative; }
.outlet-meta .num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.1em;
}
.outlet-meta h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin: 6px 0 12px;
  letter-spacing: -0.02em;
}
.outlet-meta p {
  font-size: 14.5px;
  color: rgba(255, 247, 234, 0.7);
  line-height: 1.6;
}

.featured-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  background: var(--yellow);
  color: var(--charcoal);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ============================================
   STORY
   ============================================ */
.story {
  padding: 130px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 102, 217, 0.18);
}
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 130px;
  height: 130px;
}
.badge-svg {
  width: 100%;
  height: 100%;
  animation: rotate 16s linear infinite;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.25));
}
.badge-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-cn);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.story-text .section-title { margin-bottom: 24px; }
.story-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin-bottom: 18px;
}
.story-text strong { color: var(--panda-blue); }

.story-quote {
  margin-top: 32px;
  padding: 30px 30px 30px 60px;
  background: rgba(0, 102, 217, 0.06);
  border-left: 4px solid var(--panda-blue);
  border-radius: 0 20px 20px 0;
  position: relative;
}
.quote-mark {
  position: absolute;
  top: 6px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--panda-blue);
  line-height: 1;
  font-weight: 800;
}
.story-quote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.5;
}
.story-quote em {
  color: var(--panda-blue);
  font-weight: 700;
  font-style: italic;
}
.quote-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal-soft);
  letter-spacing: 0.05em;
}

/* ============================================
   INSTAGRAM FOLLOW
   ============================================ */
.instagram {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.ig-card {
  background:
    linear-gradient(135deg, #FFC845 0%, #FF8A1E 35%, #E1306C 70%, #833AB4 100%);
  border-radius: 40px;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  color: var(--cream);
  box-shadow: 0 40px 80px rgba(225, 48, 108, 0.25);
}

.ig-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ig-d1 {
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.1);
  top: -120px;
  right: -80px;
  animation: blobFloat 18s ease-in-out infinite;
}
.ig-d2 {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
  bottom: -80px;
  left: 25%;
  animation: blobFloat 22s ease-in-out infinite reverse;
}
.ig-d3 {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.05);
  top: 50%;
  left: -30px;
}

.ig-content {
  position: relative;
  z-index: 2;
}
.ig-content .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: var(--cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ig-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ig-icon svg { width: 28px; height: 28px; }

.ig-content h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.ig-content h2 em {
  font-style: italic;
  font-weight: 600;
  color: #FFF7EA;
  background: rgba(0, 0, 0, 0.12);
  padding: 0 12px;
  border-radius: 8px;
}
.ig-content p {
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
  opacity: 0.95;
}

.ig-btn {
  background: var(--cream) !important;
  color: #E1306C !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15) !important;
}
.ig-btn:hover {
  background: #FFC845 !important;
  color: var(--charcoal) !important;
}
.ig-btn svg { width: 20px; height: 20px; }

/* Instagram visual */
.ig-visual {
  position: relative;
  height: 400px;
  z-index: 2;
}

.ig-panda-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 320px;
  animation: floatGentle 4s ease-in-out infinite;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.25));
}
.ig-panda-wrap img {
  width: 100%;
  height: auto;
}

.ig-tile {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream);
  border: 4px solid var(--cream);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ig-tile-1 {
  top: 4%;
  right: 0;
  transform: rotate(8deg);
  animation: tileFloat 6s ease-in-out infinite;
}
.ig-tile-2 {
  bottom: 12%;
  left: -10px;
  transform: rotate(-10deg);
  animation: tileFloat 7s ease-in-out infinite;
  animation-delay: 1s;
}
.ig-tile-3 {
  bottom: 32%;
  right: -10px;
  width: 95px;
  height: 95px;
  transform: rotate(12deg);
  animation: tileFloat 5.5s ease-in-out infinite;
  animation-delay: 2s;
}
@keyframes tileFloat {
  0%, 100% { transform: rotate(var(--r, 8deg)) translateY(0); }
  50% { transform: rotate(var(--r, 8deg)) translateY(-12px); }
}
.ig-tile-1 { --r: 8deg; }
.ig-tile-2 { --r: -10deg; }
.ig-tile-3 { --r: 12deg; }

/* ============================================
   FIND OUR OUTLET (Coming Soon)
   ============================================ */
.outlet-finder {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #FFF1DA 100%);
  position: relative;
  overflow: hidden;
}

.finder-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(0, 102, 217, 0.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 200, 69, 0.12), transparent 50%);
  pointer-events: none;
}

.finder-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.finder-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--panda-blue);
  border-radius: 50%;
  opacity: 0.3;
  animation: dotFloat 8s ease-in-out infinite;
}
.finder-dots span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.finder-dots span:nth-child(2) { top: 30%; left: 85%; animation-delay: 1s; width: 8px; height: 8px; background: var(--yellow); opacity: 0.5; }
.finder-dots span:nth-child(3) { top: 60%; left: 5%; animation-delay: 2s; width: 4px; height: 4px; }
.finder-dots span:nth-child(4) { top: 75%; left: 90%; animation-delay: 3s; background: var(--red); opacity: 0.4; }
.finder-dots span:nth-child(5) { top: 10%; left: 60%; animation-delay: 0.5s; width: 5px; height: 5px; }
.finder-dots span:nth-child(6) { top: 85%; left: 40%; animation-delay: 1.5s; width: 7px; height: 7px; background: var(--yellow); opacity: 0.4; }
.finder-dots span:nth-child(7) { top: 45%; left: 92%; animation-delay: 2.5s; width: 5px; height: 5px; }
.finder-dots span:nth-child(8) { top: 25%; left: 25%; animation-delay: 3.5s; background: var(--yellow); opacity: 0.4; }

@keyframes dotFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -20px); }
}

.finder-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.finder-inner .section-title {
  margin-bottom: 18px;
}

.finder-inner > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal-soft);
  max-width: 560px;
  margin: 0 auto 50px;
}

/* City grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin: 50px auto 40px;
  max-width: 980px;
}

.city-card {
  background: var(--cream);
  border: 2px solid rgba(0, 102, 217, 0.15);
  border-radius: 20px;
  padding: 22px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: all 0.4s var(--ease-bounce);
  animation: cityFloat 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes cityFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.city-card:hover {
  border-color: var(--panda-blue);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 102, 217, 0.18);
}

.city-pin {
  position: relative;
  width: 44px;
  height: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 4px;
}
.city-pin svg {
  width: 36px;
  height: 46px;
  filter: drop-shadow(0 6px 10px rgba(0, 102, 217, 0.3));
  position: relative;
  z-index: 2;
  animation: pinBounce 2.5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.city-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 102, 217, 0.3);
  animation: cityPulse 2s ease-out infinite;
}
@keyframes cityPulse {
  0% { transform: translateX(-50%) scale(0.5); opacity: 0.7; }
  100% { transform: translateX(-50%) scale(1.8); opacity: 0; }
}

.city-card strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.city-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  padding: 3px 10px;
  background: rgba(0, 102, 217, 0.08);
  border-radius: 100px;
  white-space: nowrap;
}
.city-status.status-first {
  background: var(--yellow);
  color: var(--charcoal);
}

/* Solo mascot below cities */
.finder-mascot-wrap {
  display: flex;
  justify-content: center;
  margin: 30px auto 40px;
}
.finder-mascot-solo {
  width: 200px;
  height: auto;
  animation: floatGentle 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.12));
}

/* Notify form */
.finder-notify {
  max-width: 480px;
  margin: 0 auto;
}
.notify-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal-soft);
  margin-bottom: 14px;
}
.notify-form {
  display: flex;
  background: var(--cream);
  border: 2px solid var(--panda-blue);
  border-radius: 100px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 102, 217, 0.12);
  transition: all 0.3s var(--ease);
}
.notify-form:focus-within {
  box-shadow: 0 14px 36px rgba(0, 102, 217, 0.22);
  transform: translateY(-2px);
}
.notify-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  min-width: 0;
}
.notify-form input::placeholder { color: var(--grey); }
.notify-form button {
  background: var(--panda-blue);
  color: var(--cream);
  border: none;
  border-radius: 100px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.notify-form button:hover {
  background: var(--panda-blue-dark);
  transform: scale(1.03);
}
.notify-form button svg { width: 16px; height: 16px; transition: transform 0.3s; }
.notify-form button:hover svg { transform: translateX(3px); }

/* ============================================
   KEMITRAAN CTA
   ============================================ */
.kemitraan-cta {
  padding: 60px 0 130px;
  background: var(--cream);
}

.cta-card {
  background: linear-gradient(135deg, var(--panda-blue) 0%, var(--panda-blue-dark) 100%);
  border-radius: 40px;
  padding: 80px 70px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  color: var(--cream);
  box-shadow: 0 40px 80px rgba(0, 102, 217, 0.3);
}

.cta-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.d1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 200, 69, 0.15);
  top: -150px;
  right: -100px;
  animation: blobFloat 18s ease-in-out infinite;
}
.d2 {
  width: 280px;
  height: 280px;
  background: rgba(255, 247, 234, 0.06);
  bottom: -100px;
  left: 30%;
  animation: blobFloat 22s ease-in-out infinite reverse;
}
.d3 {
  width: 120px;
  height: 120px;
  background: var(--red);
  top: 40px;
  left: 40px;
  opacity: 0.15;
}

.cta-content { position: relative; z-index: 2; }
.cta-content .eyebrow {
  background: rgba(255, 247, 234, 0.15);
  color: var(--yellow);
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.cta-content h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--yellow);
}
.cta-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
  opacity: 0.92;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-buttons .btn-primary {
  background: var(--yellow);
  color: var(--charcoal);
  box-shadow: 0 12px 32px rgba(255, 200, 69, 0.3);
}
.cta-buttons .btn-primary:hover {
  background: var(--cream);
}

.cta-panda-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-panda-wrap::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(255, 247, 234, 0.18), transparent 65%);
  border-radius: 50%;
  z-index: 0;
}
.cta-panda {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  animation: floatGentle 4s ease-in-out infinite;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.3));
}
@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 247, 234, 0.1);
}

.footer-brand {
  max-width: 360px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo img {
  width: 56px;
  height: auto;
}
.footer-logo > div {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.fl-1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.fl-1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--yellow);
}
.fl-2 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 247, 234, 0.5);
  margin-top: 3px;
}
.footer-brand p {
  font-size: 14.5px;
  color: rgba(255, 247, 234, 0.6);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--yellow);
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  color: rgba(255, 247, 234, 0.7);
  margin-bottom: 10px;
  transition: color 0.3s, transform 0.3s;
}
.footer-col a:hover {
  color: var(--cream);
  transform: translateX(4px);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 247, 234, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
}
.socials a:hover {
  background: var(--panda-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255, 247, 234, 0.5);
}
.footer-tagline em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--yellow);
}

/* ============================================
   ANIMATIONS — REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* Stagger menu cards */
.menu-card.reveal { transition-delay: 0s; }
.menu-card.reveal:nth-child(1) { transition-delay: 0s; }
.menu-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.menu-card.reveal:nth-child(3) { transition-delay: 0.24s; }
.menu-card.reveal:nth-child(4) { transition-delay: 0.36s; }

/* Hero text initial animation runs on load */
.hero .reveal { animation: heroIn 1s var(--ease) forwards; opacity: 0; }
.hero .reveal:nth-child(1) { animation-delay: 0.1s; }
.hero .reveal:nth-child(2) { animation-delay: 0.25s; }
.hero .reveal:nth-child(3) { animation-delay: 0.4s; }
.hero .reveal:nth-child(4) { animation-delay: 0.55s; }
.hero .reveal:nth-child(5) { animation-delay: 0.7s; }
.hero .hero-title .line {
  opacity: 0;
  animation: heroLineIn 0.9s var(--ease) forwards;
}
.hero .hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero .hero-title .line:nth-child(2) { animation-delay: 0.35s; }
.hero .hero-title .line:nth-child(3) { animation-delay: 0.5s; }

@keyframes heroIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroLineIn {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-pill { margin-left: auto; margin-right: auto; }
  .hero-stats { margin-left: auto; margin-right: auto; }
  .hero-visual { height: 460px; width: 100%; max-width: 500px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .outlet-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .cta-card { grid-template-columns: 1fr; padding: 60px 40px; text-align: center; }
  .cta-content p { margin-left: auto; margin-right: auto; }
  .cta-buttons { justify-content: center; }
  .cta-panda { max-width: 240px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* New sections — tablet */
  .ig-card { grid-template-columns: 1fr; padding: 60px 40px; text-align: center; }
  .ig-content p { margin-left: auto; margin-right: auto; }
  .ig-content h2 br { display: none; }
  .ig-icon { margin-left: auto; margin-right: auto; }
  .ig-btn { display: inline-flex; }
  .ig-visual { height: 360px; width: 100%; max-width: 460px; margin: 20px auto 0; }

  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 20px;
    border-top: 1px solid rgba(0, 102, 217, 0.1);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease);
    box-shadow: 0 12px 30px rgba(0, 102, 217, 0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 17px; width: 100%; padding: 8px 0; }
  .nav-cta { text-align: center; }

  .nav-burger { display: flex; }
  .nav-logo img { height: 36px; }
  .nlt-1 { font-size: 16px; }
  .nlt-2 { font-size: 8px; }

  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-visual { height: 440px; width: 100%; max-width: 420px; margin: 0 auto; }
  .halo { width: 380px; height: 380px; }
  .orbit-ring { width: 380px; height: 380px; }
  .orbit-1 { top: 4%; right: 4%; }
  .orbit-2 { bottom: 8%; right: -4%; }
  .orbit-3 { top: 14%; left: -2%; }
  .orbit-seal { width: 44px; height: 56px; font-size: 24px; border-radius: 5px 5px 22px 22px; }
  .orbit-2 svg { width: 36px; height: 46px; }
  .orbit-dot { width: 18px; height: 18px; }
  .hero-products { max-width: 260px; }
  .leaf-1 { width: 32px; }
  .leaf-2 { width: 24px; }
  .leaf-3 { width: 28px; }

  .hero-stats { flex-direction: row; padding: 16px 20px; gap: 16px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 10px; }
  .stat-divider { height: 28px; }

  .hero-cta { width: 100%; justify-content: center; }
  .btn { padding: 14px 24px; font-size: 14px; }

  .scroll-indicator { display: none; }

  .marquee-track { font-size: 14px; gap: 24px; }
  .marquee { padding: 10px 0; }

  .about { padding: 80px 0; }
  .menu { padding: 80px 0; }
  .outlet { padding: 80px 0; }
  .story { padding: 80px 0; }
  .kemitraan-cta { padding: 40px 0 80px; }

  .section-head { margin-bottom: 50px; }

  .menu-grid { grid-template-columns: 1fr; gap: 20px; }
  .menu-img { height: 280px; }

  .about-text .lead { font-size: 19px; }
  .about-card { padding: 40px 28px; }
  .bao-card { width: 160px; }

  .story-quote { padding: 24px 20px 24px 50px; }
  .quote-mark { font-size: 60px; left: 16px; }
  .story-quote p { font-size: 16px; }

  .cta-card { padding: 50px 28px; }
  .cta-content h2 { font-size: 30px; }
  .cta-content p { font-size: 15px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .cta-panda { max-width: 200px; margin-top: 10px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer { padding: 60px 0 28px; }

  .menu::before { font-size: 360px; }

  /* New sections - mobile */
  .instagram { padding: 60px 0; }
  .ig-card { padding: 48px 24px; border-radius: 28px; }
  .ig-content h2 { font-size: 28px; }
  .ig-content p { font-size: 15px; }
  .ig-icon { width: 48px; height: 48px; }
  .ig-icon svg { width: 24px; height: 24px; }
  .ig-visual { height: 320px; width: 100%; max-width: 360px; margin: 10px auto 0; }
  .ig-panda-wrap { max-width: 220px; width: 60%; }
  .ig-tile { width: 92px; height: 92px; border-width: 3px; border-radius: 18px; }
  .ig-tile-3 { width: 82px; height: 82px; }

  .outlet-finder { padding: 70px 0; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 36px auto 30px; }
  .city-card { padding: 18px 10px 14px; }
  .city-card strong { font-size: 14px; }
  .city-status { font-size: 9px; padding: 2px 8px; }
  .city-pin { width: 38px; height: 48px; }
  .city-pin svg { width: 30px; height: 38px; }
  .finder-mascot-solo { width: 160px; }
  .menu-showcase { margin-bottom: 36px; border-radius: 24px; }

  .notify-form { flex-direction: column; background: transparent; border: none; padding: 0; gap: 10px; box-shadow: none; }
  .notify-form:focus-within { transform: none; box-shadow: none; }
  .notify-form input {
    background: var(--cream);
    border: 2px solid var(--panda-blue);
    border-radius: 100px;
    padding: 14px 22px;
    text-align: center;
  }
  .notify-form button {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
  }
}

@media (max-width: 420px) {
  .hero-title { font-size: 44px; }
  .hero-stats {
    padding: 14px 14px;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
  }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 9px; letter-spacing: 0.01em; }
  .stat-divider { height: 24px; }
}
