:root {
	--site-header-height: 80px;
	/* 品牌核心色 - 可依地區調整 */
	--gold-primary: #C9A962;
	--gold-light: #E8D5A3;
	--gold-dark: #8B7340;
	--gold-glow: rgba(201, 169, 98, 0.4);
	--gold-subtle: rgba(201, 169, 98, 0.08);
	/* 暗黑層次系統 */
	--black-pure: #000000;
	--black-rich: #0A0A0A;
	--black-soft: #111111;
	--gray-900: #1A1A1A;
	--gray-850: #1F1F1F;
	--gray-800: #242424;
	--gray-700: #2E2E2E;
	--gray-600: #3A3A3A;
	--gray-500: #555555;
	--gray-400: #777777;
	--gray-300: #999999;
	--gray-200: #BBBBBB;
	--gray-100: #E0E0E0;
	--white: #FFFFFF;
	/* 功能色 */
	--accent-green: #76B900;
	--accent-error: #E53935;
	/* 動效 */
	--ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
	--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--duration-fast: 0.2s;
	--duration-normal: 0.4s;
	--duration-slow: 0.6s;
	/* 間距系統 */
	--space-xs: 8px;
	--space-sm: 16px;
	--space-md: 24px;
	--space-lg: 40px;
	--space-xl: 64px;
	--space-2xl: 100px;
	/* 圓角 */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	/* 陰影層次 */
	--shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.2);
	--shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.3);
	--shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
	--shadow-gold: 0 0 40px rgba(201, 169, 98, 0.15);
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background-color: var(--black-rich);
}

body {
	font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: var(--black-rich);
	color: var(--gray-100);
	line-height: 1.7;
	font-weight: 300;
	overflow-x: hidden;
	margin: 0 !important;
	padding: 0 !important;
	padding-top: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
           HEADER & FOOTER - 強制樣式覆蓋
        ═══════════════════════════════════════════════════════════ */
/* 強制導航列正常高度 */
.site-header {
	height: 80px !important;
	min-height: 80px !important;
	max-height: 80px !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.site-header.fixed-top {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
	z-index: 10 !important;
}

.site-header .navbar {
	height: 80px !important;
	min-height: 80px !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

/* 手機版調整 */
@media (max-width: 991px) {
	:root {
		--site-header-height: 56px;
	}

	.site-header {
		height: 56px !important;
		min-height: 56px !important;
		max-height: 56px !important;
		transition: transform 0.3s ease, opacity 0.3s ease !important;
	}

	.site-header .navbar {
		height: 56px !important;
		min-height: 56px !important;
	}

	.site-header .navbar-brand img {
		height: 38px !important;
	}
}

/* 桌面版和手機版通用 Header 隱藏狀態 */
.site-header.header-hidden-mobile {
	transform: translateY(-100%) !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* --- 確保頁腳正確顯示 --- */
.site-footer {
	position: relative;
	z-index: 1000;
}

/* ═══════════════════════════════════════════════════════════════════
           行程分類導航 - 滾動固定選單 (rn- prefix)
        ═══════════════════════════════════════════════════════════════════ */
#region-nav {
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
	padding: 0 0 var(--space-xl);
}

.rn-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--space-md);
}

.rn-main {
	position: relative;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid var(--gold-primary);
	border-radius: var(--radius-lg);
	padding: 12px;
	box-shadow:
		0 4px 20px rgba(0, 0, 0, 0.5),
		0 0 0 1px var(--gold-primary),
		0 0 20px rgba(201, 169, 98, 0.25);
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 12px;
}

/* 左右箭頭按鈕容器 */
.rn-arrow-btn {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 6px;
	background: transparent;
	border: none;
	color: var(--gold-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	transition: all 0.2s ease;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.rn-arrow-btn:hover:not(:disabled) {
	background: rgba(201, 169, 98, 0.15);
	color: var(--white);
}

.rn-arrow-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* 當超過 4 個按鈕時顯示箭頭 */
.rn-main.rn-has-overflow .rn-arrow-btn {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.rn-buttons-container {
	flex: 1;
	overflow: hidden;
	position: relative;
}

.rn-buttons {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	width: 100%;
}

.rn-buttons.rn-dragging {
	user-select: none;
	-webkit-user-select: none;
}

/* WebKit 瀏覽器滾動條樣式 */
.rn-buttons::-webkit-scrollbar {
	display: none;
}

.rn-btn {
	flex: 0 0 calc((100% - 36px) / 4);
	width: calc((100% - 36px) / 4);
	min-width: calc((100% - 36px) / 4);
	text-align: center;
	padding: 16px 20px;
	background: var(--gray-900);
	border: 1px solid var(--gray-600);
	border-radius: var(--radius-md);
	color: var(--gray-300);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--duration-fast) var(--ease-luxury);
	min-height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 10;
	font-family: inherit;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.rn-btn:hover {
	border-color: var(--gold-primary);
	color: var(--gold-primary);
}

.rn-btn.rn-active {
	background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
	border: 1px solid var(--gold-primary);
	color: var(--black-pure);
	box-shadow: 0 0 30px rgba(201, 169, 98, 0.3);
}

@media (max-width: 991px) {
	#region-nav {
		top: 0;
	}
}

@media (max-width: 768px) {
	#region-nav {
		padding: 0 0 var(--space-lg);
	}

	.rn-wrapper {
		padding: 0 12px;
	}

	.rn-main {
		background: transparent;
		border: none;
		box-shadow: none;
		padding: 0;
		gap: 8px;
	}

	.rn-arrow-btn {
		width: 32px;
		height: 32px;
		flex-shrink: 0;
		min-width: 32px;
	}

	.rn-buttons-container {
		flex: 1;
		overflow: hidden;
	}

	.rn-buttons {
		gap: 8px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		justify-content: flex-start;
	}

	.rn-buttons::-webkit-scrollbar {
		display: none;
	}

	.rn-btn {
		flex-shrink: 0;
		width: 160px;
		font-size: 0.85rem;
		padding: 12px 16px;
		white-space: nowrap;
	}
}

/* ═══════════════════════════════════════════════════════════
           HERO - 沈浸式視覺 + 粒子效果
        ═══════════════════════════════════════════════════════════ */
.hero {
	position: relative;
	height: 100vh;
	min-height: 700px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black-rich);
	background:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(10, 10, 10, 0.98) 100%),
		var(--destination-hero-bg, none);
	background-size: cover;
	background-position: center;
	transform: scale(1.05);
	animation: heroZoom 20s ease-in-out infinite alternate;
}

/* ═══ 浮動粒子效果 ═══ */
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(2px 2px at 20% 30%, rgba(201, 169, 98, 0.3), transparent),
		radial-gradient(2px 2px at 80% 20%, rgba(201, 169, 98, 0.2), transparent),
		radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.15), transparent),
		radial-gradient(1px 1px at 60% 50%, rgba(201, 169, 98, 0.25), transparent),
		radial-gradient(2px 2px at 90% 80%, rgba(255, 255, 255, 0.1), transparent);
	background-size: 300px 300px;
	animation: sparkle 8s linear infinite;
	z-index: 1;
	pointer-events: none;
}

@keyframes sparkle {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-300px);
	}
}

@keyframes heroZoom {
	0% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 0 var(--space-md);
	transform: translateY(-80px);
}

@media (max-width: 768px) {
	.hero-content {
		transform: translateY(-28px);
	}
}

.hero-eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: var(--gold-primary);
	margin-bottom: var(--space-md);
	padding: 12px 28px;
	border: 1px solid rgba(201, 169, 98, 0.4);
	background: rgba(201, 169, 98, 0.05);
	backdrop-filter: blur(10px);
	position: relative;
}

.hero-eyebrow::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 20%;
	right: 20%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.hero h1 {
	font-family: 'Noto Serif TC', 'Playfair Display', serif;
	font-size: clamp(2.8rem, 6vw, 5rem);
	font-weight: 600;
	letter-spacing: 3px;
	color: var(--white);
	margin-bottom: var(--space-md);
	line-height: 1.15;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero h1 em {
	font-style: italic;
	color: var(--gold-primary);
	text-shadow: 0 0 40px rgba(201, 169, 98, 0.4);
}

.hero-subtitle {
	font-family: 'Noto Serif TC', serif;
	font-size: 1.15rem;
	color: var(--gray-200);
	max-width: 650px;
	margin: 0 auto var(--space-lg);
	font-weight: 300;
	line-height: 1.8;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 48px;
	background: transparent;
	border: 1px solid var(--gold-primary);
	color: var(--gold-primary);
	font-size: 0.9rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all var(--duration-normal) var(--ease-luxury);
	position: relative;
	overflow: hidden;
}

.hero-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
	transition: left 0.5s ease;
}

.hero-cta:hover {
	background: var(--gold-primary);
	color: var(--black-pure);
	box-shadow: 0 0 50px rgba(201, 169, 98, 0.5);
	transform: translateY(-2px);
}

.hero-cta:hover::before {
	left: 100%;
}

.scroll-indicator {
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: var(--gray-400);
	font-size: 0.7rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	animation: float 2s ease-in-out infinite;
	z-index: 20;
	pointer-events: none;
}

@keyframes float {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(-8px);
	}
}

.scroll-line {
	width: 1px;
	height: 30px;
	background: linear-gradient(to bottom, var(--gold-primary), transparent);
}

/* ═══════════════════════════════════════════════════════════
           出發地選擇器 - 浮動卡片
        ═══════════════════════════════════════════════════════════ */
.hero-feature-bar {
	position: relative;
	margin-top: -80px;
	z-index: 10;
	padding: 0 var(--space-md) var(--space-xl);
}

.feature-grid {
	max-width: 1000px;
	margin: 0 auto;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid var(--gold-primary);
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: var(--space-md);
	transition: all var(--duration-normal) var(--ease-luxury);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.5),
		0 0 0 1px var(--gold-primary),
		0 0 24px rgba(201, 169, 98, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: 1;
	padding: 10px 12px;
	border: 1px solid transparent;
	border-radius: 12px;
	transition: all var(--duration-normal) var(--ease-luxury);
}

.feature-item:hover {
	border-color: var(--gold-primary);
	background: rgba(201, 169, 98, 0.08);
	box-shadow:
		0 0 0 1px var(--gold-primary),
		0 0 18px rgba(201, 169, 98, 0.28);
	transform: translateY(-2px);
}

.feature-item:hover .feature-icon {
	box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.35), 0 0 14px rgba(201, 169, 98, 0.35);
}

.feature-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: var(--black-pure);
	flex-shrink: 0;
}

.feature-text {
	flex: 1;
}

.feature-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--gold-primary);
	margin-bottom: 3px;
	letter-spacing: 0.5px;
}

.feature-subtitle {
	font-size: 0.85rem;
	color: #E0E0E0;
	letter-spacing: 1px;
	line-height: 1.4;
}

.feature-divider {
	width: 1px;
	height: 50px;
	background: linear-gradient(180deg, transparent, var(--gray-600), transparent);
}

@media (max-width: 768px) {
	.hero-feature-bar {
		margin-top: -60px;
		padding: 0 12px var(--space-lg);
	}

	.feature-grid {
		flex-direction: column;
		padding: var(--space-md);
		gap: var(--space-md);
	}

	.feature-item {
		width: 100%;
		justify-content: flex-start;
	}

	.feature-divider {
		width: 100%;
		height: 1px;
		background: linear-gradient(90deg, transparent, var(--gray-600), transparent);
	}

	.feature-title {
		font-size: 1rem;
	}

	.feature-subtitle {
		font-size: 0.8rem;
	}
}

.departure-section {
	position: relative;
	margin-top: -80px;
	z-index: 10;
	padding: 0 var(--space-md);
}

.departure-bar {
	max-width: 900px;
	margin: 0 auto;
	background: linear-gradient(145deg, var(--gray-800), var(--gray-900));
	border: 1px solid var(--gray-700);
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
	display: flex;
	align-items: center;
	gap: var(--space-lg);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.departure-label {
	display: flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
}

.departure-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.departure-text h3 {
	font-size: 1rem;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 2px;
}

.departure-text span {
	font-size: 0.75rem;
	color: var(--gray-400);
	letter-spacing: 1px;
}

.departure-options {
	display: flex;
	gap: 12px;
	flex: 1;
}

.city-btn {
	flex: 1;
	padding: 16px 20px;
	background: var(--gray-900);
	border: 1px solid var(--gray-600);
	border-radius: var(--radius-md);
	color: var(--gray-300);
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: all var(--duration-fast) var(--ease-luxury);
	text-align: center;
}

.city-btn:hover {
	border-color: var(--gold-primary);
	color: var(--gold-primary);
}

.city-btn.active {
	background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
	border-color: var(--gold-primary);
	color: var(--black-pure);
	font-weight: 600;
	box-shadow: 0 0 30px rgba(201, 169, 98, 0.3);
}

/* ═══════════════════════════════════════════════════════════
           主容器
        ═══════════════════════════════════════════════════════════ */
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: var(--space-2xl) var(--space-md);
}

/* Footer 內的 container 不套用額外 padding，但保留 Bootstrap 響應式 max-width */
.site-footer .container {
	padding: 0;
}

@media (min-width: 576px) {
	.site-footer .container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.site-footer .container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.site-footer .container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.site-footer .container {
		max-width: 1140px;
	}
}

/* ═══════════════════════════════════════════════════════════
           區塊標題系統 - CDO Edition
        ═══════════════════════════════════════════════════════════ */
.section-header {
	text-align: center;
	margin-bottom: var(--space-xl);
	position: relative;
}

.section-header .eyebrow {
	font-size: 0.75rem;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--gold-primary);
	margin-bottom: var(--space-sm);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.section-header .eyebrow::before,
.section-header .eyebrow::after {
	content: '';
	width: 40px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.section-header .eyebrow::after {
	background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.section-header h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 400;
	color: var(--white);
	margin-bottom: var(--space-sm);
	position: relative;
	display: inline-block;
}

.section-header p {
	font-size: 1rem;
	color: var(--gray-400);
	max-width: 600px;
	margin: 0 auto;
}

/* ═══ 區塊分隔裝飾 ═══ */
.section-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: var(--space-xl) 0;
}

.section-divider::before,
.section-divider::after {
	content: '';
	flex: 1;
	max-width: 200px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gray-700));
}

.section-divider::after {
	background: linear-gradient(90deg, var(--gray-700), transparent);
}

.section-divider .divider-icon {
	color: var(--gold-primary);
	font-size: 1.2rem;
	opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════
           服務模組 - 高級卡片 + 發光效果
        ═══════════════════════════════════════════════════════════ */
.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-md);
}

.service-card {
	position: relative;
	background: linear-gradient(180deg, var(--gray-800) 0%, var(--gray-900) 100%);
	border: 1px solid var(--gray-700);
	border-radius: var(--radius-lg);
	padding: var(--space-lg) var(--space-md);
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	transition: all var(--duration-normal) var(--ease-luxury);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
	opacity: 0;
	transition: opacity var(--duration-normal);
}

/* ═══ 卡片光暈效果 ═══ */
.service-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--gold-glow) 0%, transparent 50%);
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition: all var(--duration-slow) var(--ease-luxury);
	pointer-events: none;
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: var(--gold-primary);
	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.4),
		0 0 50px rgba(201, 169, 98, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card:hover::after {
	transform: translate(-50%, -50%) scale(1);
	opacity: 0.3;
}

.card-number {
	position: absolute;
	top: 16px;
	right: 20px;
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	font-weight: 700;
	color: var(--gray-800);
	line-height: 1;
	transition: all var(--duration-normal);
}

.service-card:hover .card-number {
	color: rgba(201, 169, 98, 0.2);
}

.card-icon {
	width: 68px;
	height: 68px;
	margin: 0 auto var(--space-md);
	background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: var(--white);
	transition: all var(--duration-normal);
	box-shadow:
		0 4px 15px rgba(201, 169, 98, 0.35),
		inset 0 -2px 4px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 1;
}

.service-card:hover .card-icon {
	transform: scale(1.15) rotate(5deg);
	box-shadow:
		0 8px 30px rgba(201, 169, 98, 0.6),
		0 0 60px rgba(201, 169, 98, 0.3);
	filter: brightness(1.15);
}

.card-title {
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--white);
	margin-bottom: var(--space-xs);
}

.card-title-en {
	font-size: 0.7rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gray-500);
	margin-bottom: var(--space-sm);
}

.card-desc {
	font-size: 0.85rem;
	color: var(--gray-400);
	line-height: 1.6;
	margin-bottom: var(--space-md);
	min-height: 65px;
}

.card-tags {
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: var(--space-md);
}

.tag {
	font-size: 0.7rem;
	padding: 4px 10px;
	background: var(--gray-700);
	border-radius: 20px;
	color: var(--gray-300);
	letter-spacing: 0.5px;
}

.select-btn {
	display: inline-block;
	padding: 10px 24px;
	border: 1px solid var(--gray-600);
	border-radius: 30px;
	color: var(--gray-300);
	font-size: 0.8rem;
	letter-spacing: 1px;
	transition: all var(--duration-fast);
}

.service-card:hover .select-btn {
	border-color: var(--gold-primary);
	background: var(--gold-primary);
	color: var(--black-pure);
}

/* ═══════════════════════════════════════════════════════════
           精選目的地 - 地圖+景點卡片 + 增強效果
        ═══════════════════════════════════════════════════════════ */
.destinations-section {
	padding: var(--space-2xl) 0;
	position: relative;
}

.destinations-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 60px;
	background: linear-gradient(to bottom, transparent, var(--gray-700));
}

.dest-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: var(--space-md);
	align-items: start;
}

.dest-map {
	grid-row: 1 / 3;
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--gray-700);
	background: var(--gray-900);
}

.dest-map img {
	width: 100%;
	height: auto;
	display: block;
}

.dest-map-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px 20px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
	display: flex;
	align-items: center;
	gap: 10px;
}

.dest-map-caption span {
	color: var(--gold-primary);
	font-size: 0.85rem;
	letter-spacing: 1px;
}

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

.dest-group {
	display: flex;
	flex-direction: column;
}

.dest-group-title {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--gold-primary);
	margin-bottom: 12px;
	padding-left: 4px;
	letter-spacing: 1px;
}

.dest-group-title span {
	color: var(--gray-400);
	font-weight: 300;
	font-size: 0.75rem;
}

.dest-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.dest-card {
	position: relative;
	height: 140px;
	border-radius: var(--radius-md);
	overflow: hidden;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all var(--duration-normal) var(--ease-luxury);
}

.dest-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--radius-md);
	padding: 1px;
	background: linear-gradient(135deg, transparent, var(--gold-primary), transparent);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity var(--duration-normal);
}

.dest-card:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.dest-card:hover::before {
	opacity: 1;
}

.dest-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--duration-slow) var(--ease-luxury);
}

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

.dest-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 14px;
	transition: background var(--duration-normal);
}

.dest-card:hover .dest-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.dest-overlay h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	color: var(--white);
	margin-bottom: 2px;
	transition: color var(--duration-fast);
}

.dest-card:hover .dest-overlay h4 {
	color: var(--gold-light);
}

.dest-overlay span {
	font-size: 0.7rem;
	color: var(--gold-primary);
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
           表單區塊 - 高級設計 + 背景紋理
        ═══════════════════════════════════════════════════════════ */
.form-section {
	background:
		linear-gradient(135deg, rgba(201, 169, 98, 0.02) 0%, transparent 50%),
		linear-gradient(180deg, var(--gray-900) 0%, var(--black-rich) 100%);
	border: 1px solid var(--gray-700);
	border-radius: var(--radius-xl);
	padding: var(--space-xl);
	position: relative;
	overflow: hidden;
}

.form-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(to bottom, var(--gold-primary), var(--gold-dark), var(--gold-primary));
}

/* ═══ 背景裝飾圖案 ═══ */
.form-section::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(201, 169, 98, 0.03) 0%, transparent 60%);
	pointer-events: none;
}

.form-header {
	margin-bottom: var(--space-lg);
}

.form-header h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: var(--white);
	margin-bottom: var(--space-xs);
}

.form-header p {
	color: var(--gray-400);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-md);
}

.form-group {
	margin-bottom: var(--space-sm);
}

.form-group.full-width {
	grid-column: 1 / -1;
}

label {
	display: block;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--gray-200);
	margin-bottom: var(--space-xs);
	letter-spacing: 0.5px;
}

label .required {
	color: var(--gold-primary);
	margin-left: 4px;
}

input,
select,
textarea {
	width: 100%;
	padding: 14px 16px;
	background: var(--gray-800);
	border: 1px solid var(--gray-600);
	border-radius: var(--radius-md);
	color: var(--white);
	font-size: 0.95rem;
	font-family: inherit;
	transition: all var(--duration-fast);
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--gold-primary);
	box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

input::placeholder,
textarea::placeholder {
	color: var(--gray-500);
}

select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
}

select option {
	background: var(--gray-800);
	color: var(--white);
}

textarea {
	resize: vertical;
	min-height: 120px;
}

.checkbox-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.checkbox-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: var(--gray-800);
	border: 1px solid var(--gray-600);
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all var(--duration-fast);
}

.checkbox-item:hover {
	border-color: var(--gold-primary);
}

.checkbox-item input {
	width: auto;
	accent-color: var(--gold-primary);
}

.checkbox-item span {
	font-size: 0.85rem;
	color: var(--gray-300);
}

.submit-btn {
	width: 100%;
	padding: 20px 40px;
	background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
	border: none;
	border-radius: var(--radius-md);
	color: var(--black-pure);
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all var(--duration-normal) var(--ease-luxury);
	position: relative;
	overflow: hidden;
}

.submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s ease;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow:
		0 15px 50px rgba(201, 169, 98, 0.5),
		0 0 80px rgba(201, 169, 98, 0.2);
}

.submit-btn:hover::before {
	left: 100%;
}

.submit-btn:active {
	transform: translateY(-1px);
}

.selection-indicator {
	display: none;
	background: rgba(201, 169, 98, 0.1);
	border: 1px solid var(--gold-primary);
	border-radius: var(--radius-md);
	padding: 16px 20px;
	margin-bottom: var(--space-md);
	color: var(--gold-primary);
}

.selection-indicator.show {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* ═══════════════════════════════════════════════════════════
           FOOTER - 使用 common/footer-new1116.php
        ═══════════════════════════════════════════════════════════ */
/* 已引入 common footer，不需要自己的 footer 樣式 */
/* ═══════════════════════════════════════════════════════════
           奢華宿泊 - Hotel Showcase (暗色主題)
        ═══════════════════════════════════════════════════════════ */
.hotel-showcase-section {
	background: linear-gradient(180deg, var(--gray-900) 0%, var(--black-rich) 100%);
	padding: var(--space-2xl) 0;
	overflow: hidden;
}

.hotel-card-premium {
	display: flex;
	align-items: center;
	margin-bottom: 80px;
	position: relative;
}

.hotel-card-premium:last-child {
	margin-bottom: 0;
}

.hotel-card-premium.reverse {
	flex-direction: row-reverse;
}

.hotel-img-big {
	flex: 1.15;
	height: 420px;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-md);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hotel-img-big img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease-luxury);
}

.hotel-card-premium:hover .hotel-img-big img {
	transform: scale(1.05);
}

.hotel-info-box {
	flex: 0.85;
	background: linear-gradient(145deg, var(--gray-800), var(--gray-900));
	padding: 44px 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	margin-left: -70px;
	position: relative;
	z-index: 2;
	border-top: 3px solid var(--gold-primary);
	border-radius: var(--radius-md);
}

.hotel-card-premium.reverse .hotel-info-box {
	margin-left: 0;
	margin-right: -70px;
}

.hotel-brand {
	font-size: 0.7rem;
	letter-spacing: 4px;
	color: var(--gray-400);
	text-transform: uppercase;
	display: block;
	margin-bottom: 12px;
	font-weight: 500;
}

.hotel-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 18px;
	line-height: 1.4;
}

.hotel-tag-group {
	display: flex;
	gap: 8px;
	margin-bottom: 22px;
	flex-wrap: wrap;
}

.hotel-tag {
	font-size: 0.7rem;
	border: 1px solid var(--gray-600);
	padding: 5px 14px;
	border-radius: 2px;
	color: var(--gray-300);
	background: var(--gray-800);
	letter-spacing: 0.5px;
}

.hotel-desc {
	font-size: 0.9rem;
	color: var(--gray-300);
	line-height: 1.9;
	text-align: justify;
	margin-bottom: 0;
}

.hotel-highlight {
	color: var(--gold-primary);
	font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero {
		min-height: 600px;
	}

	/* ═══ 手機版四大方案 - 緊湊樫向滑動 + 提示 ═══ */
	.service-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 12px;
		padding-bottom: 20px;
		-webkit-overflow-scrolling: touch;
	}

	/* ═══ 滑動條美化 ═══ */
	.service-grid::-webkit-scrollbar {
		height: 5px;
	}

	.service-grid::-webkit-scrollbar-track {
		background: var(--gray-800);
		border-radius: 3px;
	}

	.service-grid::-webkit-scrollbar-thumb {
		background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
		border-radius: 3px;
	}

	.service-card {
		flex: 0 0 140px;
		min-width: 140px;
		scroll-snap-align: start;
		padding: 16px 12px;
	}

	.card-number {
		position: static;
		font-size: 1.1rem;
		color: var(--gold-primary);
		margin-bottom: 8px;
		font-family: 'Playfair Display', serif;
		font-weight: 600;
	}

	.card-icon {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
		margin-bottom: 10px;
	}

	.card-title {
		font-size: 0.95rem;
		margin-bottom: 4px;
	}

	.card-title-en {
		font-size: 0.6rem;
		margin-bottom: 8px;
	}

	.card-desc {
		display: none;
	}

	.card-tags {
		display: none;
	}

	.select-btn {
		padding: 6px 12px;
		font-size: 0.7rem;
	}

	/* ═══ 手機版精選目的地 ═══ */
	.dest-layout {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: var(--space-sm);
	}

	.dest-map {
		grid-row: auto;
		order: 1;
	}

	.dest-spots {
		order: 2;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto auto;
		gap: 8px;
	}

	.dest-spots:nth-of-type(3) {
		order: 3;
	}

	.dest-group {
		order: 2;
	}

	.dest-group:nth-of-type(3) {
		order: 3;
	}

	.dest-group-title {
		font-size: 0.75rem;
		margin-bottom: 8px;
	}

	.dest-spots .dest-card {
		height: 85px;
	}

	.dest-overlay {
		padding: 10px;
	}

	.dest-overlay h4 {
		font-size: 0.85rem;
	}

	.dest-overlay span {
		font-size: 0.6rem;
	}

	.dest-grid {
		grid-template-columns: 1fr;
	}

	/* ═══ 手機版奢華宿泊 ═══ */
	.hotel-showcase-section {
		padding: var(--space-xl) var(--space-md);
	}

	.hotel-card-premium,
	.hotel-card-premium.reverse {
		flex-direction: column;
		margin-bottom: 50px;
	}

	.hotel-img-big {
		width: 100%;
		height: 220px;
		margin-bottom: -25px;
		z-index: 1;
		border-radius: var(--radius-md) var(--radius-md) 0 0;
	}

	.hotel-info-box {
		width: 92%;
		margin: 0 auto !important;
		padding: 28px 24px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		border-radius: 0 0 var(--radius-md) var(--radius-md);
	}

	.hotel-name {
		font-size: 1.3rem;
	}

	.hotel-desc {
		font-size: 0.85rem;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.form-section {
		padding: var(--space-lg) var(--space-md);
	}
}

/* 輝達嚴選區塊：圖上字下 */
.nvda-select-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	max-width: 1200px;
	margin: 0 auto 60px;
}

.nvda-tour-card {
	background: linear-gradient(180deg, var(--gray-800) 0%, var(--gray-900) 100%);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	position: relative;
	border: 1px solid var(--gray-700);
}

.nvda-tour-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
	border-color: var(--gold-primary);
}

.nvda-card-img {
	height: 280px;
	overflow: hidden;
	position: relative;
}

.nvda-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.no-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
	border: 1px dashed var(--gray-600);
	color: var(--gold-primary);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 2px;
}

.nvda-tour-card:hover .nvda-card-img img {
	transform: scale(1.08);
}

.nvda-card-content {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.card-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 60px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

/* 4日行程專用 - 讓卡片更大 */
.card-grid-premium {
	grid-template-columns: repeat(2, 1fr);
	/* 強制兩欄 */
}

.tour-card {
	background: linear-gradient(180deg, var(--gray-800) 0%, var(--gray-900) 100%);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: row;
	position: relative;
	border: 1px solid var(--gray-700);
	height: 250px;
	gap: 24px;
}

.tour-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
	border-color: var(--gold-primary);
}

.card-img-box {
	flex: 0 0 30%;
	overflow: hidden;
	position: relative;
}

.card-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.tour-card:hover .card-img-box img {
	transform: scale(1.08);
}

.card-content {
	flex: 1;
	padding: 28px 32px 28px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.card-tag {
	color: var(--gold-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 10px;
	display: block;
}

.product-card-title-wrap {
	max-width: 55%;
	overflow: hidden;
	margin-bottom: 15px;
	flex: 0 0 auto;
}

.product-card-title {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	color: var(--white);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.card-desc {
	font-size: 14px;
	color: var(--gray-300);
	line-height: 1.6;
	margin-bottom: 20px;
	flex: 1;
}

.card-footer {
	border-top: 1px solid var(--gray-700);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.price-label {
	font-size: 12px;
	color: var(--gray-400);
}

.price-num {
	font-size: 20px;
	color: var(--gold-primary);
	font-weight: 700;
	font-family: 'Playfair Display', serif;
}

.btn-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--gray-800);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-300);
	transition: 0.3s;
}

.tour-card:hover .btn-arrow {
	background: var(--gold-primary);
	color: var(--black-pure);
}

/* 推薦標籤 */
.badge-recommend {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 10;
	background: var(--gray-900);
	color: var(--gold-primary);
	padding: 6px 12px;
	font-size: 11px;
	font-weight: 700;
	border-radius: 4px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	border: 1px solid var(--gold-primary);
}

/* 天數徵章：右上角 */
.badge-days {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 10;
	background: var(--gold-primary);
	color: var(--black-pure);
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	letter-spacing: 1px;
}

/* 小團客製區塊：Deskto版 3欄 */
@media (max-width: 768px) {
	.nvda-select-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		grid-template-columns: none;
		gap: 20px;
		padding: 10px 0 20px;
		scrollbar-width: thin;
		scrollbar-color: var(--gold-primary) var(--gray-800);
	}

	.nvda-select-grid::-webkit-scrollbar {
		height: 6px;
	}

	.nvda-select-grid::-webkit-scrollbar-track {
		background: var(--gray-800);
		border-radius: 3px;
	}

	.nvda-select-grid::-webkit-scrollbar-thumb {
		background: var(--gold-primary);
		border-radius: 3px;
	}

	.nvda-tour-card {
		flex: 0 0 calc(85% - 10px);
		scroll-snap-align: start;
		min-width: calc(85% - 10px);
	}

	.nvda-card-img {
		height: 220px;
	}

	.nvda-card-content {
		padding: 24px;
	}

	.card-grid {
		padding: 0;
		gap: 20px;
	}

	.tour-card {
		height: 140px;
		border-radius: 8px;
		gap: 16px;
	}

	.card-img-box {
		flex: 0 0 35%;
	}

	.card-content {
		padding: 14px 16px 14px 0;
	}

	.card-tag {
		font-size: 8px;
		margin-bottom: 4px;
		letter-spacing: 0.5px;
	}

	.product-card-title-wrap {
		max-width: 85%;
		margin-bottom: 4px;
	}

	.product-card-title {
		font-size: 0.85rem;
		line-height: 1.3;
		margin: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.card-desc {
		font-size: 0.7rem;
		line-height: 1.35;
		margin-bottom: 8px;
	}

	.card-footer {
		padding-top: 8px;
		margin-top: auto;
	}

	.price-label {
		font-size: 8px;
	}

	.price-num {
		font-size: 0.9rem;
	}

	.btn-arrow {
		width: 28px;
		height: 28px;
		font-size: 0.8rem;
	}

	.badge-recommend {
		top: 8px;
		left: 8px;
		font-size: 8px;
		padding: 3px 7px;
	}

	.badge-days {
		top: 8px;
		right: 8px;
		font-size: 8px;
		padding: 3px 7px;
	}
}

/* 北陸微奢遊系列：響應式 Grid 布局 */
#hokuriku-premium .card-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* 館體旅行系列：響應式 Grid 布局 */
#group-travel .card-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* 團體旅行系列區塊 */
.travel-section {
	padding: var(--space-xl) 0;
	overflow: hidden;
}

/* 錨點偏移 - 避免被固定選單擋住 */
[id] {
	scroll-margin-top: 200px;
}

@media (max-width: 768px) {

	/* 外層容器：縮小 padding */
	.tateyama-intro {
		padding: 20px !important;
		margin: 16px 0 24px !important;
	}

	/* 主 grid：文字＋圖片改為單欄堆疊 */
	.tateyama-intro>div:nth-child(2) {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
	}

	/* 標題縮小 */
	.tateyama-intro h3 {
		font-size: 1.3rem !important;
		margin-bottom: 16px !important;
	}

	/* 統計數字區：gap 縮小、數字字級縮小 */
	.tateyama-intro>div:nth-child(2)>div:first-child>div:nth-last-child(2) {
		gap: 16px !important;
		flex-wrap: wrap !important;
		justify-content: center !important;
	}

	.tateyama-intro>div:nth-child(2)>div:first-child>div:nth-last-child(2)>div>div:first-child {
		font-size: 1.8rem !important;
	}

	/* 圖片 grid：改為單欄 */
	.tateyama-intro>div:nth-child(2)>div:last-child {
		grid-template-columns: 1fr !important;
		gap: 10px !important;
	}

	/* 跨欄圖片取消 span */
	.tateyama-intro>div:nth-child(2)>div:last-child>div:first-child {
		grid-column: auto !important;
	}

	/* 圖片統一高度 */
	.tateyama-intro>div:nth-child(2)>div:last-child img {
		height: 180px !important;
	}

	/* 裝飾圓形縮小避免溢出 */
	.tateyama-intro>div:first-child {
		width: 150px !important;
		height: 150px !important;
	}
}

}