/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: height 0.4s cubic-bezier(0.32, 0.72, 0, 1),
              background 0.4s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  height: var(--wc-header-height);
  will-change: height, background;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: backdrop-filter 0.4s cubic-bezier(0.32, 0.72, 0, 1),
              -webkit-backdrop-filter 0.4s cubic-bezier(0.32, 0.72, 0, 1),
              background 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: -1;
}

.site-header.scrolled {
  height: var(--wc-header-scrolled);
  background: rgba(4,18,28,0.85);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.site-header.scrolled::before {
  background: transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-branding .custom-logo-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.brand-logo {
  height: 32px;
  width: auto;
}

.brand-sub {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--wc-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wc-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.site-header.scrolled .logo-text {
  color: var(--wc-white);
}

.site-branding img {
  max-height: 50px;
  width: auto;
}

/* ===== Navigation ===== */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  align-self: stretch;
}

.primary-menu {
  display: flex;
  list-style: none;
  gap: 2px;
  align-self: stretch;
}

.primary-menu > .menu-item {
  display: flex;
  align-items: center;
}

.primary-menu > .menu-item > a {
  display: block;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.primary-menu > .menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 1.5px;
  background: var(--wc-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.primary-menu > .menu-item > a:hover {
  color: var(--wc-gold);
}

.primary-menu > .menu-item > a:hover::after {
  transform: scaleX(1);
}

/* Sub / Mega Menus */
.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 240px;
  list-style: none;
  padding: 14px 0;
  box-shadow: var(--wc-shadow-xl);
  border-radius: var(--wc-radius-lg);
  border: 1px solid var(--wc-border-light);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s cubic-bezier(0.32, 0.72, 0, 1),
              visibility 0.2s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 100;
}

.primary-menu .menu-item-has-children {
  position: relative;
}

.primary-menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.primary-menu .sub-menu a {
  display: block;
  padding: 11px 28px;
  font-size: 0.9rem;
  color: var(--wc-text);
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.primary-menu .sub-menu a::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--wc-gold);
  border-radius: 1px;
  opacity: 0;
  transition: height 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.25s ease;
}

.primary-menu .sub-menu a:hover {
  background: var(--wc-accent-bg);
  color: var(--wc-navy);
  padding-left: 34px;
}

.primary-menu .sub-menu a:hover::before {
  height: 14px;
  opacity: 1;
}

.primary-menu .mega-sub-menu a::before {
  display: none;
}

/* ===== Menu Toggle (Mobile) ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

/* Mobile nav header — hidden on desktop, shown inside slide-in panel */
.mobile-nav-header {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wc-white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-cta {
  padding: 11px 28px !important;
  font-size: 0.75rem !important;
  letter-spacing: 1.5px !important;
  border-radius: var(--wc-radius) !important;
  background: transparent !important;
  color: var(--wc-white) !important;
  border-color: rgba(255,255,255,0.5) !important;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.header-cta:hover {
  background: var(--wc-white) !important;
  color: var(--wc-navy) !important;
  border-color: var(--wc-white) !important;
  transform: translateY(-1px);
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  margin-top: calc(-1 * var(--wc-header-height));
}

.hero-slider-wrapper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,31,47,0.75) 0%, rgba(10,31,47,0.25) 50%, rgba(10,31,47,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 750px;
  padding-top: 90px;
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--wc-gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-title {
  font-size: 4rem;
  color: var(--wc-white);
  font-family: var(--wc-font-heading);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 2;
  margin-bottom: 40px;
  max-width: 560px;
  font-weight: 300;
}

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 50px;
  right: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-dots {
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--wc-gold);
  border-color: var(--wc-gold);
  transform: scale(1.3);
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  color: var(--wc-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}

.hero-arrow:hover {
  background: var(--wc-white);
  color: var(--wc-navy);
  border-color: var(--wc-white);
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.scroll-down:hover {
  color: var(--wc-gold);
}

.scroll-down::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Hero Brand Accent ===== */
.hero-brand-accent {
  position: absolute;
  top: 240px;
  right: 60px;
  transform: none;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  animation: accentFadeIn 2s ease-out both;
}

@keyframes accentFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.accent-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,1), rgba(255,255,255,0.8));
}

.accent-cn {
  font-family: 'Ma Shan Zheng', 'KaiTi', 'STKaiti', serif;
  font-size: 5.5rem;
  font-weight: 400;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 8px;
  text-shadow:
    0 0 30px rgba(255,255,255,0.1),
    0 2px 8px rgba(0,0,0,0.3);
  transition: color 0.6s ease;
}

.accent-en {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  letter-spacing: 4px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.accent-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

/* ===== Cities Accordion ===== */
.cities-accordion {
  position: relative;
  overflow: hidden;
  background: url('../images/bg-1.jpg') center/cover no-repeat fixed;
}

.cities-accordion::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(10,31,47,0.75);
  pointer-events: none;
}

.cities-accordion-header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 20px 20px;
}

.cities-accordion-header h2 {
  font-family: var(--wc-font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: 2px;
}

.cities-accordion-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  font-weight: 300;
  letter-spacing: 1px;
}

.cities-accordion-track {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100px;
}

.city-accordion-item {
  position: relative;
  flex: 1;
  min-width: 70px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: flex 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.city-accordion-item:last-child {
  border-right: none;
}

.city-accordion-item:hover,
.city-accordion-item:focus-within,
.city-accordion-item.active {
  flex: 2.5;
}

.city-accordion-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.city-accordion-item:hover .city-accordion-bg {
  transform: scale(1.05);
}

.city-accordion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,47,0.85) 0%, rgba(10,31,47,0.3) 40%, rgba(10,31,47,0.1) 100%);
  transition: background 0.55s ease;
}

.city-accordion-content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  white-space: nowrap;
  transition: padding 0.55s ease;
}

.city-accordion-cn {
  display: block;
  font-family: var(--wc-font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.city-accordion-en {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease 0.15s;
}

.city-accordion-tours {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease 0.2s;
}

.city-accordion-item:hover .city-accordion-en,
.city-accordion-item:hover .city-accordion-tours,
.city-accordion-item:focus-within .city-accordion-en,
.city-accordion-item:focus-within .city-accordion-tours,
.city-accordion-item.active .city-accordion-en,
.city-accordion-item.active .city-accordion-tours {
  opacity: 1;
  transform: translateY(0);
}

.city-accordion-item.active .city-accordion-bg {
  transform: scale(1.05);
}

/* ===== Services Section ===== */
.services-section {
  background: url('../images/bg-1.jpg') center/cover no-repeat fixed;
  padding: 0;
  position: relative;
}
.services-section::after {
  display: none;
}
/* ===== Intro Section ===== */
.intro-section {
  background: rgba(250,248,244,0.94);
  padding: 0;
  margin: 0;
}
.intro-section .container {
  max-width: none;
  padding: 0;
}

.services-header {
  position: relative;
  z-index: 1;
  padding: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.services-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-rtl 30s linear infinite;
}

.services-tags {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 32px 0;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--wc-font-heading);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 36px;
  position: relative;
  white-space: nowrap;
  transition: color 0.4s ease;
}

.service-tag i {
  font-size: 0.7rem;
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-tag:hover {
  color: var(--wc-gold);
}

.service-tag:hover i {
  opacity: 1;
  transform: translateY(-1px);
}

.service-tag::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}

.service-tag:last-child::after {
  display: none;
}

@keyframes marquee-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-rtl {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Home Intro */
.home-intro {
  padding: 0;
}

.home-intro-media {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: #e8e3da;
  order: 2;
}

/* ===== Media Section ===== */
.media-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: #1a1a1a;
}

.media-section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-section-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.1);
  background: #1a1a1a;
}

.home-intro-text {
  padding: 80px 100px;
  text-align: left;
  order: 1;
}




.home-intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-intro-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(0,0,0,0.15);
  background: #e8e3da;
}




.home-intro-title {
  font-family: var(--wc-font-heading);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--wc-navy);
  margin: 0 0 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

.home-intro-title::after {
  content: '';
  display: block;
  width: 200px;
  height: 1px;
  background: var(--wc-gold);
  margin: 20px 0 0 0;
}

.home-intro-body {
  font-size: 1.05rem;
  color: #666;
  line-height: 2.2;
  letter-spacing: 0.4px;
  margin: 0;
}

.home-intro-body p {
  margin: 0 0 1.2em;
}

.home-intro-body p:last-child {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.service-item {
  text-align: center;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--wc-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--wc-gold);
}

.service-title {
  font-family: var(--wc-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--wc-navy);
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
}

/* ===== Journeys Section (WildChina Style) ===== */
.journeys-section {
  background: url('../images/bg-2.jpg') center/cover no-repeat fixed;
  padding: 0;
  position: relative;
}

.journeys-section::after {
  display: none;
}

.journeys-section > .container {
  position: relative;
  z-index: 1;
  padding: 50px 60px 40px;
  margin: 50px 60px 0;
  max-width: none;
  background: rgba(0,0,0,0.45);
}


.journeys-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 50px;
}

.journeys-title {
  font-family: var(--wc-font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 30px;
  letter-spacing: 1px;
}

.journeys-divider {
  display: block;
  width: 600px;
  height: 1px;
  background: var(--wc-gold);
  margin: 0 auto 16px;
}

.journeys-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.journeys-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
}

.journeys-grid > * {
  flex: 0 0 calc(25% - 52.5px);
  min-width: 240px;
}

/* Card */
.journey-card-wc {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border-radius: var(--wc-radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.03);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.journey-card-wc:hover {
  box-shadow:
    0 2px 6px rgba(0,0,0,0.06),
    0 8px 24px rgba(0,0,0,0.08),
    0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

.journey-card-wc:hover .journey-card-wc-title {
  color: var(--wc-gold);
}

/* Thumbnail */
.journey-card-wc-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--wc-radius-lg) var(--wc-radius-lg) 0 0;
}

.journey-card-wc-img-wrap {
  width: 100%;
  height: 100%;
  border-radius: var(--wc-radius-lg) var(--wc-radius-lg) 0 0;
  overflow: hidden;
}

.journey-card-wc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journey-card-wc:hover .journey-card-wc-img-wrap img {
  transform: scale(1.08);
}

.journey-card-wc-badge {
  position: absolute;
  top: 20px;
  left: -8px;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(201,169,110,0.6) 0%,
    rgba(180,145,85,0.5) 50%,
    rgba(201,169,110,0.55) 100%
  );
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 18px 5px 14px;
  border-radius: 0 2px 2px 0;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 6px 24px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.journey-card-wc-badge::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid rgba(180,145,85,0.85);
  border-left: 8px solid transparent;
}

/* Body */
.journey-card-wc-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journey-card-wc-meta {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 10px;
  font-weight: 500;
}

.journey-card-wc-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--wc-navy);
  margin: 0 0 12px;
  line-height: 1.4;
  transition: color 0.35s ease;
}

.journey-card-wc-desc {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
  margin: 0;
}
.journey-card-wc-thumb {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.journey-card-wc-title-link {
  text-decoration: none;
  color: inherit;
}
.journey-card-wc-btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.75rem;
  padding: 8px 22px;
  background: transparent;
  color: var(--wc-gold);
  border-color: rgba(201,169,110,0.45);
}
.journey-card-wc-btn:hover {
  background: var(--wc-gold);
  color: #fff;
  border-color: var(--wc-gold);
}

.journey-card-wc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--wc-gold);
  transition: gap 0.3s ease, color 0.3s ease;
}
.journey-card-wc:hover .journey-card-wc-link {
  gap: 10px;
  color: var(--wc-gold-dark);
}
.journey-card-wc-link i {
  font-size: 0.68rem;
  transition: transform 0.3s ease;
}
.journey-card-wc:hover .journey-card-wc-link i {
  transform: translateX(3px);
}

/* Footer */
.journeys-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 40px;
}

.journeys-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 44px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  color: var(--wc-white);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.journeys-btn::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.journeys-btn:hover {
  background: var(--wc-white);
  color: var(--wc-navy);
  border-color: var(--wc-white);
}

.journeys-btn:hover::after {
  transform: translateX(4px);
}

/* ===== Recognitions Section (inside journeys — frosted glass, full-width at bottom) ===== */
.recognitions-section {
  background: rgba(40,40,40,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  padding: 50px 60px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.recognitions-header {
  text-align: center;
  margin-bottom: 40px;
}

.recognitions-title {
  font-family: var(--wc-font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 30px;
  letter-spacing: 1px;
}

.recognitions-divider {
  display: block;
  width: 600px;
  height: 1px;
  background: var(--wc-gold);
  margin: 0 auto 16px;
}

.recognitions-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.recognition-item {
  text-align: center;
  flex: 0 0 auto;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.recognition-item:hover {
  transform: translateY(-4px);
}

.recognition-logo {
  height: 100px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.recognition-item:hover .recognition-logo {
  opacity: 1;
}

.recognition-logo img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.recognition-item p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.5px;
  transition: color 0.35s ease;
}

.recognition-item:hover p {
  color: rgba(255,255,255,0.55);
}

/* ===== Travel Experts Section ===== */
.expert-section {
  background: var(--wc-navy);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.expert-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--wc-gold), transparent);
}

.expert-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.expert-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.expert-title {
  font-family: var(--wc-font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.expert-subtitle {
  font-size: 1.05rem;
  color: var(--wc-gold);
  margin: 0 0 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.expert-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
}

.expert-features span {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.expert-features span:first-child {
  padding-left: 0;
}

.expert-features span:last-child {
  border-right: none;
}

.expert-features span i {
  color: var(--wc-gold);
  margin-right: 7px;
  font-size: 0.65rem;
}

.expert-cta {
  font-size: 0.82rem;
  padding: 13px 34px;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.expert-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,0.08);
  min-height: 160px;
}

.expert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.expert-card + .expert-card {
  margin-left: -5px;
}

.expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--wc-gold);
  box-shadow: 0 0 0 5px var(--wc-navy);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.expert-card:hover .expert-avatar {
  transform: scale(1.12);
  z-index: 2;
}

.expert-name {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.expert-card:hover .expert-name {
  color: var(--wc-gold);
}

@media (max-width: 768px) {
  .expert-content {
    flex-direction: column;
    text-align: center;
  }
  .expert-features {
    justify-content: center;
  }
  .expert-avatars {
    border-left: none;
    padding-left: 0;
    min-height: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
  }
  .expert-features span:first-child {
    padding-left: 18px;
  }
}

/* ===== Destination Archive - Hero ===== */
.dest-hero {
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.dest-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,18,28,0.25) 0%, rgba(4,18,28,0.55) 100%);
}

.dest-hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}

.dest-hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wc-gold);
  margin-bottom: 16px;
  padding: 5px 16px;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 50px;
}

.dest-hero h1 {
  font-family: var(--wc-font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.dest-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Section Title ===== */
.dest-section-title {
  font-family: var(--wc-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wc-navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dest-section-title::after {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 2px;
  background: var(--wc-gold);
  border-radius: 1px;
}

/* ===== Destination Filter Bar ===== */
/* ===== Destination Page Layout: Sidebar + Grid ===== */
.dest-page-wrap {
  padding: 50px 0;
}

.dest-page-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* ---- Left Sidebar ---- */
.dest-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,169,110,0.3) transparent;
}
.dest-sidebar::-webkit-scrollbar { width: 4px; }
.dest-sidebar::-webkit-scrollbar-thumb {
  background: rgba(201,169,110,0.25);
  border-radius: 4px;
}

.dest-filter-panel {
  background: #fff;
  border: 1px solid var(--wc-border-light, #e5e5e0);
  border-radius: var(--wc-radius-lg, 8px);
  padding: 24px 20px;
}

.dest-filter-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wc-navy, #1a1a2e);
  margin: 0 0 18px 4px;
}

/* ---- Filter Tree ---- */
.filter-tree {
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-tree-item {
  margin: 0;
}

.filter-tree-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px 9px 8px;
  font-size: 0.95rem;
  color: var(--wc-text, #3a3a3a);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  line-height: 1.45;
}

.filter-tree-toggle {
  cursor: pointer;
  user-select: none;
}

.filter-tree-arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 3px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.filter-tree-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid currentColor;
  transform: translate(-50%, -50%);
  opacity: 0.45;
  transition: opacity 0.2s;
}

.filter-tree-toggle:hover .filter-tree-arrow::before {
  opacity: 0.8;
}

/* Collapsed state */
.filter-tree-item.collapsed > .filter-tree-children {
  display: none;
}
.filter-tree-item.collapsed > .filter-tree-toggle .filter-tree-arrow {
  transform: rotate(-90deg);
}

.filter-tree-link:hover {
  background: var(--wc-accent-bg, #f8f6f0);
  color: var(--wc-navy, #1a1a2e);
}

.filter-tree-item.active > .filter-tree-link {
  background: rgba(201,169,110,0.10);
  color: var(--wc-gold, #c9a96e);
  font-weight: 600;
}

.filter-tree-all {
  font-weight: 600;
  color: var(--wc-navy, #1a1a2e);
}

.filter-tree-count {
  font-size: 0.78rem;
  color: var(--wc-text-light, #999);
  background: var(--wc-accent-bg, #f8f6f0);
  padding: 2px 9px;
  border-radius: 10px;
  min-width: 26px;
  text-align: center;
}
.filter-tree-item.active > .filter-tree-link .filter-tree-count {
  background: rgba(201,169,110,0.15);
  color: var(--wc-gold, #c9a96e);
}

/* Children (indented) */
.filter-tree-children {
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
}

.filter-tree-children .filter-tree-link {
  font-size: 0.90rem;
  padding: 7px 10px 7px 8px;
}

/* Deep children slightly smaller */
.filter-tree-children .filter-tree-children .filter-tree-link {
  font-size: 0.85rem;
  padding-left: 10px;
}

/* ---- Right Main ---- */
.dest-main {
  flex: 1;
  min-width: 0;
}

/* ===== Featured Destinations ===== */
.dest-featured {
  padding: 55px 0 20px;
}

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

.dest-featured-card {
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              border-color 0.35s ease;
}

.dest-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-color: rgba(201,169,110,0.2);
}

.dest-featured-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.dest-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.dest-featured-card:hover .dest-featured-img img {
  transform: scale(1.06);
}

.dest-featured-body {
  padding: 20px 22px;
}

.dest-featured-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wc-navy);
  margin: 0 0 2px;
}

.dest-featured-en {
  display: block;
  font-size: 0.78rem;
  color: var(--wc-text-muted);
  margin-bottom: 10px;
}

.dest-featured-meta {
  font-size: 0.75rem;
  color: var(--wc-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== Hot Destinations Section ===== */
.dest-hot-section {
  padding-bottom: 32px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ===== All Destinations / Tours / Topics Grid ===== */
.dest-grid-section {
  padding: 50px 0 60px;
}

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

.dest-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              border-color 0.35s ease;
  text-decoration: none;
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  border-color: rgba(201,169,110,0.2);
}

.dest-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.dest-card:hover .dest-card-img img {
  transform: scale(1.06);
}

.dest-card-body {
  padding: 18px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dest-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wc-navy);
  margin: 0 0 3px;
  line-height: 1.35;
  padding-left: 0;
  transition: padding-left 0.35s cubic-bezier(0.32, 0.72, 0, 1), color 0.3s ease;
}

.dest-card:hover .dest-card-body h3 {
  padding-left: 8px;
  color: var(--wc-gold);
}

.dest-card-en {
  display: block;
  font-size: 0.75rem;
  color: var(--wc-text-muted);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.dest-card-desc {
  font-size: 0.85rem;
  color: var(--wc-text-light);
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dest-card-count {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--wc-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.dest-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--wc-text-light);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.dest-card-footer i {
  color: var(--wc-gold);
  font-size: 0.7rem;
  margin-right: 5px;
}

.dest-card-arrow {
  font-size: 1.05rem;
  color: var(--wc-gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s cubic-bezier(0.32, 0.72, 0, 1),
              transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.dest-card:hover .dest-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Tour & Topic Archive Grid ===== */
.tour-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== Destination CTA ===== */
.dest-cta {
  background: var(--wc-navy);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.dest-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--wc-gold);
}

.dest-cta h2 {
  font-family: var(--wc-font-heading);
  font-size: 1.8rem;
  color: #fff;
  margin: 0 0 10px;
}

.dest-cta p {
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.dest-cta .wc-btn-gold {
  font-size: 0.85rem;
  padding: 13px 32px;
  letter-spacing: 1px;
}

/* ===== Empty State ===== */
.dest-empty {
  text-align: center;
  padding: 80px 0;
}

.dest-empty i {
  font-size: 2.8rem;
  color: rgba(201,169,110,0.25);
  display: block;
  margin-bottom: 20px;
}

.dest-empty h2 {
  font-family: var(--wc-font-heading);
  font-size: 1.3rem;
  color: var(--wc-navy);
  margin-bottom: 8px;
  font-weight: 600;
}

.dest-empty p {
  color: var(--wc-text-light);
  font-size: 0.95rem;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .dest-page-layout {
    gap: 28px;
  }
  .dest-sidebar {
    width: 220px;
  }
  .dest-featured-grid,
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-hero h1 {
    font-size: 2.2rem;
  }
  .dest-hero {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .dest-page-layout {
    flex-direction: column;
  }
  .dest-sidebar {
    width: 100%;
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  .dest-filter-panel {
    padding: 14px 12px;
  }
  .filter-tree-children {
    padding-left: 12px;
  }
}

@media (max-width: 576px) {
  .dest-featured-grid,
  .dest-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dest-hero {
    min-height: 260px;
  }
  .dest-hero h1 {
    font-size: 1.7rem;
  }
  .dest-hero p {
    font-size: 0.95rem;
  }
  .dest-cta h2 {
    font-size: 1.4rem;
  }
}

/* ===== Interests Grid ===== */
/* ===== Section Padding Overlay ===== */
.tag-section {
  position: relative;
  padding: 60px 0;
}
.tag-section-overlay {
  display: none;
}
.section-padding {
  position: relative;
  padding: 40px 0;
}
.tag-section > .container {
  position: relative;
  z-index: 1;
  padding: 50px 60px;
  margin: 0 60px;
  max-width: none;
  background: rgba(0,0,0,0.45);
}

/* ===== Journeys Tags Section (inside container) ===== */
.journeys-section .journeys-tags-section {
  padding-top: 0;
  padding-bottom: 50px;
  margin-bottom: 20px;
}
.section-title-light {
  text-align: center;
  margin-bottom: 20px;
}
.section-title-light h2 {
  font-family: var(--wc-font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 30px;
  letter-spacing: 1px;
}
.section-title-light h2::after {
  display: none;
}
.section-divider {
  display: block;
  width: 600px;
  max-width: 100%;
  height: 1px;
  background: var(--wc-gold);
  margin: 0 auto 16px;
}
.section-title-light .subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Tag Cards Grid (Polaroid Stack) ===== */
.tag-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 0;
}

.tag-card {
  position: relative;
  display: block;
  width: 175px;
  background: #fafaf7;
  border-radius: 0;
  padding: 22px 12px 56px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              z-index 0.1s;
  z-index: 1;
}

.tag-card:hover {
  transform: scale(1.08) rotate(0deg) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 99;
}

.tag-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 5;
  overflow: hidden;
  background: #e8e3da;
}

.tag-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-card-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e3da;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(0,0,0,0.12);
}

.tag-card-overlay { display: none; }

.tag-card-content {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 0;
  z-index: 2;
  text-align: center;
}

.tag-card-name {
  font-family: var(--wc-font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #3a3a3a;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Scattered rotations */
.tag-card:nth-child(1)  { transform: rotate(-4deg); margin: 8px -5px 0 0; }
.tag-card:nth-child(2)  { transform: rotate(3deg);  margin: 5px 0 0 -8px; }
.tag-card:nth-child(3)  { transform: rotate(-2deg); margin: 10px -3px 0 -3px; }
.tag-card:nth-child(4)  { transform: rotate(5deg);  margin: 3px 0 0 -6px; }
.tag-card:nth-child(5)  { transform: rotate(-6deg); margin: 7px -4px 0 -4px; }
.tag-card:nth-child(6)  { transform: rotate(2deg);  margin: 6px -7px 0 0; }
.tag-card:nth-child(7)  { transform: rotate(-3deg); margin: 9px -2px 0 -5px; }
.tag-card:nth-child(8)  { transform: rotate(4deg);  margin: 4px 0 0 -4px; }
.tag-card:nth-child(9)  { transform: rotate(-5deg); margin: 8px -5px 0 -3px; }
.tag-card:nth-child(10) { transform: rotate(1deg);  margin: 5px -3px 0 -6px; }


/* ===== Topic Section ===== */
.topic-section {
  background: url('../images/bg-1.jpg') center/cover no-repeat fixed;
  padding: 0;
  position: relative;
}
.topic-section::after {
  display: none;
}
.topic-section .container {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: none;
}
.topic-section .section-title {
  margin: 0;
  padding: 40px 0 80px;
  background: rgba(40,40,40,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.topic-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 60px;
}
.topic-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 400px;
}
.topic-row-img {
  flex: 0 0 50%;
  height: 450px;
  overflow: hidden;
}
.topic-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topic-row-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.12);
}
.topic-row-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  background: rgba(250,248,244,0.94);
}
.topic-row-reverse .topic-row-body {
  align-items: flex-end;
  text-align: right;
}
.topic-row-title {
  font-family: var(--wc-font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}
.topic-row-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 16px;
}
.topic-row-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wc-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.topic-row-link:hover {
  gap: 14px;
}
.topic-row-reverse {
  flex-direction: row-reverse;
}

/* ===== Testimonials ===== */
.testimonials-slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-item {
  display: none;
  text-align: center;
  padding: 50px 60px;
  background: #2a3040;
  border-radius: 6px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.12);
}

.testimonial-item.active {
  display: block;
  animation: testimonialSlideIn 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-item.exit {
  display: block;
  animation: testimonialSlideOut 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes testimonialSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes testimonialSlideOut {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.testimonial-stars {
  color: var(--wc-gold);
  font-size: 0.85rem;
  letter-spacing: 6px;
  margin-bottom: 30px;
}

.testimonial-item blockquote {
  font-family: var(--wc-font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 2.1;
  color: rgba(255,255,255,0.9);
  font-style: normal;
  margin: 0 0 30px;
  border: none;
  padding: 0 0 0 56px;
  position: relative;
  text-align: left;
}

.testimonial-item blockquote::before {
  content: '\201C';
  font-size: 5.5rem;
  color: var(--wc-gold);
  position: absolute;
  top: -14px;
  left: 0;
  opacity: 0.7;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-item cite {
  display: block;
  font-style: normal;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  padding-left: 56px;
}

.testimonial-item cite strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--wc-navy-dark);
  color: var(--wc-white);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--wc-gold), transparent);
  opacity: 0.5;
}

.footer-main {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1fr 1fr;
  gap: 50px;
}

.footer-widget-title {
  color: var(--wc-gold);
  font-family: var(--wc-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 13px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  position: relative;
  transition: color 0.3s ease, padding-left 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--wc-gold);
  border-radius: 1px;
  opacity: 0;
  transition: height 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.25s ease;
}

.footer-links a:hover {
  color: var(--wc-gold);
  padding-left: 8px;
}

.footer-links a:hover::before {
  height: 12px;
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--wc-gold);
  color: var(--wc-white);
  border-color: var(--wc-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* ===== Floating Action Buttons (FAB) ===== */
.wc-fab-group {
  position: fixed;
  bottom: 30px;
  right: 38px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

.wc-fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.3s ease;
  pointer-events: auto;
}

.wc-fab-top {
  background: var(--wc-navy);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.3s ease,
              background 0.3s ease,
              opacity 0.3s ease,
              visibility 0.3s ease;
}

.wc-fab-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.wc-fab-top:hover {
  background: var(--wc-navy);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}

.wc-fab-plan {
  background: #C9A96E;
  color: #fff;
  position: relative;
}

.wc-fab-plan::before,
.wc-fab-plan::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #C9A96E;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.wc-fab-plan:hover::before,
.wc-fab-plan:hover::after {
  animation: fabRipple 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.wc-fab-plan:hover::after {
  animation-delay: 0.4s;
}

.wc-fab-plan:hover {
  background: #C9A96E;
  color: #fff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
}

.wc-fab-whatsapp {
  background: #25D366;
  color: #fff;
  position: relative;
}

.wc-fab-whatsapp::before,
.wc-fab-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.wc-fab-whatsapp:hover::before,
.wc-fab-whatsapp:hover::after {
  animation: fabRipple 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.wc-fab-whatsapp:hover::after {
  animation-delay: 0.4s;
}

.wc-fab-whatsapp:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

@keyframes fabRipple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .wc-fab-group {
    bottom: 20px;
    right: 24px;
    gap: 12px;
  }
  .wc-fab {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ===== Newsletter Section ===== */
.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1rem;
  font-family: var(--wc-font-body);
  border-radius: var(--wc-radius);
  transition: all var(--wc-transition);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--wc-gold);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

/* ===== Mega Menu ===== */
.menu-item-mega {
  position: static;
}

.primary-menu .mega-sub-menu {
  position: fixed;
  top: var(--wc-header-height);
  left: 0;
  width: 100vw;
  min-width: auto;
  max-width: none;
  padding: 50px 60px;
  border-radius: 0;
  background: rgba(18,18,22,0.55);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: opacity 0.25s cubic-bezier(0.32, 0.72, 0, 1),
              visibility 0.25s cubic-bezier(0.32, 0.72, 0, 1),
              top 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.site-header.scrolled .primary-menu .mega-sub-menu {
  top: var(--wc-header-scrolled);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--wc-max-width);
  margin: 0 auto;
}

.mega-grid-topics {
  grid-template-columns: repeat(4, 1fr);
}

.mega-col {
  min-width: 140px;
}

.mega-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wc-gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mega-col-title a {
  color: var(--wc-gold);
}

.mega-col-title a:hover {
  color: var(--wc-white);
}

.mega-count {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  font-size: 0.7rem;
}

.mega-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-col-list li {
  margin-bottom: 6px;
}

.primary-menu .mega-col-list a {
  display: block;
  padding: 4px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  position: relative;
  transition: color 0.25s ease, padding-left 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.primary-menu .mega-col-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--wc-gold);
  border-radius: 1px;
  opacity: 0;
  transition: height 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.25s ease;
}

.primary-menu .mega-col-list a:hover {
  color: var(--wc-gold);
  padding-left: 6px;
}

.primary-menu .mega-col-list a:hover::before {
  height: 12px;
  opacity: 1;
}

.mega-tour-type-wrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  max-width: var(--wc-max-width);
  margin: 0 auto;
}

.mega-tour-type-wrap .mega-dest-az-link {
  flex: 0 0 calc(25% - 6px);
  justify-content: center;
  box-sizing: border-box;
  padding: 6px 16px 6px 0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s ease, padding-left 0.35s cubic-bezier(0.32, 0.72, 0, 1) !important;
}

.mega-empty {
  color: rgba(255,255,255,0.35);
  font-size: 0.875rem;
}

.mega-topic-col {
  text-align: left;
}

.mega-topic-thumb {
  display: block;
  margin-bottom: 12px;
  border-radius: var(--wc-radius);
  overflow: hidden;
}

.mega-topic-thumb img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mega-topic-thumb:hover img {
  transform: scale(1.06);
}

.mega-topic-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.mega-footer {
  padding: 14px 0 0;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  max-width: var(--wc-max-width);
  margin-left: auto;
  margin-right: auto;
}

.primary-menu .mega-footer a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wc-gold);
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.primary-menu .mega-footer a {
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), color 0.3s ease;
}

.primary-menu .mega-footer a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--wc-gold);
  border-radius: 1px;
  opacity: 0;
  transition: height 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.25s ease;
}

.primary-menu .mega-footer a:hover {
  color: var(--wc-gold);
  background: transparent;
  padding-left: 0;
  transform: translateX(6px);
}

.primary-menu .mega-footer a:hover::before {
  height: 12px;
  opacity: 1;
}

/* Chevron icon */
.primary-menu > .menu-item > a i {
  font-size: 0.55rem;
  margin-left: 5px;
  color: rgba(255,255,255,0.5);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), color 0.3s ease;
}

.primary-menu > .menu-item:hover > a i {
  transform: rotate(180deg);
  color: var(--wc-gold);
}

/* ===== Destination Mega Menu ===== */
.primary-menu .mega-dest-menu {
  padding: 24px 60px 14px;
}

/* ===== China Tour Mega Menu ===== */
.primary-menu .mega-tour-menu {
  padding: 24px 60px 14px;
}

.mega-dest-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wc-gold);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* Hot section */
.mega-dest-hot {
  max-width: var(--wc-max-width);
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mega-dest-hot-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.mega-dest-hot-track {
  flex: 1;
  overflow: hidden;
}

.mega-dest-hot-wrap {
  display: flex;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mega-dest-hot-grid {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mega-dest-hot-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  padding: 0;
}

.mega-dest-hot-arrow:hover {
  background: rgba(255,255,255,0.15);
  color: var(--wc-white);
  border-color: rgba(255,255,255,0.4);
}

.mega-dest-hot-prev { margin-right: 12px; }
.mega-dest-hot-next { margin-left: 12px; }

.mega-dest-hot-mobile { display: none; }

.primary-menu .mega-dest-hot-card,
.mega-dest-hot-card {
  position: relative;
  display: block;
  border-radius: var(--wc-radius);
  overflow: hidden;
  color: var(--wc-white) !important;
  padding: 0 !important;
}

.mega-dest-hot-img {
  display: block;
}

.mega-dest-hot-img img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.mega-dest-hot-card:hover .mega-dest-hot-img img {
  transform: scale(1.05);
}

.mega-dest-hot-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(10,31,47,0.8), transparent);
}

.mega-dest-hot-name {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wc-white);
  z-index: 1;
}

.mega-dest-hot-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* Province section */
.mega-dest-province {
  max-width: var(--wc-max-width);
  margin: 0 auto;
  padding-top: 18px;
}

.mega-dest-az-scroll {
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.mega-dest-az-scroll::-webkit-scrollbar {
  width: 4px;
}

.mega-dest-az-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.mega-dest-az-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.mega-dest-az-grid {
  column-count: 5;
  column-gap: 28px;
}

.mega-dest-az-group {
  break-inside: avoid;
  margin-bottom: 16px;
}

.mega-dest-az-letter {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--wc-gold);
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
}

.mega-dest-az-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-dest-az-list li {
  line-height: 1.6;
}

.mega-dest-az-link {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6) !important;
  padding: 2px 6px 2px 0 !important;
  border-radius: 3px;
  position: relative;
  transition: color 0.3s ease, padding-left 0.35s cubic-bezier(0.32, 0.72, 0, 1) !important;
}

.mega-dest-az-link:hover {
  color: var(--wc-gold) !important;
  background: rgba(255,255,255,0.08) !important;
  padding-left: 10px !important;
}

.mega-dest-az-link span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease;
}

.mega-dest-az-link:hover span {
  color: var(--wc-gold);
}

.mega-dest-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 20px;
}

.mega-dest-city-col {
  min-width: 0;
}

.mega-dest-dest-card {
  display: inline;
  padding: 0 !important;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6) !important;
  transition: color 0.2s ease;
}

.mega-dest-dest-card:hover {
  color: var(--wc-gold) !important;
}

.mega-dest-dest-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===== About Grid ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-col-empty {
  min-height: 300px;
}

/* ===== Page Wrapper ===== */
.page-wrapper .tour-header {
  height: 420px;
}

/* ===== Single Location (Destination Detail) ===== */
.single-location .site-content,
.post-type-archive-location .site-content,
.tax-location_category .site-content,
.post-type-archive-tour .site-content,
.tax-tour_type .site-content,
.post-type-archive-topic .site-content,
.post-type-archive-guide .site-content,
.single-topic .site-content,
.single-guide .site-content,
.page-template-page-about .site-content {
  margin-top: 0;
}

.tour-breadcrumbs {
  padding: 14px 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.tour-breadcrumbs a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tour-breadcrumbs a:hover {
  color: var(--wc-gold);
}

.tour-breadcrumb-sep {
  color: rgba(255,255,255,0.25);
  margin: 0 10px;
}

.tour-breadcrumb-current {
  color: rgba(255,255,255,0.8);
}

.single-location .tour-section-title {
  font-size: 2rem;
}

.tour-header-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.location-highlights,
.location-special {
  color: var(--wc-text-light);
  line-height: 1.85;
  font-size: 0.95rem;
}

.location-tour-group {
  margin-bottom: 36px;
}
.location-tour-group:last-child {
  margin-bottom: 0;
}
.location-tour-group-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--wc-navy);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--wc-border-light);
}
.location-related-tours {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.location-coords {
  margin-bottom: 15px;
  color: var(--wc-text-light);
  font-size: 0.9rem;
}

.location-map {
  border-radius: var(--wc-radius);
  overflow: hidden;
}

/* Sidebar */
.sidebar-facts p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--wc-border-light);
  font-size: 0.88rem;
  color: var(--wc-text-light);
  margin: 0;
}

.sidebar-facts p:last-child {
  border-bottom: none;
}

.sidebar-facts p strong {
  color: var(--wc-navy);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.sidebar-facts p span {
  text-align: right;
}

.sidebar-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-link-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--wc-border-light);
}

.sidebar-link-list li:last-child {
  border-bottom: none;
}

.sidebar-link-list a {
  color: var(--wc-navy);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar-link-list a:hover {
  color: var(--wc-accent);
}

.sidebar-link-list a i {
  margin-right: 8px;
  color: var(--wc-navy);
  width: 16px;
  text-align: center;
}

/* ===== Tour Enquiry Form ===== */
.tour-enquiry-form .enquiry-field {
  margin-bottom: 14px;
}

.tour-enquiry-form input,
.tour-enquiry-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: rgba(255,255,255,0.65);
  color: var(--wc-text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.tour-enquiry-form input:focus,
.tour-enquiry-form textarea:focus {
  outline: none;
  border-color: var(--wc-navy);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 3px rgba(4,18,28,0.06);
}

.tour-enquiry-form input::placeholder,
.tour-enquiry-form textarea::placeholder {
  color: var(--wc-text-muted);
}

.tour-enquiry-form textarea {
  resize: vertical;
}

.enquiry-captcha {
  display: flex;
  flex-direction: row;
  gap: 10px;
  min-width: 0;
}

.enquiry-captcha input {
  width: auto;
  flex: 1;
  min-width: 0;
}

.captcha-img {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  border-radius: var(--wc-radius);
  border: 1px solid var(--wc-border);
  flex-shrink: 0;
}

.captcha-refresh {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  background: #fff;
  cursor: pointer;
  color: var(--wc-navy);
  font-size: 0.85rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.captcha-refresh:hover {
  background: var(--wc-navy);
  color: #fff;
  border-color: var(--wc-navy);
}

/* ===== Plan Page — Premium Form ===== */
.page-plan .tour-enquiry-form input,
.page-plan .tour-enquiry-form textarea {
  padding: 15px 18px;
  border: 1.5px solid var(--wc-border);
  border-radius: var(--wc-radius);
  font-size: 0.92rem;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.page-plan .tour-enquiry-form input:focus,
.page-plan .tour-enquiry-form textarea:focus {
  border-color: var(--wc-gold);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.08), 0 4px 12px rgba(0,0,0,0.04);
  transform: translateY(-1px);
}

.page-plan .tour-enquiry-form input:hover,
.page-plan .tour-enquiry-form textarea:hover {
  border-color: rgba(201,169,110,0.4);
}

.page-plan .tour-enquiry-form textarea {
  min-height: 140px;
  line-height: 1.7;
}

.page-plan .plan-form .enquiry-captcha input {
  width: auto;
  flex: 1;
}

.page-plan .captcha-img {
  height: 50px;
  border-radius: var(--wc-radius);
  border: 1.5px solid var(--wc-border);
}

.page-plan .captcha-refresh {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--wc-border);
  border-radius: var(--wc-radius);
  background: #fff;
  cursor: pointer;
  color: var(--wc-navy);
  font-size: 0.9rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-plan .captcha-refresh:hover {
  background: var(--wc-gold);
  color: #fff;
  border-color: var(--wc-gold);
}

/* ===== Hero Gallery Card ===== */
.tour-header-gallery-card {
  position: relative;
  flex-shrink: 0;
  width: 170px;
  height: 210px;
}

.gallery-card-stack {
  position: absolute;
  top: 0;
  right: 0;
  width: 155px;
  height: 200px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card-stack:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.05) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}


.gallery-card-label {
  position: absolute;
  bottom: 4px;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 20px;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.gallery-card-label i {
  font-size: 0.65rem;
  opacity: 0.7;
}

/* ===== Trip Details ===== */
.trip-details-bar {
  background: #f4f3ef;
  padding: 28px 0;
}

.trip-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.trip-details-grid:first-child {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trip-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 28px;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.trip-detail:first-child {
  border-left: none;
  padding-left: 0;
}

.trip-detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--wc-gold);
}

.trip-detail-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wc-navy);
}

/* ===== Tour Archive ===== */
.post-type-archive-tour .site-content,
.tax-tour_type .site-content,
.single-tour .site-content {
  margin-top: 0;
}

.tour-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tour-info-item.active {
  color: var(--wc-gold);
  border-bottom: 2px solid var(--wc-gold);
}

.tour-empty {
  text-align: center;
  padding: 80px 0;
}

.tour-empty i {
  font-size: 3rem;
  color: #ccc;
  display: block;
  margin-bottom: 20px;
}

.tour-empty h2 {
  margin-bottom: 10px;
}

.tour-empty p {
  color: var(--wc-text-light);
}

/* ===== FAQ List ===== */
.faq-item {
  border: 1px solid var(--wc-border-light);
  border-radius: var(--wc-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--wc-transition);
}

.faq-item:hover {
  box-shadow: var(--wc-shadow-sm);
}

.faq-item-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--wc-accent-bg);
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--wc-navy);
  transition: all 0.3s ease;
  gap: 15px;
}

.faq-item-header:hover {
  background: #e6edf2;
}

.faq-item-header i {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.faq-item.open .faq-item-header i {
  transform: rotate(180deg);
}

.faq-item-body {
  display: none;
  padding: 24px;
  line-height: 1.9;
  color: var(--wc-text-light);
  border-top: 1px solid var(--wc-border-light);
}

.faq-item.open .faq-item-body {
  display: block;
}

/* ===== Tour Gallery ===== */
.tour-gallery {
  margin-top: 10px;
}

.tour-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.tour-gallery .gallery-item {
  border-radius: var(--wc-radius);
  overflow: hidden;
}

.tour-gallery .gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--wc-radius);
  transition: transform 0.5s ease;
}

.tour-gallery .gallery-item:hover img {
  transform: scale(1.04);
}

/* ===== Attribute Tags ===== */
.attr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.attr-tag {
  background: var(--wc-accent-bg);
  color: var(--wc-navy);
  padding: 7px 18px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--wc-border-light);
  transition: all 0.3s ease;
}

.attr-tag:hover {
  background: var(--wc-navy);
  color: var(--wc-white);
  border-color: var(--wc-navy);
}

/* ===== Empty State ===== */
.text-center {
  text-align: center;
}

/* ===== Parallax Container ===== */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 991px) {
  .parallax-bg {
    background-attachment: scroll;
  }
}

/* ============================================================
   ===== Home Premium Refinements (v2.2) ======================
   ============================================================ */

/* ---- Hero entry animations ---- */
.hero-slide.active .hero-title {
  animation: heroSlideIn 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes heroSlideIn {
  0%   { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
.hero-slide.active .hero-subtitle {
  animation: heroSlideIn 1.2s 0.18s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.hero-slide.active .hero-content .wc-btn {
  animation: heroFadeUp 1.2s 0.34s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes heroFadeUp {
  0%   { opacity: 0; transform: translateY(28px); letter-spacing: 0.06em; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: normal; }
}


/* ---- Universal Section Eyebrow (中文点缀) ---- */
.title-eyebrow,
.home-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--wc-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--wc-gold);
}
.title-eyebrow-cn,
.eyebrow-cn {
  font-family: var(--wc-font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  color: var(--wc-gold);
}
.title-eyebrow-line,
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--wc-gold);
  opacity: 0.7;
  margin-right: 10px;
}
.title-eyebrow-en,
.eyebrow-en {
  color: var(--wc-gold);
  opacity: 0.85;
}
.section-title .title-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
}
.section-title-light .title-eyebrow {
  color: var(--wc-gold-light);
}
.section-title-light .title-eyebrow-cn,
.section-title-light .title-eyebrow-en {
  color: var(--wc-gold-light);
}
.title-eyebrow-light,
.journeys-header .title-eyebrow {
  margin-bottom: 14px;
}
.title-eyebrow-onnavy,
.title-eyebrow-onnavy .title-eyebrow-cn,
.title-eyebrow-onnavy .title-eyebrow-en {
  color: var(--wc-gold-light);
}

/* ---- Intro section refinement ---- */
.home-intro-eyebrow {
  margin-bottom: 22px;
}
.home-intro-title {
  font-size: 2.4rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.home-intro-body {
  font-size: 1.0625rem;
  line-height: 1.95;
  color: var(--wc-text-light);
  font-weight: 300;
}

/* ---- Achievements Strip ---- */
 (Themes) hover refinement ---- */
.tag-card {
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.55s ease;
}
.tag-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 0.5s ease;
  z-index: 3;
}
.tag-card:hover::after {
  border-color: rgba(201, 169, 110, 0.55);
}
.tag-card-img img {
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.6s ease;
}
.tag-card:hover .tag-card-img img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.08);
}
.tag-card-name {
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.tag-card:hover .tag-card-name {
  transform: translateY(-2px);
}

/* ---- Journey cards refinement ---- */
.journey-card-wc {
  position: relative;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.journey-card-wc::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--wc-gold);
  transition: width 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 4;
}
.journey-card-wc:hover::before {
  width: 100%;
}
.journey-card-wc-img-wrap img {
  transition: transform 0.95s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.6s ease;
}
.journey-card-wc:hover .journey-card-wc-img-wrap img {
  filter: brightness(1.02) saturate(1.06);
}
.journey-card-wc-meta {
  position: relative;
  display: inline-block;
}
.journey-card-wc-meta::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--wc-gold);
  vertical-align: middle;
  margin-right: 10px;
  transition: width 0.4s ease;
}
.journey-card-wc:hover .journey-card-wc-meta::before {
  width: 28px;
}

/* ---- Topic / Guide rows refinement ---- */
.topic-row {
  align-items: center;
}
.topic-row-img {
  position: relative;
  overflow: hidden;
}
.topic-row-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,47,0) 60%, rgba(10,31,47,0.25) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.topic-row:hover .topic-row-img::after {
  opacity: 1;
}
.topic-row-img img {
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.topic-row:hover .topic-row-img img {
  transform: scale(1.05);
}
.topic-row-title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.topic-row-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--wc-gold);
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.topic-row:hover .topic-row-title::after {
  width: 64px;
}
.topic-row-link {
  position: relative;
  padding-bottom: 4px;
}
.topic-row-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--wc-gold);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.topic-row-link:hover::after {
  transform: scaleX(1);
}
.topic-row-link i {
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.topic-row-link:hover i {
  transform: translateX(6px);
}

/* ---- Newsletter / CTA premium (v2.3) ---- */
.newsletter-section {
  position: relative;
  padding: 150px 0 160px;
  background: var(--wc-navy);
  overflow: hidden;
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,169,110,0.14), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201,169,110,0.10), transparent 70%);
  pointer-events: none;
}
.newsletter-bg::before,
.newsletter-bg::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--wc-gold), transparent);
  transform: translateX(-50%);
  opacity: 0.45;
}
.newsletter-bg::before { top: 0; }
.newsletter-bg::after  { bottom: 0; transform: translateX(-50%) rotate(180deg); }

/* corner frame brackets */
.newsletter-frame {
  position: absolute;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201,169,110,0.45);
  pointer-events: none;
  z-index: 1;
}
.newsletter-frame-tl { top: 56px; left: 56px;  border-right: 0; border-bottom: 0; }
.newsletter-frame-tr { top: 56px; right: 56px; border-left:  0; border-bottom: 0; }
.newsletter-frame-bl { bottom: 56px; left: 56px;  border-right: 0; border-top: 0; }
.newsletter-frame-br { bottom: 56px; right: 56px; border-left:  0; border-top: 0; }

.newsletter-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  z-index: 2;
}
.newsletter-title {
  color: var(--wc-white);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.newsletter-title em {
  font-style: italic;
  color: var(--wc-gold);
  font-weight: 400;
}
.newsletter-divider {
  position: relative;
  display: block;
  width: 64px;
  height: 1px;
  background: var(--wc-gold);
  margin: 0 auto 28px;
  opacity: 0.9;
}
.newsletter-divider::before,
.newsletter-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--wc-gold);
  transform: translateY(-50%);
}
.newsletter-divider::before { left: -14px; }
.newsletter-divider::after  { right: -14px; }
.newsletter-desc {
  color: rgba(255,255,255,0.74);
  font-size: 1.1rem;
  line-height: 1.9;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 48px;
}
.newsletter-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 20px 28px 20px 48px;
  font-family: var(--wc-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wc-white);
  background: transparent;
  border: 1.5px solid var(--wc-gold);
  border-radius: 2px;
  isolation: isolate;
  overflow: hidden;
  transition: color 0.45s cubic-bezier(0.22,0.61,0.36,1), letter-spacing 0.45s ease;
}
.newsletter-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--wc-gold);
  transform: translateX(-101%);
  transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1);
  z-index: -1;
}
.newsletter-cta:hover {
  color: var(--wc-navy);
  letter-spacing: 0.36em;
}
.newsletter-cta:hover::before {
  transform: translateX(0);
}
.newsletter-cta-text {
  position: relative;
}
.newsletter-cta-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 0.7rem;
  transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1), background 0.45s ease, color 0.45s ease;
}
.newsletter-cta:hover .newsletter-cta-icon {
  transform: translateX(6px);
  background: var(--wc-navy);
  color: var(--wc-gold);
  border-color: var(--wc-navy);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .newsletter-section { padding: 110px 0 120px; }
  .newsletter-title { font-size: 2.3rem; }
  .newsletter-frame { width: 40px; height: 40px; }
  .newsletter-frame-tl, .newsletter-frame-tr { top: 32px; }
  .newsletter-frame-bl, .newsletter-frame-br { bottom: 32px; }
  .newsletter-frame-tl, .newsletter-frame-bl { left: 32px; }
  .newsletter-frame-tr, .newsletter-frame-br { right: 32px; }
}
@media (max-width: 576px) {
  .newsletter-title { font-size: 1.8rem; }
  .newsletter-desc { font-size: 1rem; }
  .newsletter-cta {
    padding: 16px 22px 16px 32px;
    font-size: 0.72rem;
    gap: 14px;
  }
  .newsletter-cta-icon { width: 30px; height: 30px; }
  .newsletter-frame { display: none; }
  .home-intro-title { font-size: 1.85rem; }
  .title-eyebrow,
  .home-intro-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.26em;
    gap: 10px;
  }
  .title-eyebrow-line,
  .eyebrow-line { width: 22px; }
}

/* ============================================================
   ===== Header & Mega Menu Polish (v2.2) =====================
   ============================================================ */

/* ---- Top header refinements ---- */
.site-header {
  transition: height 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              background 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 20, 30, 0.78);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}
.site-header.scrolled::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 60%;
  max-width: 720px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.55), transparent);
  pointer-events: none;
}

/* ---- Brand logo subtle interaction ---- */
.site-branding .custom-logo-link {
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-branding .custom-logo-link:hover {
  transform: translateY(-1px);
}
.brand-logo,
.brand-sub {
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.site-branding .custom-logo-link:hover .brand-logo,
.site-branding .custom-logo-link:hover .brand-sub {
  filter: drop-shadow(0 2px 8px rgba(201, 169, 110, 0.35));
}

/* ---- Top nav item refinement ---- */
.primary-menu > .menu-item > a {
  transition: color 0.4s ease, letter-spacing 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.primary-menu > .menu-item:hover > a {
  letter-spacing: 1.7px;
}
.primary-menu > .menu-item > a::after {
  bottom: 6px;
  left: 50%;
  right: auto;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--wc-gold), transparent);
  transform: translateX(-50%);
  transition: width 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease;
}
.primary-menu > .menu-item > a:hover::after,
.primary-menu > .menu-item.menu-item-mega:hover > a::after {
  transform: translateX(-50%);
  width: calc(100% - 30px);
}
.primary-menu > .menu-item-mega:hover > a {
  color: var(--wc-gold);
}

/* ---- Chevron icon refinement ---- */
.primary-menu > .menu-item > a i {
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              color 0.35s ease,
              opacity 0.3s ease;
  opacity: 0.55;
}
.primary-menu > .menu-item:hover > a i {
  opacity: 1;
}

/* ---- Header CTA refinement ---- */
.header-cta {
  position: relative;
  overflow: hidden;
}
.header-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 110, 0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.header-cta:hover::before {
  transform: translateX(100%);
}

/* ---- Mega menu entry animation ---- */
.primary-menu .mega-sub-menu {
  background: rgba(10, 18, 26, 0.72);
  backdrop-filter: blur(30px) saturate(140%);
  -webkit-backdrop-filter: blur(30px) saturate(140%);
  border-top: 1px solid rgba(201, 169, 110, 0.14);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(-10px);
  transition: opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              visibility 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              top 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.primary-menu .menu-item-has-children:hover > .mega-sub-menu {
  transform: translateY(0);
}

/* Gold animated top accent bar */
.primary-menu .mega-sub-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--wc-gold), transparent);
  transition: width 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.05s;
  opacity: 0.85;
}
.primary-menu .menu-item-has-children:hover > .mega-sub-menu::before {
  width: 70%;
}

/* Subtle inner texture (vignette) */
.primary-menu .mega-sub-menu::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 169, 110, 0.06), transparent 70%);
  pointer-events: none;
}

/* ---- Mega menu inner content lift-in ---- */
.primary-menu .mega-dest-hot,
.primary-menu .mega-dest-province,
.primary-menu .mega-tour-type-wrap,
.primary-menu .mega-footer {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.primary-menu .menu-item-has-children:hover > .mega-sub-menu .mega-dest-hot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}
.primary-menu .menu-item-has-children:hover > .mega-sub-menu .mega-dest-province {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.primary-menu .menu-item-has-children:hover > .mega-sub-menu .mega-tour-type-wrap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.14s;
}
.primary-menu .menu-item-has-children:hover > .mega-sub-menu .mega-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

/* ---- "Hot" section label refinement (Chinese accent) ---- */
.mega-dest-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--wc-gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-left: 0;
}
.mega-dest-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--wc-gold);
  opacity: 0.6;
  order: 2;
}
.mega-dest-label {
  /* re-flow eyebrow order: cn → line → en (Hot) */
  flex-direction: row;
}

/* ---- A-Z letter heading refinement ---- */
.mega-dest-az-letter {
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--wc-gold);
  border-bottom: none;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.mega-dest-az-letter::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: linear-gradient(to right, var(--wc-gold), transparent);
  opacity: 0.85;
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mega-dest-az-group:hover .mega-dest-az-letter::after {
  width: 100%;
}

/* ---- Hot carousel arrows refinement ---- */
.mega-dest-hot-arrow {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.mega-dest-hot-arrow:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.55);
  color: var(--wc-gold);
}
.mega-dest-hot-prev:hover { transform: translateX(-2px); }
.mega-dest-hot-next:hover { transform: translateX(2px); }

/* ---- Hot card refinement ---- */
.primary-menu .mega-dest-hot-card,
.mega-dest-hot-card {
  border-radius: 6px;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mega-dest-hot-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 0.4s ease;
  z-index: 2;
}
.mega-dest-hot-card:hover::after {
  border-color: rgba(201, 169, 110, 0.55);
}
.mega-dest-hot-card:hover {
  /* card stays in place; only inner elements animate */
}
.mega-dest-hot-img img {
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.6s ease;
}
.mega-dest-hot-card:hover .mega-dest-hot-img img {
  transform: scale(1.08);
  filter: brightness(1.06) saturate(1.1);
}
.mega-dest-hot-name {
  letter-spacing: 0.04em;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.3s ease;
}
.mega-dest-hot-card:hover .mega-dest-hot-name {
  color: var(--wc-gold-light);
  transform: translateY(-2px);
}

/* ---- A-Z scroll area scrollbar refinement ---- */
.mega-dest-az-scroll::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, 0.25);
}
.mega-dest-az-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 169, 110, 0.45);
}

/* ---- Mega footer "View All" refinement ---- */
.mega-footer {
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  padding-top: 10px;
  margin-top: 22px;
}
.primary-menu .mega-footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
}
.primary-menu .mega-footer a i {
  font-size: 0.7rem;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.primary-menu .mega-footer a:hover i {
  transform: translateX(6px);
}

/* ---- China Tours / Theme Tours type list refinement ---- */
.mega-tour-type-wrap {
  gap: 8px;
  padding: 4px 0;
}
.mega-tour-type-wrap .mega-dest-az-link {
  border-radius: 4px;
}
.mega-tour-type-wrap .mega-dest-az-link:hover {
  background: rgba(201, 169, 110, 0.1) !important;
  padding-left: 10px !important;
}
.mega-tour-head,
.mega-about-head {
  max-width: var(--wc-max-width);
  margin: 0 auto;
}
.mega-about-menu .mega-footer {
  padding-top: 20px;
  padding-bottom: 10px;
}

/* ---- Responsive guard (don't break mobile) ---- */
@media (max-width: 991px) {
  .primary-menu .mega-sub-menu {
    transform: none;
  }
  .primary-menu .mega-sub-menu::before,
  .primary-menu .mega-sub-menu::after,
  .site-header.scrolled::after {
    display: none;
  }
  .primary-menu .mega-dest-hot,
  .primary-menu .mega-dest-province,
  .primary-menu .mega-tour-type-wrap,
  .primary-menu .mega-footer {
    opacity: 1;
    transform: none;
  }
}

/* ---- Tour Type Archive (v2.3) ---- */
.tour-type-body-section {
  padding: 80px 0 20px;
  background: var(--wc-off-white);
}
.tour-type-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--wc-text);
}
.tour-type-body h2 {
  font-size: 1.8rem;
  margin-top: 2em;
  margin-bottom: 0.6em;
}
.tour-type-body h3 {
  font-size: 1.3rem;
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}
.tour-type-body p {
  margin-bottom: 1.6em;
}
.tour-type-body img,
.topic-article img {
  max-width: 100%;
  height: auto;
  border-radius: var(--wc-radius-lg);
  display: inline-block;
  vertical-align: top;
}
.tour-type-body blockquote {
  border-left: 3px solid var(--wc-gold);
  padding: 12px 0 12px 28px;
  margin: 2em 0;
  color: var(--wc-text-light);
  font-style: italic;
}
.tour-type-body ul,
.tour-type-body ol {
  margin: 0 0 1.6em 1.4em;
}
.tour-type-body li {
  margin-bottom: 0.4em;
}

/* ---- Content alignment (global) ---- */
.aligncenter {
  display: block;
  margin: 0 auto 24px;
}
.alignleft {
  float: left;
  margin: 0 28px 24px 0;
}
.alignright {
  float: right;
  margin: 0 0 24px 28px;
}
.wp-caption {
  max-width: 100%;
  margin-bottom: 24px;
}
.wp-caption img {
  display: block;
  margin: 0 auto;
}
.wp-caption-text {
  font-size: 0.85rem;
  color: var(--wc-text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ---- Float Gallery (single-image, text wraps around, prev/next arrows) ---- */
.wc-float-gallery {
  float: right;
  width: 420px;
  max-width: 50%;
  margin: 6px 0 20px 32px;
  clear: left;
}

.wc-float-gallery-frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  line-height: 0;
}

.wc-float-gallery-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.wc-float-gallery-prev,
.wc-float-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--wc-navy);
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.wc-float-gallery-prev  { left: 8px; }
.wc-float-gallery-next  { right: 8px; }

.wc-float-gallery-frame:hover .wc-float-gallery-prev,
.wc-float-gallery-frame:hover .wc-float-gallery-next {
  opacity: 1;
}

.wc-float-gallery-prev:hover,
.wc-float-gallery-next:hover {
  background: #fff;
}

.wc-float-gallery-counter {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: var(--wc-text-muted);
  margin-top: 6px;
}

@media (max-width: 640px) {
  .wc-float-gallery {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 22px;
  }
}

/* ---- Horizontal Rule / Separator ---- */
.tour-description hr,
.entry-content hr,
.wp-block-separator {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 1em 0;
}

.wp-block-separator.is-style-dots {
  border-top: none;
  text-align: center;
  max-width: 100%;
  line-height: 1.4;
}

.wp-block-separator.is-style-dots::before {
  content: '· · ·';
  font-size: 1.4rem;
  letter-spacing: 0.8em;
  color: rgba(0, 0, 0, 0.25);
}

/* ---- About Us Mega Dropdown ---- */
.primary-menu .mega-about-menu {
  padding: 24px 60px 14px;
}

.mega-about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--wc-max-width);
  margin: 0 auto;
  padding: 4px 0;
}

.mega-about-link {
  flex: 0 0 calc(25% - 6px);
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6) !important;
  padding: 2px 6px 2px 0 !important;
  border-radius: 3px;
  position: relative;
  transition: color 0.3s ease, padding-left 0.35s cubic-bezier(0.32, 0.72, 0, 1) !important;
}

.mega-about-link:hover {
  color: var(--wc-gold) !important;
  background: rgba(255,255,255,0.08) !important;
  padding-left: 10px !important;
}

.mega-about-awards-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.mega-about-awards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mega-about-award {
  flex: 0 0 auto;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.mega-about-award:hover {
  opacity: 0.8;
}

.mega-about-award img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.mega-about-award:hover img {
  filter: grayscale(0%);
}


/* ═══════════════════════════════════════════════════════════
   ABOUT US — EDITORIAL REDESIGN (v3)
   Namespace: .abx-*
   ═══════════════════════════════════════════════════════════ */

/* Bulletproof gap kill */
html body.page-template-page-about .site-content,
html body.page-about .site-content,
html body.page-template-page-plan .site-content,
html body.post-type-archive-location .site-content,
html body.post-type-archive-tour .site-content,
html body.post-type-archive-topic .site-content,
.about-page { margin-top: 0 !important; }

.about-page {
  background: #fdfcf9;
  color: var(--wc-navy);
  overflow-x: hidden;
}

/* ── Shared editorial primitives ── */
.abx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--wc-font-body);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--wc-text-light);
  font-weight: 600;
  margin-bottom: 24px;
}
.abx-eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--wc-gold);
  border-radius: 50%;
}
.abx-eyebrow-on-dark { color: rgba(255,255,255,0.7); }

/* ╔═══════════════════════════════════════════════════════╗
   ║  HERO                                                 ║
   ╚═══════════════════════════════════════════════════════╝ */
.abx-hero {
  position: relative;
  min-height: 100vh;
  margin-top: calc(-1 * var(--wc-header-height));
  padding-top: var(--wc-header-height);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #06141e;
}
.abx-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: abxKenburns 22s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes abxKenburns {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.18) translateY(-2%); }
}
.abx-hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(6,20,30,0.35) 0%, rgba(6,20,30,0.78) 75%, rgba(6,20,30,0.92) 100%),
    linear-gradient(180deg, rgba(6,20,30,0.55) 0%, rgba(6,20,30,0.25) 35%, rgba(6,20,30,0.55) 100%);
  z-index: 1;
}
.abx-hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
}
.abx-hero-frame {
  position: relative;
  z-index: 4;
  max-width: 980px;
  margin-top: 40px;
  padding: 0 32px;
  text-align: center;
  color: #fff;
}
.abx-hero-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
}
.abx-hero-mark-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--wc-gold), transparent);
}
.abx-hero-mark-text {
  font-size: 0.68rem;
  letter-spacing: 5px;
  color: var(--wc-gold);
  font-weight: 500;
  font-family: var(--wc-font-body);
}
.abx-hero-title {
  font-family: var(--wc-font-heading);
  font-weight: 400;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
}
.abx-hero-title-row { display: block; }
.abx-hero-title-italic {
  font-style: italic;
  font-size: 0.72em;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
}
.abx-hero-lede {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  line-height: 1.85;
  margin: 8px auto 0;
  max-width: 640px;
  font-family: var(--wc-font-body);
  letter-spacing: 0.02em;
}
.abx-hero-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}
.abx-hero-cue-label {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.abx-hero-cue-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--wc-gold), transparent);
  animation: abxCuePulse 2.2s ease-in-out infinite;
}
@keyframes abxCuePulse {
  0%, 100% { transform: scaleY(0.6); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}
.abx-hero-corners {
  position: absolute;
  inset: 32px;
  pointer-events: none;
  z-index: 3;
}
.abx-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,110,0.4);
}
.abx-corner-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.abx-corner-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.abx-corner-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.abx-corner-br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* ╔═══════════════════════════════════════════════════════╗
   ║  BREADCRUMB                                           ║
   ╚═══════════════════════════════════════════════════════╝ */
.abx-crumbs {
  background: #fdfcf9;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10,31,47,0.06);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wc-text-muted);
}
.abx-crumbs a { color: var(--wc-text-light); }
.abx-crumbs a:hover { color: var(--wc-gold); }
.abx-crumb-sep { margin: 0 12px; color: var(--wc-gold); }
.abx-crumb-current { color: var(--wc-navy); font-weight: 600; }

/* ╔═══════════════════════════════════════════════════════╗
   ║  EDITORIAL OPENER — BIG QUOTE                         ║
   ╚═══════════════════════════════════════════════════════╝ */
.abx-opener {
  padding: 140px 0 120px;
  background: #fdfcf9;
  position: relative;
}
.abx-opener-inner {
  text-align: center;
  position: relative;
  max-width: 900px;
}
.abx-opener-mark {
  display: block;
  font-family: var(--wc-font-heading);
  font-size: 10rem;
  line-height: 0.6;
  color: var(--wc-gold);
  opacity: 0.25;
  margin: 0 0 -30px;
  font-style: italic;
}
.abx-opener-quote {
  font-family: var(--wc-font-heading);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.45;
  color: var(--wc-navy);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 50px;
  font-style: normal;
}
.abx-opener-quote em {
  color: var(--wc-gold-dark);
  font-style: italic;
}
.abx-opener-byline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.abx-opener-byline-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--wc-gold);
}
.abx-opener-byline-name {
  font-family: var(--wc-font-heading);
  font-size: 0.95rem;
  color: var(--wc-navy);
  font-weight: 600;
  letter-spacing: 1px;
}
.abx-opener-byline-role {
  font-size: 0.72rem;
  color: var(--wc-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  FOUNDER LETTER                                       ║
   ╚═══════════════════════════════════════════════════════╝ */
.abx-letter {
  padding: 110px 0;
  background: var(--wc-cream);
  position: relative;
}
.abx-letter::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 60px;
  background: var(--wc-gold);
  transform: translateX(-50%);
}
.abx-letter-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 90px;
  align-items: start;
}
.abx-letter-aside {
  position: sticky;
  top: 120px;
}
.abx-letter-portrait { position: relative; }
.abx-letter-portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 5;
  background: var(--wc-navy);
  box-shadow: 0 30px 70px rgba(10,31,47,0.18);
}
.abx-letter-portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 1.2s ease;
}
.abx-letter-portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,20,30,0.4) 100%);
}
.abx-letter-portrait:hover .abx-letter-portrait-frame img {
  transform: scale(1.06);
}
.abx-letter-portrait-tag {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(10,31,47,0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.abx-letter-portrait-name {
  font-family: var(--wc-font-heading);
  font-size: 1.1rem;
  color: var(--wc-navy);
  font-weight: 600;
}
.abx-letter-portrait-role {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wc-text-muted);
}
.abx-letter-body { padding-top: 8px; }
.abx-letter-heading {
  font-family: var(--wc-font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--wc-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
}
.abx-letter-heading em {
  font-style: italic;
  color: var(--wc-gold-dark);
  font-weight: 400;
}
.abx-letter-text p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--wc-text);
  margin: 0 0 26px;
  font-weight: 400;
}
.abx-letter-text p.abx-letter-lead {
  font-family: var(--wc-font-heading);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--wc-navy);
  font-weight: 400;
  margin-bottom: 36px;
}
.abx-letter-text em {
  font-style: italic;
  color: var(--wc-navy);
}
.abx-signature {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.abx-signature-name {
  font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
  font-size: 2.4rem;
  color: var(--wc-navy);
  line-height: 1;
}
.abx-signature-line {
  flex: 0 0 80px;
  height: 1px;
  background: var(--wc-gold);
}
.abx-signature-meta {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wc-text-muted);
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  EDITORIAL NUMBERS                                    ║
   ╚═══════════════════════════════════════════════════════╝ */
.abx-numbers {
  padding: 90px 0;
  background: #fdfcf9;
}
.abx-numbers-title {
  text-align: center;
  font-family: var(--wc-font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--wc-navy);
  margin: 40px 0 0;
  letter-spacing: -0.01em;
}
.abx-numbers-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(10,31,47,0.18), transparent);
}
.abx-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 70px 0;
  position: relative;
}
.abx-num {
  position: relative;
  text-align: center;
  padding: 0 24px;
}
.abx-num + .abx-num::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(10,31,47,0.1);
}
.abx-num-value {
  display: block;
  font-family: var(--wc-font-heading);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--wc-navy);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.abx-num-value sup {
  font-size: 0.5em;
  color: var(--wc-gold);
  font-weight: 500;
  vertical-align: super;
  margin-left: 2px;
}
.abx-num-label {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wc-text-muted);
  font-weight: 500;
  line-height: 1.6;
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  MANIFESTO (DARK)                                     ║
   ╚═══════════════════════════════════════════════════════╝ */
.abx-manifest {
  padding: 130px 0;
  background: var(--wc-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.abx-manifest::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201,169,110,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(122,154,173,0.05) 0%, transparent 50%);
}
.abx-manifest-head {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
.abx-manifest-title {
  font-family: var(--wc-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.abx-manifest-title em {
  font-style: italic;
  color: var(--wc-gold);
  font-weight: 300;
}
.abx-manifest-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  background: rgba(255,255,255,0.06);
}
.abx-principle {
  background: var(--wc-navy);
  padding: 56px 50px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background 0.45s ease;
}
.abx-principle:hover { background: #0d2738; }
.abx-principle-num {
  font-family: var(--wc-font-heading);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--wc-gold);
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
  min-width: 64px;
  padding-top: 2px;
}
.abx-principle-body h3 {
  font-family: var(--wc-font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.abx-principle-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-weight: 300;
}
.abx-principle-body em {
  color: var(--wc-gold-light);
  font-style: italic;
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  TIMELINE                                             ║
   ╚═══════════════════════════════════════════════════════╝ */
.abx-journey {
  padding: 130px 0;
  background: #fdfcf9;
}
.abx-journey-head {
  text-align: center;
  margin-bottom: 80px;
}
.abx-journey-title {
  font-family: var(--wc-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--wc-navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.abx-journey-title em {
  font-style: italic;
  color: var(--wc-gold-dark);
}
.abx-timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 960px;
  position: relative;
}
.abx-timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(10,31,47,0.18) 5%, rgba(10,31,47,0.18) 95%, transparent);
}
.abx-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 50px;
  padding: 36px 0;
  position: relative;
}
.abx-timeline-item::before {
  content: '';
  position: absolute;
  left: 114px;
  top: 46px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fdfcf9;
  border: 2px solid var(--wc-gold);
  z-index: 1;
}
.abx-timeline-now::before {
  background: var(--wc-gold);
  box-shadow: 0 0 0 6px rgba(201,169,110,0.18);
}
.abx-timeline-year {
  font-family: var(--wc-font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--wc-gold-dark);
  letter-spacing: 1px;
  text-align: right;
  padding-top: 20px;
  font-style: italic;
}
.abx-timeline-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
/* 无图时 body 占满 */
.abx-timeline-item:not(.abx-timeline-has-img) .abx-timeline-content {
  grid-template-columns: 1fr;
}
/* 奇数行 (1, 3) 图文交换：图左文右 */
.abx-timeline-item.abx-timeline-has-img:nth-child(even) .abx-timeline-content .abx-timeline-body {
  order: 2;
}
.abx-timeline-item.abx-timeline-has-img:nth-child(even) .abx-timeline-content .abx-timeline-img {
  order: 1;
}
.abx-timeline-body h4 {
  font-family: var(--wc-font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--wc-navy);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.abx-timeline-body p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}
.abx-timeline-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8e5df;
}
.abx-timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  TEAM                                                 ║
   ╚═══════════════════════════════════════════════════════╝ */
.abx-team {
  padding: 130px 0;
  background: var(--wc-cream);
}
.abx-team-head {
  text-align: center;
  margin: 0 auto 80px;
  max-width: 720px;
}
.abx-team-title {
  font-family: var(--wc-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--wc-navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.abx-team-title em {
  font-style: italic;
  color: var(--wc-gold-dark);
}
.abx-team-sub {
  font-size: 1rem;
  color: var(--wc-text-light);
  line-height: 1.85;
  margin: 0;
  font-weight: 300;
}
.abx-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 44px;
}
.abx-member { text-align: center; }
.abx-member-frame {
  position: relative;
  width: 140px; height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--wc-navy);
  border: 3px solid rgba(201,169,110,0.3);
  transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease;
}
.abx-member:hover .abx-member-frame {
  border-color: var(--wc-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -14px rgba(201,169,110,0.3);
}
.abx-member-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.25);
  transition: filter 0.6s ease, transform 0.8s ease;
}
.abx-member:hover .abx-member-frame img {
  filter: grayscale(0);
  transform: scale(1.06);
}
.abx-member-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,169,110,0.22) 0%, transparent 50%),
    linear-gradient(135deg, var(--wc-navy) 0%, #133145 100%);
}
.abx-member-initial {
  font-family: var(--wc-font-heading);
  font-style: italic;
  font-size: 3.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  letter-spacing: -0.04em;
  line-height: 1;
}
.abx-member-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.abx-member-index {
  position: absolute;
  top: 6px;
  right: 10px;
  font-family: var(--wc-font-heading);
  font-style: italic;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.abx-member-meta { padding-left: 2px; }
.abx-member-name {
  font-family: var(--wc-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wc-navy);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
  position: relative;
  display: inline-block;
}
.abx-member-name::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 1px;
  background: var(--wc-gold);
  opacity: 0.5;
  transition: width 0.4s ease, opacity 0.4s ease;
}
.abx-member:hover .abx-member-name::after {
  width: 100%;
  opacity: 1;
}
.abx-member-role {
  font-size: 0.8rem;
  color: var(--wc-text-light);
  margin: 8px 0 8px;
  letter-spacing: 0.3px;
  line-height: 1.4;
  font-weight: 300;
}
.abx-member-base {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wc-gold-dark);
  border-top: 1px solid rgba(10,31,47,0.12);
  padding-top: 10px;
  margin-top: 4px;
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  PRESS MARQUEE                                        ║
   ╚═══════════════════════════════════════════════════════╝ */
.abx-press {
  padding: 80px 0;
  background: #fdfcf9;
  border-top: 1px solid rgba(10,31,47,0.06);
  border-bottom: 1px solid rgba(10,31,47,0.06);
}
.abx-press-head {
  text-align: center;
  margin-bottom: 36px;
}
.abx-press-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.abx-press-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: abxMarquee 40s linear infinite;
  width: max-content;
}
@keyframes abxMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.abx-press-item {
  font-family: var(--wc-font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--wc-navy);
  font-style: italic;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.abx-press-dot {
  color: var(--wc-gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  CAREERS                                              ║
   ╚═══════════════════════════════════════════════════════╝ */
.abx-careers {
  position: relative;
  padding: 120px 0;
  background: var(--wc-navy);
  color: #fff;
  overflow: hidden;
}
.abx-careers-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(122,154,173,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.abx-careers-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.abx-careers-title {
  font-family: var(--wc-font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.abx-careers-title em {
  font-style: italic;
  color: var(--wc-gold);
}
.abx-careers-right p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: rgba(255,255,255,0.72);
  margin: 0 0 36px;
  font-weight: 300;
}
.abx-careers-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--wc-font-heading);
  font-size: 1.15rem;
  color: var(--wc-gold);
  font-style: italic;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  transition: gap 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.abx-careers-link:hover {
  gap: 22px;
  color: var(--wc-gold-light);
  border-color: var(--wc-gold);
}
.abx-careers-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.abx-careers-link:hover .abx-careers-arrow {
  transform: translateX(4px);
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  AWARDS                                               ║
   ╚═══════════════════════════════════════════════════════╝ */
.abx-awards {
  padding: 120px 0;
  background: var(--wc-navy-dark);
  color: #fff;
}
.abx-awards-head {
  text-align: center;
  margin-bottom: 70px;
}
.abx-awards-title {
  font-family: var(--wc-font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}
.abx-awards-title em {
  font-style: italic;
  color: var(--wc-gold);
}
.abx-awards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px 40px;
  align-items: center;
}
.abx-award {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.abx-award:hover {
  opacity: 1;
  transform: translateY(-3px);
}
.abx-award img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  PLAN MY TRIP — bespoke luxury layer                  ║
   ║  Namespace: .plan-*                                   ║
   ╚═══════════════════════════════════════════════════════╝ */
.plan-page {
  background:
    radial-gradient(ellipse at 12% -8%, rgba(201,169,110,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 110%, rgba(122,154,173,0.07) 0%, transparent 55%),
    #fdfcf9;
  color: var(--wc-navy);
  overflow-x: hidden;
}

/* Hero adjustments — plan page only */
.plan-hero {
  min-height: 78vh;
}
.plan-hero .abx-hero-frame {
  max-width: 880px;
  margin-top: 20px;
}
.plan-hero .abx-hero-mark { margin-bottom: 22px; }
.plan-hero .abx-hero-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 26px;
}
.plan-hero .abx-hero-title-italic {
  font-size: 0.62em;
  letter-spacing: 0.01em;
}
.plan-hero .abx-hero-cue { margin-top: 26px; }
.plan-hero .abx-hero-cue-line { height: 36px; }

/* ── SHARED BACKGROUND WRAPPER ── */
.plan-shared-bg {
  position: relative;
  background: center/cover no-repeat fixed;
}

/* ── HOW IT WORKS — editorial dark variant ── */
.plan-steps {
  position: relative;
  padding: 72px 0 64px;
  background:
    linear-gradient(180deg, rgba(10,31,47,0.88) 0%, rgba(13,42,61,0.88) 60%, rgba(10,31,47,0.88) 100%);
  color: #fff;
  overflow: hidden;
}
.plan-steps::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.55), transparent);
}
.plan-steps::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.55), transparent);
}
.plan-steps-bg-char {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-family: 'Ma Shan Zheng', var(--wc-font-heading);
  font-size: clamp(18rem, 32vw, 36rem);
  line-height: 0.85;
  color: rgba(201,169,110,0.05);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.plan-steps-bg-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201,169,110,0.06) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(201,169,110,0.05) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.plan-steps .container {
  position: relative;
  z-index: 1;
}
.plan-steps-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}
.plan-steps-head .title-eyebrow {
  margin-bottom: 14px;
}
.plan-steps-title {
  font-family: var(--wc-font-heading);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}
.plan-steps-title em {
  font-style: italic;
  color: var(--wc-gold-light);
  font-weight: 300;
}
.plan-steps-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 16px;
  font-style: italic;
}
.plan-ornament {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 280px;
  justify-content: center;
}
.plan-ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.55), transparent);
}
.plan-ornament-diamond {
  font-size: 0.7rem;
  color: var(--wc-gold-light);
  letter-spacing: 0;
}

.plan-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.plan-steps-grid::before {
  content: '';
  position: absolute;
  top: 86px;
  left: 16%; right: 16%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(201,169,110,0.5) 0,
    rgba(201,169,110,0.5) 4px,
    transparent 4px,
    transparent 10px
  );
  z-index: 0;
}

.plan-step {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 40px 28px 32px;
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 2px;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.22,0.61,0.36,1),
              border-color 0.4s ease,
              background 0.5s ease,
              box-shadow 0.5s ease;
}
.plan-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--wc-gold), transparent);
  transform: scaleX(0.35);
  transition: transform 0.6s ease;
}
.plan-step::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 0.5s ease;
}
.plan-step:hover {
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.025) 100%);
  border-color: rgba(201,169,110,0.5);
  box-shadow:
    0 36px 80px -28px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.plan-step:hover::before { transform: scaleX(1); }
.plan-step:hover::after  { border-color: rgba(201,169,110,0.18); }

.plan-step-index {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--wc-font-body);
  font-size: 0.62rem;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: rgba(201,169,110,0.55);
  font-weight: 600;
}
.plan-step-numeral {
  display: block;
  font-family: var(--wc-font-heading);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--wc-gold-light);
  opacity: 0.85;
  margin: 18px 0 6px;
  letter-spacing: 0.04em;
}
.plan-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin: 6px auto 14px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  color: var(--wc-gold-light);
  font-size: 1.05rem;
  background: rgba(10,31,47,0.6);
  position: relative;
  transition: transform 0.5s ease, border-color 0.4s ease, color 0.4s ease;
}
.plan-step-icon::before,
.plan-step-icon::after {
  content: '';
  position: absolute;
  width: 14px; height: 1px;
  background: rgba(201,169,110,0.45);
  top: 50%;
}
.plan-step-icon::before { left: -22px; }
.plan-step-icon::after  { right: -22px; }
.plan-step:hover .plan-step-icon {
  transform: scale(1.05);
  border-color: var(--wc-gold);
  color: var(--wc-gold);
}

.plan-step-title {
  font-family: var(--wc-font-heading);
  font-size: 1.32rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.plan-step-desc {
  color: rgba(255,255,255,0.62);
  font-size: 0.93rem;
  line-height: 1.78;
  font-weight: 300;
  margin: 0 0 20px;
}
.plan-step-rule {
  display: block;
  width: 36px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(to right, transparent, var(--wc-gold), transparent);
  opacity: 0.6;
  transition: width 0.5s ease, opacity 0.5s ease;
}
.plan-step:hover .plan-step-rule {
  width: 64px;
  opacity: 1;
}

/* ── FORM SECTION ── */
.plan-form-section {
  position: relative;
  padding: 64px 0 72px;
  overflow: hidden;
  background: transparent;
}
.plan-form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.45), transparent);
  z-index: 2;
}
.plan-form-bg-char {
  position: absolute;
  bottom: -60px;
  left: -30px;
  font-family: 'Ma Shan Zheng', var(--wc-font-heading);
  font-size: clamp(20rem, 36vw, 42rem);
  line-height: 0.85;
  color: rgba(201,169,110,0.07);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.plan-form-topline {
  position: absolute;
  top: 0; left: 50%;
  width: 80%; max-width: 1100px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.45), transparent);
  transform: translateX(-50%);
  z-index: 1;
}
.plan-form-section .container {
  position: relative;
  z-index: 2;
  background: rgba(250, 247, 240, 0.94);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 4px;
  padding: 56px 48px 48px;
  box-shadow: 0 2px 40px rgba(10,31,47,0.06);
}

.plan-form-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

/* ── LEFT COLUMN — Contact panel ── */
/* ── LEFT COLUMN — Editorial contact panel (not a card) ── */
.plan-contact-panel {
  position: relative;
  padding: 32px 0 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
/* Subtle vertical rule between panel and form card (on larger screens) */
.plan-contact-panel::after {
  content: '';
  position: absolute;
  top: 0; right: -22px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,169,110,0.18) 8%, rgba(201,169,110,0.18) 92%, transparent 100%);
  pointer-events: none;
}
/* Hide decorative corners & topline — editorial panel doesn't use them */
.plan-panel-corner { display: none; }
.plan-panel-topline { display: none; }

.plan-contact-head {
  text-align: left;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  position: relative;
}
.plan-contact-head .abx-eyebrow { margin-bottom: 12px; }
.plan-contact-heading {
  font-family: var(--wc-font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  font-weight: 400;
  color: var(--wc-navy);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  line-height: 1.16;
}
.plan-contact-heading em {
  font-style: italic;
  color: var(--wc-gold);
}
.plan-contact-sub {
  margin: 0;
  font-size: 1rem;
  color: var(--wc-text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* Contact list — tighter, larger type */
.plan-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.plan-contact-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  border-left: none;
  border-radius: 0;
  transition: border-color 0.35s ease;
}
.plan-contact-row:last-child { border-bottom: none; }
.plan-contact-row:hover {
  background: transparent;
  transform: none;
  border-bottom-color: rgba(201,169,110,0.35);
  box-shadow: none;
}
.plan-contact-row-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  margin-top: 2px;
  background: rgba(201,169,110,0.08);
  border: none;
  border-radius: 50%;
  color: var(--wc-gold);
  font-size: 0.92rem;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.plan-contact-row:hover .plan-contact-row-icon {
  background: rgba(201,169,110,0.18);
  color: var(--wc-gold-dark);
  transform: scale(1.05);
}
.plan-contact-row-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.plan-contact-label {
  display: block;
  font-family: var(--wc-font-body);
  font-size: 0.65rem;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--wc-gold-dark);
  font-weight: 600;
  margin-bottom: 2px;
}
.plan-contact-link {
  display: inline-block;
  font-family: var(--wc-font-heading);
  font-size: 1.15rem;
  color: var(--wc-navy);
  letter-spacing: 0.005em;
  border-bottom: 1px solid rgba(201,169,110,0.4);
  padding-bottom: 1px;
  margin-bottom: 2px;
  align-self: flex-start;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.plan-contact-link:hover {
  color: var(--wc-gold);
  border-color: var(--wc-gold);
}
.plan-contact-value {
  margin: 0;
  font-size: 0.95rem;
  color: var(--wc-text-light);
  line-height: 1.5;
  font-weight: 300;
}
.plan-contact-value-strong {
  color: var(--wc-navy);
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.5;
}

/* Social row — tighter */
.plan-contact-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,169,110,0.14);
  flex-wrap: wrap;
}
.plan-contact-social-label {
  font-family: var(--wc-font-body);
  font-size: 0.62rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--wc-text-light);
  font-weight: 600;
}
.plan-contact-social-line {
  flex: 0 0 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.55), transparent);
}
.plan-social-list {
  list-style: none;
  margin: 0 0 0 6px;
  padding: 0;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.plan-social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  color: var(--wc-text-light);
  font-size: 0.72rem;
  background: transparent;
  transition: color 0.3s ease,
              background 0.3s ease,
              border-color 0.3s ease,
              transform 0.35s ease;
}
.plan-social-list a:hover {
  color: #fff;
  background: var(--wc-gold);
  border-color: var(--wc-gold);
  transform: translateY(-2px);
}

/* Form card */
.plan-form-card-wrap { position: relative; }
.plan-form-card-wrap::before {
  content: '';
  position: absolute;
  top: -14px; left: 50%;
  width: 50%; max-width: 320px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.55), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.plan-form-card {
  position: relative;
  background:
    linear-gradient(180deg, #fff 0%, #fdfbf6 100%);
  padding: 50px 48px 44px;
  border: 1px solid rgba(201,169,110,0.28);
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(201,169,110,0.18),
    0 32px 80px -36px rgba(10,31,47,0.32);
}
.plan-card-topline {
  position: absolute;
  top: 0; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--wc-gold), transparent);
}
.plan-card-corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--wc-gold);
  pointer-events: none;
}
.plan-card-corner-tl { top: 12px; left: 12px;  border-right: 0; border-bottom: 0; }
.plan-card-corner-tr { top: 12px; right: 12px; border-left: 0;  border-bottom: 0; }
.plan-card-corner-bl { bottom: 12px; left: 12px;  border-right: 0; border-top: 0; }
.plan-card-corner-br { bottom: 12px; right: 12px; border-left: 0;  border-top: 0; }

.plan-form-head {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,169,110,0.18);
  position: relative;
}
.plan-form-head::after {
  content: '◆';
  position: absolute;
  bottom: -7px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: var(--wc-gold);
  background: #fff;
  padding: 0 12px;
}
.plan-form-title {
  font-family: var(--wc-font-heading);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 400;
  color: var(--wc-navy);
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.plan-form-title em {
  font-style: italic;
  color: var(--wc-gold);
}
.plan-form-lede {
  font-size: 0.9rem;
  color: var(--wc-text-light);
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}

.plan-form { margin: 0; }
.plan-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.plan-field {
  display: flex;
  flex-direction: column;
  margin: 0 0 16px;
}
.plan-form-row .plan-field { margin-bottom: 0; }

.plan-label {
  font-family: var(--wc-font-body);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wc-navy);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.plan-required {
  color: var(--wc-gold);
  font-weight: 700;
  margin-left: 2px;
}

/* Premium input styling — overrides earlier .page-plan rules */
.page-plan .plan-form input,
.page-plan .plan-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #fdfcf9;
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 2px;
  font-family: var(--wc-font-body);
  font-size: 0.92rem;
  color: var(--wc-navy);
  line-height: 1.5;
  transition: border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.2s ease;
}
.page-plan .plan-form input::placeholder,
.page-plan .plan-form textarea::placeholder {
  color: var(--wc-text-muted);
  font-weight: 300;
  font-style: italic;
}
.page-plan .plan-form input:hover,
.page-plan .plan-form textarea:hover {
  border-color: rgba(201,169,110,0.45);
  background: #fff;
}
.page-plan .plan-form input:focus,
.page-plan .plan-form textarea:focus {
  outline: 0;
  border-color: var(--wc-gold);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(201,169,110,0.1),
    0 8px 24px -10px rgba(201,169,110,0.25);
  transform: translateY(-1px);
}
.page-plan .plan-form textarea {
  min-height: 110px;
  line-height: 1.65;
  resize: vertical;
}

.plan-captcha {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.page-plan .plan-form .plan-captcha input {
  width: auto;
  flex: 1;
  min-width: 160px;
}
.page-plan .plan-form .plan-captcha .captcha-img {
  height: 44px;
  border-radius: 2px;
  border: 1px solid rgba(201,169,110,0.22);
  background: #fdfcf9;
}
.page-plan .plan-form .plan-captcha .captcha-refresh {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 2px;
  background: #fdfcf9;
  color: var(--wc-navy);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-plan .plan-form .plan-captcha .captcha-refresh:hover {
  background: var(--wc-gold);
  border-color: var(--wc-gold);
  color: #fff;
  transform: rotate(180deg);
}

.plan-submit {
  width: 100%;
  padding: 14px 36px;
  margin-top: 8px;
  font-size: 0.78rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--wc-gold) 0%, var(--wc-gold-dark) 100%);
  border-color: var(--wc-gold-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 26px -12px rgba(184,148,63,0.5);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.4s ease,
              background 0.4s ease;
}
.plan-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.7s ease;
}
.plan-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--wc-gold-dark) 0%, var(--wc-gold) 100%);
  box-shadow: 0 22px 40px -12px rgba(184,148,63,0.65);
}
.plan-submit:hover::before { left: 100%; }
.plan-submit-text { position: relative; z-index: 1; }
.plan-submit-arrow {
  position: relative;
  z-index: 1;
  margin-left: 4px;
  font-size: 1.1rem;
  letter-spacing: 0;
  display: inline-block;
  transition: transform 0.3s ease;
}
.plan-submit:hover .plan-submit-arrow { transform: translateX(5px); }

.plan-form-foot {
  margin: 14px 0 0;
  font-size: 0.76rem;
  color: var(--wc-text-muted);
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

/* Awards on plan page (subtle override) */
.plan-awards { padding: 70px 0; }
.plan-awards .abx-awards-head { margin-bottom: 44px; }

/* ── Guide Detail Page ── */
.guide-hero .abx-hero-title-row { font-size: clamp(2rem, 4vw, 3rem); }
.guide-hero .abx-hero-cue-label { text-transform: none; letter-spacing: 0.1em; font-size: 0.65rem; }

.guide-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 0;
}

.guide-lede {
  margin-bottom: 40px;
  padding: 28px 36px;
  border-left: 3px solid var(--wc-gold);
  background: rgba(201,169,110,0.06);
  border-radius: 0 4px 4px 0;
}
.guide-lede p {
  margin: 0;
  font-family: var(--wc-font-heading);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--wc-navy);
  font-weight: 400;
}

.guide-body {
  font-size: 1.08rem;
  line-height: 1.95;
  color: var(--wc-text);
}
.guide-body p {
  margin: 0 0 1.4em;
}
.guide-body p:last-child {
  margin-bottom: 0;
}
.guide-body h2,
.guide-body h3 {
  font-family: var(--wc-font-heading);
  color: var(--wc-navy);
  margin: 2em 0 0.6em;
  letter-spacing: -0.005em;
}
.guide-body h2 { font-size: 1.6rem; }
.guide-body h3 { font-size: 1.25rem; }
.guide-body img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  margin: 2em 0;
}
.guide-body blockquote {
  margin: 2em 0;
  padding: 24px 36px;
  border-left: 2px solid var(--wc-gold);
  font-style: italic;
  color: var(--wc-navy);
  background: rgba(201,169,110,0.05);
  border-radius: 0 4px 4px 0;
}
.guide-body blockquote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}
.guide-body figure {
  margin: 2em 0;
}
.guide-body figcaption {
  font-size: 0.82rem;
  color: var(--wc-text-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.guide-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.guide-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--wc-text-muted);
  flex-wrap: wrap;
}
.guide-meta i { color: var(--wc-gold); }
.guide-meta-sep { color: rgba(0,0,0,0.15); }

/* More Stories */
.guide-more-section {
  padding: 80px 0 100px;
  background: #f8f5ee;
}
.guide-more-section .section-title {
  margin-bottom: 44px;
}
.guide-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.guide-more-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.5s ease;
}
.guide-more-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -18px rgba(10,31,47,0.2);
}
.guide-more-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e3da;
}
.guide-more-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.guide-more-card:hover .guide-more-card-img img {
  transform: scale(1.04);
}
.guide-more-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(0,0,0,0.1);
  background: #f0ede8;
}
.guide-more-card-body {
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.guide-more-card-date {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wc-gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.guide-more-card-title {
  font-family: var(--wc-font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--wc-navy);
  margin: 0 0 10px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.guide-more-card-excerpt {
  font-size: 0.88rem;
  color: var(--wc-text-light);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
  font-weight: 300;
}
.guide-more-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wc-gold);
  font-weight: 600;
  transition: gap 0.3s ease;
}
.guide-more-card:hover .guide-more-card-arrow { gap: 10px; }

/* ── Plan responsive ── */
@media (max-width: 1100px) {
  .plan-form-grid { grid-template-columns: 1fr; gap: 36px; }
  .plan-contact-panel { padding: 0; }
  .plan-contact-panel::after { display: none; }
  .plan-form-card { padding: 40px 32px 36px; }
}
@media (max-width: 860px) {
  .plan-steps { padding: 56px 0 48px; }
  .plan-steps-head { margin-bottom: 32px; }
  .plan-steps-grid { grid-template-columns: 1fr; gap: 18px; }
  .plan-steps-grid::before { display: none; }
  .plan-step { padding: 36px 26px 30px; }
  .plan-step-numeral { font-size: 1.9rem; }
  .plan-steps-bg-char { font-size: clamp(14rem, 50vw, 22rem); right: -50px; }
  .plan-form-section { padding: 0; }
  .plan-form-section .container { padding: 32px 24px 32px; }
  .plan-form-card { padding: 32px 22px 28px; }
  .plan-form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .plan-form-row .plan-field { margin-bottom: 16px; }
  .plan-awards { padding: 56px 0; }
  .plan-contact-panel { padding: 0; }
  .plan-contact-panel::after { display: none; }
  .plan-contact-head { margin-bottom: 20px; padding-bottom: 12px; }
  .plan-contact-row { padding: 10px 0; }
  .plan-contact-social { margin-top: 20px; padding-top: 12px; }
}
@media (max-width: 480px) {
  .plan-form-section .container { padding: 24px 14px 24px; }
  .plan-form-card { padding: 26px 16px 22px; }
  .plan-card-corner { width: 14px; height: 14px; }
  .plan-contact-panel { padding: 0; }
  .plan-contact-panel::after { display: none; }
  .plan-form-head { margin-bottom: 22px; padding-bottom: 16px; }
  .plan-steps-bg-char { display: none; }
  .plan-form-bg-char { display: none; }
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  RESPONSIVE                                           ║
   ╚═══════════════════════════════════════════════════════╝ */
@media (max-width: 1024px) {
  .abx-letter-grid { grid-template-columns: 1fr; gap: 60px; }
  .abx-letter-aside { position: static; max-width: 340px; }
  .abx-team-grid { grid-template-columns: repeat(3, 1fr); gap: 50px 30px; }
  .abx-awards-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 30px; }
}

@media (max-width: 768px) {
  .abx-hero { min-height: 100dvh; }
  .abx-hero-corners { inset: 18px; }
  .abx-corner { width: 24px; height: 24px; }
  .abx-hero-mark-line { width: 36px; }
  .abx-hero-mark-text { font-size: 0.6rem; letter-spacing: 3px; }

  .abx-opener { padding: 90px 0 80px; }
  .abx-opener-mark { font-size: 6rem; margin-bottom: -18px; }

  .abx-letter { padding: 80px 0; }
  .abx-letter-text p { font-size: 1rem; }
  .abx-letter-text p.abx-letter-lead { font-size: 1.2rem; }
  .abx-signature-name { font-size: 2rem; }

  .abx-numbers { padding: 60px 0; }
  .abx-numbers-grid { grid-template-columns: repeat(2, 1fr); padding: 50px 0; row-gap: 50px; }
  .abx-num + .abx-num::before { display: none; }

  .abx-manifest { padding: 90px 0; }
  .abx-manifest-list { grid-template-columns: 1fr; }
  .abx-principle { padding: 42px 30px; gap: 22px; }
  .abx-principle-num { font-size: 1.8rem; min-width: 50px; }

  .abx-journey { padding: 90px 0; }
  .abx-timeline::before { left: 18px; }
  .abx-timeline-item { grid-template-columns: 60px 1fr; gap: 30px; }
  .abx-timeline-item::before { left: 12px; top: 36px; }
  .abx-timeline-year { font-size: 1.05rem; text-align: left; padding-left: 36px; padding-top: 4px; }
  .abx-timeline-content { grid-template-columns: 1fr; gap: 20px; }
  .abx-timeline-item.abx-timeline-has-img:nth-child(even) .abx-timeline-content .abx-timeline-body,
  .abx-timeline-item.abx-timeline-has-img:nth-child(even) .abx-timeline-content .abx-timeline-img { order: 0; }
  .abx-timeline-img { aspect-ratio: 16 / 9; }

  .abx-team { padding: 80px 0; }
  .abx-team-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .abx-member-frame { width: 120px; height: 120px; }
  .abx-member-initial { font-size: 2.8rem; }

  .abx-press-item { font-size: 1.1rem; }
  .abx-press-track { gap: 24px; }

  .abx-careers { padding: 80px 0; }
  .abx-careers-split { grid-template-columns: 1fr; gap: 40px; }

  .abx-awards { padding: 80px 0; }
  .abx-awards-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .abx-award { height: 56px; }

  .tour-type-body-section { padding: 50px 0 0; }
  .tour-type-body { font-size: 0.98rem; }
  .alignleft, .alignright {
    float: none;
    display: block;
    margin: 0 auto 24px;
  }
}

@media (max-width: 480px) {
  .abx-team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .abx-numbers-grid { grid-template-columns: 1fr; row-gap: 38px; }
  .abx-member-frame { width: 110px; height: 110px; }
  .abx-member-initial { font-size: 2.4rem; }
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  HOME PAGE MOBILE                                     ║
   ╚═══════════════════════════════════════════════════════╝ */
@media (max-width: 768px) {

  /* ── Services Marquee ── */
  .services-tags { padding: 18px 0; }
  .service-tag {
    font-size: 0.62rem;
    letter-spacing: 2px;
    padding: 0 20px;
    gap: 6px;
  }
  .service-tag i { font-size: 0.6rem; }

  /* ── Home Intro ── */
  .home-intro-text { padding: 50px 24px; }
  .home-intro-title { font-size: 1.45rem; margin-bottom: 22px; }
  .home-intro-body { font-size: 0.95rem; line-height: 1.8; }

  /* ── Media Section (Video) ── */
  .media-section { aspect-ratio: 16 / 9; }

  /* ── Recognitions ── */
  .recognitions-section { padding: 28px 18px; }
  .recognitions-title { font-size: 1.3rem; margin-bottom: 14px; }
  .recognitions-divider { width: 100%; max-width: 320px; }
  .recognitions-grid { gap: 50px; }
  .recognition-logo { height: 85px; margin-bottom: 14px; }
  .recognition-logo img { max-width: 140px; }
  .recognition-item p { font-size: 0.58rem; }

  /* ── Journeys Section ── */
  .journeys-section > .container {
    margin: 0;
    padding: 32px 20px 40px;
  }
  .journeys-title { font-size: 1.3rem; margin-bottom: 18px; }
  .journeys-divider { width: 100%; max-width: 300px; }
  .journeys-subtitle { font-size: 0.85rem; }
  .journeys-grid { gap: 28px; }

  /* ── Tag Cards (Themes) ── */
  .tag-cards-grid { padding: 16px 0; gap: 10px; }
  .tag-card { width: calc(50% - 5px); }
  /* two per row, keep staggered rotation */
  .tag-card:nth-child(odd)  { transform: rotate(-2deg); margin: 2px 0 0 0; }
  .tag-card:nth-child(even) { transform: rotate(2deg);  margin: 2px 0 0 0; }
  .section-title-light h2 { font-size: 1.3rem; margin-bottom: 18px; }
  .section-divider { max-width: 300px; }
  .section-title-light .subtitle { font-size: 0.85rem; }

  /* ── Topic / Guide Rows ── */
  .topic-list { margin: -30px 0 -30px 0; }
  .topic-row {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    height: auto;
  }
  .topic-row + .topic-row { margin-top: -30px; }
  .topic-row-img {
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
  }
  .topic-row-img img { width: 100%; height: 100%; object-fit: cover; }
  .topic-row-reverse {
    grid-template-columns: 50% 50%;
  }
  .topic-row-reverse .topic-row-img {
    grid-column: 2;
    grid-row: 1;
  }
  .topic-row-reverse .topic-row-body {
    grid-column: 1;
    grid-row: 1;
  }
  .topic-row-body {
    padding: 40px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .topic-row-title { font-size: 1rem; }
  .topic-row-desc { display: none; }
  .topic-row-link { font-size: 0.78rem; }
  .topic-row-link::after { display: none; }

  /* ── Newsletter / CTA ── */
  .newsletter-section { padding: 80px 0 90px; }
  .newsletter-frame {
    width: 28px; height: 28px;
  }
  .newsletter-frame-tl { top: 20px; left: 20px; }
  .newsletter-frame-tr { top: 20px; right: 20px; }
  .newsletter-frame-bl { bottom: 20px; left: 20px; }
  .newsletter-frame-br { bottom: 20px; right: 20px; }
  .newsletter-title { font-size: 1.7rem; }
  .newsletter-desc { font-size: 0.9rem; }
  .newsletter-cta { padding: 13px 36px; font-size: 0.72rem; letter-spacing: 2px; }
}

@media (max-width: 480px) {

  /* ── Services Marquee ── */
  .services-tags { padding: 12px 0; }
  .service-tag {
    font-size: 0.56rem;
    letter-spacing: 1.5px;
    padding: 0 14px;
    gap: 4px;
  }
  .service-tag i { font-size: 0.55rem; }

  /* ── Home Intro ── */
  .home-intro-text { padding: 36px 18px; }
  .home-intro-title { font-size: 1.2rem; margin-bottom: 16px; }
  .home-intro-body { font-size: 0.88rem; line-height: 1.7; }

  /* ── Media Section ── */
  .media-section { aspect-ratio: 16 / 9; }

  /* ── Recognitions ── */
  .recognitions-section { padding: 22px 12px; }
  .recognitions-title { font-size: 1.1rem; margin-bottom: 12px; }
  .recognitions-grid { gap: 36px; }
  .recognition-logo { height: 75px; margin-bottom: 12px; }
  .recognition-logo img { max-width: 120px; }
  .recognition-item p { font-size: 0.55rem; }

  /* ── Journeys Section ── */
  .journeys-section > .container { padding: 22px 14px 40px; }
  .journeys-title { font-size: 1.1rem; margin-bottom: 14px; }
  .journeys-divider { max-width: 200px; }
  .journeys-subtitle { font-size: 0.78rem; }
  .journeys-grid { gap: 24px; }
  .journeys-grid > * { flex: 0 0 100%; }
  .journey-card-wc-body { padding: 12px 12px 14px; }
  .journey-card-wc-title { font-size: 0.85rem; }

  /* ── Tag Cards ── */
  .tag-card { width: calc(50% - 5px); }
  .tag-card:nth-child(odd)  { transform: rotate(-1.5deg); margin: 2px 0 0 0; }
  .tag-card:nth-child(even) { transform: rotate(1.5deg);  margin: 2px 0 0 0; }
  .tag-card-name { font-size: 0.85rem; }
  .section-title-light h2 { font-size: 1.1rem; }
  .section-divider { max-width: 200px; }
  .section-title-light .subtitle { font-size: 0.78rem; }

  /* ── Topic Rows ── */
  .topic-list { margin: -30px 0 -30px 0; }
  .topic-row {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    height: auto;
  }
  .topic-row + .topic-row { margin-top: -30px; }
  .topic-row-img {
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
  }
  .topic-row-img img { width: 100%; height: 100%; object-fit: cover; }
  .topic-row-reverse {
    grid-template-columns: 50% 50%;
  }
  .topic-row-reverse .topic-row-img {
    grid-column: 2;
    grid-row: 1;
  }
  .topic-row-reverse .topic-row-body {
    grid-column: 1;
    grid-row: 1;
  }
  .topic-row-body {
    padding: 20px 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .topic-row-title { font-size: 0.88rem; }
  .topic-row-desc { display: none; }
  .topic-row-link { font-size: 0.72rem; }
  .topic-row-link::after { display: none; }

  /* ── Newsletter ── */
  .newsletter-section { padding: 60px 0 70px; }
  .newsletter-frame { width: 20px; height: 20px; }
  .newsletter-frame-tl { top: 14px; left: 14px; }
  .newsletter-frame-tr { top: 14px; right: 14px; }
  .newsletter-frame-bl { bottom: 14px; left: 14px; }
  .newsletter-frame-br { bottom: 14px; right: 14px; }
  .newsletter-title { font-size: 1.35rem; }
  .newsletter-desc { font-size: 0.82rem; }
  .newsletter-cta { padding: 12px 30px; font-size: 0.68rem; letter-spacing: 1.5px; }
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  ALL PAGES MOBILE                                     ║
   ╚═══════════════════════════════════════════════════════╝ */
@media (max-width: 768px) {

  /* ── Tour Header ── */
  .tour-header { height: 340px; }
  .tour-header-title { font-size: 1.85rem; }
  .tour-header-subtitle { font-size: 0.88rem; }
  .tour-header-container { padding-top: 40px; }
  .tour-header-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .tour-header-gallery-card {
    position: absolute;
    right: 36px;
    bottom: 60px;
    width: 90px;
    height: 110px;
  }
  .gallery-card-stack {
    width: 80px;
    height: 100px;
  }
  .gallery-card-label { font-size: 0.65rem; }
  .gallery-card-label i { font-size: 0.6rem; }

  /* ── Breadcrumbs ── */
  .tour-breadcrumbs { font-size: 0.8rem; padding: 10px 0; }

  /* ── Trip Details Bar ── */
  .trip-details-bar { padding: 14px 0; }
  .trip-details-bar .container { flex-direction: column; gap: 0; }
  .trip-details-grid { flex: 1 1 auto; justify-content: center; gap: 10px; }
  .trip-details-grid:first-child { margin-bottom: 10px; padding-bottom: 10px; }
  .trip-detail { padding: 6px 12px; }
  .trip-detail-label { font-size: 0.6rem; letter-spacing: 2px; }
  .trip-detail-value { font-size: 0.85rem; }

  /* ── Tour Content Grid ── */
  .tour-content-wrap { padding: 36px 0 50px; }
  .tour-content-grid { grid-template-columns: 1fr; gap: 28px; }
  .tour-content-main { padding: 0; }
  .tour-content-grid > .tour-sidebar,
  .tour-content-grid > .tour-content-main { min-width: 0; }

  /* ── Tour Sections (Overview / Itinerary / FAQ / Map) ── */
  .tour-section { margin-bottom: 36px; }
  .tour-section-title { font-size: 1.3rem; }
  .tour-description { font-size: 0.95rem; line-height: 1.75; }

  /* ── Itinerary ── */
  .itinerary-day-header { padding: 14px 16px; font-size: 0.9rem; }
  .itinerary-day-num { font-size: 0.72rem; min-width: 58px; }
  .itinerary-day-body { padding: 18px 16px 18px 74px; }
  .itinerary-day-body p { font-size: 0.88rem; }

  /* ── FAQ ── */
  .faq-item-header { padding: 16px 18px; font-size: 0.9rem; }
  .faq-item-body { padding: 16px 18px; font-size: 0.88rem; }

  /* ── Tour Sidebar ── */
  .tour-content-wrap .tour-sidebar { position: static; top: auto; margin-top: 0; width: 100%; box-sizing: border-box; }
  .tour-content-wrap .tour-sidebar-widget { padding: 24px 20px; }


  /* ── Destination Detail ── */
  .location-related-tours {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .location-tour-group-title { font-size: 1.1rem; }

  /* ── Guide Detail ── */
  .guide-article { padding: 40px 0; }
  .guide-lede { padding: 22px 24px; margin-bottom: 30px; }
  .guide-lede p { font-size: 1.15rem; }
  .guide-body { font-size: 1rem; }
  .guide-more-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .guide-more-section { padding: 56px 0 70px; }

  /* ── Topic Detail ── */
  .topic-article { padding: 0 14px; }

  /* ── Dest Hero (taxonomy) ── */
  .dest-hero { min-height: 50dvh; }
  .dest-hero h1 { font-size: 1.9rem; }
  .dest-hero p { font-size: 0.9rem; }
  .dest-hero-kicker { font-size: 0.65rem; letter-spacing: 3px; }

  /* ── Dest Page Layout (sidebar + grid) ── */
  .dest-page-layout { grid-template-columns: 1fr; gap: 28px; }
  .dest-sidebar { position: static; max-height: none; padding: 0; border: none; box-shadow: none; }
  .dest-filter-panel { padding: 20px 18px; }
  .dest-filter-title { font-size: 0.75rem; }
  .filter-tree-link { font-size: 0.88rem; padding: 8px 0; }
  .filter-tree-children .filter-tree-link { font-size: 0.84rem; }

  /* ── Dest Grid Cards ── */
  .dest-grid-section { padding: 40px 0; }
  .dest-hot-section { margin-bottom: 36px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .dest-card-body { padding: 16px 14px 14px; }
  .dest-card-body h3 { font-size: 0.95rem; }
  .dest-card-en { font-size: 0.78rem; }
  .dest-card-desc { font-size: 0.82rem; }
  .dest-section-title { font-size: 1.25rem; }

  /* ── Tour Archive Grid ── */
  .tour-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .tours-archive-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Tour Type Body ── */
  .tour-type-body-section { padding: 30px 0; }
  .tour-type-body { font-size: 0.95rem; }

  /* ── Expert Section ── */
  .expert-section { padding: 48px 0; }
  .expert-content { flex-direction: column; gap: 28px; text-align: center; }
  .expert-text { text-align: center; }
  .expert-title { font-size: 1.35rem; }
  .expert-subtitle { font-size: 0.88rem; }
  .expert-features { justify-content: center; }
  .expert-features span { font-size: 0.78rem; }
  .expert-cta { margin: 0 auto; }
  .expert-avatars { justify-content: center; }
  .expert-card { width: 120px; }
  .expert-name { font-size: 0.8rem; }

  /* ── Pagination ── */
  .pagination { padding: 28px 0; }
  .pagination .page-numbers,
  .pagination .pagination .nav-links a {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  /* ── Dest Empty ── */
  .dest-empty { padding: 60px 20px; }
  .dest-empty h2 { font-size: 1.3rem; }
  .dest-empty p { font-size: 0.88rem; }

  /* ── Footer ── */
  .footer-main { padding: 48px 0 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer-widget-title { font-size: 0.85rem; }
  .footer-logo { max-width: 140px; }
  .footer-bottom { padding: 16px 0; font-size: 0.78rem; }

  /* ── FAB Group ── */
  .wc-fab-group { right: 16px; bottom: 22px; gap: 10px; }
  .wc-fab { width: 44px; height: 44px; font-size: 1.05rem; }
}

@media (max-width: 480px) {

  /* ── Tour Header ── */
  .tour-header { height: 260px; }
  .tour-header-title { font-size: 1.45rem; }
  .tour-header-subtitle { font-size: 0.8rem; }
  .tour-header-gallery-card {
    right: 20px;
    bottom: 50px;
    width: 70px;
    height: 90px;
  }
  .gallery-card-stack {
    width: 62px;
    height: 82px;
  }
  .tour-header-container { padding-top: 30px; }

  /* ── Breadcrumbs ── */
  .tour-breadcrumbs { font-size: 0.72rem; }

  /* ── Trip Details ── */
  .trip-details-grid:first-child { gap: 0; margin-bottom: 6px; padding-bottom: 6px; }
  .trip-detail { padding: 4px 10px; flex: 1 1 auto; }
  .trip-detail-value { font-size: 0.78rem; }
  .trip-detail-label { font-size: 0.56rem; }

  /* ── Tour Content ── */
  .tour-content-wrap { padding: 24px 0 40px; }
  .tour-section { margin-bottom: 28px; }
  .tour-section-title { font-size: 1.15rem; }

  /* ── Itinerary ── */
  .itinerary-day-header { padding: 12px 14px; font-size: 0.84rem; }
  .itinerary-day-num { font-size: 0.66rem; min-width: 46px; }
  .itinerary-day-body { padding: 14px 14px 14px 60px; }
  .itinerary-day-body p { font-size: 0.82rem; }

  /* ── FAQ ── */
  .faq-item-header { padding: 14px 16px; font-size: 0.84rem; }
  .faq-item-body { padding: 14px 16px; }

  /* ── Sidebar ── */
  .tour-content-wrap .tour-sidebar-widget { padding: 20px 16px; }

  /* ── Location Tours ── */
  .location-related-tours { grid-template-columns: 1fr; gap: 16px; }
  .location-tour-group-title { font-size: 1rem; }
  .location-highlights,
  .location-special { font-size: 0.9rem; }

  /* ── Topic ── */
  /* ── Guide Detail ── */
  .guide-article { padding: 28px 0; }
  .guide-lede { padding: 16px 18px; margin-bottom: 24px; }
  .guide-lede p { font-size: 1.05rem; }
  .guide-body { font-size: 0.92rem; }
  .guide-more-grid { grid-template-columns: 1fr; gap: 16px; }
  .guide-more-section { padding: 40px 0 50px; }
  .guide-meta { font-size: 0.74rem; }

  /* ── Topic Detail ── */
  .topic-article { padding: 0 8px; }

  /* ── Dest Hero ── */
  .dest-hero { min-height: 50dvh; }
  .dest-hero h1 { font-size: 1.5rem; }
  .dest-hero p { font-size: 0.82rem; }

  /* ── Dest Layout ── */
  .dest-page-layout { gap: 20px; }
  .dest-filter-panel { padding: 16px 14px; }
  .filter-tree-link { font-size: 0.82rem; }

  /* ── Dest Grid ── */
  .dest-grid-section { padding: 30px 0; }
  .dest-grid { grid-template-columns: 1fr; gap: 16px; }
  .dest-card-body h3 { font-size: 0.9rem; }
  .dest-section-title { font-size: 1.1rem; }

  /* ── Tour Archive Grid ── */
  .tour-archive-grid { grid-template-columns: 1fr; gap: 16px; }
  .tours-archive-grid { grid-template-columns: 1fr; }

  /* ── Tour Type ── */
  .tour-type-body-section { padding: 22px 0; }
  .tour-type-body { font-size: 0.88rem; }

  /* ── Expert ── */
  .expert-section { padding: 36px 0; }
  .expert-content { gap: 22px; }
  .expert-title { font-size: 1.15rem; }
  .expert-subtitle { font-size: 0.82rem; }
  .expert-features { flex-direction: column; align-items: center; gap: 8px; }
  .expert-avatars { gap: 14px; }
  .expert-card { width: 100px; }

  /* ── Pagination ── */
  .pagination { padding: 22px 0; }
  .pagination .page-numbers { padding: 6px 10px; font-size: 0.76rem; }

  /* ── Dest Empty ── */
  .dest-empty { padding: 40px 16px; }
  .dest-empty i { font-size: 2.2rem; }

  /* ── Page About ── */
  .abx-hero-mark-text { font-size: 0.55rem; letter-spacing: 2px; }
  .abx-hero-title { font-size: clamp(1.4rem, 4vw, 2.4rem); }
  .abx-hero-lede { font-size: 0.88rem; }

  /* ── Footer ── */
  .footer-main { padding: 40px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-logo { max-width: 120px; }
  .footer-bottom { font-size: 0.72rem; padding: 12px 0; }

  /* ── FAB ── */
  .wc-fab-group { right: 10px; bottom: 16px; gap: 8px; }
  .wc-fab { width: 40px; height: 40px; font-size: 0.95rem; }
}

/* ╔═══════════════════════════════════════════════════════╗
   ║  HEADER MOBILE                                        ║
   ╚═══════════════════════════════════════════════════════╝ */
@media (max-width: 991px) {

  :root {
    --wc-header-height: 84px;
    --wc-header-scrolled: 72px;
  }

  .site-header { height: 84px; }
  .site-header.scrolled { height: 72px; }

  .header-inner { gap: 12px; }

  /* Logo */
  .brand-logo { height: 28px; }
  .brand-sub   { height: 34px; }
  .site-branding .custom-logo-link { gap: 4px; }

  /* Menu toggle — ensure visible */
  .menu-toggle { display: block; }
  .menu-toggle span { background: var(--wc-white); width: 26px; height: 2.5px; margin: 5px 0; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Mobile nav header — logo + close button */
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--wc-border-light);
  }
  .mobile-nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
  }
  .mobile-nav-logo-icon { height: 26px; width: auto; filter: brightness(0); }
  .mobile-nav-brand    { height: 32px; width: auto; filter: brightness(0); }

  /* Close button — X icon */
  .mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: none;
    border: 1px solid var(--wc-border-light);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s ease;
  }
  .mobile-nav-close:hover { border-color: var(--wc-gold); }
  .mobile-nav-close span {
    position: absolute;
    display: block;
    width: 14px; height: 1.5px;
    background: var(--wc-navy);
    border-radius: 2px;
    transition: background 0.3s ease;
  }
  .mobile-nav-close:hover span { background: var(--wc-gold); }
  .mobile-nav-close span:nth-child(1) { transform: rotate(45deg); }
  .mobile-nav-close span:nth-child(2) { transform: rotate(-45deg); }

  /* Nav off-screen slide-in */
  .main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 340px;
    height: 100vh;
    background: rgba(255,255,255,0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0 35px 40px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -4px 0 40px rgba(0,0,0,0.1);
    overflow-y: auto;
    align-items: stretch;
    gap: 0;
    z-index: 1002;
  }
  .main-navigation.active { transform: translateX(0); }

  /* Vertical menu */
  .primary-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-self: auto;
  }
  .primary-menu > .menu-item { display: block; }
  .primary-menu > .menu-item > a {
    padding: 14px 0;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid var(--wc-border-light);
    color: var(--wc-navy);
    text-shadow: none;
    text-transform: none;
    letter-spacing: 2px;
  }
  .primary-menu > .menu-item > a::after { display: none; }
  .primary-menu > .menu-item > a:hover { color: var(--wc-navy); }
  .primary-menu > .menu-item > a .fa-chevron-down {
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* Sub-menus — always open on mobile */
  .primary-menu .sub-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 6px 0 12px 18px;
    min-width: auto;
    border: none;
    border-radius: 0;
    background: rgba(250,248,244,0.6);
    backdrop-filter: none;
  }
  .primary-menu .menu-item-has-children.open > .sub-menu { display: block; }
  .primary-menu .sub-menu a {
    font-size: 0.85rem;
    padding: 9px 0;
  }
  .primary-menu .sub-menu a:hover {
    padding-left: 6px;
    background: transparent;
  }

  /* Mega menu mobile */
  .primary-menu .mega-sub-menu {
    position: static !important;
    width: 100% !important;
    min-width: auto !important;
    max-width: none !important;
    box-shadow: none;
    padding: 6px 0 12px 18px !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(250,248,244,0.6) !important;
    transform: none !important;
  }
  .mega-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .mega-grid-topics { grid-template-columns: repeat(2, 1fr); }
  .mega-col {
    padding: 10px 0;
    border-top: 1px solid var(--wc-border);
  }
  .mega-col:first-child { border-top: none; }
  .mega-col-title {
    color: var(--wc-gold);
    border-bottom-color: var(--wc-border);
  }
  .mega-col-title a { color: var(--wc-gold); }
  .primary-menu .mega-col-list a { color: var(--wc-text-light); }
  .primary-menu .mega-col-list a:hover { color: var(--wc-gold); }
  .mega-topic-date  { color: var(--wc-text-muted); }
  .mega-topic-thumb img { height: 75px; }
  .mega-footer {
    text-align: left;
    padding: 12px 0;
    border-top-color: var(--wc-border);
  }
  .primary-menu .mega-footer a { color: var(--wc-gold); }

  /* Dest mega mobile */
  .mega-dest-menu { padding: 6px 0 12px 0 !important; }
  .mega-dest-label {
    color: var(--wc-gold);
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    margin-bottom: 12px;
  }
  .mega-dest-hot {
    border-bottom: 1px solid var(--wc-border);
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .mega-dest-hot-carousel { display: none; }
  .mega-dest-hot-mobile { display: block; }
  .mega-dest-hot-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .mega-dest-hot-name  { font-size: 0.85rem; }
  .mega-dest-hot-count { color: var(--wc-text-muted); }
  .mega-dest-province  { padding-top: 0; }
  .mega-dest-az-scroll { height: auto; }
  .mega-dest-az-grid   { column-count: 3; column-gap: 16px; }
  .mega-dest-az-letter { color: var(--wc-gold); border-bottom-color: var(--wc-border); }
  .mega-dest-az-link   { color: var(--wc-text-light) !important; }
  .mega-dest-az-link:hover { color: var(--wc-gold) !important; }
  .mega-dest-az-link span { color: var(--wc-text-muted); }
  .mega-tour-type-wrap .mega-dest-az-link { flex: 0 0 50%; }
  .mega-tour-type-wrap {
    border-top: 1px solid var(--wc-border);
    padding-top: 18px;
    margin-top: 18px;
  }

  /* About mega mobile */
  .primary-menu .mega-about-menu { padding: 6px 0 12px 18px !important; }
  .mega-about-links { flex-direction: column; gap: 0; }
  .mega-about-link {
    flex: 0 0 auto;
    display: block;
    color: var(--wc-text-light) !important;
    font-size: 0.85rem;
    padding: 9px 0 !important;
  }
  .mega-about-link:hover { color: var(--wc-gold) !important; padding-left: 6px !important; }
  .mega-about-awards-label { display: none; }
  .mega-about-awards-grid { display: none; }

  /* Header CTA */
  .header-actions { width: 100%; margin-top: 24px; }
  .header-cta {
    width: 100%;
    text-align: center;
    padding: 12px 28px !important;
    font-size: 0.8rem !important;
    background: var(--wc-gold) !important;
    color: #fff !important;
    border-color: var(--wc-gold) !important;
  }
  .header-cta:hover {
    background: var(--wc-gold-dark) !important;
    border-color: var(--wc-gold-dark) !important;
    color: #fff !important;
  }
}

@media (max-width: 576px) {
  :root {
    --wc-header-height: 76px;
    --wc-header-scrolled: 64px;
  }

  .site-header { height: 76px; }
  .site-header.scrolled { height: 64px; }

  .header-inner { gap: 8px; }
  .brand-logo { height: 24px; }
  .brand-sub   { height: 28px; }
  .site-branding .custom-logo-link { gap: 3px; }

  .menu-toggle { padding: 8px; }
  .menu-toggle span { width: 24px; height: 2.5px; margin: 5px 0; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .main-navigation {
    width: 100vw;
    padding: 24px 24px 32px;
  }

  .primary-menu > .menu-item > a { font-size: 0.85rem; padding: 12px 0; }
  .header-cta { font-size: 0.75rem !important; padding: 10px 24px !important; }

  /* Mega col collapse */
  .mega-grid,
  .mega-grid-topics { grid-template-columns: 1fr; gap: 10px; }
  .mega-dest-az-grid { column-count: 1; }
  .mega-tour-type-wrap .mega-dest-az-link { flex: 0 0 100%; }
}
