/* ==========================================================================
   INSAN THEME - MAIN DESIGN SYSTEM & STYLESHEET
   現代極簡高雅攝影風格 ｜ 支援最新 PHP 8.2+ ｜ 零 jQuery 依賴
   ========================================================================== */

:root {
  --font-serif: 'Noto Serif TC', 'Cormorant Garamond', 'Songti TC', 'Source Han Serif TC', 'STSong', Georgia, serif;
  --font-en-serif: 'Cormorant Garamond', 'Noto Serif TC', 'Songti TC', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang TC", "Microsoft JhengHei", sans-serif;

  --bg-page: #fbfaf8;
  --bg-white: #ffffff;
  --bg-dark: #141414;
  --bg-light-gray: #f5f3ef;
  --bg-footer: #ffffff;

  --color-text: #2c2c2c;
  --color-muted: #5e5e5e;
  --color-light: #999999;
  --color-gold: #b38f5f;
  --color-gold-hover: #967447;
  --color-border: #e8e5e0;
  --color-border-light: rgba(0, 0, 0, 0.05);

  --shadow-subtle: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 14px 32px rgba(0, 0, 0, 0.09);

  --max-width: 1240px;
  --content-max-width: 100%;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--bg-page);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

/* TYPOGRAPHY UTILITIES */
.font-serif { font-family: var(--font-serif); }
.font-en-serif { font-family: var(--font-en-serif); }

.section-tag {
  display: block;
  font-family: var(--font-en-serif);
  font-size: 0.92rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.section-desc {
  font-size: 0.92rem;
  color: var(--color-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.9;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-gold {
  background-color: var(--color-gold);
  color: #ffffff;
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 143, 95, 0.3);
}

.btn-dark {
  background-color: #222222;
  color: #ffffff;
  border-color: #222222;
}

.btn-dark:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #222222;
  border-color: rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
  background-color: #222222;
  color: #ffffff;
  border-color: #222222;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement {
  background-color: #1a1a1a;
  color: #c0c0c0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-announcement .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-socials a,
.top-search-btn {
  color: #c0c0c0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.top-socials a:hover,
.top-search-btn:hover {
  color: var(--color-gold);
  transform: scale(1.1);
}

.top-search-btn {
  margin-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 12px;
}

/* 下拉式搜尋列 */
.top-search-drawer {
  display: none;
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  animation: searchSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-search-drawer.active {
  display: block;
}

@keyframes searchSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.top-search-form {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2px 6px 2px 14px;
  transition: all 0.25s ease;
}

.top-search-form:focus-within {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-gold);
  box-shadow: 0 0 12px rgba(179, 143, 95, 0.3);
}

.top-search-form-icon {
  color: var(--color-gold);
  font-size: 13px;
  margin-right: 8px;
}

.top-search-form input[type="search"] {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 13px;
  padding: 6px 4px;
  outline: none;
}

.top-search-form input[type="search"]::placeholder {
  color: #888888;
}

.top-search-submit-btn {
  background: var(--color-gold);
  color: #ffffff;
  border: none;
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.top-search-submit-btn:hover {
  background: var(--color-gold-dark, #947243);
}

.top-search-close-btn {
  background: none;
  border: none;
  color: #888888;
  font-size: 20px;
  line-height: 1;
  padding: 0 8px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.top-search-close-btn:hover {
  color: #ffffff;
}

/* ==========================================================================
   HEADER & NAVIGATION (Sticky with Smooth Shrink & Unified Pure White Header)
   ========================================================================== */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

/* WordPress Admin Bar 登入狀態頂部工具列無縫適配 */
body.admin-bar .site-header {
  top: 32px;
}
body.admin-bar .insan-slideover-drawer {
  top: 32px;
  height: calc(100vh - 32px);
}
body.admin-bar .insan-slideover-overlay {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
  body.admin-bar .insan-slideover-drawer {
    top: 46px;
    height: calc(100vh - 46px);
  }
  body.admin-bar .insan-slideover-overlay {
    top: 46px;
  }
}

.site-header.scrolled {
  padding-top: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand-center {
  text-align: center;
  margin-bottom: 14px;
  transition: margin-bottom 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-header.scrolled .brand-center {
  margin-bottom: 4px;
}

.site-logo-img {
  max-width: 250px;
  margin: 0 auto 6px;
  mix-blend-mode: multiply; /* 白底完全透明融合，永不產生色差方塊 */
  transition: max-width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-header.scrolled .site-logo-img {
  max-width: 170px;
  margin-bottom: 2px;
}

.site-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  font-family: var(--font-serif);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  max-height: 24px;
  overflow: hidden;
  opacity: 1;
}

.site-header.scrolled .site-tagline {
  max-height: 0;
  opacity: 0;
  margin: 0;
}

.nav-container {
  border-top: 1px solid #f0ede8;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.site-header.scrolled .nav-container {
  border-top-color: #f7f6f4;
  background-color: #ffffff;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #383838;
  transition: padding 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.2s ease;
}

.site-header.scrolled .nav-link {
  padding: 9px 18px;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.7);
}

/* 次級選單 (DROPDOWN) - 寬度自適應、文字永不斷行、精準置中 */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: max-content;
  width: max-content;
  max-width: 90vw;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  border-radius: 2px;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 11px 22px;
  font-size: 0.82rem;
  color: #4a4a4a;
  border-bottom: 1px solid #f7f6f4;
  line-height: 1.5;
  white-space: nowrap; /* 自適應內容寬度，絕不斷行 */
}

.dropdown-link:last-child { border-bottom: none; }
.dropdown-link:hover {
  background-color: #faf8f5;
  color: var(--color-gold);
  padding-left: 26px;
}

/* ==========================================================================
   PROPHOTO 經典風格：方形漢堡按鈕 & 左側滑出式抽屜選單 (OFF-CANVAS SLIDEOVER)
   ========================================================================== */
.prophoto-hamburger-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.25s ease;
}

.prophoto-hamburger-btn:hover {
  background-color: #faf8f5;
  border-color: var(--color-gold);
}

.prophoto-hamburger-btn .hamburger-box {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prophoto-hamburger-btn .hamburger-box::before,
.prophoto-hamburger-btn .hamburger-box::after,
.prophoto-hamburger-btn .hamburger-inner {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #222222;
  border-radius: 2px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.prophoto-hamburger-btn:hover .hamburger-box::before,
.prophoto-hamburger-btn:hover .hamburger-box::after,
.prophoto-hamburger-btn:hover .hamburger-inner {
  background-color: var(--color-gold-dark, #8f6c3b);
}

/* SLIDEOVER OVERLAY */
.insan-slideover-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.insan-slideover-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* SLIDEOVER DRAWER */
.insan-slideover-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 90vw;
  max-width: 380px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 2100;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 6px 0 30px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.insan-slideover-drawer.active {
  transform: translateX(0);
}

.slideover-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 14px;
  border-bottom: 1px solid #f0ede8;
}

.slideover-brand img {
  max-height: 34px;
  width: auto;
}

.slideover-close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: var(--transition);
}

.slideover-close-btn:hover {
  color: var(--color-gold);
}

.slideover-body {
  padding: 20px 20px 40px;
  flex-grow: 1;
}

.slideover-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slideover-item {
  margin-bottom: 16px;
}

.slideover-link-bold,
.slideover-section-title {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 6px;
  line-height: 1.4;
  text-transform: uppercase;
}

.slideover-link-bold:hover {
  color: var(--color-gold);
}

.slideover-sub-menu {
  list-style: none;
  border-left: 2px solid #eae7e1;
  padding-left: 12px;
  margin: 6px 0 4px 4px;
}

.slideover-sub-menu li {
  margin-bottom: 7px;
}

.slideover-sub-menu li:last-child {
  margin-bottom: 0;
}

.slideover-sub-menu a {
  font-size: 0.82rem;
  color: #4a4a4a;
  line-height: 1.42;
  display: block;
  transition: var(--transition);
  word-break: normal;
  overflow-wrap: break-word;
}

.slideover-sub-menu a:hover {
  color: var(--color-gold);
  padding-left: 3px;
}

.mobile-menu-toggle {
  display: none;
}

/* ==========================================================================
   HERO SLIDER (V1 現代旗艦版核心動態)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 520px;
  max-height: 780px;
  background-color: #1a1a1a;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: -12%;
  left: 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center 20%;
  will-change: transform;
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
  transition: transform 0.08s linear, opacity 1.2s ease;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATION (全站平滑滾動浮現微動態)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 100%;
  color: #ffffff;
  text-align: center;
  z-index: 10;
  padding: 0 20px;
  will-change: transform;
  transform: translate3d(0, calc(var(--hero-parallax-y, 0px) * 0.4), 0);
  transition: transform 0.08s linear;
}

.hero-tag {
  font-family: var(--font-en-serif);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: #dfc299;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
}

.hero-nav-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: #ffffff;
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 20;
}

.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--color-gold);
  width: 48px;
}

/* ==========================================================================
   2. 01, 02, 03 三大主題精選卡片 (FEATURED 3 MAIN CATEGORIES)
   ========================================================================== */
.categories-section {
  padding: 80px 0 60px;
}

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

.category-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 2px;
  display: block;
  text-decoration: none;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px 30px;
  color: #ffffff;
  transition: background 0.4s ease;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.92) 100%);
}

.category-num {
  font-family: var(--font-en-serif);
  font-size: 1.15rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  display: block;
}

.category-card-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.category-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 22px;
}

.category-link {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.category-card:hover .category-link {
  gap: 14px;
  color: #ffffff;
}

/* ==========================================================================
   HOMEPAGE GRID SECTIONS (自主婚紗 / 婚禮紀錄 / 里程碑)
   ========================================================================== */
.grid-section {
  padding: 90px 0;
  border-top: 1px solid var(--color-border);
}

.bg-light-section {
  background-color: #f7f5f1;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-en {
  font-family: var(--font-en-serif);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title-zh {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 0.88rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.post-card {
  background-color: var(--bg-white);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #dcd8d0;
}

.post-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background-color: #eee;
  display: block;
}

.post-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.post-card:hover .post-thumb {
  transform: scale(1.06);
}

.post-content {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-tag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
  display: block;
}

.post-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 12px;
}

.post-title a {
  color: #1a1a1a;
  transition: var(--transition);
}

.post-title a:hover {
  color: var(--color-gold);
}

.post-excerpt {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}

.post-readmore {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: var(--transition);
}

.post-readmore:hover {
  color: var(--color-gold);
  gap: 10px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid #333;
  background-color: transparent;
  color: #1a1a1a;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  transition: var(--transition);
  text-decoration: none;
}

.btn-more:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

/* ==========================================================================
   STORY / PHILOSOPHY HIGHLIGHT SECTION (理念與全家福專欄)
   ========================================================================== */
.story-highlight-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  background-color: var(--bg-white);
  border: 1px solid var(--color-border);
  padding: 35px;
  box-shadow: var(--shadow-card);
  margin-bottom: 45px;
}

.story-img-wrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: #eee;
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-date {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
  display: block;
}

.story-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 16px;
}

.story-title a { color: #1a1a1a; }
.story-title a:hover { color: var(--color-gold); }

/* ==========================================================================
   CLASSIC MULTI-THUMB GRID STRIP (原首頁：新人回娘家 / 新人推薦文 / 相關文章)
   ========================================================================== */
.prophoto-strip-section {
  padding: 50px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--color-border);
}

.prophoto-strip-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  text-align: center;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.prophoto-strip-box {
  background-color: #f5f5f5;
  padding: 26px 20px;
  border-radius: 0;
  width: 100%;
}

.prophoto-grid-8 {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  gap: 16px 10px;
  width: 100%;
  align-items: start;
}

.prophoto-grid-6 {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 22px 12px;
  width: 100%;
  align-items: start;
}

.prophoto-thumb-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  background-color: transparent;
  text-decoration: none;
  transition: transform 0.3s ease;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.prophoto-thumb-card:hover {
  transform: translateY(-3px);
}

.prophoto-thumb-img-wrap {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  background-color: #e5e5e5;
  margin-bottom: 8px;
  border: 1px solid #e0e0e0;
  display: block;
}

.prophoto-thumb-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease;
}

.prophoto-thumb-card:hover .prophoto-thumb-img-wrap img {
  transform: scale(1.06);
}

.prophoto-thumb-title {
  font-size: 0.72rem !important;
  color: #333333 !important;
  line-height: 1.35 !important;
  text-align: center !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  word-break: break-word !important;
  font-weight: 500;
  width: 100%;
  min-height: 2.7em;
}

.prophoto-thumb-card:hover .prophoto-thumb-title {
  color: var(--color-gold) !important;
}

.prophoto-thumb-desc {
  font-size: 0.67rem !important;
  color: #666666 !important;
  line-height: 1.35 !important;
  text-align: center !important;
  margin-top: 5px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  word-break: break-word !important;
  width: 100%;
  min-height: 4em;
}

@media (max-width: 1200px) {
  .prophoto-grid-8 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px 10px;
  }
  .prophoto-grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px 10px;
  }
}

@media (max-width: 768px) {
  .prophoto-grid-8 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 8px;
  }
  .prophoto-grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 8px;
  }
  .prophoto-strip-box {
    padding: 16px 8px;
  }
}

/* ==========================================================================
   ABOUT THE PHOTOGRAPHER & FEATURED MILESTONE (了解你的攝影師 ＆ 獲選故事)
   ========================================================================== */
.about-milestone-section {
  padding: 85px 0;
  background-color: #faf9f6;
  border-top: 1px solid #f0ece5;
  border-bottom: 1px solid #f0ece5;
}

.about-milestone-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* 左側：攝影師專題簡介卡片 */
.about-photographer-box {
  background-color: #ffffff;
  border: 1px solid #e8e3dc;
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.about-photographer-header {
  margin-bottom: 20px;
}

.about-photographer-header .section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.about-photographer-name {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
  line-height: 1.25;
}

.about-photographer-name span {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: #777777;
  margin-left: 6px;
}

.about-photographer-role {
  font-size: 0.82rem;
  color: #888888;
  letter-spacing: 0.05em;
  margin: 0;
}

.about-photographer-img-wrap {
  margin-bottom: 22px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #eee;
  background-color: #f5f5f5;
}

.about-photographer-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-photographer-box:hover .about-photographer-img-wrap img {
  transform: scale(1.02);
}

.about-img-caption {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: #999999;
  padding: 6px 0;
  background-color: #fafafa;
  border-top: 1px solid #f0f0f0;
}

.about-photographer-bio {
  margin-bottom: 22px;
}

.about-photographer-bio .bio-lead {
  font-size: 0.94rem;
  font-weight: 600;
  color: #2b2b2b;
  line-height: 1.65;
  margin-bottom: 10px;
}

.about-photographer-bio .bio-text {
  font-size: 0.86rem;
  color: #555555;
  line-height: 1.85;
  margin: 0;
}

/* 榮譽與資格精華清單 */
.about-credentials-list {
  margin-bottom: 26px;
  border-top: 1px dashed #e5dfd5;
  border-bottom: 1px dashed #e5dfd5;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cred-item i {
  font-size: 1rem;
  color: var(--color-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.cred-item strong {
  display: block;
  font-size: 0.84rem;
  color: #222222;
  line-height: 1.4;
}

.cred-item p {
  font-size: 0.76rem;
  color: #777777;
  margin: 2px 0 0;
  line-height: 1.4;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border: 1px solid #333333;
  color: #222222;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  background-color: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.btn-outline-dark:hover {
  background-color: #222222;
  color: #ffffff;
}

/* 右側：特色紀錄與獲選故事卡片 */
.featured-milestone-box {
  background-color: #ffffff;
  border: 1px solid #e8e3dc;
  border-radius: 4px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.milestone-badge-wrap {
  margin-bottom: 16px;
}

.milestone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #8c6837;
  background-color: #f7f1e6;
  padding: 5px 12px;
  border-radius: 2px;
}

.milestone-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.milestone-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 20px;
  display: block;
  background-color: #1a1a1a;
}

.milestone-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.featured-milestone-box:hover .milestone-img-wrap img {
  transform: scale(1.04);
}

.milestone-img-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  font-weight: 500;
}

.milestone-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.milestone-title {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 14px;
}

.milestone-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.milestone-title a:hover {
  color: var(--color-gold);
}

.milestone-excerpt {
  font-size: 0.86rem;
  color: #555555;
  line-height: 1.85;
  margin: 0 0 20px;
  flex-grow: 1;
}

.milestone-footer {
  margin-top: auto;
  border-top: 1px solid #f0ede8;
  padding-top: 16px;
}

@media (max-width: 991px) {
  .about-milestone-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-photographer-box,
  .featured-milestone-box {
    padding: 26px 20px;
  }
  .about-photographer-name {
    font-size: 1.55rem;
  }
}

/* ==========================================================================
   SECTION 4: 備婚日記 (NOTES & STORIES)
   ========================================================================== */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.note-card {
  background-color: var(--bg-white);
  border: 1px solid var(--color-border);
  padding: 32px 28px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.note-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.note-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.4;
}

.note-card p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.85;
  margin-bottom: 20px;
  flex-grow: 1;
}

.note-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--color-border);
  padding-top: 14px;
  font-size: 0.75rem;
  color: var(--color-light);
}

/* ==========================================================================
   SECTION 5: 標籤雲 (TAG CLOUD)
   ========================================================================== */
.tag-section {
  padding: 60px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.tag-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.tag-item {
  display: inline-block;
  padding: 7px 18px;
  background-color: #f7f5f1;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  font-size: 0.82rem;
  color: #444;
  transition: var(--transition);
  text-decoration: none;
}

.tag-item:hover {
  background-color: #222;
  color: #fff;
  border-color: #222;
  border-radius: 18px;
}

.tag-item.highlight {
  background-color: #f0eae1;
  border-color: #dfd4c5;
  color: #8c6837;
  font-weight: 500;
  border-radius: 18px;
}

.tag-item.highlight:hover {
  background-color: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
  border-radius: 18px;
}

/* ==========================================================================
   CATEGORY & ARCHIVE PAGES (作品集網格列表)
   ========================================================================== */
.category-hero {
  background-color: #f7f5f1;
  padding: 45px 0 35px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.category-main-section {
  padding: 60px 0 80px;
}

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

.category-post-card {
  background-color: var(--bg-white);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.category-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #dcd8d0;
}

.post-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background-color: #eee;
}

.post-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-post-card:hover .post-thumb-wrap img {
  transform: scale(1.05);
}

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

.post-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 8px;
  font-family: var(--font-en-serif);
}

.post-title {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 12px;
}

.post-excerpt {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-more-btn {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.category-post-card:hover .post-more-btn {
  color: var(--color-gold);
  gap: 9px;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 55px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  background-color: #ffffff;
  color: #444;
  font-size: 0.85rem;
  transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background-color: #222222;
  color: #ffffff;
  border-color: #222222;
}

/* ==========================================================================
   SINGLE POST / ARTICLE PAGE
   ========================================================================== */
.single-post-wrapper {
  padding: 60px 0 90px;
}

.single-article {
  max-width: var(--content-max-width);
  margin: 0 auto;
  background-color: var(--bg-white);
  border: 1px solid var(--color-border);
  padding: 50px 45px;
  box-shadow: var(--shadow-subtle);
}

.single-header {
  text-align: center;
  margin-bottom: 35px;
  border-bottom: 1px solid #f0ede8;
  padding-bottom: 25px;
}

.single-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.single-meta {
  font-size: 0.8rem;
  color: var(--color-light);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* ==========================================================================
   CATEGORY 類別文章與作品專屬排版系統（精準還原 /stories/ 輕盈現代優雅無襯線風格）
   ========================================================================== */
body.single-post .single-content,
body.single-post .single-content p,
body.single-post .single-content span,
body.single-post .single-content div,
body.single-post .single-content li,
body.single-post .single-content a,
body.single-post .single-content font,
body.single-post .single-content strong,
body.single-post .single-content em,
body.single-post .single-content b,
body.single-post .single-content i,
body.single .single-article.post .single-content,
body.single .single-article.post .single-content p,
body.single .single-article.post .single-content span,
body.single .single-article.post .single-content div,
body.category .category-desc,
body.category .post-excerpt,
.category-post-card .post-excerpt {
  font-family: 'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang TC", "Microsoft JhengHei", sans-serif !important;
}

body.single-post .single-content,
body.single .single-article.post .single-content {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.025em;
  color: #555555;
  word-break: break-word;
}

body.single-post .single-content p,
body.single .single-article.post .single-content p {
  margin-bottom: 22px;
  font-weight: 300;
  color: #555555;
  font-size: 0.96rem;
  line-height: 1.95;
}

body.single-post .single-content strong,
body.single-post .single-content b {
  font-weight: 600;
  color: #222222;
}

body.single-post .single-content h2,
body.single-post .single-content h3,
body.single-post .single-content h4,
body.single .single-article.post .single-content h2,
body.single .single-article.post .single-content h3,
body.single .single-article.post .single-content h4 {
  font-family: var(--font-serif) !important;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  margin: 35px 0 18px;
  line-height: 1.5;
}

body.single-post .single-content blockquote,
body.single .single-article.post .single-content blockquote {
  border-left: 3px solid var(--color-gold);
  padding: 16px 24px;
  background-color: #faf9f7;
  font-style: normal;
  color: #555555;
  margin: 25px 0;
  border-radius: 0 4px 4px 0;
  font-family: 'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang TC", "Microsoft JhengHei", sans-serif !important;
  font-weight: 300;
}

body.single-post .single-content img,
body.single .single-article.post .single-content img {
  margin: 32px auto;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

body.single-post .single-content img:hover,
body.single .single-article.post .single-content img:hover {
  opacity: 0.96;
}

/* 獨立靜態頁面 (Page: 關於英聖 / 服務說明 / FAQ / 預約單等) 保持乾淨現代字型 */
body.page .single-content {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  line-height: 2.0;
  color: #383838;
}

.post-nav-links {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  margin-top: 50px;
  padding-top: 30px;
  font-size: 0.85rem;
}

.post-nav-links a {
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-nav-links a:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   CONTACT CTA BAR
   ========================================================================== */
.contact-bar-section {
  background-color: #242424;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.contact-bar-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.contact-bar-desc {
  font-size: 0.88rem;
  color: #bbb;
  margin-bottom: 28px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER (4 欄式精準還原)
   ========================================================================== */
.site-main-footer {
  background-color: var(--bg-footer);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 40px;
  color: #444444;
  font-size: 0.82rem;
}

.footer-columns.footer-3-cols {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 1.5fr;
  gap: 42px;
  align-items: start;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid #ebe7e1;
}

.footer-en-title {
  display: block;
  font-family: var(--font-en-serif);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 4px;
  text-align: center;
}

.recent-posts-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 360px;
}

.recent-posts-list li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #f0eee9;
  font-size: 0.82rem;
  line-height: 1.5;
}

.recent-posts-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-posts-list a {
  color: #333333;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: all 0.2s ease;
}

.post-bullet-icon {
  font-size: 10px;
  color: var(--color-gold);
  margin-top: 4px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.recent-posts-list a:hover {
  color: var(--color-gold-dark, #8f6c3b);
  transform: translateX(3px);
}

.recent-posts-list a:hover .post-bullet-icon {
  transform: translateX(2px);
}

.post-title-text {
  flex-grow: 1;
}

/* 頁尾第 2 欄：品牌社群與聯絡卡片 (Social & Connect - Centered) */
.footer-brand-bio {
  font-size: 0.84rem;
  line-height: 1.7;
  color: #555555;
  margin: 0 auto 16px;
  text-align: center;
  max-width: 300px;
}

.footer-social-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 auto 18px;
  max-width: 270px;
}

.footer-social-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 8px 14px;
  background: #fbf9f6;
  border: 1px solid #ebe5dc;
  border-radius: 6px;
  color: #2c3338 !important;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: center;
}

.footer-social-badge i {
  font-size: 15px;
  width: 18px;
  text-align: center;
  color: var(--color-gold);
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-social-badge:hover {
  background: #ffffff;
  border-color: var(--color-gold);
  color: var(--color-gold-dark, #8f6c3b) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(179, 143, 95, 0.18);
}

.footer-social-badge:hover i {
  transform: scale(1.15);
  color: var(--color-gold-dark, #8f6c3b);
}

.footer-booking-btn-wrap {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.btn-footer-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-gold) 0%, #9e7b4b 100%);
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(179, 143, 95, 0.25);
  text-align: center;
  width: 100%;
  max-width: 270px;
}

.btn-footer-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(179, 143, 95, 0.38);
}

/* 質感膠囊標籤雲 (Footer Badges - Centered) */
.footer-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-tag-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 16px;
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.footer-tag-badge.tag-item-normal {
  background: #ffffff;
  border: 1px solid #e2ddd5;
  color: #555555;
}

.footer-tag-badge.tag-item-normal:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-tag-badge.tag-item-hot {
  background: rgba(179, 143, 95, 0.12);
  border: 1px solid rgba(179, 143, 95, 0.4);
  color: #856404;
  font-weight: 600;
}

.footer-tag-badge.tag-item-hot:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(179, 143, 95, 0.3);
}

.site-copyright-bar {
  background-color: #faf9f6;
  border-top: 1px solid var(--color-border);
  padding: 22px 0;
  text-align: center;
  font-size: 0.76rem;
  color: #777777;
}

/* ==========================================================================
   LIGHTBOX MODAL (原生極速燈箱)
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active { display: flex; }

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox-caption {
  color: #eee;
  font-family: var(--font-serif);
  margin-top: 14px;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   FAQ / QA ACCORDION & SERVICE GUIDELINES (問答摺疊面板設計系統)
   ========================================================================== */
.insanc-faq-wrapper,
.faq-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  font-family: var(--font-sans);
  color: #333333;
}

.insanc-serif {
  font-family: var(--font-serif) !important;
}

.border-insanc-gold { border-color: var(--color-gold) !important; }
.text-insanc-gold { color: var(--color-gold) !important; }
.text-insanc-red, .text-red-700 { color: #b91c1c !important; }

/* FAQ 分類標題樣式 */
.insanc-faq-wrapper h3,
.faq-category-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  margin: 0 0 4px 0;
}

.insanc-faq-wrapper .border-b-2 {
  border-bottom: 2px solid rgba(179, 143, 95, 0.4) !important;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

/* Accordion details 容器 */
details {
  border: 1px solid #e8e5e0 !important;
  border-radius: 6px !important;
  background-color: #faf9f7;
  margin-bottom: 14px !important;
  transition: all 0.3s ease;
  overflow: hidden;
}

details:hover {
  background-color: #ffffff;
  border-color: #dcd7ce !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

details[open] {
  background-color: #ffffff !important;
  border-color: rgba(179, 143, 95, 0.6) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Summary 摺疊標題列 */
details > summary {
  list-style: none !important;
  cursor: pointer;
  position: relative;
  padding: 16px 20px !important;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: #222222;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  user-select: none;
  transition: color 0.3s ease;
}

/* 隱藏瀏覽器預設三角形箭頭 */
details > summary::-webkit-details-marker { display: none !important; }
details > summary::marker { display: none !important; }

/* 自訂旋轉箭頭 */
details > summary::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome';
  font-weight: 900;
  font-size: 1.05rem;
  color: #888888;
  transition: transform 0.35s ease, color 0.3s ease;
  margin-left: 12px;
  flex-shrink: 0;
}

details[open] > summary::after {
  transform: rotate(180deg);
  color: var(--color-gold);
}

details > summary h4 {
  font-family: var(--font-sans) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: #222222 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  line-height: 1.5 !important;
  transition: color 0.3s ease;
  flex-grow: 1;
}

details > summary h4 i {
  color: var(--color-gold);
  width: 22px;
  text-align: center;
}

details[open] > summary h4,
details[open] > summary {
  color: var(--color-gold) !important;
}

/* 展開內文動畫與間距 */
details > summary ~ * {
  animation: faqOpenAnim 0.3s ease-in-out;
}

@keyframes faqOpenAnim {
  0% { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* QA 內文提示框與排版容器 */
.insanc-faq-wrapper .bg-gray-50,
.faq-box-muted {
  background-color: #f7f6f3 !important;
  border: 1px solid #e8e4dc !important;
  border-radius: 6px !important;
  padding: 16px 20px !important;
  margin: 16px 0 !important;
}

.insanc-faq-wrapper .bg-white,
.faq-box-white {
  background-color: #ffffff !important;
  border: 1px solid #e8e4dc !important;
  border-radius: 6px !important;
  padding: 16px 20px !important;
  margin: 16px 0 !important;
}

.faq-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   HOMEPAGE SECTION BUILDER & TEMPLATE PRESETS (首頁區塊建構器與質感模板)
   ========================================================================== */

/* 1. 動態欄位網格 (Dynamic Columns) */
.dynamic-post-grid {
  display: grid;
  width: 100%;
}

.dynamic-post-grid.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.dynamic-post-grid.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.dynamic-post-grid.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.dynamic-post-grid.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
.dynamic-post-grid.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }

/* 2. 動態間距 (Dynamic Gaps) */
.dynamic-post-grid.gap-compact { gap: 12px 10px; }
.dynamic-post-grid.gap-standard { gap: 24px 20px; }
.dynamic-post-grid.gap-spacious { gap: 36px 30px; }

/* 3. 區塊底色 (Section Background Colors) */
.sec-bg-pure-white { background-color: #ffffff; }
.sec-bg-light-gray { background-color: #f7f7f7; }
.sec-bg-warm-ivory { background-color: #f7f5f1; }
.sec-bg-dark-luxury { background-color: #141414; color: #f0f0f0; }
.sec-bg-dark-luxury .section-title-zh { color: #ffffff !important; }
.sec-bg-dark-luxury .section-desc { color: #a5a5a5 !important; }
.sec-bg-dark-luxury .post-title a { color: #ffffff !important; }
.sec-bg-dark-luxury .post-excerpt { color: #b0b0b0 !important; }

/* 4. 圓角選項 (Border Radius) */
.sec-radius-none img, .sec-radius-none .post-thumb-wrap, .sec-radius-none .prophoto-thumb-img-wrap { border-radius: 0px !important; }
.sec-radius-sm img, .sec-radius-sm .post-thumb-wrap, .sec-radius-sm .prophoto-thumb-img-wrap { border-radius: 4px !important; }
.sec-radius-lg img, .sec-radius-lg .post-thumb-wrap, .sec-radius-lg .prophoto-thumb-img-wrap { border-radius: 12px !important; }

/* 5. 質感模板 1: 經典大景白底卡片 (Modern Clean Cards) */
.template-modern-cards .post-card {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.template-modern-cards .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(179, 143, 95, 0.5);
}

.template-modern-cards .post-thumb-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #eee;
  display: block;
}

.template-modern-cards .post-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.template-modern-cards .post-card:hover .post-thumb {
  transform: scale(1.04);
}

.template-modern-cards .post-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* 6. 質感模板 2: 頂級暗黑光影沉浸大卡 (Dark Luxury Overlay Cards) */
.template-dark-overlay .overlay-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: block;
  text-decoration: none;
}

.template-dark-overlay .overlay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.template-dark-overlay .overlay-card:hover .overlay-img {
  transform: scale(1.06);
}

.template-dark-overlay .overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
  transition: opacity 0.3s ease;
}

.template-dark-overlay .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 2;
  color: #ffffff;
}

.template-dark-overlay .overlay-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 4px;
  display: block;
  font-style: italic;
}

.template-dark-overlay .overlay-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 8px 0;
  color: #ffffff;
}

.template-dark-overlay .overlay-date {
  font-size: 0.8rem;
  color: #d1c7b7;
  letter-spacing: 0.1em;
}

/* 7. 質感模板 3: 雜誌專題圖文交錯排 (Editorial Magazine Split) */
.template-magazine-split {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.magazine-split-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.magazine-split-item:nth-child(even) {
  direction: rtl;
}

.magazine-split-item:nth-child(even) > * {
  direction: ltr;
}

.magazine-split-thumb {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 4px;
}

.magazine-split-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.magazine-split-item:hover .magazine-split-thumb img {
  transform: scale(1.03);
}

.magazine-split-content {
  padding: 20px 0;
}

.magazine-split-tag {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.magazine-split-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 16px 0;
}

.magazine-split-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.magazine-split-title a:hover {
  color: var(--color-gold);
}

.magazine-split-excerpt {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ==========================================================================
   BACK TO TOP FLOATING BUTTON (平滑回到頂部按鈕)
   ========================================================================== */
.btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: var(--color-gold);
  border: 1px solid rgba(179, 143, 95, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1rem;
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-back-to-top:hover {
  background-color: var(--color-gold);
  color: #ffffff;
  border-color: var(--color-gold);
  box-shadow: 0 6px 20px rgba(179, 143, 95, 0.4);
  transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .photo-grid-3, .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; gap: 24px; }
  .notes-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .dynamic-post-grid.grid-cols-4,
  .dynamic-post-grid.grid-cols-6,
  .dynamic-post-grid.grid-cols-8 { grid-template-columns: repeat(3, 1fr); }
  .magazine-split-item { grid-template-columns: 1fr; gap: 20px; }
  .magazine-split-item:nth-child(even) { direction: ltr; }
  .story-highlight-card { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .hero-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .top-announcement { display: none; }
  .nav-container { display: none; }

  /* 手機版頂部 Header 緊湊收斂 (徹底解決 Logo bar 過大佔版面問題) */
  .site-header {
    padding: 10px 0 !important;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .site-header.scrolled {
    padding: 6px 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .brand-center {
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-logo-img {
    max-height: 28px !important;
    max-width: 175px !important;
    margin: 0 auto !important;
    transition: max-height 0.25s ease;
  }
  .site-header.scrolled .site-logo-img {
    max-height: 22px !important;
  }
  .site-tagline {
    display: none !important;
  }
  .prophoto-hamburger-btn {
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: 12px !important;
    width: 38px !important;
    height: 38px !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* 手機版三大精選主題卡片 (01/02/03) 單欄優雅垂直排列 */
  .categories-section { padding: 40px 0 20px; }
  .categories-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .category-card {
    height: 380px !important;
    border-radius: 4px;
  }
  .category-card-overlay {
    padding: 24px 20px !important;
  }
  .category-card-title {
    font-size: 1.35rem !important;
    margin-bottom: 8px !important;
  }
  .category-card-desc {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
  }

  /* 手機版備婚日記單欄優雅排列 */
  .notes-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .note-card {
    padding: 22px 18px !important;
  }
  .note-card h4 {
    font-size: 1rem !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
  }
  .note-card p {
    font-size: 0.82rem !important;
    line-height: 1.65 !important;
    margin-bottom: 14px !important;
  }

  .photo-grid-3, .posts-grid,
  .dynamic-post-grid.grid-cols-2,
  .dynamic-post-grid.grid-cols-3,
  .dynamic-post-grid.grid-cols-4,
  .dynamic-post-grid.grid-cols-6,
  .dynamic-post-grid.grid-cols-8 { grid-template-columns: 1fr !important; }

  .footer-columns,
  .footer-columns.footer-3-cols {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .single-article { padding: 30px 16px; border: none; background-color: transparent; box-shadow: none; }
  .single-title { font-size: 1.6rem; }
  .hero-slider-section { height: 60vh; min-height: 420px; }
  .hero-title { font-size: 1.8rem; }
  .btn-back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 0.9rem; }

  /* 手機版底部聯絡區塊與按鈕大小優化 (防按鈕過大與斷行) */
  .contact-bar-section { padding: 40px 16px; }
  .contact-bar-title { font-size: 1.3rem; margin-bottom: 8px; }
  .contact-bar-desc { font-size: 0.82rem; margin-bottom: 20px; }
  .contact-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    gap: 12px;
  }
  .contact-buttons .btn-gold,
  .contact-buttons .btn-outline {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.88rem;
    white-space: nowrap;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* 手機小螢幕抽屜選單緊湊排版 (徹底解決斷行與過大問題) */
  .insan-slideover-drawer { width: 92vw; max-width: 340px; }
  .slideover-header { padding: 14px 16px 12px; }
  .slideover-body { padding: 16px 16px 36px; }
  .slideover-item { margin-bottom: 13px; }
  .slideover-link-bold,
  .slideover-section-title {
    font-size: 0.86rem;
    letter-spacing: 0.01em;
    margin-bottom: 5px;
  }
  .slideover-sub-menu {
    border-left: 2px solid #eae7e1;
    padding-left: 10px;
    margin: 4px 0 4px 2px;
  }
  .slideover-sub-menu li { margin-bottom: 6px; }
  .slideover-sub-menu a {
    font-size: 0.8rem;
    line-height: 1.38;
  }
}

/* ==========================================================================
   WEDDING VENUES SHOWCASE PAGE (用婚禮場地找婚攝作品 精準視覺還原)
   ========================================================================== */
.venue-showcase-wrapper {
  padding-top: 20px;
  padding-bottom: 70px;
}

.venue-showcase-header {
  margin-bottom: 45px;
}

.venue-main-title {
  font-size: 1.85rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.venue-intro-text {
  font-size: 0.95rem;
  line-height: 2.0;
  color: #333333;
  margin-bottom: 45px;
  font-family: var(--font-sans);
  font-weight: 400;
}

.venue-intro-text p {
  margin: 0 0 10px 0;
  line-height: 1.95;
}

.venue-section-heading {
  font-size: 1.55rem;
  font-family: var(--font-serif);
  font-weight: 500;
  color: #333333;
  text-align: center;
  margin: 50px auto 40px;
  letter-spacing: 0.06em;
}

/* 首頁同款頂級 3 欄式奢華卡片佈局 (100% 精準還原首頁質感) */
.venue-luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

.venue-luxury-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 2px;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.venue-luxury-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.venue-luxury-card .category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.venue-luxury-card:hover .category-img {
  transform: scale(1.08);
}

.venue-luxury-card .category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  color: #ffffff;
  transition: background 0.4s ease;
}

.venue-luxury-card:hover .category-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.94) 100%);
}

.venue-luxury-card .category-num {
  font-family: var(--font-en-serif);
  font-size: 1.15rem;
  color: var(--color-gold);
  letter-spacing: 0.18em;
  margin-bottom: 6px;
  display: block;
}

.venue-luxury-card .category-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.venue-luxury-card .category-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 20px;
}

.venue-luxury-card .category-link {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.venue-luxury-card:hover .category-link {
  gap: 14px;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .venue-luxury-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .venue-main-title {
    font-size: 1.45rem;
    margin-bottom: 16px;
  }
  .venue-intro-text {
    font-size: 0.88rem;
    line-height: 1.85;
    margin-bottom: 30px;
  }
  .venue-section-heading {
    font-size: 1.25rem;
    margin: 35px auto 25px;
  }
  .venue-luxury-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .venue-luxury-card {
    height: 420px;
  }
  .venue-luxury-card .category-card-overlay {
    padding: 24px 20px;
  }
  .venue-luxury-card .category-card-title {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   Admin / Logged-in Post Edit Link (ProPhoto 7 Style)
   ========================================================================== */
.insan-edit-link {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  vertical-align: middle;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  text-decoration: none;
  text-transform: uppercase;
}

.insan-edit-link a.post-edit-link,
.insan-edit-link a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(184, 150, 106, 0.12);
  color: var(--color-gold) !important;
  border: 1px solid rgba(184, 150, 106, 0.4);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  line-height: 1.3;
  font-weight: 600;
}

.insan-edit-link a:hover {
  background: var(--color-gold);
  color: #ffffff !important;
  border-color: var(--color-gold);
  box-shadow: 0 2px 8px rgba(184, 150, 106, 0.35);
  transform: translateY(-1px);
}

.post-card-body .insan-edit-link {
  margin-left: 8px;
  font-size: 0.68rem;
}

/* ==========================================================================
   MOBILE UX & ULTRA QUALITY UPGRADE (手機端體驗升級與防迷路設計)
   ========================================================================== */

/* 4. 長文章景點與章節快速導覽 (Pill TOC) */
.article-quick-toc {
  background: #fcfaf6;
  border: 1px solid #ede5d8;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 15px 0 35px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.article-quick-toc .toc-title {
  font-size: 0.92rem;
  color: var(--color-gold-dark, #8f6c3b);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.article-quick-toc .toc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-quick-toc .toc-pill-item {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: #ffffff;
  border: 1px solid #dfd7ca;
  border-radius: 20px;
  font-size: 0.82rem;
  color: #4a4a4a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-quick-toc .toc-pill-item:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(179, 143, 95, 0.25);
}

@media screen and (max-width: 768px) {
  .article-quick-toc {
    padding: 14px 16px;
    margin: 10px 0 25px;
  }
  .article-quick-toc .toc-pills {
    max-height: 160px;
    overflow-y: auto;
    padding-bottom: 4px;
  }
  .article-quick-toc .toc-pill-item {
    font-size: 0.78rem;
    padding: 4px 10px;
  }
}
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold) 0%, #ecd5b3 100%);
  z-index: 999999;
  width: 0%;
  transition: width 0.08s ease-out;
  pointer-events: none;
}

/* 2. 抽屜選單搜尋框與手風琴摺疊 (Accordion & Search) */
.slideover-search-wrap {
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ebe7e1;
}

.slideover-search-form {
  display: flex;
  align-items: center;
  background: #f7f5f1;
  border: 1px solid #e2ddd5;
  border-radius: 22px;
  padding: 2px 6px 2px 14px;
  transition: all 0.25s ease;
}

.slideover-search-form:focus-within {
  background: #ffffff;
  border-color: var(--color-gold);
  box-shadow: 0 2px 8px rgba(179, 143, 95, 0.2);
}

.slideover-search-form input[type="search"] {
  border: none;
  background: transparent;
  flex-grow: 1;
  font-size: 13px;
  outline: none;
  padding: 7px 0;
  color: #1d2327;
}

.slideover-search-form input[type="search"]::placeholder {
  color: #8c8f94;
}

.slideover-search-form button {
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  padding: 4px 8px;
  font-size: 13px;
  transition: transform 0.2s ease;
}

.slideover-search-form button:hover {
  transform: scale(1.15);
}

.slideover-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 9px 0;
  user-select: none;
  transition: color 0.2s ease;
}

.slideover-accordion-header:hover {
  color: var(--color-gold);
}

.accordion-icon {
  font-size: 11px;
  color: #a7aaad;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
  margin-left: 8px;
}

.slideover-item.has-sub.expanded .accordion-icon {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.slideover-item.has-sub .slideover-sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  padding-left: 12px;
  border-left: 2px solid #f0eee9;
  margin-left: 4px;
}

.slideover-item.has-sub.expanded .slideover-sub-menu {
  max-height: 600px;
  opacity: 1;
  margin-top: 4px;
  margin-bottom: 12px;
}

.btn-slideover-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, #9e7b4b 100%);
  color: #ffffff !important;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(179, 143, 95, 0.25);
  text-align: center;
}

.btn-slideover-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(179, 143, 95, 0.4);
}

/* 3. 手機端常駐極簡毛玻璃快捷動作列 (Mobile Sticky Action Bar) */
.mobile-sticky-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: rgba(18, 18, 18, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  padding: 6px 10px calc(6px + env(safe-area-inset-bottom));
  justify-content: space-around;
  align-items: center;
}

.mobile-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #a0a0a0;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
  min-width: 52px;
}

.mobile-action-item i {
  font-size: 16px;
  line-height: 1;
}

.mobile-action-item:hover,
.mobile-action-item.active {
  color: var(--color-gold);
}

.mobile-action-item.action-item-booking {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-gold) 0%, #c49e6c 100%);
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(179, 143, 95, 0.45);
  font-weight: 600;
}

.mobile-action-item.action-item-booking i {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .mobile-sticky-action-bar {
    display: flex;
  }

  body {
    padding-bottom: 68px !important;
  }

  .btn-back-to-top {
    bottom: 78px !important;
    right: 14px !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 14px !important;
  }

  /* 鎖定人像黃金焦點，徹底避免直式手機螢幕切除頭部 */
  .post-thumb,
  .location-card .post-thumb,
  .category-card img,
  .note-card img {
    object-position: center 15% !important;
  }

  /* 手機版簡介文案自動收斂為 3 行精華，保持排版緊湊吸睛 */
  .location-card .post-excerpt,
  .post-card .post-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ==========================================================================
   LOCATIONS BOTTOM SHEET (手機端底部滑出式景點選單)
   ========================================================================== */
.bottom-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bottom-sheet-overlay.active {
  opacity: 1;
  visibility: visible;
}

.bottom-sheet-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-sheet-drawer.active {
  transform: translateY(0);
}

.bottom-sheet-drag-handle {
  width: 44px;
  height: 5px;
  background: #dcdcde;
  border-radius: 3px;
  margin: 10px auto 4px;
  cursor: pointer;
}

.bottom-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 14px;
  border-bottom: 1px solid #f0eee9;
}

.bottom-sheet-tag {
  font-family: var(--font-en-serif);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
}

.bottom-sheet-title {
  font-size: 1.05rem;
  color: #1a1a1a;
  margin: 2px 0 0;
  font-weight: 600;
}

.bottom-sheet-close-btn {
  background: #f4f2ee;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.bottom-sheet-close-btn:hover {
  background: #e2ddd5;
  color: #111;
}

.bottom-sheet-body {
  padding: 14px 16px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.bottom-sheet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bottom-sheet-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #faf8f5;
  border: 1px solid #eee8df;
  border-radius: 8px;
  text-decoration: none;
  color: #2c3338 !important;
  transition: all 0.2s ease;
}

.bottom-sheet-card:hover,
.bottom-sheet-card:active {
  background: #ffffff;
  border-color: var(--color-gold);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(179, 143, 95, 0.18);
}

.sheet-badge {
  font-family: var(--font-en-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(179, 143, 95, 0.12);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sheet-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sheet-info strong {
  font-size: 0.92rem;
  color: #1a1a1a;
}

.sheet-info span {
  font-size: 0.76rem;
  color: #777777;
  margin-top: 2px;
}

.sheet-arrow {
  color: #c0b8ac;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.bottom-sheet-card:hover .sheet-arrow {
  color: var(--color-gold);
  transform: translateX(3px);
}

.bottom-sheet-footer-link {
  margin-top: 14px;
  text-align: center;
}

.btn-sheet-overview {
  display: block;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--color-gold) 0%, #9e7b4b 100%);
  color: #ffffff !important;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(179, 143, 95, 0.3);
  transition: all 0.2s ease;
}

.btn-sheet-overview:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(179, 143, 95, 0.4);
}

/* ==========================================================================
   CHATGPT-STYLE FLOATING SIDE TOC (桌面版側邊浮動導覽 ＆ 手機膠囊)
   ========================================================================== */
.floating-side-toc-container {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  width: 220px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 14px 14px 16px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-side-toc-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gold-dark, #8f6c3b);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0ede8;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.06em;
}

.floating-side-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 55vh;
  overflow-y: auto;
}

.floating-toc-link {
  font-size: 0.78rem;
  color: #666666;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-toc-link:hover {
  color: var(--color-gold-dark, #8f6c3b);
  background: #faf8f5;
}

.floating-toc-link.active {
  color: #1a1a1a;
  font-weight: 600;
  background: rgba(179, 143, 95, 0.12);
  border-left-color: var(--color-gold);
}

/* 手機端浮動章節膠囊 (Mobile Floating TOC Pill) */
.mobile-floating-toc-pill {
  position: fixed;
  bottom: 80px;
  left: 14px;
  z-index: 9980;
  background: #181818;
  border: 1.5px solid var(--color-gold);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
  max-width: 68vw;
}

.mobile-floating-toc-pill i {
  color: var(--color-gold);
  font-size: 12px;
}

.mobile-toc-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-floating-toc-pill:hover,
.mobile-floating-toc-pill:active {
  transform: translateY(-2px) scale(1.03);
  border-color: var(--color-gold);
}

/* 手機端浮動章節彈窗 (Mobile TOC Popup) */
.mobile-toc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10005;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-toc-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-toc-popup-card {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10006;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 75vh;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

.mobile-toc-popup-card.active {
  transform: translateY(0);
}

.mobile-toc-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 12px;
  border-bottom: 1px solid #f0ede8;
}

.mobile-toc-popup-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-toc-popup-close {
  background: #f4f2ee;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toc-popup-body {
  padding: 12px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #faf8f5;
  border: 1px solid #ede7dc;
  color: #333333 !important;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.mobile-toc-item.active {
  background: rgba(179, 143, 95, 0.14);
  border-color: var(--color-gold);
  color: var(--color-gold-dark, #8f6c3b) !important;
  font-weight: 600;
}

@media screen and (max-width: 1100px) {
  .floating-side-toc-container {
    display: none !important;
  }
}

/* ==========================================================================
   CONTACT & RESERVATION PAGE (跟我聯絡 ＆ 檔期預約專屬頂級版型)
   ========================================================================== */
.contact-page-wrapper {
  padding-bottom: 60px;
}

.contact-hero-section {
  background: linear-gradient(180deg, #fbf9f6 0%, #f4f0e8 100%);
  padding: 50px 20px 45px;
  text-align: center;
  border-bottom: 1px solid #ebe5dc;
  margin-bottom: 45px;
}

.contact-hero-tag {
  font-family: var(--font-en-serif);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.contact-hero-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.contact-hero-divider {
  width: 46px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 16px;
}

.contact-hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555555;
  max-width: 640px;
  margin: 0 auto;
}

/* 兩大預約卡片 (Booking Forms Grid) */
.contact-forms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.booking-card {
  background: #ffffff;
  border: 1px solid #e8e2d8;
  border-radius: 12px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 36px rgba(179, 143, 95, 0.16);
}

.booking-card-badge {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-en-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-gold);
  background: rgba(179, 143, 95, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
}

.booking-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #faf7f2;
  border: 1px solid rgba(179, 143, 95, 0.3);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.booking-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.booking-card-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 22px;
}

.booking-card-features {
  list-style: none;
  padding-left: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}

.booking-card-features li {
  font-size: 0.86rem;
  color: #444444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-card-features li i {
  color: var(--color-gold);
  font-size: 12px;
  flex-shrink: 0;
}

.booking-card-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* 確保 Maxbutton 滿版且呈現高級質感按鈕 */
.maxbutton-wrap {
  width: 100%;
}

.maxbutton-wrap a,
.maxbutton-wrap .maxbutton {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  box-sizing: border-box !important;
  padding: 14px 20px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}

.btn-card-sublink {
  display: inline-block;
  font-size: 0.82rem;
  color: #777777;
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease;
}

.btn-card-sublink:hover {
  color: var(--color-gold-dark, #8f6c3b);
  text-decoration: underline;
}

/* 2. 即時社群與聯絡管道 (Channels Grid) */
.contact-channels-section {
  margin-bottom: 50px;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 30px;
}

.section-header-centered .section-title-en {
  font-family: var(--font-en-serif);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.section-header-centered .section-title-zh {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.section-header-centered .section-desc {
  font-size: 0.88rem;
  color: #666666;
  max-width: 500px;
  margin: 0 auto;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #ebe5dc;
  border-radius: 10px;
  text-decoration: none;
  color: #2c3338 !important;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.channel-card:hover {
  background: #ffffff;
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(179, 143, 95, 0.18);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.channel-card:hover .channel-icon {
  transform: scale(1.12);
}

.icon-email { background: rgba(179, 143, 95, 0.12); color: var(--color-gold); }
.icon-ig { background: rgba(225, 48, 108, 0.1); color: #e1306c; }
.icon-threads { background: rgba(0, 0, 0, 0.08); color: #111111; }
.icon-fb { background: rgba(24, 119, 242, 0.1); color: #1877f2; }
.icon-user { background: rgba(76, 175, 80, 0.1); color: #2e7d32; }

.channel-body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.channel-label {
  font-size: 0.72rem;
  color: #888888;
  letter-spacing: 0.05em;
}

.channel-val {
  font-size: 0.92rem;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 2px 0 1px;
}

.channel-sub {
  font-size: 0.72rem;
  color: var(--color-gold);
}

/* 3. Facebook 訊息互動區 (FB Messenger Card) */
.fb-messenger-box-section {
  margin-bottom: 45px;
}

.fb-messenger-card {
  background: #ffffff;
  border: 1px solid #ebe5dc;
  border-radius: 12px;
  padding: 30px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.fb-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  text-align: left;
}

.fb-msg-icon {
  font-size: 34px;
  color: #0084ff;
  flex-shrink: 0;
}

.fb-card-header h4 {
  font-size: 1.05rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.fb-card-header p {
  font-size: 0.82rem;
  color: #666666;
  margin: 0;
}

.fb-widget-wrap {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

/* 4. 預約貼心小提醒 (Booking Notice) */
.booking-notice-section {
  margin-bottom: 40px;
}

.notice-card {
  background: #faf8f5;
  border: 1px solid #eee8de;
  border-radius: 10px;
  padding: 26px 30px;
}

.notice-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.notice-item strong {
  display: block;
  font-size: 0.88rem;
  color: #222222;
  margin-bottom: 6px;
}

.notice-item p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #666666;
  margin: 0;
}

@media screen and (max-width: 860px) {
  .contact-forms-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .notice-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .contact-hero-title {
    font-size: 1.7rem !important;
  }
  .fb-card-header {
    flex-direction: column;
    text-align: center;
  }
}


