/* ==============================================
   MOGU — Global Styles
   ============================================== */

/* --- CSS Variables --- */
:root {
  --orange: #F4A640;
  --orange-dark: #E8902A;
  --orange-light: #FDD89A;
  --orange-pale: #FEF3E2;
  --beige: #F7EFE5;
  --beige-dark: #EEE0CE;
  --white: #FFFFFF;
  --dark: #1A1310;
  --dark-mid: #2E2118;
  --gray: #6B6059;
  --gray-light: #C4B8AD;
  --text: #2E2118;
  --text-light: #6B6059;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 10px rgba(50,30,10,0.08);
  --shadow-md: 0 6px 24px rgba(50,30,10,0.12);
  --shadow-lg: 0 16px 48px rgba(50,30,10,0.16);

  --font-main: 'Nunito', sans-serif;
  --font-hand: 'Caveat', cursive;

  --header-h: 68px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-main); cursor: pointer; border: none; background: none; }

/* --- Utility --- */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--beige);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 3px 3px 0 rgba(244,166,64,0.18);
  transition: transform var(--transition);
}
.logo:hover .logo-text { transform: scale(1.05) rotate(-1deg); }
.logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dark);
  margin-bottom: 12px;
  margin-left: 2px;
  flex-shrink: 0;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover {
  background: var(--beige);
  color: var(--orange-dark);
}

/* Language selector */
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-selector { display: flex; align-items: center; gap: 4px; }
.lang-sep { color: var(--gray-light); font-size: 0.75rem; }
.lang-btn {
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  transition: background var(--transition), color var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--orange);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 20px 20px;
  background: var(--white);
  border-top: 1px solid var(--beige);
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  transition: background var(--transition);
}
.mobile-nav-link:hover { background: var(--beige); }
.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 12px 16px 0;
  flex-wrap: wrap;
}


/* ================================================================
   DROPDOWN NAVIGATION
   ================================================================ */

/* Active nav link (current page) */
.nav-link.nav-active {
  background: var(--orange-pale);
  color: var(--orange-dark);
}

/* Dropdown wrapper */
.nav-dropdown {
  position: relative;
}

/* Dropdown trigger button (same style as nav-link) */
.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  font-family: var(--font-main);
}
.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn {
  background: var(--beige);
  color: var(--orange-dark);
}
.nav-dropdown-btn.nav-active {
  background: var(--orange-pale);
  color: var(--orange-dark);
}
.nav-dropdown-btn .dd-caret {
  font-size: 0.65rem;
  transition: transform var(--transition);
  color: var(--gray-light);
}
.nav-dropdown.open .dd-caret { transform: rotate(180deg); }

/* Dropdown menu panel */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 8px;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Dropdown items */
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-dd-item:hover {
  background: var(--orange-pale);
  color: var(--orange-dark);
}
.nav-dd-item.dd-active {
  background: var(--orange-pale);
  color: var(--orange-dark);
}
.nav-dd-item .dd-emoji { font-size: 0.95rem; width: 18px; text-align: center; }

/* Mobile dropdown (accordion) */
.mobile-nav-dropdown { display: none; flex-direction: column; gap: 2px; padding: 4px 0 4px 20px; }
.mobile-nav-dropdown.open { display: flex; }
.mobile-nav-dropdown-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 700; font-size: 1rem; color: var(--text);
  transition: background var(--transition);
  cursor: pointer; background: none; border: none;
  font-family: var(--font-main); width: 100%;
  text-align: left;
}
.mobile-nav-dropdown-btn:hover { background: var(--beige); }
.mobile-nav-dropdown-btn.nav-active { color: var(--orange-dark); }
.mobile-nav-dropdown-btn .dd-caret {
  font-size: 0.65rem; color: var(--gray-light);
  transition: transform var(--transition);
}
.mobile-nav-dropdown-btn.open .dd-caret { transform: rotate(180deg); }
.mobile-dd-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  font-size: 0.92rem; font-weight: 700; color: var(--text);
  transition: background var(--transition);
}
.mobile-dd-item:hover { background: var(--beige); color: var(--orange-dark); }
.mobile-dd-item.dd-active { color: var(--orange-dark); }
.mobile-dd-item .dd-emoji { width: 18px; text-align: center; font-size: 0.92rem; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(244,166,64,0.38);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(244,166,64,0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 2.5px solid var(--beige-dark);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--beige);
  border-color: var(--orange-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--orange-dark);
  border: 2.5px solid var(--orange);
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-mission {
  background: var(--white);
  color: var(--dark);
  padding: 14px 32px;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-mission:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(244,166,64,0.4);
}

/* ================================================================
   SPEECH BUBBLES
   ================================================================ */
.speech-bubble {
  position: relative;
  background: var(--white);
  border: 2.5px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 10px 18px;
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.05rem;
  color: var(--dark);
  box-shadow: 3px 3px 0 var(--orange-light);
}
.bubble-tail {
  position: absolute;
  bottom: -14px;
  left: 24px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid var(--orange);
}
.bubble-tail::after {
  content: '';
  position: absolute;
  top: -16px;
  left: -8px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid var(--white);
}
.bubble-tail-left {
  left: 24px;
  right: auto;
}


/* ================================================================
   SECTION HEADERS (shared)
   ================================================================ */
.section-header {
  text-align: center;
  margin-bottom: 44px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}


/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) brightness(0.75);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,19,16,0.78) 0%,
    rgba(26,19,16,0.55) 50%,
    rgba(244,166,64,0.15) 100%
  );
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.hero-shape-1 {
  width: 400px; height: 400px;
  background: var(--orange);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 200px; height: 200px;
  background: var(--orange-light);
  bottom: 100px; left: -50px;
  animation: float 10s ease-in-out infinite 2s;
}
.hero-shape-3 {
  width: 120px; height: 120px;
  background: var(--white);
  top: 40%; right: 15%;
  animation: float 7s ease-in-out infinite 1s;
  border-radius: var(--radius-lg);
  transform: rotate(20deg);
}
.hero-sticker {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}
.sticker-star {
  top: 25%; right: 10%;
  color: var(--orange-light);
  font-size: 2.5rem;
  animation-delay: 0.5s;
}
.sticker-dots {
  bottom: 20%; left: 8%;
  color: var(--orange-light);
  letter-spacing: 4px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  width: 100%;
}

.hero-bubble {
  margin-bottom: 28px;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  backdrop-filter: blur(8px);
  animation: pop-in 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
}
.hero-bubble .bubble-tail { border-top-color: rgba(255,255,255,0.6); }
.hero-bubble .bubble-tail::after { border-top-color: rgba(255,255,255,0.15); }

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-hand);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 1px;
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
  animation: pop-in 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.5s both;
}

.hero-headline {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-shadow: 4px 4px 0 rgba(244,166,64,0.3);
  animation: slide-up 0.7s cubic-bezier(0.34,1.56,0.64,1) 0.6s both;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 8px;
  animation: slide-up 0.6s ease 0.8s both;
}
.hero-trust {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-hand);
  font-size: 1.1rem;
  margin-bottom: 32px;
  animation: slide-up 0.6s ease 0.9s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  animation: slide-up 0.6s ease 1s both;
}

/* Trust row */
.trust-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 16px 28px;
  max-width: fit-content;
  animation: slide-up 0.6s ease 1.1s both;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.trust-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange-light);
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  text-align: center;
}
.trust-divider {
  width: 1.5px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  animation: bounce-down 2s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.6) rotate(-5deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}


/* ================================================================
   FEATURED PARTNERS — Infinite Scroll Belt
   ================================================================ */
.section-partners {
  padding: 80px 0 60px;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}
.section-partners::before {
  content: '';
  position: absolute;
  top: -30px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  border-radius: 0 0 50% 50% / 0 0 40px 40px;
}

/* Full-width belt */
.scroll-belt-outer {
  width: 100%;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 12px 0 20px;
}

.scroll-belt {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: belt-scroll 36s linear infinite;
  will-change: transform;
}
.scroll-belt:hover {
  animation-play-state: paused;
}

@keyframes belt-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Partner Card */
.partner-card {
  flex: 0 0 300px;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.partner-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.partner-card:hover .card-img { transform: scale(1.06); }

.card-label {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-hand);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  transform: rotate(-2deg);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}
.label-recommended {
  background: var(--orange);
  color: var(--white);
}
.label-collab {
  background: var(--dark);
  color: var(--white);
}

.card-category {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--beige-dark);
}

.card-body { padding: 18px 18px 20px; }
.card-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.card-story {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.stars { color: var(--orange); font-size: 0.85rem; letter-spacing: 1px; }
.rating-num { font-weight: 800; font-size: 0.9rem; color: var(--dark); }
.review-count { font-size: 0.78rem; color: var(--text-light); }

.card-actions {
  display: flex;
  gap: 8px;
}
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--transition);
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.btn-maps {
  background: var(--beige);
  color: var(--dark);
  border: 1.5px solid var(--beige-dark);
}
.btn-maps:hover { background: var(--beige-dark); }

/* Full-width Maps button (no Reserve) */
.btn-maps-full {
  background: var(--orange);
  color: var(--white);
  border: none;
  flex: 1;
  font-size: 0.88rem;
  padding: 10px 16px;
  box-shadow: 0 3px 12px rgba(244,166,64,0.3);
}
.btn-maps-full:hover {
  background: var(--orange-dark);
  box-shadow: 0 5px 18px rgba(244,166,64,0.4);
  transform: translateY(-1px);
}

/* (carousel nav/dots removed — replaced by scroll belt) */


/* ================================================================
   BEST 30 CATEGORIES
   ================================================================ */
.section-best30 {
  padding: 80px 0;
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  margin-bottom: 0;
}

/*
  11-item balanced layout:
  Row 1: 6 cards, Row 2: 5 cards (visually centered under 6)
  6-col grid; 2nd-row items at cols 1–5, col 6 stays empty.
*/
.categories-grid-11 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
.categories-grid-11 .category-card:nth-child(7)  { grid-column: 1; }
.categories-grid-11 .category-card:nth-child(8)  { grid-column: 2; }
.categories-grid-11 .category-card:nth-child(9)  { grid-column: 3; }
.categories-grid-11 .category-card:nth-child(10) { grid-column: 4; }
.categories-grid-11 .category-card:nth-child(11) { grid-column: 5; }

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 12px 18px;
  background: var(--beige);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-lg);
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(244,166,64,0.2);
}
.category-card:hover::before { opacity: 0.08; }
.category-card:hover .cat-deco-ring {
  transform: scale(1.2);
  border-color: var(--orange);
}

.cat-icon-wrap {
  position: relative;
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-emoji {
  font-size: 2rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform var(--transition);
}
.category-card:hover .cat-emoji { transform: scale(1.15) rotate(-5deg); }
.cat-deco-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px dashed var(--beige-dark);
  transition: all var(--transition);
}

.cat-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  line-height: 1.2;
  position: relative;
}
.cat-count {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
  font-family: var(--font-hand);
  position: relative;
}

/* Map CTA */
.map-cta {
  background: var(--beige);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--orange-light);
  overflow: hidden;
}
.map-cta-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  flex-wrap: wrap;
}
.map-cta-icon { font-size: 2rem; flex-shrink: 0; }
.map-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 160px;
}
.map-cta-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}
.map-cta-text span {
  font-size: 0.85rem;
  color: var(--text-light);
}


/* ================================================================
   TRAVEL STORIES — Compact 4-column grid
   ================================================================ */
.section-stories {
  padding: 56px 0 64px;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

/* All cards same size — no wide featured card */
.story-featured {
  grid-column: auto;
  display: flex;
  flex-direction: column;
}
.story-featured .story-img-wrap { height: 140px; }
.story-featured .story-body { padding: 12px 14px 14px; }

.story-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--beige-dark);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-light);
}

.story-img-wrap {
  position: relative;
  height: 140px;
  overflow: hidden;
}
.story-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.story-card:hover .story-img { transform: scale(1.06); }

.story-category-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}
.story-reading-time {
  position: absolute;
  bottom: 7px; right: 7px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.story-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.story-handwritten {
  font-family: var(--font-hand);
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 700;
}
.story-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}
.story-teaser {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stories-cta { text-align: center; }


/* ================================================================
   BRAND REINFORCEMENT
   ================================================================ */
.section-brand {
  padding: 60px 0 52px;
  background: var(--beige);
  position: relative;
  z-index: 1;
}
/* wave bottom → white stories section */
.section-brand::after {
  content: '';
  position: absolute;
  bottom: -28px; left: 0; right: 0;
  height: 56px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 40px 40px 0 0;
  z-index: 2;
}

.brand-card {
  background: var(--beige);
  border-radius: var(--radius-xl);
  padding: 52px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--beige-dark);
}
.brand-card::after {
  content: 'FOUND ON MOGU';
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(244,166,64,0.06);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -2px;
}

.brand-illustration {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.brand-circle-deco {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange-pale);
  border: 3px dashed var(--orange-light);
  animation: spin-slow 15s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.brand-big-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.brand-content { flex: 1; }
.brand-headline {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}
.brand-instruction {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.phrase-switcher {
  position: relative;
  min-height: 64px;
  margin-bottom: 16px;
}
.phrase-card {
  display: none;
  align-items: center;
  gap: 14px;
  animation: pop-in 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
.phrase-card.active { display: flex; }
.phrase-flag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  flex-shrink: 0;
  white-space: nowrap;
}
.phrase-bubble {
  background: var(--white);
  border: 2.5px solid var(--orange);
  box-shadow: 3px 3px 0 var(--orange-light);
  padding: 10px 18px;
}
.phrase-text {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.phrase-switch-btns {
  display: flex;
  gap: 8px;
}
.phrase-switch-btn {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray);
  border: 2px solid var(--beige-dark);
  background: var(--white);
  transition: all var(--transition);
}
.phrase-switch-btn.active,
.phrase-switch-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}


/* ================================================================
   MISSION
   ================================================================ */
.section-mission {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.mission-bg-shapes .mission-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ms1 {
  width: 500px; height: 500px;
  background: rgba(244,166,64,0.08);
  top: -150px; right: -150px;
}
.ms2 {
  width: 300px; height: 300px;
  background: rgba(244,166,64,0.05);
  bottom: -100px; left: -80px;
}
.ms3 {
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.03);
  top: 40%; left: 40%;
  border-radius: var(--radius-xl);
  transform: rotate(20deg);
}

.mission-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.mission-label {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--orange);
  background: rgba(244,166,64,0.12);
  padding: 5px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.mission-headline {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0 rgba(244,166,64,0.15);
}
.mission-body {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.mission-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.mission-pill {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.15);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
}


/* ================================================================
   INFLUENCER MATCHING SECTION
   ================================================================ */
.section-influencer {
  padding: 80px 0;
  background: var(--beige);
  position: relative;
}
.section-influencer::before {
  content: '';
  position: absolute;
  top: -30px; left: 0; right: 0;
  height: 60px;
  background: var(--dark);
  border-radius: 0 0 50% 50% / 0 0 40px 40px;
}

/* Hero header */
.inf-match-hero {
  text-align: center;
  margin-bottom: 48px;
}

/* How it works */
.inf-how {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 28px;
  margin-bottom: 44px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.inf-step {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.inf-step-num {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 1px;
  font-family: var(--font-hand);
}
.inf-step-icon { font-size: 2rem; }
.inf-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.inf-step-body strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--dark);
}
.inf-step-body span {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}
.inf-step-arrow {
  color: var(--orange);
  font-size: 1rem;
  padding-top: 44px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* Venue listing header */
.inf-venue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.inf-venue-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
}
.inf-venue-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-hand);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  transform: rotate(-1deg);
}

/* Venue cards grid */
.inf-venue-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.inf-venue-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.inf-venue-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-light);
}

.inf-venue-img-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.inf-venue-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.inf-venue-card:hover .inf-venue-img { transform: scale(1.05); }

.inf-venue-collab-tag {
  position: absolute;
  top: 10px; right: 10px;
  background: #22c55e;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tag-soon { background: #f59e0b; }

.inf-venue-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.inf-venue-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-dark);
}
.inf-venue-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}
.inf-venue-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
  flex: 1;
}

.inf-venue-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 6px;
}
.perk-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--orange-light);
}

.inf-apply-btn {
  display: inline-block;
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--orange-dark);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}
.inf-apply-btn:hover {
  color: var(--orange);
  transform: translateX(4px);
}
.inf-notify-btn { color: var(--gray); }
.inf-notify-btn:hover { color: var(--dark); }

/* CTA banner */
.inf-match-cta {
  background: var(--dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.inf-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 32px;
  flex-wrap: wrap;
  text-align: center;
}
.inf-cta-icon { font-size: 2rem; flex-shrink: 0; }
.inf-cta-text-block {
  display: flex;
  align-items: center;
}
.inf-cta-text-block strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}


/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--dark-mid);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer-logo .logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
}
.footer-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--orange); }

.footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer-bubble {
  background: rgba(255,255,255,0.08);
  border-color: rgba(244,166,64,0.5);
  color: rgba(255,255,255,0.85);
  box-shadow: none;
  font-size: 0.95rem;
}
.footer-bubble .bubble-tail { display: none; }

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  flex-wrap: wrap;
}
.footer-lang { display: flex; align-items: center; gap: 6px; }
.footer-lang span { color: rgba(255,255,255,0.3); }
.footer-lang .lang-btn { color: rgba(255,255,255,0.6); }
.footer-lang .lang-btn.active,
.footer-lang .lang-btn:hover {
  background: var(--orange);
  color: var(--white);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}


/* ================================================================
   RESPONSIVE — Tablet
   ================================================================ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .lang-selector { display: none; }

  .partner-card { flex: 0 0 260px; width: 260px; }

  .stories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .story-featured { grid-column: auto; }

  .categories-grid-11 { grid-template-columns: repeat(4, 1fr); }
  .categories-grid-11 .category-card:nth-child(7),
  .categories-grid-11 .category-card:nth-child(8),
  .categories-grid-11 .category-card:nth-child(9),
  .categories-grid-11 .category-card:nth-child(10),
  .categories-grid-11 .category-card:nth-child(11) { grid-column: auto; }

  .inf-how { gap: 12px; padding: 20px; }
  .inf-step-arrow { display: none; }

  .brand-card { flex-direction: column; text-align: center; padding: 36px 24px; }
  .brand-illustration { margin: 0 auto; }
  .phrase-card { justify-content: center; }
  .phrase-switch-btns { justify-content: center; }

  .trust-row { padding: 14px 16px; }
  .trust-item { padding: 0 12px; }
}


/* ================================================================
   RESPONSIVE — Mobile
   ================================================================ */
@media (max-width: 600px) {
  :root { --header-h: 60px; }

  .hero-content { padding: 40px 20px 60px; }
  .hero-headline { letter-spacing: -1px; margin-bottom: 14px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .trust-row {
    gap: 0;
    padding: 12px 8px;
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 8px;
    border-radius: var(--radius-lg);
  }
  .trust-item { padding: 0 8px; }
  .trust-num { font-size: 1.3rem; }
  .trust-divider { height: 30px; }

  .partner-card { flex: 0 0 80vw; width: 80vw; }
  .card-image-wrap { height: 180px; }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .category-card { padding: 16px 8px 14px; }
  .cat-icon-wrap { width: 48px; height: 48px; }
  .cat-emoji { font-size: 1.6rem; }
  .cat-name { font-size: 0.78rem; }

  /* categories: 3-col on mobile */
  .categories-grid-11 { grid-template-columns: repeat(3, 1fr); }
  .categories-grid-11 .category-card:nth-child(7),
  .categories-grid-11 .category-card:nth-child(8),
  .categories-grid-11 .category-card:nth-child(9),
  .categories-grid-11 .category-card:nth-child(10),
  .categories-grid-11 .category-card:nth-child(11) { grid-column: auto; }

  /* stories: 2-col on mobile */
  .stories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .story-featured { grid-column: auto; }

  .inf-how { flex-direction: column; align-items: center; }
  .inf-step-arrow { display: none; }
  .inf-cta-inner { flex-direction: column; gap: 12px; }
  .inf-cta-inner .btn { width: 100%; justify-content: center; }

  .footer-top { flex-direction: column; gap: 20px; }
  .footer-nav { flex-direction: row; gap: 8px 14px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .mission-headline { letter-spacing: -0.5px; }
  .mission-pills { gap: 8px; }
  .mission-pill { font-size: 0.8rem; padding: 6px 14px; }

  .brand-card { padding: 28px 18px; }
  .phrase-text { font-size: 1rem; white-space: normal; }

  .section-partners,
  .section-stories,
  .section-influencer { padding: 52px 0; }
  .section-best30,
  .section-brand,
  .section-mission { padding: 52px 0; }
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
