:root {
	--color-background-light: #F8F9FA;
	--color-text: #333333;
	--color-primary-gold: #D4AF37;
	--color-secondary-gold: #EACD69;
	--color-dark-bg: #1A1A1A;
	--color-footer-text: #a0a0a0;
	--color-light-text-on-dark: #E0E0E0;
	--font-serif: 'Noto Serif TC', serif;
	--font-sans: 'Noto Sans TC', sans-serif;
	/* Index.php 風格變數 */
	--primary-dark: #0a1419;
	--primary-medium: #1a2a2f;
	--primary-light: #2a3a3f;
	--accent-gold: #d4af37;
	--accent-gold-light: #eacd69;
	--neutral-white: #ffffff;
	--neutral-light: #f8f9fa;
	--neutral-medium: #e9ecef;
	--neutral-dark: #343a40;
	--text-primary: #1f1f1f;
	--text-secondary: #4a4a4a;
	--text-muted: #6c757d;
	--shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
	--shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
	--shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.12);
	--transition-smooth: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
	--transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	--border-radius-small: 12px;
	--border-radius-medium: 20px;
	--border-radius-large: 32px;
	--max-width: 1400px;
	--section-padding: 8rem 0;
	--section-padding-mobile: 4rem 0;
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 4rem;
	--spacing-xl: 6rem;
}

html,
body {
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	font-family: var(--font-sans);
	background-color: white;
	color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-serif);
	color: var(--color-text);
}

.section-padding {
	padding: 5rem 0;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #6c757d;
	max-width: 600px;
	margin: 0 auto 3.5rem auto;
	line-height: 1.8;
}

/* --- 確保導航列正確顯示 --- */
.site-header.fixed-top {
	z-index: 1030 !important;
	/* 確保導航列在最上層 */
	position: fixed !important;
	top: 0 !important;
	width: 100% !important;
}

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

/* --- 按鈕樣式 --- */
.btn-island {
	background: linear-gradient(45deg, #34e89e, #03a5c1);
	border: none;
	color: white;
	padding: 12px 30px;
	font-weight: bold;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.btn-island:hover {
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
	background: linear-gradient(45deg, #42f9b2, #03b7d6);
}

/* --- 【英雄區塊 - 統一風格版】 --- */
#hero-section {
	position: relative;
	height: 100vh;
	min-height: 700px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	overflow: hidden;
	color: white;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	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%),
		url('/assets/images/index--bg06.webp');
	background-size: cover;
	background-position: center;
	transform: scale(1.05);
	animation: heroZoom 20s ease-in-out infinite alternate;
	z-index: 0;
	/* 確保背景在導航列下方 */
}

/* 浮動粒子效果 */
#hero-section::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 24px;
}

.hero-eyebrow {
	display: inline-block;
	font-size: 0.85rem;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: #C5A065;
	margin-bottom: 28px;
	padding: 14px 32px;
	border: 1px solid rgba(197, 160, 101, 0.5);
	background: rgba(197, 160, 101, 0.08);
	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, #C5A065, transparent);
}

/* ========== 設計總監最終定案：HERO SECTION ========== */
/* 拒絕草寫、拒絕斜體 - 國際奢華品牌標準 */
/* 第一層：英文頂標 - REDEFINING LUXURY */
.hero-eyebrow-new {
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 14px;
	font-weight: 400;
	/* Regular - 不要太粗 */
	font-style: normal;
	/* 正體 Upright，拒絕斜體 */
	letter-spacing: 3px;
	/* 字元間距拉寬 = 高級感 */
	text-transform: uppercase;
	color: #C5A059;
	margin-bottom: 24px;
}

/* 第二層：中文主標題 - 日本奢華．重新定義 */
.hero-main-title {
	font-family: 'Noto Serif TC', serif;
	/* Google Fonts 思源宋體 - 展現日本文化底蘊 */
	font-size: 64px;
	font-weight: 600;
	/* SemiBold - 優雅但有份量，避免過粗 */
	font-style: normal;
	/* 正體，拒絕斜體 */
	letter-spacing: 0.05em;
	color: #FFFFFF;
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	white-space: nowrap;
	/* 強制不換行 - 確保「日本奢華．重新定義」八字同一行 */
}

/* 第三層：裝飾線 */
.hero-divider {
	width: 60px;
	height: 2px;
	background-color: #C5A059;
	margin: 0 auto 20px auto;
}

/* 第四層：中文副標題 - 極上私旅 ｜ 專屬訂製 ｜ 輝達體驗 */
.hero-subtitle-new {
	font-family: 'Noto Sans TC', sans-serif;
	/* 思源黑體 - 層次區隔 + 閱讀性 */
	font-size: 18px;
	font-weight: 300;
	/* Light - 功能性說明 */
	font-style: normal;
	/* 正體 */
	letter-spacing: 1.5px;
	color: #F0F0F0;
	/* 灰白 */
	margin-bottom: 35px;
	line-height: 1.6;
}

/* 第五層：CTA 按鈕 - 實心金色 */
.hero-cta-new {
	display: inline-block;
	padding: 16px 48px;
	background-color: #C5A059;
	color: #1a1a1a;
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 2px;
	text-decoration: none;
	border-radius: 2px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.hero-cta-new:hover {
	background-color: #D4AF37;
	color: #000000;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

#hero-section h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(3rem, 7vw, 5.5rem);
	font-weight: 500;
	letter-spacing: 4px;
	color: #FFFFFF;
	margin-bottom: 28px;
	line-height: 1.2;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

#hero-section h1 em {
	font-style: italic;
	font-weight: 400;
	color: #C5A065;
	font-size: 1.1em;
	text-shadow: 0 0 50px rgba(197, 160, 101, 0.5);
	display: inline-block;
	margin-left: 0.1em;
}

.hero-subtitle {
	font-size: 1.15rem;
	color: #E0E0E0;
	max-width: 650px;
	margin: 0 auto 40px;
	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 52px;
	background: transparent;
	border: 1px solid #C5A065;
	color: #C5A065;
	font-size: 0.95rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
}

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

.hero-cta:hover {
	background: #C5A065;
	color: #000000;
	box-shadow: 0 0 30px rgba(197, 160, 101, 0.6), 0 0 60px rgba(197, 160, 101, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
	border: 2px solid #D4AF37;
}

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

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #777777;
	font-size: 0.7rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	animation: float 2s ease-in-out infinite;
	z-index: 5;
	overflow: hidden;
}

@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, #C5A065, transparent);
}

.quick-links-bar {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 2.5rem;
}

.quick-link-item {
	text-decoration: none;
	color: white;
	transition: all 0.4s ease;
	font-family: var(--font-serif);
	font-size: 1.5rem;
	letter-spacing: 0.5rem;
	writing-mode: vertical-rl;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
	padding: 1rem 0;
	position: relative;
}

.quick-link-item::after {
	content: '';
	position: absolute;
	right: -15px;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 0;
	background-color: var(--color-secondary-gold);
	transition: height 0.4s ease;
}

.quick-link-item:hover {
	color: var(--color-secondary-gold);
	transform: translateX(-5px);
}

.quick-link-item:hover::after {
	height: 80%;
}

/* --- 【往下捲動提示樣式】 --- */
.scroll-down-indicator {
	display: none;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	text-decoration: none;
	opacity: 1;
	transition: opacity 0.5s ease;
	z-index: 10;
	height: 100px;
	width: auto;
	text-align: center;
}

.scroll-down-indicator.hidden {
	opacity: 0;
	pointer-events: none;
}

.scroll-down-indicator span {
	display: block;
	font-size: 0.8rem;
	letter-spacing: 1px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
	margin-bottom: 15px;
}

.scroll-down-indicator .long-arrow {
	display: none;
}

.scroll-down-indicator::after {
	content: '';
	display: block;
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 1.5px;
	height: 70px;
	background-color: white;
	transform-origin: top;
	animation: draw-line 2.5s infinite ease-out;
}

@keyframes draw-line {
	0% {
		transform: scaleY(0) translateX(-50%);
		opacity: 0;
	}

	50% {
		transform: scaleY(1) translateX(-50%);
		opacity: 1;
	}

	100% {
		transform: scaleY(1) translateX(-50%);
		opacity: 0;
	}
}

/* 新增專業動畫效果 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulseGlow {

	0%,
	100% {
		box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 169, 97, 0.4);
		opacity: 1;
	}

	50% {
		box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 0 45px rgba(201, 169, 97, 0.6);
		opacity: 0.9;
	}
}

#trust-badge-section {
	background-color: var(--color-background-light);
}

.trust-badge-item {
	text-align: center;
	font-weight: 500;
	color: var(--color-text);
}

.trust-badge-item i {
	color: var(--color-primary-gold);
	margin-right: 0.5rem;
}

/* --- Index.php 核心樣式 --- */
section {
	padding: var(--spacing-xl) var(--spacing-md);
	position: relative;
}

.section__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	position: relative;
}

.section__eyebrow {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--accent-gold);
	margin-bottom: var(--spacing-md);
	position: relative;
	padding-left: 2rem;
}

.section__eyebrow::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.2rem;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
	border-radius: 2px;
}

.section__title {
	font-size: clamp(2rem, 3vw, 2.6rem);
	line-height: 1.4;
	margin-bottom: 1rem;
}

.section__lead {
	max-width: 720px;
	font-size: 1.05rem;
	line-height: 1.9;
	color: var(--text-secondary);
	margin-bottom: 3rem;
}

.grid {
	display: grid;
	gap: 2rem;
}

.grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

/* 按鈕樣式 */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-xs);
	border-radius: 50px;
	padding: 1rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: var(--transition-smooth);
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
	min-width: 180px;
	cursor: pointer;
}

.btn--primary {
	background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
	color: var(--primary-dark);
	border-color: var(--accent-gold);
	box-shadow: var(--shadow-medium);
}

.btn--primary:hover {
	background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
	transform: translateY(-3px);
	box-shadow: var(--shadow-strong);
	color: var(--primary-dark);
}

.btn--ghost {
	background: rgba(255, 255, 255, 0.1);
	color: var(--neutral-white);
	border-color: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-3px);
	box-shadow: var(--shadow-medium);
	color: var(--neutral-white);
}

.hero__actions {
	display: flex;
	justify-content: center;
	gap: var(--spacing-md);
	flex-wrap: wrap;
	margin-top: var(--spacing-lg);
}

/* --- 策展人介紹區域優化 --- */
.curator-card {
	display: grid;
	grid-template-columns: 0.618fr 1fr;
	/* 黃金比例 */
	gap: 2rem;
	align-items: center;
}

.curator-card__image {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	max-width: 80%;
	/* 縮小圖片寬度 */
	margin: 0 auto;
	/* 居中顯示 */
}

.curator-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(15%);
	transition: transform 0.6s ease;
}

.curator-card__image::after {
	content: "";
	position: absolute;
	inset: 16px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	mix-blend-mode: screen;
}

.curator-card__image:hover img {
	transform: scale(1.05);
}

.curator-card__content {
	padding: var(--spacing-md) 0;
}

.curator-card__content h3 {
	font-size: 1.8rem;
	margin-bottom: 1.25rem;
}

.curator-card__content p {
	line-height: 1.9;
	color: var(--text-secondary);
}

.curator-card__quote {
	margin-top: 1.75rem;
	padding-left: 2rem;
	border-left: 2px solid rgba(26, 42, 47, 0.3);
	font-style: italic;
	color: #2e4449;
}

/* --- 旅程卡片重新設計 --- */
.journeys {
	padding: 6rem 1.5rem;
}

.journey-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.journey-card {
	border-radius: 28px;
	overflow: hidden;
	background-color: #0f191c;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 40px rgba(26, 42, 47, 0.12);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 28px 55px rgba(26, 42, 47, 0.18);
}

.journey-card img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.journey-card-content {
	flex: 1;
	padding: 2rem;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.journey-card-content h3 {
	font-size: 2rem;
	margin: 0;
	color: #ffffff;
	/* 改為白色 */
}

.journey-card-content p {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.88);
}

/* --- 核心理念區域優化 --- */
.pillars {
	background-color: var(--brand-muted);
	border-radius: 32px;
	padding: 4rem;
}

.pillars .section__eyebrow {
	text-align: center;
	margin-bottom: var(--spacing-md);
}

.pillars .section__title {
	text-align: center;
	color: var(--primary-medium);
	font-size: clamp(2rem, 3vw, 2.8rem);
	margin-bottom: var(--spacing-xl);
	position: relative;
	z-index: 1;
}

.pillar-card {
	padding: 2.5rem 2rem;
	background-color: #ffffff;
	border-radius: 28px;
	border: 1px solid rgba(26, 42, 47, 0.05);
	box-shadow: 0 18px 35px rgba(26, 42, 47, 0.08);
	transition: var(--transition);
}

.pillar-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 28px 45px rgba(26, 42, 47, 0.12);
}

.pillar-card__eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.5em;
	color: rgba(26, 42, 47, 0.55);
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.pillar-card h4 {
	font-size: 1.6rem;
	margin-bottom: 0.75rem;
}

.pillar-card p {
	color: var(--text-secondary);
	line-height: 1.8;
}

/* --- 專欄區域優化 --- */
.column-teaser {
	display: grid;
	grid-template-columns: 1fr 0.8fr;
	gap: var(--spacing-xl);
	align-items: center;
	padding: var(--spacing-xl);
	border-radius: var(--border-radius-large);
	background: linear-gradient(135deg,
			rgba(10, 20, 25, 0.95) 0%,
			rgba(26, 42, 47, 0.9) 50%,
			rgba(10, 20, 25, 0.95) 100%);
	color: var(--neutral-white);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.2);
}

.column-teaser__subtitle {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--accent-gold-light);
	margin-bottom: var(--spacing-md);
	display: inline-block;
}

.column-teaser__title {
	font-size: clamp(2.2rem, 3.5vw, 3rem);
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	line-height: 1.3;
	color: var(--neutral-white);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.column-teaser__excerpt {
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	margin-bottom: var(--spacing-lg);
}

.column-teaser__figure {
	border-radius: var(--border-radius-medium);
	overflow: hidden;
	position: relative;
	aspect-ratio: 4/3;
	box-shadow: var(--shadow-medium);
}

.column-teaser__figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-smooth);
}

.column-teaser:hover .column-teaser__figure img {
	transform: scale(1.05);
}

/* --- 【精選目的地 (Nagoya-Hokuriku) 】 --- */
.destinations-section {
	padding: 80px 0;
	position: relative;
}

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

.dest-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 24px;
	align-items: start;
}

.dest-map {
	grid-row: 1 / 3;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.2);
	background: #0a0a0a;
}

.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(--accent-gold);
	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(--accent-gold);
	margin-bottom: 12px;
	padding-left: 4px;
	letter-spacing: 1px;
}

.dest-group-title span {
	color: #999;
	font-weight: 300;
	font-size: 0.75rem;
}

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

.dest-card {
	position: relative;
	height: 140px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid transparent;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 8px;
	padding: 1px;
	background: linear-gradient(135deg, transparent, var(--accent-gold), 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 0.4s;
}

.dest-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-strong);
}

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

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

.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 0.4s;
}

.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: #fff;
	margin-bottom: 2px;
	transition: color 0.2s;
}

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

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

@media (max-width: 768px) {
	.dest-layout {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 24px;
	}

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

	.dest-group {
		order: 2;
	}

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

	.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;
	}
}

/* --- 響應式設計 --- */
@media (max-width: 1200px) {
	.curator-card {
		grid-template-columns: 1fr;
		text-align: center;
		gap: var(--spacing-lg);
		max-width: 900px;
		margin: 0 auto;
	}

	.column-teaser {
		grid-template-columns: 1fr;
		text-align: center;
		gap: var(--spacing-lg);
	}

	.column-teaser__figure {
		order: -1;
		max-width: 500px;
		margin: 0 auto;
	}
}

@media (max-width: 900px) {

	/* 手機版完全去除外框及容器限制，為版面創造更多空間 */
	.pillars {
		background: transparent;
		border: none;
		padding: 0;
		margin: 0;
		border-radius: 0;
		width: 100vw;
		position: relative;
		left: 50%;
		transform: translateX(-50%);
	}

	.pillars .section__inner {
		padding: 0;
		max-width: 100vw;
		width: 100vw;
		margin: 0;
	}

	.pillars .section__eyebrow,
	.pillars .section__title {
		text-align: center;
		padding: 0 var(--spacing-md);
		margin-bottom: var(--spacing-lg);
		max-width: 100vw;
	}

	.pillars .section__title {
		font-size: 1.8rem;
		margin-bottom: var(--spacing-xl);
	}

	.grid--three {
		display: flex !important;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: var(--spacing-lg);
		padding: 0;
		margin: 0;
		scrollbar-width: none;
		width: 100vw;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
	}

	.grid--three::-webkit-scrollbar {
		display: none;
	}

	.grid--three .pillar-card {
		flex: 0 0 300px;
		scroll-snap-align: center;
		background: var(--neutral-white);
		border: 1px solid rgba(212, 175, 55, 0.12);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
		border-radius: var(--border-radius-medium);
		aspect-ratio: 1;
		height: 300px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: center;
		padding: 1rem;
		transition: var(--transition-smooth);
		margin: 0;
	}

	.grid--three .pillar-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
		border-color: var(--accent-gold);
	}

	.grid--three .pillar-card__eyebrow {
		font-size: 0.75rem;
		letter-spacing: 0.5em;
		color: rgba(26, 42, 47, 0.55);
		text-transform: uppercase;
		margin-bottom: 1.5rem;
	}

	.grid--three .pillar-card h4 {
		font-size: 1.6rem;
		margin-bottom: 0.75rem;
	}

	.grid--three .pillar-card p {
		color: var(--text-secondary);
		line-height: 1.8;
	}

	.journey-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem;
	}
}

@media (max-width: 900px) {
	/* 手機版3卡片保持輪播,不改回grid */
	/* 此處意圖留空,保持前面900px的flex輪播設定 */
}

/* 平板尺寸優化 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

	/* 策展人區塊平板版 - 寬度最大化 */
	.curator-card {
		grid-template-columns: 1fr;
		/* 改為單欄 */
		gap: 2.5rem;
		padding: 3rem 1.5rem;
	}

	.curator-card__content {
		order: 1;
		text-align: center;
	}

	.curator-card__image {
		order: 2;
		max-width: 60%;
		/* 平板版圖片 60% 寬 */
		margin: 0 auto;
		aspect-ratio: 4/3;
	}

	.curator-card__content h3 {
		font-size: clamp(1.6rem, 2.5vw, 1.9rem);
	}

	.curator-card__content p {
		font-size: clamp(1rem, 1.8vw, 1.1rem);
		line-height: 1.8;
		text-align: center;
	}

	.curator-card__quote {
		font-size: clamp(0.95rem, 1.7vw, 1.05rem);
		text-align: center;
	}
}

@media (max-width: 768px) {

	/* 手機版 section 間距優化 */
	section {
		padding: 2.5rem 1rem;
		/* 減少 section 間距 */
	}

	/* 特定 section 間距優化 */
	#curator,
	#curated-journeys,
	#pillars {
		padding: 2rem 0 !important;
		/* 進一步縮小 */
	}

	/* Banner 區塊間距 */
	#ichi-go-ichi-e-banner {
		padding: 2rem 1rem !important;
	}

	/* 信任徽章區塊 */
	#trust-badge-section {
		padding: 1.5rem 0 !important;
	}

	.hero {
		padding: 18vh 1.5rem 5rem;
	}

	.hero__subtitle {
		font-size: 1rem;
	}

	/* Hero 區域手機版優化 */
	#hero-section {
		min-height: 100vh;
		padding-top: 80px;
	}

	/* 手機版 Hero 內容樣式 - 統一金色 #C5A065 */
	.hero-eyebrow {
		font-size: 0.75rem;
		letter-spacing: 4px;
		padding: 10px 20px;
		margin-bottom: 20px;
	}

	#hero-section h1 {
		font-size: clamp(2.2rem, 10vw, 3.5rem) !important;
		letter-spacing: 2px;
		margin-bottom: 20px;
	}

	#hero-section h1 em {
		font-size: 1.15em;
		display: block;
		margin-top: 0.1em;
		margin-left: 0;
	}

	/* 手機版最終定案樣式 */
	.hero-eyebrow-new {
		font-size: 12px;
		letter-spacing: 2px;
		margin-bottom: 18px;
	}

	.hero-main-title {
		font-family: 'Noto Serif TC', serif;
		/* 確保手機版也使用思源宋體 */
		font-size: 32px;
		/* 從 36px 縮小到 32px */
		margin-bottom: 16px;
		letter-spacing: 0.02em;
		/* 從 0.03em 縮小字距 */
		white-space: nowrap;
		/* 強制不換行 - 確保八字同一行 */
	}

	.hero-divider {
		width: 50px;
		margin: 0 auto 16px auto;
	}

	.hero-subtitle-new {
		font-size: 14px;
		/* 從 15px 微調 */
		letter-spacing: 0.8px;
		/* 縮小字距 */
		margin-bottom: 28px;
		padding: 0 15px;
		/* 增加左右內距 */
	}

	.hero-cta-new {
		padding: 14px 40px;
		font-size: 15px;
		letter-spacing: 1.5px;
	}

	.hero-subtitle {
		font-size: 1rem;
		line-height: 1.7;
		padding: 0 1rem;
		margin-bottom: 30px;
	}

	.hero-cta {
		padding: 14px 36px;
		font-size: 0.85rem;
		letter-spacing: 2px;
	}

	.scroll-indicator {
		bottom: 25px;
	}

	/* 一期一會 Hero 手機版 */
	#ichi-go-ichi-e-hero {
		min-height: 100vh;
		padding: 5rem 1.5rem !important;
	}

	#ichi-go-ichi-e-hero h2 {
		font-size: clamp(2rem, 8vw, 3rem) !important;
		margin-bottom: 1.5rem !important;
	}

	#ichi-go-ichi-e-hero p {
		font-size: clamp(1.1rem, 4vw, 1.4rem) !important;
	}

	#ichi-go-ichi-e-hero a {
		padding: 1rem 2rem !important;
		font-size: 1rem !important;
		width: 90%;
		max-width: 400px;
	}

	.grid--two,
	.grid--three {
		grid-template-columns: 1fr;
	}

	.journeys {
		padding: 4.5rem 1.25rem;
	}

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

	.pillar-card {
		padding: 1.5rem 1rem;
	}

	.legacy-sections section.section-padding {
		padding: 3.5rem 0;
	}

	.testimonials {
		padding: 5rem 1.25rem;
	}

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

	.section__inner {
		padding: 0;
		max-width: 100%;
		width: 100%;
		margin: 0;
		position: relative;
	}

	/* 解決左右邊空白過大的問題 */
	#curated-journeys .section__inner {
		max-width: 100vw;
		width: 100vw;
		padding: 0;
		margin: 0;
	}

	/* 策展人區塊下方無間距 */
	#curator {
		padding-bottom: 0 !important;
		margin-bottom: 0 !important;
	}

	/* Banner下方無間距 */
	#curator .curator-card__image {
		margin-bottom: 0 !important;
	}

	.journeys h2 {
		padding: 0 var(--spacing-md);
		margin-bottom: 1.5rem;
		/* 減少標題下方間距 */
		font-size: clamp(1.5rem, 4vw, 1.8rem);
	}

	/* 確保旅程網格手機版橫排滑動 */
	.journey-grid {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		/* Firefox */
		gap: 1rem;
		padding: 0 var(--spacing-md) 1rem var(--spacing-md);
	}

	/* 隱藏滾動條 */
	.journey-grid::-webkit-scrollbar {
		display: none;
	}

	/* 手機版卡片優化 - 固定寬度以便橫排滑動 */
	.journey-card {
		flex: 0 0 85%;
		/* 卡片佔據85%寬度，可滑動查看下一張 */
		max-width: 340px;
		/* 最大寬度限制 */
		scroll-snap-align: center;
		scroll-snap-stop: always;
		border-radius: 16px;
	}

	.journey-card-content {
		padding: 1.25rem;
		/* 減少內邊距 */
		gap: 0.5rem;
		/* 減少內容間距 */
	}

	.journey-card-content h3 {
		font-size: clamp(1.3rem, 3.5vw, 1.5rem);
		/* 縮小字體 */
	}

	.journey-card-content p {
		font-size: clamp(0.9rem, 2.5vw, 1rem);
		/* 縮小字體 */
		line-height: 1.6;
		/* 減少行高 */
	}

	/* 手機版策展人卡片 - 寬度最大化 */
	.curator-card {
		display: flex;
		flex-direction: column;
		text-align: center;
		gap: 1rem;
		padding: 1rem 0;
		margin: 0;
		min-height: auto;
		/* 移除 100vh，避免空白 */
		justify-content: flex-start;
		width: 100%;
		position: relative;
	}

	/* 文字區域在上 */
	.curator-card__content {
		order: 1;
		padding: 0 var(--spacing-md);
		/* 內容保留適當邊距 */
	}

	/* 圖片區域在下 - 全寬顯示 */
	.curator-card__image {
		order: 2;
		max-width: 100%;
		/* 全寬顯示 */
		width: 100%;
		margin: 0;
		aspect-ratio: 4/3;
		/* 手機版使用 4:3 比例 */
		border-radius: 0;
		/* 移除圓角，貼邊顯示 */
	}

	.curator-card__image img {
		border-radius: 0;
		/* 圖片也移除圓角 */
	}

	.curator-card__content h3 {
		font-size: clamp(1.3rem, 4vw, 1.6rem);
		margin-bottom: var(--spacing-sm);
		line-height: 1.3;
	}

	.curator-card__content p {
		font-size: clamp(0.9rem, 2.5vw, 1rem);
		line-height: 1.7;
		margin-bottom: var(--spacing-sm);
		text-align: left;
		/* 改為左對齊，更易閱讀 */
	}

	.curator-card__quote {
		font-size: clamp(0.85rem, 2.3vw, 0.95rem);
		padding: var(--spacing-sm) var(--spacing-md);
		text-align: left;
		/* 引言也左對齊 */
		margin-top: var(--spacing-md);
		font-style: italic;
	}

	/* section__eyebrow 標題在手機版優化 */
	.curator-card .section__eyebrow {
		font-size: clamp(0.75rem, 2vw, 0.9rem) !important;
		letter-spacing: 0.2em !important;
		margin-bottom: var(--spacing-sm);
	}

	/* 手機版 Why HUITA 區塊優化 */
	.pillars {
		padding: 2rem 0;
		/* 減少 padding */
		margin: 0;
		width: 100%;
		max-width: 100%;
		position: relative;
		background: transparent;
		border: none;
		border-radius: 0;
	}

	.pillars .section__eyebrow {
		padding: 0 var(--spacing-md);
		margin-bottom: 0.75rem;
		/* 減少下方間距 */
		font-size: clamp(0.7rem, 1.8vw, 0.8rem);
	}

	.pillars .section__title {
		padding: 0 var(--spacing-md);
		margin-bottom: 1.5rem;
		/* 減少下方間距 */
		font-size: clamp(1.4rem, 4vw, 1.7rem);
		line-height: 1.4;
	}

	.pillar-card {
		padding: 1.25rem 1rem;
		/* 減小內邊距 */
		margin: 0 var(--spacing-sm) 1rem;
		/* 減小底部間距 */
		max-width: none;
		border-radius: 12px;
		/* 減小圓角 */
	}

	.pillar-card__eyebrow {
		font-size: clamp(0.65rem, 1.5vw, 0.75rem);
		margin-bottom: 0.75rem;
		/* 減少間距 */
	}

	.pillar-card h4 {
		font-size: clamp(1.15rem, 3vw, 1.35rem);
		margin-bottom: 0.5rem;
		/* 減少間距 */
		line-height: 1.3;
	}

	.pillar-card p {
		font-size: clamp(0.88rem, 2.3vw, 0.95rem);
		line-height: 1.6;
		/* 減小行高 */
	}

	.column-teaser {
		padding: var(--spacing-lg) var(--spacing-md);
		margin: 0;
		display: flex;
		flex-direction: column;
		text-align: center;
		gap: var(--spacing-lg);
		min-height: 100vh;
		justify-content: center;
		width: 100%;
		position: relative;
	}

	.column-teaser__figure {
		order: -1;
		max-width: 450px;
		margin: 0 auto;
		aspect-ratio: 3/2;
		border-radius: var(--border-radius-medium);
		overflow: hidden;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	}

	.column-teaser__figure img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: var(--transition-smooth);
		filter: brightness(110%) contrast(105%);
	}

	.column-teaser__subtitle {
		font-size: 0.9rem;
		margin-bottom: var(--spacing-sm);
		font-weight: 500;
		letter-spacing: 0.2em;
		color: var(--accent-gold-light);
		text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	}

	.column-teaser__title {
		font-size: 1.9rem;
		margin-bottom: var(--spacing-md);
		line-height: 1.3;
		font-weight: 700;
		color: var(--primary-dark);
		text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	}

	.column-teaser__excerpt {
		font-size: 1.05rem;
		line-height: 1.8;
		margin-bottom: var(--spacing-lg);
		text-align: center;
		color: var(--text-primary);
		max-width: 85%;
		margin-left: auto;
		margin-right: auto;
		font-weight: 400;
	}

	.hero__actions {
		justify-content: center;
		margin-top: var(--spacing-md);
		gap: var(--spacing-md);
		flex-wrap: wrap;
	}

	.hero__actions .btn {
		padding: 1rem 2rem;
		font-size: 0.95rem;
		min-width: 150px;
		font-weight: 600;
		border-radius: 50px;
		transition: var(--transition-smooth);
	}

	.hero__actions .btn--primary {
		background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
		color: var(--primary-dark);
		box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
	}

	.hero__actions .btn--ghost {
		background: rgba(255, 255, 255, 0.9);
		color: var(--primary-dark);
		border: 2px solid var(--accent-gold);
		backdrop-filter: blur(10px);
	}
}

/* --- 手機版見證區塊優化 (更新版) --- */
@media (max-width: 768px) {

	/* 1. 設定橫向滑動容器 */
	#testimonials-section .mobile-scroll-row {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		gap: 1rem;
		padding-bottom: 1.5rem;
		scrollbar-width: none;
	}

	#testimonials-section .mobile-scroll-row::-webkit-scrollbar {
		display: none;
	}

	/* 2. 設定卡片寬度與吸附 */
	#testimonials-section .mobile-scroll-row>div {
		flex: 0 0 85% !important;
		max-width: 85% !important;
		scroll-snap-align: center;
		margin-bottom: 0 !important;
	}

	/* 3. 第一張卡片：圖片高度微調 (稍微縮小一點以節省空間) */
	#testimonials-section .testimonial-card .row.g-0 {
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	#testimonials-section .testimonial-image {
		max-height: 180px !important;
		/* 從 200px 改為 180px，讓出更多空間給文字 */
		min-height: auto !important;
		width: 100%;
	}

	/* 4. 統一卡片高度 */
	#testimonials-section .testimonial-card {
		height: 100%;
		min-height: 420px;
		/* 固定高度 */
		display: flex;
		flex-direction: column;
		/* 確保內容太多時不會撐開卡片，而是隱藏 (配合下方的 line-clamp) */
		overflow: hidden;
	}

	/* 5. 【關鍵修改】限制引言文字行數 */
	#testimonials-section .testimonial-card blockquote {
		display: -webkit-box;
		/* 啟用彈性盒模型截斷 */
		-webkit-line-clamp: 5;
		/* 限制只顯示 5 行文字 (您可以依需求改成 4 或 6) */
		-webkit-box-orient: vertical;
		overflow: hidden;
		/* 超出隱藏 */
		text-overflow: ellipsis;
		/* 超出顯示 ... */
		margin-bottom: 1rem !important;
	}

	/* 6. 微調第一張卡片的內距 (Padding)，因為它有圖片，空間比較擠 */
	#testimonials-section .col-12.col-md-8 .p-4 {
		padding: 1.25rem !important;
		/* 縮小內距 */
	}
}

@media (max-width: 520px) {
	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.btn {
		width: 100%;
	}

	.column-teaser {
		padding: 2.5rem;
	}

	/* 確保在小屏幕上旅程網格正確顯示 */
	.journey-grid {
		padding: 0 var(--spacing-sm);
	}
}

/* --- 主題卡片通用樣式 --- */
.theme-card {
	position: relative;
	display: block;
	overflow: hidden;
	text-decoration: none;
	color: white;
	background-color: #333;
}

.theme-card:hover .theme-card__img {
	transform: scale(1.05);
}

.theme-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.theme-card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 70%);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	height: 100%;
}

.theme-card__title {
	font-family: var(--font-serif);
	font-weight: 700;
	color: white;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
	margin-bottom: 0.25rem;
}

.theme-card__subtitle {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 400;
	line-height: 1.5;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	margin-bottom: 0;
}

.theme-card__cta {
	border: 1px solid white;
	color: white;
	background-color: transparent;
	border-radius: 50px;
	padding: 0.25rem 0.75rem;
	font-size: 0.8rem;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.theme-card__cta:hover {
	background-color: white;
	color: #333;
}

.card-vertical-large {
	height: 480px;
}

.card-horizontal-large {
	height: 492px;
}

.card-horizontal-small {
	height: 234px;
}

/* --- 日本各區精選樣式 --- */
.card-masonry-long {
	height: 400px;
}

.card-masonry-square {
	height: 300px;
}

/* --- 海島館樣式 --- */
.card-island-large {
	height: 524px;
}

.card-island-small {
	height: 250px;
}

.island-list-item {
	background-color: var(--color-background-light);
	transition: background-color 0.3s ease;
}

.island-list-item:hover {
	background-color: #e9ecef;
}

.island-list-item__img {
	width: 120px;
	height: 90px;
	object-fit: cover;
}

/* --- 企業旅遊樣式 --- */
.card-tag {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	background: linear-gradient(45deg, var(--color-primary-gold), var(--color-secondary-gold));
	color: white;
	padding: 0.3rem 0.8rem;
	font-size: 0.85rem;
	font-weight: 500;
	z-index: 10;
}

/* --- 客戶見證 --- */
#testimonials-section {
	background-color: white;
	position: relative;
}

.testimonial-card {
	background-color: white;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	height: 100%;
}

.testimonial-card img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card .customer-name {
	font-family: var(--font-serif);
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.25rem;
}

.testimonial-card .tour-info {
	font-size: 0.9rem;
	color: #6c757d;
}

.testimonial-card .fa-quote-left {
	font-size: 2rem;
	color: var(--color-primary-gold);
	opacity: 0.3;
	margin-bottom: 1rem;
}

/* --- 最終CTA --- */
#final-cta-section {
	background-color: var(--color-dark-bg);
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/bg.webp');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: white;
	text-align: center;
}

#final-cta-section h2 {
	color: white;
}

#final-cta-section p {
	color: rgba(255, 255, 255, 0.8);
}

.qr-code-icon {
	font-size: 1.5rem;
	color: white;
	cursor: pointer;
	margin-left: 1rem;
	transition: color 0.3s ease;
}

.qr-code-icon:hover {
	color: var(--color-secondary-gold);
}

.modal-body img {
	max-width: 100%;
	height: auto;
}

/* --- [新增] 手機版 Banner 輪播滿版樣式 --- */
.hero-carousel-mobile-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	/* 滿版尺寸 */
	z-index: 1;
	/* 確保在內容底下 */
}

#mobileHeroCarousel .carousel-inner,
#mobileHeroCarousel .carousel-item {
	height: 100vh;
	/* 確保輪播圖片填滿整個視窗高度 */
}

#mobileHeroCarousel .carousel-item img {
	width: 100vw;
	/* 寬度滿版 */
	height: 100vh;
	/* 高度滿版 */
	object-fit: cover;
	object-position: center;
}

#mobileHeroCarousel .carousel-indicators {
	display: none;
	/* 隱藏輪播指示器圓點，保持簡潔視覺效果 */
	margin-bottom: 4rem;
	/* 往下移，避免跟 Scroll Indicator 重疊 */
	z-index: 3;
	/* 確保指示器在最上層 */
}

#mobileHeroCarousel .carousel-indicators [data-bs-target] {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

/* --- 【響應式設計 RWD】 --- */
@media (max-width: 991.98px) and (min-width: 768px) {

	/* 平板版：標題置中顯示，符合黃金比例 */
	#hero-section .container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-top: 20vh !important;
		/* 黃金比例：從上方約 20% 開始 */
	}

	.hero-main-content {
		text-align: center !important;
		flex-basis: auto;
		align-items: center !important;
		display: flex;
		flex-direction: column;
		max-width: 90%;
	}

	.hero-main-content span,
	.hero-main-content h1,
	.hero-main-content p,
	.hero-main-content a {
		text-align: center !important;
		align-self: center !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.quick-links-bar {
		display: none;
	}

	.wave-up,
	.wave-down {
		transform: translateY(0);
	}

	/* 平板版最終定案樣式 */
	.hero-main-title {
		font-size: 48px;
	}

	.hero-subtitle-new {
		font-size: 16px;
	}

	/* 平板版【立即探索】按鈕位置調整 - 黃金比例 */
	#hero-content-1 a[href="/ichi-go-ichi-e/index.php"] {
		margin-top: 2.5rem !important;
		margin-bottom: 1rem !important;
	}
}

@media (max-width: 767.98px) {
	.scroll-down-indicator {
		display: block;
	}

	body {
		padding-bottom: 0;
	}

	.section-padding {
		padding: 3.5rem 0;
	}

	.mobile-text-up {
		/* 原本是 top: 50%，改為 40% 就會往上移 */
		/* 數字越小越上面，您可以試試 35% 或 40% */
		top: 40% !important;
	}

	/* [修改] 手機版 banner 完全滿版填滿螢幕，消除與 header 的空隙 */
	#hero-section {
		height: 100vh;
		min-height: initial;
		background-image: none !important;
		padding: 0 !important;
		/* 移除所有 padding */
		margin: 0 !important;
		/* 移除所有 margin */
		width: 100vw !important;
		/* 強制滿版寬度 */
		left: 50% !important;
		/* 居中定位 */
		transform: translateX(-50%) !important;
		/* 完美居中 */
	}

	/* [修改] 手機版輪播容器滿版覆蓋 */
	.hero-carousel-mobile-wrapper {
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		z-index: 1;
	}

	/* [修改] 調整 container 位置，黃金比例置中 */
	#hero-section .container {
		background: rgba(0, 0, 0, 0.4);
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100vw !important;
		max-width: 100vw !important;
		/* 滿版寬度 */
		padding: 0 1.5rem !important;
		/* 左右邊距 */
		display: flex;
		flex-direction: column;
		justify-content: center;
		/* 垂直置中 */
		align-items: center;
		/* 水平置中 */
		padding-top: 30vh !important;
		/* 黃金比例：稍微偏上 */
	}

	/* 手機版：所有標題置中顯示 */
	.hero-main-content {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		text-align: center !important;
		max-width: 95%;
	}

	.hero-main-content span,
	.hero-main-content h1,
	.hero-main-content p,
	.hero-main-content a {
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}

	/* 手機版【立即探索】按鈕位置 - 黃金比例 */
	#hero-content-1 a[href="/ichi-go-ichi-e/index.php"] {
		margin-top: 2rem !important;
		margin-bottom: 1rem !important;
	}

	.section-title {
		font-size: 28px;
	}

	.section-subtitle {
		font-size: 14px;
		margin-bottom: 2rem;
	}

	.theme-card__overlay {
		padding: 1rem;
	}

	.theme-card__cta {
		display: none;
	}

	/* 手機版卡片高度 */
	.card-vertical-large,
	.card-horizontal-large,
	.card-masonry-long,
	.card-masonry-square {
		height: 170px;
	}

	.card-horizontal-small {
		height: 160px;
	}

	.card-island-large {
		height: 350px;
	}

	.card-island-small {
		height: 160px;
	}

	.card-corp-large-mobile {
		height: 400px;
	}

	.card-corp-medium-mobile {
		height: 320px;
	}

	.card-corp-small-mobile {
		height: 240px;
	}

	.card-mobile-square {
		aspect-ratio: 1 / 1;
		height: auto !important;
	}

	/* 手機版信任徽章樣式 - 調整圖示位置讓文字更好在一行顯示 */
	.trust-badge-item {
		text-align: left;
		font-weight: 500;
		color: var(--color-text);
		font-size: 0.85rem;
		line-height: 1.3;
		padding: 0.25rem 0.1rem;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.trust-badge-item i {
		color: var(--color-primary-gold);
		margin-right: 0.5rem;
		font-size: 0.9rem;
		flex-shrink: 0;
		width: 14px;
		text-align: center;
	}

	#testimonials-section .row.testimonial-track {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 1rem;
		scrollbar-width: none;
	}

	#testimonials-section .row.testimonial-track::-webkit-scrollbar {
		display: none;
	}

	#testimonials-section .col-lg-4 {
		flex: 0 0 85%;
		max-width: 85%;
		scroll-snap-align: center;
	}
}

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

/* --- 強制修正：手機版標題顯示控制 --- */
@media (max-width: 991.98px) {

	/* 預設隱藏第二標題 */
	#hero-content-2 {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		height: 0 !important;
		overflow: hidden !important;
		position: absolute !important;
		left: -9999px !important;
	}

	/* 確保第一標題始終可見 */
	#hero-content-1 {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		height: auto !important;
		position: relative !important;
		left: auto !important;
	}
}

/* ═══════════════════════════════════════════════════════════
           北陸深度特輯 - 高端視覺設計系統
        ═══════════════════════════════════════════════════════════ */
.hokuriku-premium-section {
	position: relative;
	padding: 6rem 0;
	background: linear-gradient(180deg,
			#f8f6f3 0%,
			#fffef9 35%,
			#f5f3ee 100%);
	overflow: hidden;
}

/* 背景裝飾圖案 */
.hokuriku-bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 80%, rgba(120, 53, 15, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

/* 標題樣式 */
.hokuriku-eyebrow {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--accent-gold);
	margin-bottom: 1rem;
	position: relative;
	padding: 0.5rem 1.5rem;
	border: 1px solid rgba(212, 175, 55, 0.3);
	background: rgba(212, 175, 55, 0.05);
}

.hokuriku-title {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 700;
	color: #2c1810;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.hokuriku-lead {
	font-size: 1.05rem;
	line-height: 1.9;
	color: #5a5a5a;
	max-width: 720px;
	margin: 0 auto;
}

/* 主視覺Hero卡片 */
.hokuriku-hero-card {
	display: block;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	height: 480px;
	text-decoration: none;
	box-shadow:
		0 25px 50px rgba(44, 24, 16, 0.15),
		0 10px 25px rgba(44, 24, 16, 0.1);
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hokuriku-hero-card:hover {
	transform: translateY(-8px) scale(1.01);
	box-shadow:
		0 35px 70px rgba(44, 24, 16, 0.2),
		0 15px 35px rgba(44, 24, 16, 0.15);
}

.hokuriku-hero-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center 30%;
	/* 調整圖片焦點位置 */
	transition: transform 0.7s ease;
}

.hokuriku-hero-card:hover .hokuriku-hero-img {
	transform: scale(1.08);
}

.hokuriku-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top,
			rgba(15, 10, 5, 0.95) 0%,
			rgba(15, 10, 5, 0.6) 40%,
			rgba(15, 10, 5, 0.2) 70%,
			transparent 100%);
	display: flex;
	align-items: flex-end;
	padding: 2.5rem;
}

.hokuriku-hero-content {
	color: #fff;
}

.hokuriku-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(212, 175, 55, 0.15);
	border: 1px solid rgba(212, 175, 55, 0.4);
	color: #d4af37;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.4rem 1rem;
	border-radius: 50px;
	margin-bottom: 1rem;
	backdrop-filter: blur(10px);
}

.hokuriku-badge i {
	font-size: 0.7rem;
}

.hokuriku-hero-title {
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
	line-height: 1.3;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hokuriku-hero-desc {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.hokuriku-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #d4af37;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
}

.hokuriku-cta-btn i {
	transition: transform 0.3s ease;
}

.hokuriku-hero-card:hover .hokuriku-cta-btn {
	color: #eacd69;
}

.hokuriku-hero-card:hover .hokuriku-cta-btn i {
	transform: translateX(5px);
}

/* 功能卡片 */
.hokuriku-feature-card {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: 16px;
	text-decoration: none;
	border: 1px solid rgba(212, 175, 55, 0.12);
	box-shadow:
		0 4px 15px rgba(44, 24, 16, 0.04),
		0 1px 3px rgba(44, 24, 16, 0.06);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	height: 100%;
	min-height: 140px;
}

.hokuriku-feature-card:hover {
	transform: translateY(-5px) translateX(5px);
	box-shadow:
		0 15px 35px rgba(44, 24, 16, 0.1),
		0 5px 15px rgba(44, 24, 16, 0.08);
	border-color: rgba(212, 175, 55, 0.3);
	background: linear-gradient(135deg, #fff 0%, #fffef8 100%);
}

.hokuriku-feature-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(234, 205, 105, 0.15) 100%);
	border-radius: 14px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.hokuriku-feature-icon i {
	font-size: 1.25rem;
	color: #b89530;
	transition: all 0.3s ease;
}

.hokuriku-feature-card:hover .hokuriku-feature-icon {
	background: linear-gradient(135deg, #d4af37 0%, #eacd69 100%);
	transform: scale(1.05);
}

.hokuriku-feature-card:hover .hokuriku-feature-icon i {
	color: #fff;
}

.hokuriku-feature-content {
	flex: 1;
}

.hokuriku-feature-content h4 {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-weight: 600;
	color: #2c1810;
	margin-bottom: 0.35rem;
	line-height: 1.4;
}

.hokuriku-feature-content p {
	font-size: 0.9rem;
	color: #6c6c6c;
	margin: 0;
	line-height: 1.5;
}

.hokuriku-feature-arrow {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(212, 175, 55, 0.08);
	border-radius: 50%;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.hokuriku-feature-arrow i {
	font-size: 0.8rem;
	color: #b89530;
	transition: all 0.3s ease;
}

.hokuriku-feature-card:hover .hokuriku-feature-arrow {
	background: #d4af37;
}

.hokuriku-feature-card:hover .hokuriku-feature-arrow i {
	color: #fff;
	transform: translateX(2px);
}

/* 主CTA按鈕 */
.hokuriku-main-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #2c1810 0%, #3d2518 100%);
	color: #d4af37;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	border-radius: 50px;
	text-decoration: none;
	border: 2px solid transparent;
	box-shadow: 0 8px 25px rgba(44, 24, 16, 0.2);
	transition: all 0.4s ease;
}

.hokuriku-main-cta:hover {
	background: linear-gradient(135deg, #d4af37 0%, #eacd69 100%);
	color: #2c1810;
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.hokuriku-main-cta i {
	transition: transform 0.3s ease;
}

.hokuriku-main-cta:hover i {
	transform: translateX(5px);
}

/* 北陸區塊響應式設計 */
@media (max-width: 991.98px) {
	.hokuriku-premium-section {
		padding: 4rem 0;
	}

	.hokuriku-hero-card {
		height: 380px;
	}

	.hokuriku-feature-card {
		min-height: auto;
		padding: 1.25rem;
	}

	.hokuriku-feature-icon {
		width: 48px;
		height: 48px;
	}

	.hokuriku-feature-icon i {
		font-size: 1.1rem;
	}
}

@media (max-width: 767.98px) {
	.hokuriku-premium-section {
		padding: 3rem 0;
	}

	.hokuriku-title {
		font-size: 1.75rem;
	}

	.hokuriku-lead {
		font-size: 0.95rem;
	}

	.hokuriku-hero-card {
		height: 320px;
		margin-bottom: 1rem;
	}

	.hokuriku-hero-overlay {
		padding: 1.5rem;
	}

	.hokuriku-hero-title {
		font-size: 1.35rem;
	}

	.hokuriku-hero-desc {
		font-size: 0.9rem;
	}

	.hokuriku-feature-card {
		min-height: 100px;
	}

	.hokuriku-main-cta {
		padding: 0.85rem 2rem;
		font-size: 0.95rem;
	}
}

/* 企業專區 (Premium Design) */
.corp-section-premium {
	background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
	border-top: 1px solid rgba(197, 160, 89, 0.2);
	position: relative;
	overflow: hidden;
	padding: 80px 0;
}

.corp-section-premium::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.05), transparent 40%);
	pointer-events: none;
}

.corp-content-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 2;
}

.corp-text {
	max-width: 650px;
}

.corp-label {
	display: block;
	color: var(--accent-gold);
	font-family: 'Lato', sans-serif;
	font-size: 0.9rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 15px;
	font-weight: 700;
}

.corp-title {
	color: #fff;
	font-family: 'Noto Serif TC', serif;
	font-size: 2.4rem;
	margin-bottom: 25px;
	font-weight: 700;
	line-height: 1.3;
}

.corp-desc {
	color: #ccc;
	font-size: 1.05rem;
	line-height: 1.8;
	font-weight: 300;
}

.btn-corp-premium {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	padding: 18px 45px;
	border: 1px solid var(--accent-gold);
	color: var(--accent-gold);
	text-decoration: none;
	font-family: 'Noto Serif TC', serif;
	font-size: 1.1rem;
	letter-spacing: 1px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.btn-corp-premium:hover {
	background: var(--accent-gold);
	color: #000;
	box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
	transform: translateY(-2px);
}

.btn-icon {
	transition: transform 0.3s ease;
}

.btn-corp-premium:hover .btn-icon {
	transform: translateX(5px);
}

@media (max-width: 991px) {
	.corp-content-wrapper {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}

	.corp-text {
		margin: 0 auto;
	}

	.corp-title {
		font-size: 2rem;
	}
}

/* ═══════════════════════════════════════════════════════ */
/* 設計總監級 CSS：雜誌級排版 - 輝達·獨家策展 (6大黃金標題) */
/* LUXURY BRAND STANDARD - 奢侈品牌等級細節優化 */
/* ═══════════════════════════════════════════════════════ */
/* 共用設定 */
.bg-light-gray {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f6f7 100%);
	position: relative;
}

/* 背景微妙紋理 */
#curator-collection::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(197, 160, 89, 0.03) 0%, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(197, 160, 89, 0.02) 0%, transparent 40%);
	pointer-events: none;
	z-index: 0;
}

#curator-collection .container {
	position: relative;
	z-index: 1;
}

.ls-2 {
	letter-spacing: 2px;
}

.text-gold {
	color: #C5A059;
}

/* 精緻標題裝飾 */
.curator-collection-header {
	position: relative;
}

.header-ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
}

.ornament-line {
	width: 80px;
	height: 1px;
	background: linear-gradient(90deg, transparent, #C5A059, transparent);
}

.separator-line-fancy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 1.5rem;
}

.line-left,
.line-right {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #C5A059);
}

.line-right {
	background: linear-gradient(90deg, #C5A059, transparent);
}

.line-center {
	width: 8px;
	height: 8px;
	background: #C5A059;
	transform: rotate(45deg);
	box-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
}

/* 卡片容器：隱藏溢出，製造放大效果 */
.card-curator {
	display: block;
	position: relative;
	border-radius: 12px;
	/* 優化圓角 */
	overflow: hidden;
	text-decoration: none;
	color: white;
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.08),
		0 2px 8px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	/* 內光效果 */
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 卡片邊緣微光效果 */
.card-curator::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 12px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(197, 160, 89, 0.3) 0%, transparent 50%, rgba(197, 160, 89, 0.1) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 10;
	pointer-events: none;
}

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

/* 高度設定 - 這是雜誌排版的關鍵 */
.card-large {
	height: 600px;
}

/* 左邊大圖 */
.card-medium {
	height: 290px;
}

/* 右上長條 */
.card-small {
	height: 290px;
}

/* 右下四格 */
/* 圖片與遮罩 - 精緻漸層 */
.card-img-wrap {
	width: 100%;
	height: 100%;
	position: relative;
}

.card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

.overlay-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
	transition: background 0.5s ease;
}

/* 頂部微妙漸層（Rim Light Effect）*/
.card-img-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 30%;
	background: linear-gradient(to bottom, rgba(197, 160, 89, 0.08) 0%, transparent 100%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.card-curator:hover .card-img-wrap::after {
	opacity: 1;
}

/* 互動效果 - 設計總監的靈魂 */
.card-curator:hover {
	transform: translateY(-8px);
	/* 卡片上浮 */
	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.15),
		0 10px 25px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(197, 160, 89, 0.2),
		/* 金色邊框暈染 */
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-curator:hover .bg-img {
	transform: scale(1.1);
	/* 圖片微放大 */
	filter: brightness(1.05) contrast(1.05);
	/* 微調亮度對比 */
}

.card-curator:hover .overlay-gradient {
	background: rgba(0, 0, 0, 0.6);
}

.card-curator:hover .gold-title-8,
.card-curator:hover .gold-title-8-sm {
	color: #E8C068;
	/* 更亮的金色 */
	transform: translateX(3px);
	/* 使用 transform 代替 padding */
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(232, 192, 104, 0.3);
	/* 金色光暈 */
}

/* 8字黃金標題樣式 - 電影片名級質感 */
.card-content,
.card-content-sm {
	position: absolute;
	bottom: 30px;
	left: 30px;
	z-index: 2;
	padding-right: 25px;
}

.gold-title-8 {
	font-family: "Noto Sans TC", sans-serif;
	/* 必須用質感黑體 */
	font-weight: 800;
	font-size: 2.1rem;
	line-height: 1.25;
	color: #ffffff;
	margin-bottom: 12px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	letter-spacing: 0.08em;
	/* 設計總監級的字距 */
	text-shadow:
		2px 2px 4px rgba(0, 0, 0, 0.6),
		0 0 20px rgba(0, 0, 0, 0.3),
		1px 1px 2px rgba(0, 0, 0, 0.8);
}

.gold-title-8-sm {
	font-family: "Noto Sans TC", sans-serif;
	font-weight: 700;
	font-size: 1.45rem;
	/* 微調大小 */
	line-height: 1.3;
	color: #ffffff;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	letter-spacing: 0.08em;
	text-shadow:
		1px 1px 3px rgba(0, 0, 0, 0.7),
		0 0 15px rgba(0, 0, 0, 0.2);
}

/* 副標籤與文字 - 金屬質感徽章 */
.badge-tag {
	background: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #B8935A 100%);
	color: #1a1a1a;
	padding: 4px 12px;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
	display: inline-block;
	font-weight: 700;
	border-radius: 3px;
	box-shadow:
		0 2px 8px rgba(197, 160, 89, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3),
		inset 0 -1px 0 rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

/* 金屬光澤動畫 */
.badge-tag::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;
}

.card-curator:hover .badge-tag::before {
	left: 100%;
}

.subtitle {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.05rem;
	margin-bottom: 18px;
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: 0.03em;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.btn-explore {
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(255, 255, 255, 0.9);
	border-bottom: 2px solid rgba(197, 160, 89, 0.6);
	padding-bottom: 3px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-explore i {
	transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-curator:hover .btn-explore {
	color: #E8C068;
	border-bottom-color: #E8C068;
	text-shadow: 0 0 10px rgba(232, 192, 104, 0.5);
	letter-spacing: 2px;
}

.card-curator:hover .btn-explore i {
	transform: translateX(5px);
}

/* 手機版適配 RWD - 設計總監的責任 */
@media (max-width: 991px) {

	.card-large,
	.card-medium,
	.card-small {
		height: 280px;
		/* 微調高度 */
	}

	.gold-title-8 {
		font-size: 1.6rem;
		/* 手機版縮小 */
		font-weight: 700;
		letter-spacing: 0.06em;
	}

	.gold-title-8-sm {
		font-size: 1.15rem;
		font-weight: 700;
	}

	.subtitle {
		font-size: 0.9rem;
		margin-bottom: 12px;
		line-height: 1.5;
	}

	.card-content,
	.card-content-sm {
		bottom: 18px;
		left: 18px;
		padding-right: 18px;
	}

	.badge-tag {
		font-size: 0.65rem;
		padding: 3px 10px;
		margin-bottom: 8px;
	}

	.btn-explore {
		font-size: 0.8rem;
		letter-spacing: 1px;
	}

	/* 標題裝飾優化 */
	.ornament-line {
		width: 50px;
	}

	.curator-subtitle {
		font-size: 0.9rem;
		padding: 0 1rem;
	}
}

/* 平板版優化 */
@media (min-width: 768px) and (max-width: 991px) {
	.card-large {
		height: 380px;
	}

	.card-medium {
		height: 240px;
	}

	.card-small {
		height: 240px;
	}

	.gold-title-8 {
		font-size: 1.8rem;
	}

	.gold-title-8-sm {
		font-size: 1.3rem;
	}

	.card-content,
	.card-content-sm {
		bottom: 22px;
		left: 22px;
	}

	.photo-credits {
		font-size: 0.7rem;
		color: rgba(255, 255, 255, 0.7);
		margin-top: 5px;
		text-align: left;
		width: 100%;
	}

	.photo-credits-bottom {
		font-size: 0.7rem;
		color: #666;
		text-align: left;
		padding: 8px 15px;
		background: rgba(255, 255, 255, 0.8);
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 3;
	}

	.image-credits {
		position: absolute;
		bottom: 10px;
		left: 15px;
		font-size: 0.7rem;
		color: rgba(255, 255, 255, 0.8);
		z-index: 2;
		background: rgba(0, 0, 0, 0.5);
		padding: 4px 8px;
		border-radius: 3px;
	}

	.photo-credits-small {
		font-size: 0.55rem;
		color: rgba(255, 255, 255, 0.7);
		margin-top: 5px;
		text-align: left;
	}
}

@media (max-width: 767px) {
	#curator .curator-card__image a {
		min-height: 480px !important;
	}

	#curator .curator-card__image img {
		min-height: 480px !important;
	}

	#curator .mobile-text-up {
		top: 38% !important;
		padding: 1rem !important;
	}
}

@keyframes pulse {

                    0%,
                    100% {
                        opacity: 1;
                        transform: scale(1);
                    }

                    50% {
                        opacity: 0.8;
                        transform: scale(1.05);
                    }
                }

/* ═══════════════════════════════════════════════════════════
   手機版整體修復 - Mobile Responsive Fixes
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 767.98px) {

	/* --- 季節限定特輯：卡片高度自適應 --- */
	#seasonal-highlights [style*="height: 450px"] {
		height: 320px !important;
	}

	#seasonal-highlights {
		padding: 3.5rem 0 !important;
	}

	#seasonal-highlights [style*="padding: 2.5rem"] {
		padding: 1.5rem !important;
	}

	/* --- 策展人區塊：圖片與文字間距 --- */
	#curator .section__inner {
		padding: 0 0.5rem;
	}

	#curator .curator-card__content {
		padding: 1.5rem 0.5rem;
	}

	/* --- 信任徽章：小螢幕改為 2x2 佈局 --- */
	#trust-badge-section .row {
		flex-wrap: wrap !important;
	}

	#trust-badge-section .col-3 {
		flex: 0 0 50% !important;
		max-width: 50% !important;
		margin-bottom: 0.75rem;
	}

	#trust-badge-section .trust-badge-item {
		flex-direction: row !important;
		justify-content: center !important;
		text-align: center !important;
		gap: 0.4rem;
	}

	#trust-badge-section .trust-badge-item i {
		font-size: 1.2rem !important;
		margin-bottom: 0 !important;
	}

	#trust-badge-section .trust-badge-item span {
		font-size: 0.82rem !important;
	}

	/* --- 各大區塊 padding 縮減 --- */
	#curator {
		padding: var(--section-padding-mobile, 4rem 0) !important;
	}

	#curated-journeys {
		padding: 3.5rem 0 !important;
	}

	#curated-journeys h2 {
		font-size: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	#theme-nagoya {
		padding: 3.5rem 0 !important;
	}

	#theme-japan-select {
		padding: 3.5rem 0 !important;
	}

	/* --- 策展人旅程卡片 --- */
	.journey-card {
		min-height: auto;
	}

	/* --- 北陸區塊標題 --- */
	.hokuriku-title {
		font-size: 1.6rem !important;
	}

	.hokuriku-lead {
		font-size: 0.92rem !important;
	}

	/* --- 日本全境精選區塊 --- */
	.card-mobile-square .theme-card__title {
		font-size: 0.9rem !important;
	}
}

@media (max-width: 480px) {

	/* --- 極小螢幕：季節限定更矮 --- */
	#seasonal-highlights [style*="height: 450px"] {
		height: 280px !important;
	}

	/* --- 極小螢幕：策展人圖片 --- */
	#curator .curator-card__image a {
		min-height: 350px !important;
	}

	#curator .curator-card__image img {
		min-height: 350px !important;
	}
}