/* =========================================================
   小森洗淨所 - 日系風格主視覺樣式
   Color palette: 和紙 / 墨色 / 抹茶 / 竹綠 / 藍染 / 朱色
   ========================================================= */

:root {
  --washi: #f5efe4;          /* 和紙底色 */
  --washi-deep: #ece3d2;     /* 深和紙 */
  --sumi: #1f1d1a;           /* 墨色 */
  --sumi-soft: #3a3833;      /* 柔墨 */
  --matcha: #7a8b6f;         /* 抹茶綠 */
  --bamboo: #4a6b4d;         /* 竹綠 */
  --bamboo-deep: #2f4a36;    /* 深竹綠 */
  --indigo: #3a5a7c;         /* 藍染 */
  --indigo-soft: #6b8aa8;    /* 淺藍染 */
  --shu: #c93f3f;            /* 朱色 */
  --gold: #b08d57;           /* 金茶 */
  --line: rgba(31, 29, 26, 0.12);

  --font-jp: "Shippori Mincho", "Noto Serif TC", "Noto Serif JP", "Source Han Serif TC", serif;
  --font-sans: "Noto Sans TC", "Noto Sans JP", "Hiragino Sans", system-ui, sans-serif;

  --font-size-nav: 0.95rem;        /* 桌機導覽連結 */
  --font-size-nav-mobile: 1.05rem; /* 手機導覽連結 */

  --max: 1200px;

  /* Radius scale —— 統一 4 階層 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --radius: var(--radius-sm); /* legacy alias */

  /* Spacing scale (8-pt system) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --shadow-soft: 0 6px 24px rgba(31, 29, 26, 0.06);
  --shadow-mid: 0 14px 36px rgba(31, 29, 26, 0.10);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Transition duration scale */
  --duration-fast:   200ms;
  --duration-base:   300ms;
  --duration-slow:   500ms;
  --duration-reveal: 900ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable; /* 永遠預留 scrollbar 空間，避免載入後 scrollbar 出現造成右側元素位移 */
  overflow-y: scroll; /* 後備：舊瀏覽器不支援 scrollbar-gutter 時，強制總是顯示 scrollbar */
}

body {
  font-family: var(--font-sans);
  color: var(--sumi);
  background: var(--washi);
  line-height: 1.75;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(122, 139, 111, 0.09), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(58, 90, 124, 0.08), transparent 40%);
}

img { max-width: 100%; display: block; }
a { color: var(--bamboo); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--shu); }

h1, h2, h3, h4 {
  font-family: var(--font-jp);
  font-weight: 600;
  color: var(--sumi);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: 0.08em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
h4 { font-size: clamp(1rem, 1.2vw, 1.15rem); }

p { color: var(--sumi-soft); }

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

/* =========================================================
   Decorative dividers & enso (円相)
   ========================================================= */
.section-title {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  padding-top: 8px;
}
.section-title .ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-jp);
  color: var(--matcha);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title .ja::before,
.section-title .ja::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--matcha);
  opacity: 0.45;
  flex-shrink: 0;
}
.section-title h2 { display: inline-block; }
/* 線+紅點裝飾已移除 */

.divider-wave {
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 24'><path d='M0 12 Q 10 2 20 12 T 40 12 T 60 12 T 80 12' fill='none' stroke='%237a8b6f' stroke-width='1.2' stroke-opacity='0.5'/></svg>");
  background-repeat: repeat-x;
  background-size: 80px 24px;
  margin: 60px 0;
  opacity: 0.6;
}

/* =========================================================
   Header / 導覽
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  background: rgba(245, 239, 228, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(245, 239, 228, 0.95);
  box-shadow: var(--shadow-soft);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .name {
  font-family: var(--font-jp);
  font-weight: 600;
  color: var(--sumi);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}
.brand-text .sub {
  font-size: 0.7rem;
  color: var(--matcha);
  letter-spacing: 0.3em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-jp);
  color: var(--sumi);
  padding: 10px 14px;
  font-size: var(--font-size-nav);
  letter-spacing: 0.12em;
  position: relative;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--shu);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s var(--ease);
}
/* hover 樣式只在「真有 hover 能力」的裝置觸發，避免觸控裝置點擊後 hover 黏住 */
@media (hover: hover) {
  .nav-links a:hover { color: var(--shu); }
  .nav-links a:hover::after { transform: scaleX(1); }
}
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
/* 防止滑鼠點擊後 focus 殘留造成底線黏住；僅鍵盤 focus 才顯示 outline，不影響底線 */
.nav-links a:focus { outline: none; }
.nav-links a:focus:not(:focus-visible)::after { transform: scaleX(0); }
.nav-links a:focus-visible { outline: 2px solid var(--bamboo); outline-offset: 2px; border-radius: 2px; }
.nav-cta {
  background: var(--bamboo);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.18em !important;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-cta:hover { background: var(--shu); transform: translateY(-1px); }
.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none; background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 22px; height: 1.5px;
  background: var(--sumi);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100vw;
    max-height: calc(100vh - 76px);    /* 使用 100vh 避開 backdrop-filter 造成的 containing block 問題 */
    max-height: calc(100dvh - 76px);   /* iOS 動態視口 */
    flex-direction: column;
    align-items: stretch;              /* 覆寫 desktop 的 align-items: center */
    gap: 0;
    background: var(--washi);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 40px;
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

  /* 一般連結 ・ 大 tap 區、分隔線、明確邊界 */
  .nav-links li {
    width: 100%;
    list-style: none;
  }
  .nav-links a:not(.nav-cta) {
    display: block;
    padding: 20px 12px;                /* 上下 padding 加大，避免誤觸 */
    width: 100%;
    text-align: center;
    font-size: var(--font-size-nav-mobile);
    letter-spacing: 0.15em;
    border-bottom: 1px solid rgba(31, 29, 26, 0.08);
    transition: background-color .2s var(--ease), color .2s var(--ease);
    box-sizing: border-box;
  }
  .nav-links li:nth-last-child(2) a:not(.nav-cta) { border-bottom: none; } /* 常見問題下方不要線 */
  .nav-links a:not(.nav-cta):active,
  .nav-links a:not(.nav-cta):hover {
    background-color: rgba(122, 139, 111, 0.1);
    color: var(--shu);
  }
  .nav-links a::after { display: none; }

  /* CTA 按鈕 ・ 與上方連結明確分離 */
  .nav-links li:last-child {
    margin-top: 28px;                  /* 與 常見問題 之間留 28px 空隙 */
    text-align: center;
  }
  .nav-cta {
    display: inline-block;
    border-bottom: none !important;
    padding: 16px 36px !important;
    width: auto !important;
    font-size: 1rem !important;
  }
}

/* =========================================================
   Hero
   ========================================================= */
/* ─── index.html 舊 Hero 區塊已移除（hero-enso / hero-bamboo / hero-eyebrow /
       hero-grid / hero-cta / hero h1 accent / @keyframes enso-rotate / sway）
       新版首頁改用 .page-hero + .stat-pill + .cta-cluster ─── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-jp);
  font-size: 1rem;
  letter-spacing: 0.18em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--bamboo);
  color: #fff;
  box-shadow: 0 6px 16px rgba(74, 107, 77, 0.16);
}
.btn-primary:hover {
  background: var(--shu);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 63, 63, 0.18);
  color: #fff;
}
.btn:focus-visible {
  outline: 2px solid var(--bamboo);
  outline-offset: 3px;
}
.btn-outline {
  background: transparent;
  color: var(--sumi);
  border: 1px solid var(--sumi);
}
.btn-outline:hover {
  background: var(--bamboo-deep);
  color: var(--washi);
  border-color: var(--bamboo-deep);
  transform: translateY(-2px);
}
.btn .arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ─── index.html 舊 Hero 視覺裝飾已移除（hero-stats / hero-visual / hero-circle /
       hero-logo-wrap / drop / @keyframes float, drop-float / hero responsive）
       新版首頁改用 .stat-pill-row + .stat-pill ─── */

/* =========================================================
   Sections
   ========================================================= */
section { padding: 96px 0; position: relative; }
@media (max-width: 880px) { section { padding: 64px 0; } }

.bg-soft { background: var(--washi-deep); }
.bg-ink {
  background: var(--sumi);
  color: var(--washi);
}
.bg-ink h2, .bg-ink h3 { color: var(--washi); }
.bg-ink p { color: rgba(245, 239, 228, 0.78); }
.bg-ink .section-title h2::after { background: var(--matcha); }

/* =========================================================
   Service cards
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 107, 77, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: var(--bamboo);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--washi-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  transition: background .4s var(--ease);
}
.service-card:hover .service-icon { background: var(--matcha); }
.service-card:hover .service-icon svg { stroke: #fff; }
.service-icon svg {
  width: 30px; height: 30px;
  stroke: var(--bamboo);
  fill: none;
  stroke-width: 1.6;
  transition: stroke .4s var(--ease);
}
.service-card h3 {
  margin-bottom: 12px;
  position: relative;
}
.service-card h3 .ja {
  display: block;
  font-size: 0.7rem;
  color: var(--matcha);
  letter-spacing: 0.3em;
  margin-bottom: 6px;
  font-weight: 400;
}
.service-card p { font-size: 0.95rem; line-height: 1.85; }
.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--bamboo);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  font-family: var(--font-jp);
}
.service-card .more::after {
  content: "→";
  transition: transform .3s var(--ease);
}
.service-card:hover .more::after { transform: translateX(4px); }

@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Pricing
   ========================================================= */
.price-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.price-tab {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--sumi-soft);
  padding: 10px 24px;
  font-family: var(--font-jp);
  letter-spacing: 0.18em;
  cursor: pointer;
  border-radius: 999px;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  font-size: 0.95rem;
}
.price-tab:hover { border-color: var(--bamboo); color: var(--bamboo); }
.price-tab.active {
  background: var(--bamboo);
  border-color: var(--bamboo);
  color: #fff;
}

.price-pane { display: none; animation: fadeUp .6s var(--ease); }
.price-pane.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Service list (折疊式服務項目：價格＋施工說明合一)
   設計：和紙卡片 + 印章式左縱條 + 價格主角 + 圓形 toggle
   ========================================================= */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- 單張卡片 ---- */
.svc-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(31, 29, 26, 0.03);
  transition:
    box-shadow .35s var(--ease),
    transform .35s var(--ease),
    border-color .35s var(--ease);
}

/* 左側竹綠印章縱條 —— 收合時為細條，展開時加深變實體 */
.svc-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--matcha);
  opacity: 0.55;
  transition:
    width .35s var(--ease),
    background .35s var(--ease),
    opacity .35s var(--ease);
}

.svc-item:hover {
  border-color: rgba(74, 107, 77, 0.35);
  box-shadow: var(--shadow-soft);
}
.svc-item:hover::before {
  opacity: 1;
}

/* 展開狀態：整張卡微微浮起、左側縱條變竹綠實體 */
.svc-item[open] {
  border-color: rgba(74, 107, 77, 0.4);
  box-shadow: var(--shadow-mid);
  transform: translateY(-1px);
}
.svc-item[open]::before {
  width: 5px;
  background: var(--bamboo);
  opacity: 1;
}

/* ---- summary（標題列） ---- */
.svc-item > summary {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 24px 28px 24px 36px;  /* 左側多 8px 給印章縱條 */
  cursor: pointer;
  list-style: none;
  transition: background .3s var(--ease);
}
.svc-item > summary::-webkit-details-marker { display: none; }
.svc-item > summary::marker { display: none; }
.svc-item > summary:hover { background: rgba(245, 239, 228, 0.4); }
.svc-item[open] > summary {
  background: linear-gradient(
    to bottom,
    rgba(245, 239, 228, 0.55) 0%,
    rgba(245, 239, 228, 0.25) 100%
  );
}

/* ---- 左側主標區 ---- */
.svc-item-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.svc-item-ja {
  font-family: var(--font-jp);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--matcha);
  font-weight: 500;
  text-transform: uppercase;
  /* 加上一個小印章點裝飾 */
  display: inline-flex;
  align-items: center;
}
.svc-item-ja::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--matcha);
  margin-right: 10px;
  opacity: 0.7;
}
.svc-item-name {
  font-family: var(--font-jp);
  color: var(--sumi);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  transition: color .3s var(--ease);
}
.svc-item:hover .svc-item-name,
.svc-item[open] .svc-item-name {
  color: var(--bamboo-deep);
}

/* ---- 價格（視覺主角） ---- */
.svc-item-price {
  font-family: var(--font-jp);
  font-size: 1.55rem;
  color: var(--bamboo-deep);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.svc-item-price small {
  font-size: 0.72rem;
  color: var(--sumi-soft);
  margin-left: 6px;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
}

/* ---- toggle 按鈕：圓形 token ---- */
.svc-item-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--washi);
  border: 1px solid var(--line);
  transition:
    background .3s var(--ease),
    border-color .3s var(--ease),
    transform .35s var(--ease);
}
.svc-item-toggle::before,
.svc-item-toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--bamboo);
  border-radius: 1px;
  transition:
    transform .3s var(--ease),
    background .3s var(--ease),
    opacity .3s var(--ease);
}
.svc-item-toggle::before {
  width: 14px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.svc-item-toggle::after {
  width: 1.5px; height: 14px;
  transform: translate(-50%, -50%);
}

.svc-item:hover .svc-item-toggle {
  background: var(--bamboo);
  border-color: var(--bamboo);
}
.svc-item:hover .svc-item-toggle::before,
.svc-item:hover .svc-item-toggle::after {
  background: #fff;
}

/* 展開後：toggle 變實心竹綠，僅顯示一條橫線（−） */
.svc-item[open] > summary .svc-item-toggle {
  background: var(--bamboo);
  border-color: var(--bamboo);
  transform: rotate(180deg);
}
.svc-item[open] > summary .svc-item-toggle::before {
  background: #fff;
}
.svc-item[open] > summary .svc-item-toggle::after {
  background: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

/* ---- 內容區（展開時） ---- */
.svc-item-body {
  padding: 4px 32px 28px 36px;
  position: relative;
  animation: svcFadeIn .4s var(--ease);
  background: linear-gradient(
    to bottom,
    rgba(245, 239, 228, 0.25) 0%,
    rgba(245, 239, 228, 0) 60%
  );
}
/* 內容區頂部一條淡淡的分隔線 —— 用日式繪卷感的虛線 */
.svc-item-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 32px;
  height: 1px;
  background-image: linear-gradient(
    to right,
    transparent 0,
    rgba(74, 107, 77, 0.25) 8px,
    rgba(74, 107, 77, 0.25) 16px,
    transparent 24px
  );
  background-size: 24px 1px;
  background-repeat: repeat-x;
}
.svc-item-body p {
  font-size: 0.94rem;
  color: var(--sumi-soft);
  line-height: 1.9;
  letter-spacing: 0.02em;
  max-width: 760px;
  padding-top: 16px;
}
.svc-item-body p + p { padding-top: 0; }
.svc-item-body p strong {
  color: var(--bamboo-deep);
  font-weight: 600;
}

/* 吊隱式價格表 */
.svc-price-table {
  width: 100%;
  max-width: 420px;
  margin: 14px 0 4px;
  border-collapse: collapse;
  font-family: var(--font-jp);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.svc-price-table thead th {
  background: var(--washi-deep);
  color: var(--sumi);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.svc-price-table thead th:last-child { text-align: right; }
.svc-price-table tbody td {
  padding: 10px 16px;
  font-size: 0.95rem;
  color: var(--sumi);
  border-bottom: 1px dashed var(--line);
  letter-spacing: 0.04em;
}
.svc-price-table tbody tr:last-child td { border-bottom: none; }
.svc-price-table tbody td:last-child {
  text-align: right;
  color: var(--bamboo-deep);
  font-weight: 600;
}
.svc-price-table tbody tr:hover { background: var(--washi); }
.svc-item-body ul {
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}
.svc-item-body ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--sumi-soft);
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.svc-item-body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.85em;
  width: 6px;
  height: 1.5px;
  background: var(--matcha);
}
.svc-item-body ul li strong {
  color: var(--bamboo-deep);
  font-weight: 600;
}

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

/* ---- 響應式 ---- */
@media (max-width: 720px) {
  .svc-list { gap: 10px; }
  .svc-item > summary {
    grid-template-columns: 1fr auto;
    gap: 14px 16px;
    padding: 18px 18px 18px 26px;
  }
  .svc-item-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .svc-item-price {
    grid-column: 1;
    grid-row: 2;
    font-size: 1.4rem;
  }
  .svc-item-toggle {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    width: 32px;
    height: 32px;
  }
  .svc-item-name { font-size: 1.05rem; }
  .svc-item-body { padding: 4px 20px 22px 26px; }
  .svc-item-body::before { left: 26px; right: 20px; }
}

.price-extra {
  margin-top: 28px;
  background: var(--washi);
  border-left: 3px solid var(--matcha);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.price-extra h4 {
  font-family: var(--font-jp);
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--bamboo-deep);
  letter-spacing: 0.15em;
}
.price-extra ul { list-style: none; }
.price-extra li {
  font-size: 0.9rem;
  color: var(--sumi-soft);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.price-extra li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--shu);
  font-weight: bold;
}

/* =========================================================
   Process / 流程
   ========================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border: 1px solid var(--matcha);
  border-radius: 50%;
  font-family: var(--font-jp);
  font-size: 1.4rem;
  color: var(--bamboo);
  margin-bottom: 22px;
  position: relative;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.process-step:hover .process-num {
  background: var(--bamboo);
  color: #fff;
  transform: rotate(360deg);
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.process-step p { font-size: 0.92rem; }

@media (max-width: 880px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
}

/* =========================================================
   Areas / 服務區域
   ========================================================= */
.areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.areas-list h3 {
  margin-top: 28px;
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: var(--bamboo-deep);
  letter-spacing: 0.15em;
}
.areas-list h3:first-child { margin-top: 0; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--sumi);
  font-family: var(--font-jp);
  letter-spacing: 0.08em;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  text-decoration: none;
}
.area-tag:hover {
  background: var(--bamboo);
  color: #fff;
  border-color: var(--bamboo);
  transform: translateY(-2px);
}
.area-tag.featured {
  background: rgba(74, 107, 77, 0.1);
  border-color: var(--matcha);
  color: var(--bamboo-deep);
}

.areas-visual {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.areas-visual .map-art {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(31, 29, 26, 0.08));
}
.areas-visual h3 {
  margin-top: 18px;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--bamboo-deep);
}
.areas-visual p {
  margin-top: 8px;
  font-size: 0.9rem;
}

@media (max-width: 880px) {
  .areas-wrap { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 22px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-jp);
  font-size: 1.05rem;
  color: var(--sumi);
  letter-spacing: 0.06em;
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--bamboo); }
.faq-q .icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
  transition: transform .4s var(--ease);
}
.faq-q .icon::before, .faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--bamboo);
  border-radius: 1px;
  transition: transform .4s var(--ease);
}
.faq-q .icon::before {
  left: 0; right: 0; top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-q .icon::after {
  top: 0; bottom: 0; left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}
.faq-item.open .faq-q .icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .4s var(--ease);
  padding: 0 12px;
  color: var(--sumi-soft);
  font-size: 0.95rem;
  line-height: 1.9;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 12px 24px;
}

/* =========================================================
   Reviews / 評價
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.review-card::before {
  content: "「";
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: var(--font-jp);
  font-size: 3rem;
  color: var(--matcha);
  opacity: 0.3;
  line-height: 1;
}
.review-stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.review-card p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--sumi);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--sumi-soft);
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.review-meta .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--washi-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bamboo);
  font-family: var(--font-jp);
  font-weight: 600;
}

@media (max-width: 880px) {
  .reviews { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA
   ========================================================= */
.cta-band {
  padding: 80px 0;
  background: var(--bamboo-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='45' fill='none' stroke='%23ffffff' stroke-width='0.4' opacity='0.35'/><circle cx='50' cy='50' r='35' fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.25'/></svg>");
  background-size: 280px;
  background-repeat: no-repeat;
  background-position: 105% 50%;
  opacity: 0.5;
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, 0.8); }
.cta-band .btn-primary {
  background: var(--shu);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.cta-band .btn-primary:hover { background: #fff; color: var(--bamboo-deep); }
.cta-band .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.cta-band .btn-outline:hover {
  background: #fff;
  color: var(--bamboo-deep);
  border-color: #fff;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .cta-band .container { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA BAND ・ 日系版本（全站統一樣式，從 beitun.css 抽出全域化）
   ========================================================= */
.cta-band-jp {
  background: var(--bamboo-deep);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.cta-band-jp .ctb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-band-jp .ctb-kanji {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: clamp(12rem, 22vw, 22rem);
  color: rgba(245, 239, 228, .05);
  line-height: .9;
  font-weight: 500;
  font-size-adjust: 0.5;
  contain: layout style paint;
}
.cta-band-jp .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band-jp .ctb-ja {
  display: block;
  font-family: var(--font-jp);
  font-size: .76rem;
  letter-spacing: .25em;
  color: var(--matcha);
  margin-bottom: 16px;
  position: relative;
  padding-left: 50px;
}
.cta-band-jp .ctb-ja::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 2px;
  background: var(--shu);
  transform: translateY(-50%);
}
.cta-band-jp h2 {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: var(--washi);
  letter-spacing: .06em;
  line-height: 1.5;
  margin: 0 0 14px 0;
}
.cta-band-jp p {
  color: rgba(245, 239, 228, .65);
  font-size: .92rem;
  margin: 0;
  line-height: 1.8;
  letter-spacing: .03em;
}
.cta-band-jp .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-band-jp .btn-outline {
  border-color: rgba(245, 239, 228, .35);
  color: var(--washi);
}
.cta-band-jp .btn-outline:hover {
  background: rgba(245, 239, 228, .08);
  border-color: var(--washi);
}

/* LINE 按鈕 — CTA 內視覺強調 */
.btn-line-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn.btn-line {
  background: #06c755;
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(6, 199, 85, .35);
  font-weight: 600;
}
.btn.btn-line:hover {
  background: #05a346;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 199, 85, .42);
  color: #fff;
}
.btn.btn-line:focus-visible {
  outline: 2px solid #06c755;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .cta-band-jp .container { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--sumi);
  color: rgba(245, 239, 228, 0.75);
  padding: 70px 0 30px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .brand .name { color: var(--washi); }
.footer-brand p {
  margin-top: 16px;
  line-height: 1.85;
  max-width: 320px;
  color: rgba(245, 239, 228, 0.6);
}
.footer-col h4 {
  font-family: var(--font-jp);
  color: var(--washi);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 24px; height: 1px;
  background: var(--matcha);
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; }
.footer-col a { color: rgba(245, 239, 228, 0.7); transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--matcha); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(245, 239, 228, 0.5);
}
.footer-bottom a { color: rgba(245, 239, 228, 0.85); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--matcha); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Floating Buttons
   ========================================================= */
.float-actions {
  position: fixed;
  right: 20px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 70;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bamboo);
  color: #fff;
  box-shadow: 0 6px 18px rgba(31, 29, 26, 0.2);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--shu);
  color: #fff;
}
.float-btn.line { background: #06c755; }
.float-btn.line:hover { background: #05a346; }
.float-btn.fb { background: #1877f2; }
.float-btn.fb:hover { background: #1465d4; }
.float-btn.back-to-top { background: var(--sumi); border: none; cursor: pointer; padding: 0; }
.float-btn.back-to-top:hover { background: var(--shu); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn .label {
  position: absolute;
  right: 64px;
  background: var(--sumi);
  color: var(--washi);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  transform: translateX(8px);
}
.float-btn:hover .label { opacity: 1; transform: translateX(0); }

/* =========================================================
   Page hero (內頁)
   ========================================================= */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--washi-deep), var(--washi));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--sumi-soft);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--matcha); }
.page-hero h1 {
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.page-hero .lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--sumi-soft);
}
.page-hero::before {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 24'><path d='M0 12 Q 10 2 20 12 T 40 12 T 60 12 T 80 12' fill='none' stroke='%237a8b6f' stroke-width='1' stroke-opacity='0.4'/></svg>");
  background-repeat: repeat-x;
  background-size: 80px 24px;
}

/* =========================================================
   Form
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  margin-bottom: 12px;
}
.contact-info > p {
  margin-bottom: 32px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 14px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.contact-card:hover { transform: translateX(4px); border-color: var(--bamboo); }
.contact-card .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--washi);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bamboo);
  flex-shrink: 0;
}
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card h4 {
  font-family: var(--font-jp);
  font-size: 1rem;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}
.contact-card a, .contact-card span {
  color: var(--sumi-soft);
  font-size: 0.92rem;
  display: block;
  line-height: 1.7;
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field label {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.88rem;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  color: var(--sumi);
}
.form-field label .req { color: var(--shu); margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--washi);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--sumi);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--bamboo);
  background: #fff;
}
.form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .30s; }
.reveal-delay-3 { transition-delay: .45s; }
.reveal-delay-4 { transition-delay: .60s; }

/* Ink bleed mark */
.ink-mark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  filter: blur(0.5px);
}

/* =========================================================
   LINE QR Card
   ========================================================= */
.line-qr-card {
  background: linear-gradient(135deg, #06c755 0%, #04a644 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  margin-bottom: 16px;
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.18);
  position: relative;
  overflow: hidden;
}
.line-qr-card::before {
  content: "";
  position: absolute;
  inset: -40px -40px auto auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.line-qr-card-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.line-qr-img {
  width: 130px; height: 130px;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.line-qr-img img { width: 100%; height: 100%; display: block; }
.line-qr-card h4 {
  font-family: var(--font-jp);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.line-qr-card h4 svg { width: 24px; height: 24px; fill: #fff; }
.line-qr-card p {
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.line-qr-card .line-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #06c755;
  padding: 9px 22px;
  border-radius: 999px;
  font-family: var(--font-jp);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.line-qr-card .line-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  color: #06c755;
}
@media (max-width: 520px) {
  .line-qr-card-inner { grid-template-columns: 1fr; text-align: center; }
  .line-qr-img { margin: 0 auto; }
}

/* =========================================================
   Areas page specific
   ========================================================= */
.tc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.tc-area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  text-decoration: none;
  color: var(--sumi);
  display: block;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.tc-area-card:hover {
  transform: translateY(-4px);
  border-color: var(--bamboo);
  box-shadow: var(--shadow-soft);
  color: var(--sumi);
}
.tc-area-card .name {
  font-family: var(--font-jp);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--bamboo-deep);
  margin-bottom: 6px;
}
.tc-area-card .desc {
  font-size: 0.85rem;
  color: var(--sumi-soft);
  line-height: 1.7;
}
.tc-area-card .arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--matcha);
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.tc-area-card:hover .arrow { transform: translateY(-50%) translateX(4px); color: var(--shu); }

/* =========================================================
   Misc utility
   ========================================================= */
.text-center { text-align: center; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }

/* 跨頁共用：section 副標說明段落 */
.section-sub {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--sumi-soft);
  font-size: 0.95rem;
}

/* 跨頁共用：日期/備注淡化 */
.muted { opacity: 0.7; }

/* 跨頁共用：內文 bamboo 底線連結 */
.link-text {
  color: var(--bamboo);
  border-bottom: 1px solid var(--matcha);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================
   Google Reviews 評價卡
   ========================================================= */
.google-rating {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 36px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  box-shadow: 0 12px 32px rgba(31,29,26,0.08);
  position: relative;
  overflow: hidden;
}
.google-rating::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #4285F4, #DB4437, #F4B400, #0F9D58);
}
.google-rating .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 36px;
}
.google-rating .g-logo {
  width: 70px; height: 70px;
  margin-bottom: 12px;
}
.google-rating .g-label {
  font-family: var(--font-jp);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--sumi-soft);
  text-transform: uppercase;
}
.google-rating .center {
  text-align: center;
}
.google-rating .score-big {
  font-family: var(--font-jp);
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--sumi);
  line-height: 1;
  letter-spacing: -0.02em;
}
.google-rating .score-big small {
  font-size: 1.6rem;
  color: var(--sumi-soft);
  font-weight: 400;
  margin-left: 4px;
}
.google-rating .stars-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 12px 0 6px;
}
.google-rating .star {
  width: 26px; height: 26px;
  fill: #fbbc04;
  filter: drop-shadow(0 1px 2px rgba(251,188,4,0.3));
}
.google-rating .count {
  color: var(--sumi-soft);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}
.google-rating .count strong {
  color: var(--sumi);
  font-weight: 600;
}
.google-rating .right {
  text-align: center;
}
.google-rating .right p {
  font-size: 0.85rem;
  color: var(--sumi-soft);
  margin-bottom: 14px;
  max-width: 180px;
}
.google-rating .g-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--sumi);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-jp);
  letter-spacing: 0.12em;
  font-size: 0.88rem;
  text-decoration: none;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 2px 8px rgba(31,29,26,0.05);
}
.google-rating .g-btn:hover {
  border-color: #4285F4;
  color: #4285F4;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(66,133,244,0.18);
}

@media (max-width: 880px) {
  .google-rating {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
  }
  .google-rating .left { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 22px; }
  .google-rating .score-big { font-size: 3.6rem; }
}

/* ─── index.html 舊 Google 個別評論卡已移除（g-review / g-review-head /
       g-review-avatar / g-review-meta / g-review-name / g-review-time /
       g-review-stars / g-review-text）改用 .review-trio + .review-card ─── */

/* =========================================================
   SOP Section (詳細施工流程) — 垂直序號 timeline 版型
   設計原則：阿拉伯數字大字為視覺主角、單一閱讀路徑由上而下、
            漢字僅作裝飾、第一步特別放大強調。
   ========================================================= */
.sop-section {
  position: relative;
  background:
    radial-gradient(ellipse 1200px 600px at 50% 0%, rgba(122, 139, 111, 0.06), transparent 60%),
    radial-gradient(ellipse 1000px 500px at 50% 100%, rgba(176, 141, 87, 0.05), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f1 60%, var(--washi) 100%);
  overflow: hidden;
}
.sop-section::before {
  /* 細微和紙紋理（純 CSS 不依賴外部圖） */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(122, 139, 111, 0.025) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(-45deg, rgba(31, 29, 26, 0.018) 0 1px, transparent 1px 32px);
  pointer-events: none;
  opacity: 1;
}
.sop-section > .container { position: relative; z-index: 1; }

/* 上下日式書道封印分隔 */
.sop-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  z-index: 1;
}
.sop-divider--top { padding-top: 24px; }
.sop-divider--bottom { padding-bottom: 24px; }
.sop-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 139, 111, 0.45) 40%, rgba(122, 139, 111, 0.45) 60%, transparent);
}
.sop-divider-mark {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jp);
  font-size: 0.95rem;
  color: #fff;
  background: var(--matcha);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--matcha), 0 2px 8px rgba(31, 29, 26, 0.08);
  letter-spacing: 0;
  font-weight: 500;
  border-radius: 2px;
  transform: rotate(-2deg);
}
.sop-divider-mark--alt {
  background: var(--shu);
  box-shadow: 0 0 0 1px var(--shu), 0 2px 8px rgba(31, 29, 26, 0.08);
  transform: rotate(2deg);
}

/* 主流程容器 — 單欄垂直 timeline（v2 redesign） */
.sop-flow {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  --sop-num-col: 160px;
  --sop-gap: 40px;
  --sop-line-x: calc(var(--sop-num-col) + var(--sop-gap) / 2);
}
.sop-flow::before {
  /* 連續軸線 — 對齊欄位之間的中央位置，貫穿所有步驟 */
  content: "";
  position: absolute;
  left: var(--sop-line-x);
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(122, 139, 111, 0) 0%,
    rgba(122, 139, 111, 0.45) 6%,
    rgba(122, 139, 111, 0.45) 92%,
    rgba(201, 63, 63, 0.55) 100%);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

/* 卡片本體 — 兩欄：序號區｜內文卡 */
.sop-card {
  position: relative;
  display: grid;
  grid-template-columns: var(--sop-num-col) 1fr;
  align-items: stretch;
  column-gap: var(--sop-gap);
  z-index: 1;
}

/* 軸線上的圓點 — 直接掛在 .sop-card 上，固定對齊軸線 */
.sop-card::before {
  content: "";
  position: absolute;
  left: var(--sop-line-x);
  top: 38px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--matcha);
  transform: translateX(-50%);
  box-shadow: 0 0 0 5px var(--washi);
  z-index: 2;
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

/* 序號區（左欄） — 阿拉伯數字大字 + 漢字小裝飾 */
.sop-num-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 2px;
  padding-right: 0;
  text-align: right;
  user-select: none;
}
.sop-num-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--matcha);
  margin-bottom: 4px;
}
.sop-num {
  display: block;
  font-family: var(--font-jp), 'Noto Serif TC', serif;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 0.95;
  color: var(--sumi);
  letter-spacing: -0.02em;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  transition: color .4s var(--ease), transform .4s var(--ease);
}
.sop-num-kanji {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--matcha);
  letter-spacing: 0.1em;
  margin-top: 2px;
  opacity: 0.7;
}

/* 內文卡（右欄） */
.sop-card-body {
  background: #ffffff;
  border: 1px solid rgba(31, 29, 26, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 28px 22px;
  box-shadow: 0 4px 16px rgba(31, 29, 26, 0.04);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  min-width: 0;
}
.sop-card-body::before {
  /* 左側抹茶細條 */
  content: "";
  position: absolute;
  top: 22px; bottom: 22px;
  left: 0;
  width: 3px;
  background: var(--matcha);
  border-radius: 0 2px 2px 0;
  transition: background .4s var(--ease), width .4s var(--ease);
}

.sop-card:hover .sop-card-body {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 29, 26, 0.08);
  border-color: rgba(122, 139, 111, 0.4);
}
.sop-card:hover .sop-num { color: var(--matcha); }
.sop-card:hover::before {
  background: var(--matcha);
  transform: translateX(-50%) scale(1.2);
}

/* 第一步 — 視覺最強烈的入口 */
.sop-card--first .sop-num {
  font-size: 5.8rem;
  color: var(--matcha);
  font-weight: 700;
}
.sop-card--first .sop-num-label {
  color: var(--shu);
  font-size: 0.74rem;
}
.sop-card--first::before {
  width: 15px;
  height: 15px;
  top: 44px;
  background: var(--matcha);
  border-color: var(--matcha);
  box-shadow: 0 0 0 5px var(--washi), 0 0 0 7px rgba(122, 139, 111, 0.25);
}
.sop-card--first .sop-card-body {
  border-color: rgba(122, 139, 111, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbf5 100%);
  box-shadow: 0 8px 24px rgba(122, 139, 111, 0.1);
}
.sop-card--first .sop-card-body::before { width: 4px; }

/* 卡片內文字 */
.sop-card h4 {
  font-family: var(--font-jp);
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--sumi);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.sop-card h4 .ja {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--matcha);
  letter-spacing: 0.25em;
  margin-right: 10px;
  font-weight: 500;
  font-family: var(--font-sans);
}
.sop-card p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--sumi-soft);
  margin-bottom: 10px;
}
.sop-card p strong {
  color: var(--shu);
  font-weight: 600;
}
.sop-card ul {
  margin-top: 6px;
  padding-left: 0;
  list-style: none;
}
.sop-card ul li {
  font-size: 0.88rem;
  color: var(--sumi-soft);
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}
.sop-card ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--matcha);
  font-weight: 700;
}

/* 強調徽章 — 起 / 核心 / 完了 */
.sop-pin {
  display: inline-block;
  padding: 2px 10px;
  background: var(--matcha);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  border-radius: 2px;
  margin-bottom: 10px;
  font-weight: 500;
}
.sop-pin--shu { background: var(--shu); }
.sop-pin--start { background: var(--shu); }

/* 核心步驟（PHASE 05） */
.sop-card--core .sop-card-body {
  border-color: rgba(122, 139, 111, 0.45);
  background: linear-gradient(180deg, #ffffff 0%, #f7faf3 100%);
}
.sop-card--core .sop-card-body::before { width: 4px; }
.sop-card--core .sop-num { color: var(--matcha); }
.sop-card--core::before {
  background: var(--matcha);
  border-color: var(--matcha);
}

/* 最終步驟（PHASE 09） */
.sop-card--final .sop-card-body {
  border-color: rgba(201, 63, 63, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #fdf6f5 100%);
}
.sop-card--final .sop-card-body::before {
  background: var(--shu);
  width: 4px;
}
.sop-card--final .sop-num { color: var(--shu); }
.sop-card--final .sop-num-kanji { color: var(--shu); }
.sop-card--final::before {
  background: var(--shu);
  border-color: var(--shu);
}
.sop-card--final:hover .sop-num { color: var(--shu); }
.sop-card--final:hover::before {
  background: var(--shu);
  transform: translateX(-50%) scale(1.2);
}

/* 平板（縮小序號區） */
@media (max-width: 960px) {
  .sop-flow {
    max-width: 720px;
    --sop-num-col: 132px;
    --sop-gap: 32px;
  }
  .sop-num { font-size: 4rem; }
  .sop-card--first .sop-num { font-size: 5rem; }
}

/* 手機（序號縮小、軸線靠左、保持單欄垂直） */
@media (max-width: 720px) {
  .sop-flow {
    padding: 16px 0 4px;
    gap: 22px;
    --sop-num-col: 60px;
    --sop-gap: 22px;
  }
  .sop-flow::before {
    top: 14px;
    bottom: 14px;
  }
  .sop-num-block {
    align-items: flex-start;
    padding-left: 2px;
    text-align: left;
  }
  .sop-num-label {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    margin-bottom: 2px;
  }
  .sop-num {
    font-size: 2.2rem;
    line-height: 1;
  }
  .sop-num-kanji {
    font-size: 0.7rem;
    margin-top: 2px;
  }
  .sop-card::before {
    top: 26px;
    width: 9px;
    height: 9px;
    box-shadow: 0 0 0 4px var(--washi);
  }
  .sop-card--first .sop-num { font-size: 2.7rem; }
  .sop-card--first::before {
    top: 28px;
    width: 12px;
    height: 12px;
  }
  .sop-card-body {
    padding: 18px 18px 16px;
  }
  .sop-divider { padding: 0 16px; gap: 14px; }
  .sop-divider-mark { width: 30px; height: 30px; font-size: 0.85rem; }
}

/* 動效收斂：尊重 reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sop-card-body,
  .sop-num,
  .sop-card::before { transition: none; }
  .sop-card:hover .sop-card-body { transform: none; }
  .sop-card:hover .sop-card::before { transform: translateX(-50%); }
}

/* =========================================================
   Promise 承諾徽章
   ========================================================= */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.promise-badge {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 22px;
  text-align: center;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.promise-badge:hover {
  transform: translateY(-4px);
  border-color: var(--matcha);
  box-shadow: var(--shadow-soft);
}
.promise-badge .ico {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--washi);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.promise-badge .ico svg { width: 24px; height: 24px; stroke: var(--bamboo); fill: none; stroke-width: 1.6; }
.promise-badge h4 {
  font-family: var(--font-jp);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--sumi);
  margin-bottom: 6px;
}
.promise-badge p {
  font-size: 0.85rem;
  color: var(--sumi-soft);
  line-height: 1.7;
}
@media (max-width: 720px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Maintenance Tips (保養建議卡)
   ========================================================= */
.tip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tip-card {
  background: linear-gradient(180deg, #fff, var(--washi));
  border: 1px solid var(--line);
  border-left: 4px solid var(--matcha);
  border-radius: 6px;
  padding: 26px 26px 24px;
  position: relative;
  transition: transform .3s var(--ease), border-left-color .3s var(--ease);
}
.tip-card:hover { transform: translateX(4px); border-left-color: var(--shu); }
.tip-card .label {
  display: inline-block;
  background: var(--matcha);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.tip-card h4 {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--sumi);
  letter-spacing: 0.06em;
}
.tip-card p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--sumi-soft);
}
@media (max-width: 880px) {
  .tip-grid { grid-template-columns: 1fr; }
}

/* ─── index.html 舊 Hero stats 連結與 Google rating 整合已移除（hero-stat-link /
       hero-stats .num-rating / hero-stats .hs-star）改由 .stat-pill 處理 ─── */

/* ─── index.html 舊 Trust Band 已移除（trust-band / trust-row / trust-item /
       trust-ico）內容已拆併到 .stat-pill-row 與 §2 why-komori-home ─── */

/* ─── index.html 舊 Services 編輯風格已移除（svc-cards / svc-card / svc-num /
       svc-icon-wrap / svc-ja / svc-title / svc-divider / svc-desc / svc-price /
       svc-cta）。新版改用 .trio-grid + .trio-tile（services.html 仍使用
       .svc-price-table，與此處 .svc-price 為不同 class，保留另一處）─── */

/* ─── index.html 舊 Google rating strip 已移除（g-rating-strip /
       g-logo-mini / score-mini / stars-mini / count-mini / strip-divider /
       strip-link）。新版改用 .reviews-meta + 靜態 .review-trio ─── */

/* =========================================================
   Areas v6 - Compact Two Cards
   雙欄精簡卡片（CORE 台中 + EXTENDED 6 縣市）
   ========================================================= */
.areas-compact {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.ac-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 30px 26px;
  position: relative;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.ac-card:hover {
  border-color: rgba(122, 139, 111, 0.4);
  box-shadow: var(--shadow-soft);
}
.ac-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.ac-tag {
  font-family: var(--font-jp);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  background: var(--bamboo);
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  font-weight: 500;
}
.ac-card.is-extended .ac-tag {
  background: transparent;
  color: var(--matcha);
  border: 1px solid var(--matcha);
}
.ac-head h3 {
  font-family: var(--font-jp);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--sumi);
  font-weight: 600;
}
.ac-card.is-extended .ac-head h3 {
  font-size: 1.25rem;
}
.ac-head .ac-region {
  font-size: 0.78rem;
  color: var(--sumi-soft);
  margin-left: auto;
  letter-spacing: 0.05em;
}

.ac-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--sumi-soft);
  margin: 12px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.ac-desc strong {
  color: var(--sumi);
  font-weight: 600;
}
.ac-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 6px;
}
.ac-zone {
  display: inline-flex;
  padding: 4px 11px;
  font-size: 0.82rem;
  font-family: var(--font-jp);
  color: var(--sumi);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  letter-spacing: 0.04em;
}
.ac-zone:hover {
  background: var(--bamboo);
  color: #fff;
  border-color: var(--bamboo);
  transform: translateY(-1px);
}
.ac-note {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--sumi-soft);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* 右欄：6 縣市清單 */
.ac-cities {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.ac-cities li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--font-jp);
}
.ac-cities li:last-child { border-bottom: none; }
.ac-cities .ac-num {
  font-size: 0.7rem;
  color: var(--matcha);
  letter-spacing: 0.18em;
  min-width: 22px;
}
.ac-cities .ac-name {
  font-size: 1rem;
  color: var(--sumi);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.ac-cities .ac-en {
  font-size: 0.7rem;
  color: var(--sumi-soft);
  letter-spacing: 0.15em;
  margin-left: auto;
}

@media (max-width: 880px) {
  .areas-compact { grid-template-columns: 1fr; gap: 16px; }
  .ac-card { padding: 22px 22px 20px; }
  .ac-head h3 { font-size: 1.4rem; }
}

/* =========================================================
   Areas v7 — Ledger / Bookpage
   書頁目錄式：純排版 + 細線 + 朱印點綴。無大色塊、無大日文數字。
   ========================================================= */
.areas-ledger {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 8px 4px 0;
  position: relative;
}
/* 中間細分隔線（書頁裝訂感） */
.areas-ledger::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: calc(100% * 1.55 / 2.55);
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    rgba(31, 29, 26, 0.18) 8%,
    rgba(31, 29, 26, 0.18) 92%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── 左欄：台中主章 ───────────────────── */
.al-core {
  padding-right: 28px;
}
.al-corner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.al-stamp {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jp);
  font-size: 1.05rem;
  color: var(--shu);
  border: 1.5px solid var(--shu);
  border-radius: var(--radius-sm);
  letter-spacing: 0;
  transform: rotate(-4deg);
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 63, 63, 0.06), transparent 70%);
  flex-shrink: 0;
}
.al-corner-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.al-corner-meta .al-kana {
  font-family: var(--font-jp);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--matcha);
}
.al-corner-meta .al-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--sumi-soft);
}

.al-name {
  font-family: var(--font-jp);
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sumi);
  margin: 0 0 6px;
  line-height: 1.1;
}
.al-name .al-dot {
  color: var(--matcha);
  font-weight: 400;
  margin: 0 0.05em;
  opacity: 0.7;
}
.al-sub {
  font-family: var(--font-jp);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--sumi-soft);
  margin: 0 0 22px;
}

/* 帶字水平分隔線（目錄分節感） */
.al-rule {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  font-family: var(--font-jp);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--matcha);
  text-transform: uppercase;
}
.al-rule::before,
.al-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(31, 29, 26, 0.14);
}
.al-rule span {
  flex-shrink: 0;
  padding: 0 2px;
}

/* 19 區清單：靠字級+間距，不靠 chip 色塊 */
.al-zones {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px 6px;
}
.al-zones li {
  position: relative;
}
.al-zones a {
  display: block;
  padding: 7px 6px 7px 14px;
  font-family: var(--font-jp);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--sumi);
  text-decoration: none;
  position: relative;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
/* 每項前的細小裝飾點（取代 chip 邊框） */
.al-zones a::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 4px;
  height: 1px;
  background: var(--matcha);
  opacity: 0.55;
  transition: width .25s var(--ease), background .25s var(--ease);
}
.al-zones a:hover {
  color: var(--bamboo-deep);
  padding-left: 18px;
}
.al-zones a:hover::before {
  width: 8px;
  background: var(--shu);
  opacity: 1;
}

.al-foot {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(31, 29, 26, 0.12);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--sumi-soft);
  line-height: 1.75;
}

.al-ext-foot {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(31, 29, 26, 0.12);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--sumi-soft);
  line-height: 1.75;
  text-align: center;
}

/* ── 右欄：6 縣市時刻表式清單 ─────────── */
.al-ext {
  padding-left: 4px;
  padding-top: 4px;
}
.al-ext-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.al-ext-head .al-kana {
  font-family: var(--font-jp);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--matcha);
}
.al-ext-head .al-label {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  color: var(--sumi);
  font-weight: 600;
}

.al-cities {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(31, 29, 26, 0.12);
}
.al-cities li {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
  font-family: var(--font-jp);
  transition: background .25s var(--ease);
}
.al-cities li:hover {
  background: rgba(122, 139, 111, 0.06);
}
.al-cities li:hover .al-mark {
  background: var(--shu);
  border-color: var(--shu);
}
.al-cities a {
  display: contents;
  text-decoration: none;
  color: inherit;
}
.al-mark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--matcha);
  background: transparent;
  margin-left: 4px;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.al-city {
  font-size: 0.98rem;
  color: var(--sumi);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.al-en {
  font-family: var(--font-jp);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--sumi-soft);
}

/* ── 響應式 ─────────────────────────── */
@media (max-width: 960px) {
  .areas-ledger {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .areas-ledger::before { display: none; }
  .al-core { padding-right: 0; }
  .al-ext { padding-left: 0; padding-top: 0; }
  .al-name { font-size: 2rem; }
  .al-zones { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
  .areas-ledger { gap: 28px; }
  .al-name { font-size: 1.7rem; }
  .al-zones { grid-template-columns: repeat(3, 1fr); gap: 0 4px; }
  .al-zones a { font-size: 0.86rem; padding: 6px 4px 6px 12px; }
  .al-foot { font-size: 0.72rem; }
}

/* ↓ 舊版 v5 章節樣式保留 */
.areas-roster {
  max-width: 980px;
  margin: 0 auto;
}
.areas-roster {
  max-width: 980px;
  margin: 0 auto;
}
.area-chapter {
  border-top: 1px solid var(--sumi);
  padding: 52px 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.area-chapter:last-of-type {
  border-bottom: 1px solid var(--sumi);
}

.area-chapter-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.area-chapter-head .ch-num {
  font-family: var(--font-jp);
  font-size: 4.2rem;
  font-weight: 600;
  color: var(--bamboo-deep);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.area-chapter-head .ch-en {
  font-family: var(--font-jp);
  font-size: 0.7rem;
  color: var(--matcha);
  letter-spacing: 0.4em;
  font-weight: 500;
  margin-bottom: 18px;
}
.area-chapter-head .ch-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 0.75rem;
  color: var(--sumi-soft);
  background: var(--washi);
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-jp);
  letter-spacing: 0.1em;
}

.area-chapter-body h3 {
  font-family: var(--font-jp);
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  line-height: 1.3;
  color: var(--sumi);
}
.area-chapter-body .ch-en-sub {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--matcha);
  letter-spacing: 0.25em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.area-chapter-body .ch-desc {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--sumi-soft);
  margin-bottom: 30px;
  max-width: 620px;
}
.area-chapter-body .ch-desc strong {
  color: var(--sumi);
  font-weight: 600;
  border-bottom: 1.5px solid var(--bamboo);
  padding-bottom: 1px;
}

/* 19 區標籤雲（章節壹內部）*/
.zone-list {
  border-top: 1px dashed var(--line);
  padding-top: 22px;
}
.zone-list-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-jp);
  font-size: 0.72rem;
  color: var(--matcha);
  letter-spacing: 0.3em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.zone-list-label::before,
.zone-list-label::after {
  content: "";
  flex: 0 0 18px;
  height: 1px;
  background: var(--matcha);
  opacity: 0.5;
}
.zone-list-label::after { flex: 1; }
.zone-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.zone-tag {
  display: inline-flex;
  padding: 5px 13px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: var(--font-jp);
  color: var(--sumi);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.zone-tag:hover {
  background: var(--bamboo);
  border-color: var(--bamboo);
  color: #fff;
  transform: translateY(-1px);
}
.zone-list-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--sumi-soft);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/* 6 縣市網格（章節弍內部）*/
.cities-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.city-cell {
  background: transparent;
  padding: 22px 20px;
  text-decoration: none;
  display: block;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
  position: relative;
}
.city-cell:hover {
  background: var(--washi);
}
.city-cell .c-num {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.7rem;
  color: var(--matcha);
  letter-spacing: 0.25em;
  margin-bottom: 8px;
  font-weight: 500;
}
.city-cell .c-name {
  display: block;
  font-family: var(--font-jp);
  font-size: 1.25rem;
  color: var(--sumi);
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.city-cell .c-en {
  font-family: var(--font-jp);
  font-size: 0.75rem;
  color: var(--sumi-soft);
  letter-spacing: 0.15em;
}
.city-cell::after {
  content: "→";
  position: absolute;
  right: 18px; top: 22px;
  font-size: 0.95rem;
  color: var(--matcha);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.city-cell:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 880px) {
  .area-chapter {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .area-chapter-head { flex-direction: row; align-items: baseline; gap: 14px; flex-wrap: wrap; }
  .area-chapter-head .ch-num { font-size: 3rem; margin-bottom: 0; }
  .area-chapter-head .ch-en { margin-bottom: 0; }
  .area-chapter-body h3 { font-size: 1.7rem; }
  .cities-grid-clean { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .cities-grid-clean { grid-template-columns: 1fr; }
}

/* ↓ 舊版 v4 馬賽克樣式（保留以避免破壞別處）*/
.areas-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: minmax(120px, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.areas-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: minmax(120px, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.area-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.area-tile:hover {
  transform: translateY(-4px);
  border-color: var(--bamboo);
  box-shadow: 0 14px 28px rgba(31, 29, 26, 0.08);
}
.area-tile .num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(74, 107, 77, 0.16);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color .4s var(--ease);
}
.area-tile:hover .num { color: rgba(74, 107, 77, 0.32); }
.area-tile .jp {
  font-family: var(--font-jp);
  font-size: 0.62rem;
  color: var(--matcha);
  letter-spacing: 0.3em;
  margin-bottom: 4px;
  display: block;
}
.area-tile .name {
  font-family: var(--font-jp);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  color: var(--sumi);
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.area-tile .meta {
  font-size: 0.78rem;
  color: var(--sumi-soft);
  letter-spacing: 0.06em;
}
.area-tile .meta::before {
  content: "—";
  margin-right: 6px;
  color: var(--matcha);
}

/* 台中特殊（橫跨左側 3 列）*/
.area-tile.is-core {
  grid-column: 1;
  grid-row: span 3;
  background: linear-gradient(135deg, var(--bamboo) 0%, var(--bamboo-deep) 100%);
  color: #fff;
  border-color: var(--bamboo-deep);
  padding: 36px;
  box-shadow: 0 14px 36px rgba(74, 107, 77, 0.18);
}
.area-tile.is-core::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.area-tile.is-core::after {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 140px; height: 140px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.area-tile.is-core:hover {
  border-color: var(--bamboo-deep);
  box-shadow: 0 22px 44px rgba(74, 107, 77, 0.28);
}
.area-tile.is-core .num {
  color: rgba(255, 255, 255, 0.22);
  font-size: 2.6rem;
  top: 24px;
  right: 32px;
}
.area-tile.is-core:hover .num { color: rgba(255, 255, 255, 0.4); }
.area-tile.is-core .core-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  margin-bottom: 18px;
  font-family: var(--font-jp);
  color: #fff;
}
.area-tile.is-core .name {
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.area-tile.is-core .name-en {
  font-family: var(--font-jp);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  display: block;
}
.area-tile.is-core .core-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  margin-top: auto;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.area-tile.is-core .core-desc strong {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 880px) {
  .areas-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .area-tile.is-core {
    grid-column: 1 / -1;
    grid-row: span 1;
  }
  .area-tile.is-core .name { font-size: 1.8rem; }
  .area-tile.is-core .num { font-size: 2rem; }
}
@media (max-width: 480px) {
  .areas-mosaic { grid-template-columns: 1fr; }
}

/* 19 區標籤雲（保持與上面協調）*/
.tc-zones-cloud {
  background: var(--washi-deep);
  border-radius: 10px;
  padding: 28px 32px 26px;
  position: relative;
}
.tc-zones-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(31, 29, 26, 0.12);
}
.tc-zones-head .badge {
  display: inline-flex;
  align-items: center;
  background: var(--bamboo);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 4px;
}
.tc-zones-head h4 {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--sumi);
  margin: 0;
}
.tc-zones-head .sub {
  font-size: 0.82rem;
  color: var(--sumi-soft);
  letter-spacing: 0.05em;
  margin-left: auto;
}
.tc-zones-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tc-zone-tag {
  display: inline-flex;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: var(--font-jp);
  color: var(--sumi);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.tc-zone-tag:hover {
  background: var(--bamboo);
  border-color: var(--bamboo);
  color: #fff;
  transform: translateY(-2px);
}
.tc-zones-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--sumi-soft);
  line-height: 1.8;
}

/* ↓ 舊版台灣地圖樣式（不再使用，保留以避免破壞）*/
.areas-map-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 36px;
}
.areas-map-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 36px;
}
.taiwan-map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.taiwan-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(122,139,111,0.06), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(58,90,124,0.04), transparent 55%);
  pointer-events: none;
}
.taiwan-map-card .map-eyebrow {
  font-family: var(--font-jp);
  font-size: 0.7rem;
  color: var(--matcha);
  letter-spacing: 0.32em;
  text-align: center;
  margin-bottom: 8px;
  display: block;
  position: relative;
}
.taiwan-map-card .map-title {
  font-family: var(--font-jp);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.12em;
  color: var(--sumi);
  position: relative;
}

.taiwan-map-svg {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1;
}
.tw-island {
  fill: var(--washi-deep);
  stroke: var(--bamboo);
  stroke-width: 1;
  opacity: 0.55;
}
.tw-marker {
  fill: var(--bamboo);
  cursor: default;
  transition: r .3s var(--ease);
}
.tw-marker.is-tc {
  fill: var(--shu);
  filter: drop-shadow(0 2px 6px rgba(201,63,63,0.4));
}
.tw-pulse {
  fill: none;
  stroke: var(--shu);
  stroke-width: 1.5;
  transform-origin: 0 0;
  animation: tw-pulse-anim 2.4s var(--ease) infinite;
}
@keyframes tw-pulse-anim {
  0%   { r: 5; opacity: 0.7; }
  100% { r: 16; opacity: 0; }
}
.tw-label {
  font-family: var(--font-jp);
  fill: var(--sumi);
  /* font-size 由 SVG attribute 控制（22 service / 17 dim），不要在此覆蓋 */
  font-weight: 500;
  letter-spacing: 0.08em;
}
.tw-label.is-tc {
  font-size: 11px;
  font-weight: 700;
  fill: var(--bamboo-deep);
  letter-spacing: 0.12em;
}
.tw-line {
  stroke: var(--matcha);
  stroke-width: 0.5;
  stroke-dasharray: 2 2;
  opacity: 0.5;
}

/* 右側資訊 panel */
.areas-info-panel .ja {
  font-family: var(--font-jp);
  font-size: 0.78rem;
  color: var(--matcha);
  letter-spacing: 0.32em;
  margin-bottom: 14px;
  display: block;
}
.areas-info-panel h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.areas-info-panel > p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--sumi-soft);
  margin-bottom: 28px;
}

/* 北中部分組 */
.region-groups {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.region-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.region-label {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--matcha);
  letter-spacing: 0.18em;
  position: relative;
  padding-left: 14px;
}
.region-label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--bamboo);
  border-radius: 50%;
}
.region-cities {
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--sumi);
  letter-spacing: 0.1em;
}
.region-row.featured .region-cities .core {
  background: linear-gradient(180deg, transparent 65%, rgba(74,107,77,0.18) 65%);
  padding: 0 4px;
  font-weight: 600;
  color: var(--bamboo-deep);
}

/* 19 區標籤雲 */
.tc-zones-cloud {
  background: var(--washi-deep);
  border-radius: 12px;
  padding: 32px 36px 30px;
  position: relative;
}
.tc-zones-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(31,29,26,0.12);
}
.tc-zones-head .badge {
  display: inline-flex;
  align-items: center;
  background: var(--bamboo);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 4px;
}
.tc-zones-head h4 {
  font-family: var(--font-jp);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--sumi);
  margin: 0;
}
.tc-zones-head .sub {
  font-size: 0.84rem;
  color: var(--sumi-soft);
  letter-spacing: 0.05em;
}
.tc-zones-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tc-zone-tag {
  display: inline-flex;
  padding: 7px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-family: var(--font-jp);
  color: var(--sumi);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.tc-zone-tag:hover {
  background: var(--bamboo);
  border-color: var(--bamboo);
  color: #fff;
  transform: translateY(-2px);
}
.tc-zones-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--sumi-soft);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .areas-map-grid { grid-template-columns: 1fr; gap: 32px; }
  .taiwan-map-card { padding: 28px 20px; }
  .taiwan-map-svg { max-width: 220px; }
  .tc-zones-cloud { padding: 26px 20px 24px; }
}

/* ↓ 舊樣式保留以避免破壞別頁，但不再使用 */
.areas-clear {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: start;
}
/* 左：台中 CORE */
.areas-tc {
  background: linear-gradient(135deg, var(--bamboo) 0%, var(--bamboo-deep) 100%);
  color: #fff;
  border-radius: 12px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(74,107,77,0.18);
}
.areas-tc::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 50%;
  pointer-events: none;
}
.areas-tc::after {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 140px; height: 140px;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.areas-tc .core-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
  font-family: var(--font-jp);
}
.areas-tc h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 6px;
  font-family: var(--font-jp);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}
.areas-tc .sub {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  margin-bottom: 22px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.areas-tc .tc-zones-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  font-family: var(--font-jp);
}
.areas-tc .tc-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.areas-tc .tc-zone {
  display: inline-flex;
  padding: 5px 12px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  text-decoration: none;
  font-family: var(--font-jp);
  letter-spacing: 0.06em;
  transition: background .3s var(--ease);
}
.areas-tc .tc-zone:hover { background: rgba(255,255,255,0.28); color: #fff; }
.areas-tc .tc-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* 右：其他 6 縣市列表 */
.areas-others {
  padding: 4px 0;
}
.areas-others h4 {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
  color: var(--sumi);
}
.areas-others .others-sub {
  font-size: 0.85rem;
  color: var(--sumi-soft);
  margin-bottom: 20px;
}
.areas-others .other-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.areas-others .other-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px dashed var(--line);
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--sumi);
  letter-spacing: 0.06em;
  transition: padding-left .3s var(--ease), color .3s var(--ease);
}
.areas-others .other-list li:last-child { border-bottom: none; }
.areas-others .other-list li:hover { padding-left: 8px; color: var(--bamboo); }
.areas-others .other-list .tag {
  font-size: 0.78rem;
  color: var(--bamboo);
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.areas-others .other-list .tag::before {
  content: "✓";
  width: 16px; height: 16px;
  background: var(--matcha);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

@media (max-width: 880px) {
  .areas-clear { grid-template-columns: 1fr; gap: 32px; }
  .areas-tc { padding: 32px 28px 28px; }
  .areas-tc h3 { font-size: 1.7rem; }
}

/* ─── index.html 舊 Process Timeline 已移除（process-timeline /
       process-step-new / process-circle / step-icon / ja-num）
       改用 .flow-rail + .flow-step（漢字方位「其一～其四」+ E 細線時間軸）─── */

/* ─── .section-foot 已移除（無檔案引用）─── */

/* =========================================================
   Services Zigzag 新版 - 大型不對稱卡片
   ========================================================= */
.svc-zigzag {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.svc-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-mid);
  border-color: var(--bamboo);
}
.svc-row.reverse .svc-content { order: 2; }
.svc-row.reverse .svc-visual { order: 1; }

.svc-content .ja-label {
  display: inline-block;
  font-family: var(--font-jp);
  color: var(--matcha);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  margin-bottom: 14px;
}
.svc-content h3 {
  font-size: 1.85rem;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.svc-content .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--washi);
  border-left: 3px solid var(--bamboo);
  padding: 7px 16px;
  margin-bottom: 18px;
  font-family: var(--font-jp);
}
.svc-content .price-tag .from { font-size: 0.78rem; color: var(--sumi-soft); margin-right: 4px; }
.svc-content .price-tag .num { font-size: 1.4rem; font-weight: 600; color: var(--bamboo); }
.svc-content .price-tag .unit { font-size: 0.78rem; color: var(--sumi-soft); margin-left: 2px; }
.svc-content > p { font-size: 0.95rem; line-height: 1.85; margin-bottom: 22px; color: var(--sumi-soft); }
.svc-content ul { list-style: none; padding: 0; margin-bottom: 26px; }
.svc-content ul li {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--sumi);
  padding-left: 24px;
  position: relative;
}
.svc-content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 1px;
  background: var(--matcha);
}
.svc-content .more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jp);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: var(--bamboo);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--bamboo);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.svc-content .more-btn:hover { color: var(--shu); border-color: var(--shu); }
.svc-content .more-btn::after {
  content: "→";
  transition: transform .3s var(--ease);
}
.svc-content .more-btn:hover::after { transform: translateX(4px); }

.svc-visual {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}
.svc-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,107,77,0.08), transparent 70%);
}
.svc-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--matcha);
  opacity: 0.35;
  transition: transform .8s var(--ease);
}
.svc-row:hover .svc-visual::after { transform: rotate(180deg); }
.svc-visual svg.illust {
  width: 55%;
  height: 55%;
  fill: none;
  stroke: var(--bamboo);
  stroke-width: 1.4;
  position: relative;
  z-index: 1;
  transition: transform .5s var(--ease);
}
.svc-row:hover .svc-visual svg.illust { transform: scale(1.08); }

@media (max-width: 880px) {
  .svc-row { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; }
  .svc-row.reverse .svc-content { order: 0; }
  .svc-row.reverse .svc-visual { order: 0; }
  .svc-visual { max-width: 240px; }
  .svc-content h3 { font-size: 1.5rem; }
}

/* =========================================================
   Google Reviews 新版 - Hero rating + 分布條
   ========================================================= */
.g-rating-hero {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 14px 40px rgba(31,29,26,0.06);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.g-rating-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #4285F4, #DB4437, #F4B400, #0F9D58);
}
.g-rating-hero .left-pane {
  text-align: center;
  padding-right: 40px;
  border-right: 1px solid var(--line);
}
.g-rating-hero .g-logo-big { width: 56px; height: 56px; margin: 0 auto 16px; }
.g-score-huge {
  font-family: var(--font-jp);
  font-size: 5rem;
  line-height: 1;
  color: var(--sumi);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.g-score-huge small { font-size: 1.5rem; color: var(--sumi-soft); font-weight: 400; }
.g-stars-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
}
.g-stars-row svg { width: 22px; height: 22px; fill: #fbbc04; }
.g-rating-hero .count-text { color: var(--sumi-soft); font-size: 0.92rem; }
.g-rating-hero .count-text strong { color: var(--sumi); font-weight: 600; }

.g-rating-distribution { padding-left: 20px; }
.g-rating-distribution h4 {
  font-family: var(--font-jp);
  font-size: 0.95rem;
  color: var(--sumi);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.g-bar-row {
  display: grid;
  grid-template-columns: 36px 1fr 50px;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--sumi-soft);
  font-variant-numeric: tabular-nums;
}
.g-bar {
  height: 8px;
  background: rgba(31,29,26,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.g-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbc04, #f4a200);
  border-radius: 999px;
  width: 0;
  transition: width 1.4s var(--ease);
}
.g-rating-hero.in .g-bar-fill { width: var(--w, 0); }
.g-bar-row .pct { text-align: right; }
.g-rating-hero .write-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: linear-gradient(135deg, #4285F4, #1a73e8);
  color: #fff;
  padding: 11px 24px;
  border-radius: 999px;
  font-family: var(--font-jp);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 6px 16px rgba(66,133,244,0.25);
}
.g-rating-hero .write-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(66,133,244,0.35);
  color: #fff;
}

@media (max-width: 880px) {
  .g-rating-hero { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
  .g-rating-hero .left-pane { padding-right: 0; padding-bottom: 32px; border-right: none; border-bottom: 1px solid var(--line); }
  .g-rating-distribution { padding-left: 0; }
  .g-score-huge { font-size: 4rem; }
}

/* ─── index.html 舊 Reviews 跑馬燈已移除（review-marquee /
       review-marquee-track / g-review-avatar-img / @keyframes marquee-scroll）
       改為 §4 reviews-rail 靜態 3 卡 + .scroll-rail utility ─── */

/* =========================================================
   Areas 新版 - 同心圓主視覺 + 縣市網格
   ========================================================= */
.areas-hero-new {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}
.area-orbit {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}
.area-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--matcha);
  opacity: 0.4;
  pointer-events: none;
}
.area-orbit-ring.r1 { inset: 0; animation: orbit-rotate 100s linear infinite; }
.area-orbit-ring.r2 { inset: 14%; opacity: 0.5; animation: orbit-rotate 70s linear infinite reverse; }
.area-orbit-ring.r3 { inset: 28%; opacity: 0.6; border-style: solid; animation: orbit-rotate 50s linear infinite; }
@keyframes orbit-rotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
.area-orbit-center {
  position: absolute;
  inset: 36%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bamboo), var(--bamboo-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-family: var(--font-jp);
  letter-spacing: 0.2em;
  box-shadow: 0 12px 32px rgba(74,107,77,0.3);
  z-index: 2;
  text-align: center;
}
.area-orbit-center .core-name { font-size: 1.5rem; font-weight: 600; }
.area-orbit-center .core-sub { font-size: 0.6rem; opacity: 0.8; letter-spacing: 0.3em; margin-top: 4px; }

.area-orbit-dot {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--shu);
  border: 3px solid var(--washi);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(31,29,26,0.18);
  z-index: 3;
  animation: dot-pulse 3s ease-in-out infinite;
  transform: translate(-50%, -50%);
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 4px 10px rgba(31,29,26,0.18), 0 0 0 0 rgba(201,63,63,0.3); }
  50% { box-shadow: 0 4px 10px rgba(31,29,26,0.18), 0 0 0 8px rgba(201,63,63,0); }
}
.area-orbit-dot::after {
  content: attr(data-label);
  position: absolute;
  left: 50%; top: 16px;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: var(--sumi);
  font-family: var(--font-jp);
  letter-spacing: 0.1em;
  white-space: nowrap;
  background: rgba(255,255,255,0.95);
  padding: 3px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(31,29,26,0.1);
  pointer-events: none;
}
/* 6 個外圍縣市定位（六邊形分布）*/
.area-orbit-dot.d1 { top: 17%; left: 69%; }   /* 60° 台北 */
.area-orbit-dot.d2 { top: 17%; left: 31%; }   /* 120° 新北 */
.area-orbit-dot.d3 { top: 50%; left: 12%; }   /* 180° 桃園 */
.area-orbit-dot.d4 { top: 83%; left: 31%; }   /* 240° 新竹 */
.area-orbit-dot.d5 { top: 83%; left: 69%; }   /* 300° 彰化 */
.area-orbit-dot.d6 { top: 50%; left: 88%; }   /* 0° 南投 */

.areas-hero-text .ja {
  font-size: 0.78rem;
  font-family: var(--font-jp);
  color: var(--matcha);
  letter-spacing: 0.35em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.areas-hero-text h2 {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin-bottom: 20px;
  line-height: 1.4;
}
.areas-hero-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 22px;
}
.areas-hero-text .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.areas-hero-text .a-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--washi-deep);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--bamboo-deep);
  font-family: var(--font-jp);
}
.areas-hero-text .a-badge::before {
  content: "✓";
  width: 18px; height: 18px;
  background: var(--bamboo);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

/* 7 縣市卡片網格 */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.city-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--sumi);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.city-tile::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(74,107,77,0.06));
  transition: height .35s var(--ease);
}
.city-tile:hover {
  transform: translateY(-3px);
  border-color: var(--bamboo);
  box-shadow: 0 8px 24px rgba(31,29,26,0.08);
  color: var(--sumi);
}
.city-tile:hover::before { height: 100%; }
.city-tile.highlight {
  background: linear-gradient(135deg, var(--bamboo), var(--bamboo-deep));
  color: #fff;
  border-color: var(--bamboo-deep);
  box-shadow: 0 10px 28px rgba(74,107,77,0.25);
}
.city-tile.highlight:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.02);
}
.city-tile.highlight::before { display: none; }
.city-tile .city-name {
  font-family: var(--font-jp);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.city-tile .city-sub {
  font-size: 0.78rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .areas-hero-new { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .areas-hero-text .badges { justify-content: center; }
  .area-orbit { max-width: 320px; }
  .area-orbit-center { font-size: 1.2rem; }
  .area-orbit-center .core-name { font-size: 1.2rem; }
}

/* =========================================================
   Notice grid (預約須知三欄卡：優惠 / 車馬費 / 保固注意事項)
   ========================================================= */
.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.notice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.notice-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--matcha);
}
.notice-card--promo::before    { background: var(--shu); }
.notice-card--fee::before      { background: var(--bamboo); }
.notice-card--warranty::before { background: var(--matcha); }
.notice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}
.notice-card-tag {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--matcha);
  margin-bottom: 12px;
  padding: 4px 10px;
  background: var(--washi);
  border-radius: 999px;
}
.notice-card--promo    .notice-card-tag { color: var(--shu); }
.notice-card--fee      .notice-card-tag { color: var(--bamboo-deep); }
.notice-card--warranty .notice-card-tag { color: var(--matcha); }
.notice-card h3 {
  font-family: var(--font-jp);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--sumi);
  margin-bottom: 16px;
}
.notice-card-lead {
  font-size: 0.95rem;
  color: var(--sumi);
  line-height: 1.85;
  margin-bottom: 12px;
}
.notice-card-sub {
  font-size: 0.85rem;
  color: var(--sumi-soft);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.notice-list {
  list-style: none;
  padding: 0;
}
.notice-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.92rem;
  color: var(--sumi);
  line-height: 1.85;
  border-bottom: 1px dashed var(--line);
}
.notice-list li:last-child { border-bottom: none; }
.notice-list li::before {
  content: "・";
  position: absolute;
  left: 4px; top: 8px;
  color: var(--matcha);
  font-weight: 700;
}
.notice-card--promo    .notice-list li::before { color: var(--shu); }
.notice-card--fee      .notice-list li::before { color: var(--bamboo); }
.notice-card--warranty .notice-list li::before { color: var(--matcha); }
.notice-list li strong {
  color: var(--sumi);
  font-weight: 600;
}
@media (max-width: 1080px) {
  .notice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .notice-grid { grid-template-columns: 1fr; gap: 20px; }
  .notice-card { padding: 28px 24px 26px; }
}

/* =========================================================
   保固條款 Warranty Terms — 單欄連續排版
   位於 services.html，背景使用 washi（不再用 bg-soft）
   設計：明朝體文件、無框、無底色、純排版層級
   ========================================================= */
.warranty-section {
  background: var(--washi);
  padding: var(--space-7) 0 var(--space-6);
}

.warranty-doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-2);
}

/* 區塊頭 */
.warranty-doc__head {
  text-align: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  position: relative;
}
.warranty-doc__head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 48px;
  height: 1px;
  background: var(--matcha);
  opacity: 0.55;
  transform: translateX(-50%);
}
.warranty-doc__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--matcha);
  margin-bottom: 14px;
  text-indent: 0.45em;
}
.warranty-doc__head h2 {
  font-family: var(--font-jp);
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--sumi);
  line-height: 1.4;
  margin: 0 0 14px;
}
.warranty-doc__lead {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--sumi-soft);
  max-width: 540px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* 條目本體 — 文章流，無框無底 */
.warranty-article {
  position: relative;
  padding: var(--space-4) 0 var(--space-3);
  border-top: 1px solid rgba(31, 29, 26, 0.1);
}
.warranty-article:first-of-type {
  border-top: none;
  padding-top: 0;
}
.warranty-article:last-of-type {
  padding-bottom: 0;
}

/* 標題 — 明朝體大字 + 左側細抹茶條 */
.warranty-article h3 {
  position: relative;
  font-family: var(--font-jp);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--sumi);
  margin: 0 0 var(--space-2);
  padding-left: 18px;
}
.warranty-article h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  bottom: 0.32em;
  width: 3px;
  background: var(--matcha);
  border-radius: 1px;
}

/* 內文段落 */
.warranty-article p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--sumi-soft);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.warranty-article p:last-child {
  margin-bottom: 0;
}
.warranty-article p strong {
  color: var(--sumi);
  font-weight: 600;
}

/* 條列 — 純文字流，細項用 ・ 帶頭 */
.warranty-article ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
}
.warranty-article ul:last-child {
  margin-bottom: 0;
}
.warranty-article ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--sumi-soft);
  letter-spacing: 0.02em;
}
.warranty-article ul li::before {
  content: "・";
  position: absolute;
  left: 4px;
  top: 6px;
  color: var(--matcha);
  font-weight: 700;
  line-height: 1.85;
}

/* 第三條 - 不在保固範圍：醒目視覺強調（無框無底，靠朱色與留白突出） */
.warranty-article--exclude {
  margin: var(--space-3) 0;
  padding: var(--space-4) 0 var(--space-3);
  border-top: 2px solid var(--shu);
  border-bottom: 2px solid var(--shu);
  position: relative;
}
.warranty-article + .warranty-article--exclude,
.warranty-article--exclude + .warranty-article {
  border-top-width: 2px;
}
.warranty-article--exclude::before,
.warranty-article--exclude::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--shu);
  opacity: 0.35;
}
.warranty-article--exclude::before { top: 4px; }
.warranty-article--exclude::after  { bottom: 4px; }

.warranty-eyebrow-warn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: #fff;
  background: var(--shu);
  padding: 5px 14px 4px 18px;
  margin-bottom: 14px;
  text-indent: 0.4em;
  border-radius: 1px;
}

.warranty-article--exclude h3 {
  color: var(--shu);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-left: 22px;
  margin-bottom: var(--space-2);
}
.warranty-article--exclude h3::before {
  background: var(--shu);
  width: 5px;
  top: 0.2em;
  bottom: 0.2em;
}
.warranty-article--exclude p {
  color: var(--sumi);
  font-weight: 500;
}
.warranty-article--exclude ul {
  margin-top: 10px;
}
.warranty-article--exclude ul li {
  color: var(--sumi);
  font-size: 0.95rem;
  padding: 8px 0 8px 22px;
}
.warranty-article--exclude ul li::before {
  content: "✕";
  color: var(--shu);
  font-weight: 700;
  font-size: 0.78rem;
  top: 11px;
  left: 4px;
}

/* 中度強調變體（抹茶綠，比 exclude 朱紅警示淡，比一般條款明顯） */
.warranty-article--highlight {
  padding: var(--space-3) 0 var(--space-2);
  border-top: 1px solid var(--matcha);
  border-bottom: 1px solid var(--matcha);
  position: relative;
}
.warranty-article--highlight h3 {
  color: var(--bamboo-deep);
  font-weight: 700;
  padding-left: 18px;
  position: relative;
}
.warranty-article--highlight h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  bottom: 0.25em;
  width: 3px;
  background: var(--matcha);
  border-radius: 2px;
}
.warranty-eyebrow-info {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--bamboo-deep);
  background: rgba(122, 139, 111, 0.18);
  padding: 4px 12px 3px 14px;
  margin-bottom: 12px;
  text-indent: 0.3em;
  border-radius: 1px;
  line-height: 1;
}

/* 行內連結（從上方 notice-card 指向此區） */
.link-warranty {
  display: inline;
  color: var(--bamboo);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--matcha);
  padding-bottom: 1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link-warranty:hover,
.link-warranty:focus-visible {
  color: var(--bamboo-deep);
  border-bottom-color: var(--bamboo-deep);
  outline: none;
}

/* 平板 */
@media (max-width: 960px) {
  .warranty-section {
    padding: var(--space-6) 0 var(--space-5);
  }
  .warranty-doc {
    max-width: 680px;
  }
}

/* 手機 */
@media (max-width: 720px) {
  .warranty-section {
    padding: var(--space-5) 0 var(--space-4);
  }
  .warranty-doc__head {
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
  }
  .warranty-doc__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.36em;
  }
  .warranty-doc__lead {
    font-size: 0.9rem;
  }
  .warranty-article {
    padding: var(--space-3) 0 var(--space-2);
  }
  .warranty-article h3 {
    font-size: 1.12rem;
    padding-left: 14px;
  }
  .warranty-article h3::before {
    width: 2px;
  }
  .warranty-article p {
    font-size: 0.92rem;
    line-height: 1.85;
  }
  .warranty-article ul li {
    font-size: 0.9rem;
    padding-left: 18px;
  }
  .warranty-article--exclude {
    padding: var(--space-3) 0 var(--space-2);
  }
  .warranty-article--exclude h3 {
    font-size: 1.22rem;
    padding-left: 18px;
  }
  .warranty-article--exclude h3::before {
    width: 4px;
  }
  .warranty-eyebrow-warn {
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    padding: 4px 12px 3px 16px;
    margin-bottom: 12px;
  }
  .warranty-article--exclude ul li {
    font-size: 0.9rem;
    padding-left: 20px;
  }
}

/* ============================================================
   Deep Dive Tabs（區頁深度內容折疊區）
   - 用戶預設只看 hero/price/combos/reviews/CTA
   - 在地深度、案例、FAQ、鄰近區域全部進此區
   - SEO 內容 100% 保留在 HTML 內，僅視覺折疊
============================================================ */
.deepdive {
  background: var(--washi);
  padding: var(--space-7) 0;
  border-top: 1px solid rgba(31, 29, 26, 0.08);
}
.deepdive-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-4);
}
.deepdive-intro h2 {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.deepdive-intro p {
  font-size: 0.92rem;
  color: var(--sumi-soft);
  margin: 0;
}
.deepdive-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 auto var(--space-4);
  max-width: 900px;
  border-bottom: 2px solid var(--matcha);
  justify-content: center;
}
.deepdive-tab {
  padding: 14px 28px;
  background: transparent;
  border: none;
  font-family: var(--font-jp);
  font-size: 0.98rem;
  cursor: pointer;
  color: var(--sumi-soft);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}
.deepdive-tab:hover {
  color: var(--bamboo-deep);
}
.deepdive-tab.active {
  color: var(--bamboo-deep);
  border-bottom-color: var(--shu);
  font-weight: 500;
}
.deepdive-tab .count {
  font-size: 0.72rem;
  color: var(--matcha);
  margin-left: 6px;
  letter-spacing: 0.1em;
}
.deepdive-panes {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.deepdive-pane {
  display: none;
  padding: var(--space-4) 0;
  animation: deepdiveFade 0.3s ease;
}
.deepdive-pane.active {
  display: block;
}
@keyframes deepdiveFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 手機板：tab 改成水平捲動 */
@media (max-width: 640px) {
  .deepdive-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 var(--space-2);
    -webkit-overflow-scrolling: touch;
  }
  .deepdive-tab {
    padding: 12px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .deepdive-tabs::-webkit-scrollbar { display: none; }
}

/* ─────────────────────────────────────────────────────────
   Utility classes（W11 重構：取代 lite 區頁的 inline styles）
   ───────────────────────────────────────────────────────── */

/* 內容寬度限制 */
.measure-sm  { max-width: 720px; margin: 0 auto; }
.measure     { max-width: 840px; margin: 0 auto; }
.measure-lg  { max-width: 880px; margin: 0 auto; }
.measure-xl  { max-width: 980px; margin: 0 auto; }

/* 自適應網格 */
.auto-grid       { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.auto-grid-sm    { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.auto-grid-md    { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.flex-baseline   { display: flex; align-items: center; gap: 12px; }

/* 卡片底框 */
.card-soft       { background: #fff; border: 1px solid rgba(31,29,26,0.08); border-radius: 8px; padding: 24px 26px; }
.card-soft-sm    { background: #fff; border: 1px solid rgba(31,29,26,0.08); border-radius: 8px; padding: 18px 22px; }
.card-soft-lg    { background: #fff; border: 1px solid rgba(31,29,26,0.08); border-radius: 10px; padding: 28px 32px; }

/* 邊框與分隔線 */
.divider-dashed-bottom { border-bottom: 1px dashed rgba(31,29,26,0.12); }
.divider-dashed-top    { border-top: 1px dashed rgba(31,29,26,0.12); padding-top: 14px; }
.accent-left           { border-left: 4px solid var(--matcha); padding-left: 16px; }

/* 字體 helper */
.ja-h        { font-family: var(--font-jp); margin-bottom: 10px; }
.ja-heading  { font-family: var(--font-jp); font-size: 1.25rem; margin: 32px 0 14px; }
.ja-accent   { font-family: var(--font-jp); color: var(--bamboo-deep); }
.text-soft   { color: var(--sumi-soft); }
.text-small  { font-size: 0.85rem; color: var(--sumi-soft); line-height: 1.7; }
.text-center { text-align: center; }

/* 內文段落 */
.prose-line  { line-height: 1.95; }
.prose-tight { line-height: 1.85; font-size: 0.93rem; color: var(--sumi-soft); }

/* ─── 區頁價格表（Phase 2 重構 + UI Designer 改版） ──────────────────────── */
.local-price-table { width: 100%; border-collapse: collapse; margin-bottom: 64px; }
.local-price-table:last-child { margin-bottom: 0; }
.local-price-table tr { border-bottom: 1px dashed rgba(31,29,26,0.12); transition: background 0.18s; }
.local-price-table tbody tr:hover { background: rgba(74,107,77,0.04); }
.local-price-table tr:last-child { border-bottom: none; }
.local-price-table th, .local-price-table td { padding: 18px 8px; }
.local-price-table th[scope="row"] {
  text-align: left;
  font-weight: 500;
  font-family: var(--font-jp);
  color: var(--sumi);
  font-size: 1.02rem;
}
.local-price-table .note { font-size: 0.84rem; color: var(--sumi-soft); }
.local-price-table .note-warn { font-size: 0.84rem; color: var(--shu); }
.local-price-table .price {
  text-align: right;
  font-family: var(--font-jp), serif;
  font-size: 1.45rem;
  color: var(--bamboo-deep);
  white-space: nowrap;
  font-weight: 500;
}

/* 印章式服務導航 ・ 冷／洗／水 三個圓形 */
.service-stamps {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0 auto 56px;
  max-width: 640px;
}
.service-stamp {
  flex: 1;
  text-decoration: none;
  text-align: center;
  transition: transform 0.25s ease;
}
.service-stamp:hover { transform: translateY(-4px); }
.service-stamp .stamp-circle {
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74,107,77,0.08) 0%, rgba(122,139,111,0.12) 100%);
  border: 2px solid rgba(74,107,77,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jp);
  font-size: 2.6rem;
  color: var(--bamboo-deep);
  font-weight: 500;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.service-stamp:hover .stamp-circle {
  background: var(--bamboo-deep);
  color: #fff;
  border-color: var(--bamboo-deep);
  box-shadow: 0 10px 24px rgba(74,107,77,0.18);
}
.service-stamp .stamp-label {
  font-family: var(--font-jp);
  font-size: 0.92rem;
  color: var(--sumi);
  margin: 0 0 2px;
  font-weight: 500;
}
.service-stamp .stamp-en {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  color: var(--matcha);
  text-transform: uppercase;
  display: block;
}
@media (max-width: 640px) {
  .service-stamps { gap: 16px; }
  .service-stamp .stamp-circle { width: 72px; height: 72px; font-size: 2rem; }
  .service-stamp .stamp-label { font-size: 0.82rem; }
  .service-stamp .stamp-en { font-size: 0.6rem; letter-spacing: 0.2em; }
}

/* 表格分組錨點 */
.price-anchor { display: block; position: relative; top: -80px; visibility: hidden; }

/* ─── areas.html ・ 居住型態 finder（Wow Moment） ─── */
.housing-finder {
  max-width: 980px;
  margin: 0 auto;
}
.housing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 36px;
  justify-content: center;
}
.housing-tab {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .25s var(--ease);
  font-family: inherit;
  color: var(--sumi-soft);
}
.housing-tab .housing-num {
  font-family: var(--font-jp), serif;
  font-size: 0.92rem;
  color: rgba(31,29,26,0.3);
  line-height: 1;
  transition: color 0.25s ease;
}
.housing-tab .housing-label {
  font-family: var(--font-jp);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color .25s var(--ease);
}
.housing-tab .housing-sub { display: none; }

.housing-tab:hover .housing-label,
.housing-tab.active .housing-label {
  color: var(--bamboo-deep);
}
.housing-tab:hover .housing-num,
.housing-tab.active .housing-num {
  color: var(--matcha);
}

/* active 大字 + 底線 */
.housing-tab.active .housing-label {
  font-size: 1.85rem;
  letter-spacing: 0.06em;
}
.housing-tab.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--bamboo-deep);
  border-radius: 2px;
}

@media (max-width: 720px) {
  .housing-tabs { gap: 2px; }
  .housing-tab { padding: 10px 12px; gap: 6px; }
  .housing-tab .housing-num { font-size: 0.78rem; }
  .housing-tab .housing-label { font-size: 1.05rem; }
  .housing-tab.active .housing-label { font-size: 1.3rem; }
  .housing-tab.active::after { bottom: 2px; width: 20px; height: 2px; }
}

.housing-pane {
  display: none;
  animation: housing-fade 0.4s ease;
  position: relative;
}
.housing-pane.active {
  display: block;
}
@keyframes housing-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 「研究檔案抽屜」標本紙 ・ 取代原本卡片風 */
.housing-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  background: #fbf6ea;                      /* 標本紙更亮米色 */
  border: 1px solid rgba(58,42,30,0.12);
  border-radius: 0;                         /* 紙張不該圓角 */
  padding: 56px 56px 44px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .housing-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 22px 28px;
  }
}

/* 巨大數字浮水印（切到一半） */
.housing-content::before {
  content: '壱';                            /* 預設大樓，每個 pane override */
  position: absolute;
  right: -60px;
  bottom: -100px;
  font-family: var(--font-jp), serif;
  font-size: 22rem;
  line-height: 0.8;
  color: var(--bamboo-deep);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
#h-house .housing-content::before { content: '弐'; }
#h-old   .housing-content::before { content: '参'; }
#h-studio .housing-content::before { content: '肆'; }
#h-shop  .housing-content::before { content: '伍'; }

/* 朱印 ・ 右上角小森印 */
.housing-content::after {
  content: '森';
  position: absolute;
  top: 32px;
  right: 38px;
  width: 56px;
  height: 56px;
  border: 2px solid var(--shu);
  color: var(--shu);
  display: grid;
  place-items: center;
  font-family: var(--font-jp);
  font-size: 1.65rem;
  font-weight: 500;
  transform: rotate(-6deg);
  opacity: 0.85;
  box-shadow: inset 0 0 0 1px rgba(176,52,40,0.3);
  z-index: 1;
  pointer-events: none;
}

.housing-info {
  position: relative;
  z-index: 2;
}
.housing-info h3 {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  margin: 0 0 18px;
  color: var(--sumi);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--bamboo-deep);
  display: inline-block;
  font-weight: 500;
}
.housing-info h3::before {
  content: 'FILE / ';
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--matcha);
  font-family: var(--font-jp);
  margin-bottom: 8px;
}
.housing-info p {
  line-height: 1.95;
  color: var(--sumi);
  margin: 0 0 18px;
}
.housing-tips {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.housing-tips li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--sumi-soft);
  line-height: 1.7;
}
.housing-tips li::before {
  content: '─';
  position: absolute;
  left: 0;
  color: var(--matcha);
  font-weight: 700;
}

.housing-areas {
  position: relative;
  z-index: 2;
}

.housing-areas-label {
  font-family: var(--font-jp);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  color: var(--matcha);
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(58,42,30,0.2);
}
.housing-areas-label::before {
  content: '附箋 ／ ';
  letter-spacing: 0.1em;
}

/* 推薦看這幾區 ・ 改成「附箋」便利貼風格 */
.housing-area-card {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 16px 12px;
  background: #fff8d6;                     /* 便利貼黃 */
  text-decoration: none;
  color: var(--sumi);
  margin: 0 10px 14px 0;
  box-shadow: 2px 3px 0 rgba(58,42,30,0.08);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  min-width: 130px;
}
.housing-area-card:nth-child(3n)   { transform: rotate(-0.8deg); }
.housing-area-card:nth-child(3n+1) { transform: rotate(0.6deg); background: #fff8d6; }
.housing-area-card:nth-child(3n+2) { transform: rotate(-0.4deg); background: #e9f1d8; }
.housing-area-card:hover {
  transform: translateY(-3px) rotate(0);
  box-shadow: 3px 6px 0 rgba(58,42,30,0.12);
}
.housing-area-card strong {
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sumi);
}
.housing-area-card span {
  font-size: 0.78rem;
  color: var(--sumi-soft);
}

/* areas.html ・ Hero 中央對齊 + 按鈕置中 */
.page-hero--center { text-align: center; }
.page-hero--center .breadcrumb { text-align: center; }
.page-hero--center .lead { margin-left: auto; margin-right: auto; max-width: 720px; }
.area-hero-actions--center { justify-content: center; }

/* areas.html ・ 方位帖 v2 二段式 */
.hoi2 {
  max-width: 920px;
  margin: 48px auto 0;
}

.hoi-intro {
  max-width: 580px;
  margin: 18px auto 0;
  color: var(--sumi-soft);
  font-size: 0.92rem;
  line-height: 1.85;
  text-align: center;
}
.hoi-intro b {
  font-weight: 500;
  color: var(--sumi);
  border-bottom: 1px solid var(--matcha);
  padding-bottom: 1px;
}

/* === 正帖：19 區 3 欄密集網格 === */
.hoi2-main {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 0;
  border-top: 1px solid var(--matcha);
  border-bottom: 1px solid var(--matcha);
}
.hoi2-main li {
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.hoi2-main li:nth-last-child(-n+3) { border-bottom: none; }
.hoi2-main li[data-dir]::before {
  content: attr(data-dir);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-jp), serif;
  font-size: 0.72rem;
  color: var(--matcha);
  opacity: 0.55;
  letter-spacing: 0.1em;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.hoi2-main li a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0 11px 22px;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.hoi2-main b {
  font-family: var(--font-jp), serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sumi);
  letter-spacing: 0.04em;
}
.hoi2-main a > span {
  font-size: 0.74rem;
  color: var(--sumi-soft);
  letter-spacing: 0.02em;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}
.hoi2-main li a:hover { transform: translateX(2px); }
.hoi2-main li a:hover b { color: var(--bamboo-deep); }
.hoi2-main li:hover[data-dir]::before { opacity: 1; color: var(--shu); }

/* === 跋註：10 區單行印章流 === */
.hoi2-foot {
  margin: 22px 0 0;
  padding: 14px 0 0;
  text-align: center;
  font-family: var(--font-jp), serif;
  font-size: 0.88rem;
  color: var(--sumi-soft);
  letter-spacing: 0.18em;
  line-height: 2;
}
.hoi2-foot-label {
  display: inline-block;
  margin-right: 14px;
  padding: 2px 10px;
  font-size: 0.7rem;
  color: var(--matcha);
  border: 1px solid var(--matcha);
  letter-spacing: 0.2em;
  vertical-align: 2px;
}
.hoi2-foot span:not(.hoi2-foot-label) {
  position: relative;
  padding: 0 12px;
}
.hoi2-foot span:not(.hoi2-foot-label) + span:not(.hoi2-foot-label)::before {
  content: "・";
  position: absolute;
  left: -4px;
  color: var(--matcha);
  opacity: 0.5;
}

@media (max-width: 900px) {
  .hoi2-main { grid-template-columns: repeat(2, 1fr); column-gap: 24px; }
  .hoi2-main li:nth-last-child(-n+3) { border-bottom: 1px dashed rgba(0,0,0,0.06); }
  .hoi2-main li:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .hoi2-main { grid-template-columns: 1fr; column-gap: 0; }
  .hoi2-main li { border-bottom: 1px dashed rgba(0,0,0,0.06); }
  .hoi2-main li:last-child { border-bottom: none; }
  .hoi2-main li a { padding: 10px 0 10px 20px; }
  .hoi2-main b { font-size: 0.96rem; }
  .hoi2-foot { font-size: 0.82rem; letter-spacing: 0.1em; line-height: 2.2; }
  .hoi2-foot span:not(.hoi2-foot-label) { padding: 0 6px; }
}

/* === 舊 .hoi 樣式 ・ 已停用 === */
.hoi { display: none; }

/* ─── about.html ・ 不清單 朱印章單欄帖 ─── */
.not-roll {
  max-width: 760px;
  margin: 56px auto 0;
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--sumi);
  border-bottom: 1px solid var(--sumi);
}
.not-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px dashed rgba(31,29,26,0.12);
}
.not-row:last-child { border-bottom: none; }

.not-stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 78px;
  border: 1.5px solid var(--shu);
  color: var(--shu);
  font-family: var(--font-jp);
  line-height: 1;
  padding: 8px 0;
  background: transparent;
  letter-spacing: 0;
}
.not-stamp .t { font-size: 1.6rem; font-weight: 600; }
.not-stamp .n { font-size: 1rem; margin-top: 6px; opacity: 0.85; }

.not-text h3 {
  font-family: var(--font-jp);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--sumi);
  margin: 0 0 10px;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.not-text h3::before {
  content: '—';
  color: var(--matcha);
  margin-right: 10px;
  letter-spacing: 0;
}
.not-text p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--sumi-soft);
  margin: 0;
  max-width: 56ch;
}

@media (max-width: 640px) {
  .not-row { grid-template-columns: 56px 1fr; gap: 18px; padding: 24px 0; }
  .not-stamp { width: 48px; height: 60px; }
  .not-stamp .t { font-size: 1.2rem; }
  .not-stamp .n { font-size: 0.8rem; margin-top: 4px; }
  .not-text h3 { font-size: 1.25rem; }
}

/* ─── about.html ・ 用數字認識小森「四項註記」直書信箋 ─── */
.num-letters {
  max-width: 780px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.num-letter {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(31,29,26,0.08);
}
.num-letter:last-child { border-bottom: none; }
.num-letter .ord {
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--matcha);
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: fit-content;
  border-right: 1px solid var(--matcha);
  padding-right: 12px;
}
.num-letter p {
  font-family: var(--font-jp);
  font-size: 1.15rem;
  line-height: 2;
  color: var(--sumi);
  margin: 0;
  font-weight: 400;
}
.num-letter b {
  font-family: var(--font-jp);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--bamboo-deep);
  letter-spacing: -0.01em;
  margin: 0 4px;
  line-height: 1;
}
.num-letter b i {
  font-size: 0.7em;
  font-style: normal;
  color: var(--sumi-soft);
  margin-left: 2px;
}

@media (max-width: 640px) {
  .num-letter { grid-template-columns: 48px 1fr; gap: 14px; }
  .num-letter .ord { font-size: 0.85rem; padding-right: 8px; }
  .num-letter p { font-size: 1rem; line-height: 1.9; }
  .num-letter b { font-size: 1.5rem; }
}

/* ─── about.html ・ founder 章節印章「初／型／土」 ─── */
.founder-chapter {
  font-family: var(--font-jp);
  font-size: 1.25rem;
  margin: 36px 0 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--sumi);
  letter-spacing: 0.04em;
}
.founder-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--matcha);
  color: var(--matcha);
  font-family: var(--font-jp);
  font-size: 0.95rem;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0;
}

/* ─── about.html ・ 誤解清單 ×○ 對話反轉 ─── */
.myth-list {
  max-width: 880px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--sumi);
  border-bottom: 1px solid var(--sumi);
}
.myth-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-bottom: 1px dashed rgba(31,29,26,0.1);
}
.myth-row:last-child { border-bottom: none; }
.myth-side {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 22px 24px 22px 0;
  align-items: start;
}
.myth-side.wrong {
  border-right: 1px solid rgba(31,29,26,0.12);
  padding-right: 28px;
}
.myth-side.right {
  padding-left: 28px;
}
.myth-mark {
  font-family: var(--font-jp), serif;
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 500;
}
.myth-side.wrong .myth-mark {
  color: var(--shu);
  opacity: 0.75;
}
.myth-side.right .myth-mark {
  color: var(--bamboo-deep);
}
.myth-side p {
  margin: 4px 0 0;
  line-height: 1.85;
  color: var(--sumi);
}
.myth-side.wrong p {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--sumi-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(176,52,40,0.35);
  text-decoration-thickness: 1px;
}
.myth-side.right p {
  font-size: 0.92rem;
  color: var(--sumi);
}
.myth-side.right a {
  color: var(--bamboo);
  border-bottom: 1px solid var(--matcha);
  text-decoration: none;
}
@media (max-width: 720px) {
  .myth-row { grid-template-columns: 1fr; }
  .myth-side.wrong {
    border-right: none;
    border-bottom: 1px dashed rgba(31,29,26,0.08);
    padding: 18px 0 14px;
  }
  .myth-side.right { padding: 14px 0 18px; }
}

/* ─── about.html ・ 四項堅持「信條四句」 ─── */
.values-creed {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
}
.creed-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(31,29,26,0.08);
}
.creed-line:last-child { border-bottom: none; }
.creed-kanji {
  font-family: var(--font-jp), serif;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 500;
  color: var(--bamboo-deep);
  text-align: center;
  letter-spacing: 0;
}
.creed-line p {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--sumi);
}
.creed-line p b {
  font-weight: 500;
  color: var(--sumi);
  border-bottom: 1px solid var(--matcha);
  padding-bottom: 1px;
}
@media (max-width: 640px) {
  .creed-line { grid-template-columns: 56px 1fr; gap: 18px; padding: 20px 0; }
  .creed-kanji { font-size: 2.4rem; }
  .creed-line p { font-size: 1rem; }
}

/* ════════════════════════════════════════════════════════════
   about.html ・ Brand Bible motifs（4 agents 協作交付）
   ════════════════════════════════════════════════════════════ */

/* eyebrow-jp ─ 段首日英 eyebrow（取代 inline .ja / .hero-eyebrow） */
.eyebrow-jp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-jp);
  color: var(--matcha);
  font-size: 0.88rem;
  letter-spacing: 0.36em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.eyebrow-jp::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--matcha);
  flex-shrink: 0;
}

/* section-h3 ─ h3 統一規格 */
.section-h3 {
  font-family: var(--font-jp);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 500;
  color: var(--sumi);
  letter-spacing: 0.04em;
  margin: 40px 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.5;
}

/* measure 統一 line-height */
.measure { line-height: 1.95; }
.measure p + p { margin-top: 16px; }

/* chapter-seal ─ B motif 32×32 matcha 線框漢字 */
.chapter-seal,
.founder-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--matcha);
  color: var(--matcha);
  font-family: var(--font-jp);
  font-size: 0.95rem;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0;
  background: transparent;
}

/* rule-line ─ E motif 1px 細線 */
.rule-line {
  height: 1px;
  background: rgba(31, 29, 26, 0.18);
  border: none;
  margin: 0;
}
.rule-line--dashed {
  background: transparent;
  border-top: 1px dashed rgba(31, 29, 26, 0.22);
}

/* tate-mast ─ D motif 直書桅杆（≤768px 降級水平） */
.founder-mast-wrap {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: stretch;
}
.tate-mast {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  border-left: 1px solid rgba(31, 29, 26, 0.18);
  border-right: 1px solid rgba(31, 29, 26, 0.18);
  font-family: var(--font-jp);
  color: var(--sumi-soft);
  letter-spacing: 0.32em;
  font-size: 0.92rem;
  user-select: none;
}
.tate-mast__en {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--matcha);
}
.tate-mast__jp {
  font-size: 1rem;
  color: var(--sumi);
}

/* founder blockquote（去除色條圓角，改吃 rule-line 上下夾） */
.founder-quote {
  margin: 0;
  padding: 32px 4px;
  background: transparent;
  border: none;
  border-radius: 0;
}
.founder-quote__text {
  font-family: var(--font-jp);
  font-size: 1.12rem;
  line-height: 2;
  color: var(--sumi);
  margin: 0 0 22px;
}
.founder-sign {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: none;
}
.founder-sign__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid var(--sumi);
  color: var(--sumi);
  font-family: var(--font-jp);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  background: transparent;
}
.founder-sign__name {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--sumi);
  font-size: 1rem;
}
.founder-sign__role {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--sumi-soft);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .founder-mast-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tate-mast {
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    padding: 10px 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(31, 29, 26, 0.18);
    border-bottom: 1px solid rgba(31, 29, 26, 0.18);
    letter-spacing: 0.28em;
  }
  .founder-quote { padding: 24px 0; }
  .founder-quote__text { font-size: 1.02rem; line-height: 1.9; }
  .section-h3 { margin: 32px 0 12px; }
}

/* Whimsy ① ─ FILE No. 編號條（page-hero 末尾） */
.page-hero .file-no {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  padding: 8px 0 0;
  border-top: 1px dotted rgba(31, 29, 26, 0.18);
  font-family: var(--font-jp);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--sumi-soft);
}
.page-hero .file-no .fn-mark {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  font-size: 0.7rem;
  color: var(--bamboo-deep);
  border: 1px solid var(--bamboo-deep);
}
.page-hero .file-no .fn-sep { opacity: 0.45; }
@media (max-width: 520px) {
  .page-hero .file-no { font-size: 0.66rem; letter-spacing: 0.12em; gap: 6px; }
}

/* Whimsy ② ─ 「不」清單末尾契約落款 */
#what-we-dont-do { padding-bottom: 56px; }
#sop-philosophy   { padding-top: 56px; }
#what-we-dont-do .not-seal-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px dotted rgba(31, 29, 26, 0.15);
  font-family: var(--font-jp);
  font-size: 0.92rem;
  letter-spacing: 0.32em;
  color: var(--sumi);
}
#what-we-dont-do .not-seal-foot .nsf-vert {
  line-height: 1.4;
}
#what-we-dont-do .not-seal-foot .nsf-dot {
  color: var(--bamboo-deep);
  font-size: 0.78rem;
  opacity: 0.6;
}
@media (max-width: 520px) {
  #what-we-dont-do .not-seal-foot { font-size: 0.82rem; gap: 10px; }
}

/* ============================================================
   Whimsy ・ index.html §1.5  十章索引（純墨 + 細線，朱色 0 處）
   ============================================================ */
#sop-chapters-hint {
  padding: 28px 0 36px;
}
.sop-chapters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px dotted rgba(31, 29, 26, 0.22);
  border-bottom: 1px dotted rgba(31, 29, 26, 0.22);
  font-family: var(--font-jp);
  color: var(--sumi-soft);
  text-decoration: none;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.sop-chapters:hover {
  color: var(--sumi);
  border-color: rgba(47, 74, 54, 0.45);
}
.sop-chapters__lead {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  color: var(--matcha);
  white-space: nowrap;
}
.sop-chapters__rule {
  flex: 0 0 1px;
  align-self: stretch;
  background: rgba(31, 29, 26, 0.18);
  min-height: 18px;
}
.sop-chapters__list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: var(--sumi);
}
.sop-chapters__sep {
  color: var(--bamboo);
  opacity: 0.55;
  font-size: 0.72rem;
}
.sop-chapters__item--more {
  color: var(--bamboo-deep);
  font-weight: 500;
}
.sop-chapters__cta {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--bamboo);
  white-space: nowrap;
}
.sop-chapters:hover .sop-chapters__cta { color: var(--bamboo-deep); }
@media (max-width: 720px) {
  .sop-chapters {
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
    text-align: center;
  }
  .sop-chapters__rule { display: none; }
  .sop-chapters__lead { font-size: 0.78rem; letter-spacing: 0.14em; }
  .sop-chapters__list { font-size: 0.78rem; justify-content: center; }
  .sop-chapters__cta { font-size: 0.74rem; }
}

/* ============================================================
   Whimsy ・ index.html §5  出張記録 直書落款（朱色 2 處）
   骨架沿用 about §3 .not-seal-foot；不重複定義通用 vertical-rl
   ============================================================ */
#areas .field-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 38px 0 0;
  padding-top: 26px;
  border-top: 1px dotted rgba(31, 29, 26, 0.15);
  font-family: var(--font-jp);
  font-size: 0.94rem;
  letter-spacing: 0.32em;
  color: var(--sumi);
}
#areas .field-sign__vert {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.7;
}
#areas .field-sign__dot {
  color: var(--bamboo-deep);
  font-size: 0.78rem;
  opacity: 0.55;
}
#areas .field-sign__shu {
  color: var(--shu);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.34em;
}
@media (max-width: 520px) {
  #areas .field-sign { font-size: 0.84rem; gap: 10px; margin-top: 28px; }
}

/* ─── 已停用的舊 about CSS（保留以免破壞其他頁面，本頁不引用）─── */
/* ─── about.html ・ Brand totem（舊版，已刪除使用）─── */
.brand-totem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 0;
}
.brand-totem .totem-text {
  font-family: var(--font-jp), serif;
  font-size: 6rem;
  line-height: 1.05;
  font-weight: 500;
  color: var(--sumi);
  letter-spacing: 0.02em;
  text-align: center;
}
.brand-totem .totem-text br + br { display: none; }
.brand-totem .totem-logo {
  width: 120px;
  height: auto;
  opacity: 0.9;
}
.brand-totem .totem-stamp {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--shu);
  color: var(--shu);
  display: grid;
  place-items: center;
  font-family: var(--font-jp);
  font-size: 1.35rem;
  transform: rotate(-6deg);
  opacity: 0.75;
}

@media (max-width: 720px) {
  .brand-totem { gap: 20px; padding: 20px 0; }
  .brand-totem .totem-text { font-size: 4rem; }
  .brand-totem .totem-logo { width: 88px; }
  .brand-totem .totem-stamp { width: 38px; height: 38px; font-size: 1.1rem; }
}

/* 方位章名：大漢字 + 細英文 */
.hoi-mast {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(31,29,26,0.08);
}
.hoi-mast-jp {
  font-family: var(--font-jp), serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--sumi);
  letter-spacing: 0.08em;
  line-height: 1;
}
.hoi-mast-en {
  font-family: var(--font-jp), serif;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  color: var(--sumi-soft);
  text-transform: uppercase;
}

/* 區名清單 */
.hoi-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hoi-list li { margin: 0; }
.hoi-list li > a,
.hoi-list li > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  text-decoration: none;
  color: var(--sumi);
  border-bottom: 1px dashed rgba(31,29,26,0.06);
  transition: color 0.25s ease, transform 0.25s ease;
}
.hoi-list li:last-child > a,
.hoi-list li:last-child > span {
  border-bottom: none;
}
.hoi-list b {
  font-family: var(--font-jp), serif;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hoi-list > li > a > span,
.hoi-list > li > span > span {
  font-size: 0.78rem;
  color: var(--sumi-soft);
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
  text-align: right;
}

/* 可連結區（19）・ hover 細微位移 */
.hoi-list li > a:hover { transform: translateX(3px); }
.hoi-list li > a:hover b { color: var(--bamboo-deep); }

/* 無獨立頁區（10）・ 預設低調 */
.hoi-list li > span { cursor: default; }
.hoi-list li > span > b {
  font-weight: 400;
  color: var(--sumi-soft);
}

@media (max-width: 720px) {
  .hoi-block { padding-left: 22px; }
  .hoi-mast-jp { font-size: 1.5rem; }
  .hoi-list b { font-size: 1rem; }
  .hoi-list > li > a > span,
  .hoi-list > li > span > span { font-size: 0.74rem; }
}

/* 舊樣式 ・ 隱藏以免影響 */
.area-index,
.area-legend,
.area-chips,
.area-divider { display: none; }

/* === 舊雜誌索引備份（不使用，但保留以防回退）=== */
/* areas.html ・ 雜誌索引式 29 區清單（2 欄縮短版） */
.area-index {
  max-width: 1080px;
  margin: 48px auto 0;
}
.area-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  border-top: 1px solid rgba(31,29,26,0.12);
}
@media (max-width: 1000px) {
  .area-index-grid { grid-template-columns: 1fr 1fr; column-gap: 28px; }
}
@media (max-width: 640px) {
  .area-index-grid { grid-template-columns: 1fr; column-gap: 0; }
}
.area-row {
  display: grid;
  grid-template-columns: 48px 1fr 22px;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(31,29,26,0.08);
  text-decoration: none;
  color: var(--sumi);
  position: relative;
  transition: background .2s var(--ease), padding-left .2s var(--ease);
}
.area-row:hover {
  background: linear-gradient(90deg, rgba(74,107,77,0.05) 0%, transparent 100%);
  padding-left: 12px;
}
.area-row:hover .area-name { color: var(--bamboo-deep); }
.area-row:hover .area-num { color: var(--bamboo-deep); transform: scale(1.05); }
.area-row:hover .area-arrow {
  transform: translateX(6px);
  color: var(--bamboo-deep);
  opacity: 1;
}

.area-num {
  font-family: var(--font-jp), serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: rgba(31,29,26,0.25);
  letter-spacing: 0.02em;
  transition: color .2s var(--ease), transform .2s var(--ease);
  line-height: 1;
}

.area-detail {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}
.area-name {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  color: var(--sumi);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.area-en {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--matcha);
  text-transform: uppercase;
  font-family: var(--font-jp);
  white-space: nowrap;
}
.area-tag {
  font-size: 0.78rem;
  color: var(--sumi-soft);
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.area-desc {
  display: none;
}

/* === 類別色彩條（左側粗直線）=== */
.area-row {
  padding-left: 24px !important;
}
.area-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 6px;
  border-radius: 3px;
  transition: width 0.25s ease;
}
.area-row:hover::before { width: 10px; }

/* 類別顏色 */
.area-row.cat-hq::before    { background: linear-gradient(180deg, #c89a3a, #d4a850); }
.area-row.cat-tower::before { background: var(--matcha, #7a8b6f); }
.area-row.cat-old::before   { background: #8b6f54; }
.area-row.cat-house::before { background: #a08560; }
.area-row.cat-sea::before   { background: #6a8a96; }
.area-row.cat-mount::before { background: #5e7556; }

/* 駐點特殊處理：右上小三角星標 */
.area-row.cat-hq .area-name::after {
  content: '★';
  margin-left: 6px;
  font-size: 0.7em;
  color: #c89a3a;
  vertical-align: super;
}

/* hover 時 tag 換顏色微亮 */
.area-row:hover .area-tag { color: var(--sumi); }

/* === 類別圖例 === */
.area-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 0 auto 32px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
  max-width: 720px;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--sumi-soft);
  letter-spacing: 0.05em;
}
.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.legend-dot.cat-hq    { background: #c89a3a; }
.legend-dot.cat-tower { background: var(--matcha, #7a8b6f); }
.legend-dot.cat-old   { background: #8b6f54; }
.legend-dot.cat-house { background: #a08560; }
.legend-dot.cat-sea   { background: #6a8a96; }
.legend-dot.cat-mount { background: #5e7556; }

@media (max-width: 640px) {
  .area-legend { gap: 10px 14px; padding: 12px 16px; font-size: 0.74rem; }
  .area-tag { font-size: 0.7rem; }
}

/* === 延伸 10 區 chip 樣式（明確非連結）=== */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 8px 4px 0;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-family: var(--font-jp);
  font-size: 0.92rem;
  color: var(--sumi);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(31,29,26,0.1);
  border-radius: 999px;
  cursor: default;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 26px;
}
.area-chip::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.area-chip.cat-hq::before    { background: #c89a3a; }
.area-chip.cat-tower::before { background: var(--matcha, #7a8b6f); }
.area-chip.cat-old::before   { background: #8b6f54; }
.area-chip.cat-house::before { background: #a08560; }
.area-chip.cat-sea::before   { background: #6a8a96; }
.area-chip.cat-mount::before { background: #5e7556; }

.area-arrow {
  font-family: var(--font-jp);
  font-size: 1.1rem;
  color: var(--matcha);
  opacity: 0.5;
  transition: color .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease);
  text-align: right;
}

/* Extended 區（無連結，較含蓄） */
.area-row--ext {
  cursor: default;
}
.area-row--ext:hover {
  background: transparent;
  padding-left: 4px;
}
.area-row--ext .area-num,
.area-row--ext .area-name {
  opacity: 0.7;
}
.area-row--ext .area-en {
  opacity: 0.55;
}

/* 19 / 10 分隔線 */
.area-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 4px 24px;
  border-bottom: 1px solid rgba(31,29,26,0.08);
}
.area-divider::before,
.area-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(31,29,26,0.12);
}
.area-divider-label {
  font-family: var(--font-jp);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--matcha);
  text-transform: uppercase;
  white-space: nowrap;
}
.area-divider-note {
  font-size: 0.82rem;
  color: var(--sumi-soft);
  white-space: nowrap;
}
@media (max-width: 680px) {
  .area-divider { flex-direction: column; gap: 6px; }
  .area-divider::before, .area-divider::after { width: 100%; flex: none; }
  .area-divider-note { white-space: normal; text-align: center; font-size: 0.78rem; }
}

/* 手機版收斂 */
@media (max-width: 640px) {
  .area-row {
    grid-template-columns: 48px 1fr 20px;
    gap: 12px;
    padding: 18px 2px;
  }
  .area-row .area-desc { display: none; }
  .area-num { font-size: 1.4rem; }
  .area-name { font-size: 1.05rem; }
  .area-en { font-size: 0.6rem; letter-spacing: 0.2em; }
}

/* areas.html ・ 北中部其他縣市 ・ 俳句三柱 tate-gaki */
.cities-pillars {
  max-width: 980px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.7fr;
  gap: 56px;
  position: relative;
  padding-top: 48px;
}
@media (max-width: 880px) {
  .cities-pillars {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .cities-pillars {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* 天罫斷尾線（頂端 1px 線，停在 68% 處） */
.cp-rule {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 68%;
  background: var(--sumi);
}
.cp-rule::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--shu);
}

/* 單柱：左直書桅杆 + 右縣市清單 */
.cp-col {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  min-height: 280px;
}

.cp-mast {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-jp);
  border-right: 1px solid var(--sumi);
  padding: 4px 12px 4px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.cp-mast-jp {
  font-size: 1.7rem;
  letter-spacing: 0.35em;
  color: var(--bamboo-deep);
  font-weight: 500;
}
.cp-mast-en {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--sumi-soft);
  padding-top: 6px;
}

/* 縣市清單（橫掛、無框） */
.cp-cities {
  list-style: none;
  margin: 0;
  padding: 6px 0 0;
}
.cp-cities li {
  padding: 14px 0 14px 18px;
  border-bottom: 1px dashed rgba(58,42,30,0.18);
  position: relative;
}
.cp-cities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 1px;
  background: var(--matcha);
}
.cp-cities b {
  display: block;
  font-family: var(--font-jp);
  font-size: 1.1rem;
  color: var(--sumi);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.cp-cities span {
  display: block;
  font-size: 0.82rem;
  color: var(--sumi-soft);
  margin-top: 4px;
}

/* 未刻之柱（其他縣市）・ 整柱木板色 */
.cp-col--soon {
  background: #efe9dc;
  padding: 16px 18px;
  margin-top: -8px;
}
.cp-col--soon .cp-mast { border-right-color: rgba(58,42,30,0.25); }
.cp-col--soon .cp-mast-jp { color: var(--sumi-soft); }
.cp-soon {
  font-family: var(--font-jp);
  color: var(--sumi-soft);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  padding-top: 8px;
  margin: 0;
}

@media (max-width: 768px) {
  .cp-rule { display: none; }
  .cities-pillars { padding-top: 24px; }
  .cp-col {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }
  .cp-mast {
    writing-mode: horizontal-tb;
    border-right: none;
    border-bottom: 1px solid var(--sumi);
    padding: 0 0 10px;
    flex-direction: row;
    align-items: baseline;
  }
  .cp-mast-jp { font-size: 1.35rem; }
  .cp-mast-en { padding-top: 0; }
  .cp-col--soon { margin-top: 0; }
}

/* ─── 區頁深度區塊小組件 ──────────────────────── */
.area-positioning {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  color: var(--bamboo-deep);
  margin-bottom: 24px;
  padding-left: 18px;
  border-left: 3px solid var(--matcha);
  line-height: 1.85;
}
.area-h3 {
  font-family: var(--font-jp);
  font-size: 1.18rem;
  margin: 30px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--matcha);
  display: inline-block;
}
.area-pain-list, .area-street-list { list-style: none; padding: 0; margin: 0 0 24px; }
.area-pain-list li {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(31,29,26,0.1);
}
.area-pain-list li:last-child { border-bottom: none; }
.area-pain-mark {
  color: var(--sumi);
  font-family: var(--font-jp);
}
.area-pain-body { color: var(--sumi-soft); }
.area-street-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(31,29,26,0.1);
}
.area-street-list li:last-child { border-bottom: none; }
.area-street-mark {
  color: var(--matcha);
  font-family: var(--font-jp);
  white-space: nowrap;
}
.area-street-note { color: var(--sumi-soft); line-height: 1.85; }
.area-seasonal-card {
  line-height: 1.95;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(31,29,26,0.08);
  border-radius: 8px;
  border-left: 4px solid var(--shu);
}
.area-coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.area-coverage-grid > div h4 { font-family: var(--font-jp); margin-bottom: 10px; }
.area-coverage-grid > div p { font-size: 0.93rem; color: var(--sumi-soft); line-height: 1.85; }
.area-coverage-grid > div.full { grid-column: 1 / -1; }
.area-coverage-note {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--sumi-soft);
  text-align: center;
}
.area-promo-block { margin-top: 24px; }
.area-promo-block .promo-label { margin: 0 0 12px; font-family: var(--font-jp); font-size: 1rem; }
.area-promo-block .promo-label.shu { color: var(--shu); }
.area-promo-block .promo-label.matcha { color: var(--matcha); }
.area-promo-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: var(--sumi-soft);
  line-height: 1.85;
}
.area-promo-block .extra-note {
  font-size: 0.9rem;
  color: var(--sumi-soft);
  line-height: 1.85;
}
.area-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(31,29,26,0.12);
}
.area-quote-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--matcha), var(--bamboo-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-jp);
  font-size: 1.1rem;
}

/* ─── 區頁設計系統（北屯區重設計 - 全 19 區共用） ─── */

/* Hero 上方 ・ 4 個 KPI 統計卡（強化版：放大字級 + Shippori Mincho） */
.area-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(31,29,26,0.1);
}
.area-stat {
  text-align: center;
  padding: 12px 16px;
  position: relative;
}
.area-stat + .area-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(31,29,26,0.1);
}
.area-stat .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--matcha);
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: var(--font-jp);
}
.area-stat .stat-value {
  font-family: var(--font-jp);
  font-size: 2.4rem;
  color: var(--bamboo-deep);
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.area-stat .stat-value small {
  font-size: 0.95rem;
  margin-left: 4px;
  font-weight: 400;
  color: var(--sumi-soft);
  letter-spacing: 0.05em;
}
.area-stat .stat-note {
  font-size: 0.8rem;
  color: var(--sumi-soft);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .area-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    row-gap: 24px;
  }
  .area-stat { padding: 8px 10px; }
  .area-stat .stat-value { font-size: 1.9rem; }
  .area-stat + .area-stat::before { display: none; }
  .area-stat:nth-child(2)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(31,29,26,0.1);
  }
}

/* Hero 快速行動條 */
.area-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.area-hero-actions .btn { padding: 12px 22px; font-size: 0.9rem; }

/* 區頁共通 section 標題（替代 inline h3 樣式） */
.area-h2 {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  margin: 0 0 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--matcha);
  display: inline-block;
}

/* 區頁覆蓋範圍 chip 集 */
.area-coverage-card {
  background: #fff;
  border: 1px solid rgba(31,29,26,0.08);
  border-radius: 10px;
  padding: 28px 32px;
}
.area-coverage-card + .area-coverage-card { margin-top: 16px; }
.area-coverage-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.area-coverage-row .chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(74,107,77,0.06);
  border: 1px solid rgba(74,107,77,0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--sumi);
}
.area-coverage-label {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--matcha);
  margin-bottom: 4px;
}

/* 組合卡 - 加強版 */
.area-combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.area-combo {
  background: #fff;
  border: 1px solid rgba(31,29,26,0.08);
  border-radius: 10px;
  padding: 32px 26px 26px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.area-combo:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.area-combo .combo-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--matcha);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.area-combo .combo-badge.accent { background: var(--shu); }
.area-combo .combo-tag {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--matcha);
  text-transform: uppercase;
  margin: 0 0 6px;
  font-family: var(--font-jp);
}
.area-combo h3 {
  font-family: var(--font-jp);
  font-size: 1.15rem;
  margin: 0 0 12px;
  line-height: 1.5;
  color: var(--sumi);
}
.area-combo .combo-desc {
  font-size: 0.9rem;
  color: var(--sumi-soft);
  line-height: 1.8;
  margin: 0 0 16px;
}
.area-combo .combo-calc {
  font-size: 0.82rem;
  color: var(--sumi-soft);
  line-height: 1.85;
  padding-top: 14px;
  border-top: 1px dashed rgba(31,29,26,0.14);
  margin: 0;
}
.area-combo .combo-calc .discount { color: var(--shu); display: block; margin-top: 4px; }
.area-combo .combo-total {
  margin: 14px 0 0;
  font-family: var(--font-jp);
  color: var(--bamboo-deep);
  font-size: 1.35rem;
  font-weight: 500;
}
.area-combo .combo-total small { font-size: 0.7rem; letter-spacing: 0.18em; color: var(--sumi-soft); margin-right: 6px; }

/* 職人 quote 卡 */
.area-quote {
  background: #fff;
  border: 1px solid rgba(31,29,26,0.08);
  border-left: 5px solid var(--matcha);
  border-radius: 10px;
  padding: 36px 40px 30px;
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.area-quote .quote-mark {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-jp);
  font-size: 4rem;
  color: var(--matcha);
  opacity: 0.18;
  line-height: 1;
}
.area-quote p.quote-body {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  line-height: 2;
  color: var(--sumi);
  margin: 0 0 22px;
}
.area-quote .quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed rgba(31,29,26,0.12);
}
.area-quote .quote-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--matcha), var(--bamboo-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-jp);
  font-size: 1.15rem;
}
.area-quote .quote-byline strong {
  display: block;
  font-family: var(--font-jp);
  color: var(--sumi);
  font-size: 0.95rem;
}
.area-quote .quote-byline span {
  font-size: 0.78rem;
  color: var(--sumi-soft);
  letter-spacing: 0.1em;
}

/* 在地深度 - pain points + notes */
.area-pains {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.area-pain {
  background: #fff;
  border: 1px solid rgba(31,29,26,0.08);
  border-radius: 10px;
  padding: 22px 24px;
}
.area-pain .pain-mark {
  font-family: var(--font-jp);
  color: var(--matcha);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.area-pain h4 {
  font-family: var(--font-jp);
  font-size: 1rem;
  margin: 0 0 10px;
  line-height: 1.5;
  color: var(--sumi);
}
.area-pain p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--sumi-soft);
  margin: 0;
}

/* 評論卡 */
.area-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.area-review {
  background: #fff;
  border: 1px solid rgba(31,29,26,0.08);
  border-radius: 10px;
  padding: 26px 24px 20px;
  transition: transform 0.2s ease;
}
.area-review:hover { transform: translateY(-2px); }
.area-review .stars {
  color: var(--shu);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.area-review p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--sumi-soft);
  margin: 0 0 16px;
}
.area-review footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px dashed rgba(31,29,26,0.12);
  font-size: 0.85rem;
}
.area-review footer .author { font-family: var(--font-jp); color: var(--sumi); }
.area-review footer .date { color: var(--matcha); letter-spacing: 0.12em; font-size: 0.76rem; }

/* 案例卡 */
.area-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.area-case {
  background: #fff;
  border: 1px solid rgba(31,29,26,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.area-case:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.06); }
.area-case .case-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(31,29,26,0.08);
}
.area-case .case-photo {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-family: var(--font-jp);
}
.area-case .case-photo.before {
  background: linear-gradient(135deg, #e8e2d4, #dcd4c1);
  color: var(--sumi-soft);
}
.area-case .case-photo.after {
  background: linear-gradient(135deg, #e8f0e3, #dde6d0);
  color: var(--bamboo-deep);
}
.area-case .case-body { padding: 22px 24px; }
.area-case .case-meta {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--matcha);
  margin: 0 0 8px;
  font-family: var(--font-jp);
}
.area-case h3 {
  font-family: var(--font-jp);
  font-size: 1.08rem;
  margin: 0 0 10px;
  line-height: 1.5;
  color: var(--sumi);
}
.area-case p.case-desc {
  font-size: 0.86rem;
  color: var(--sumi-soft);
  line-height: 1.85;
  margin: 0 0 12px;
}
.area-case .case-price {
  font-size: 0.82rem;
  color: var(--bamboo);
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(31,29,26,0.12);
}

/* ─── 頁內快速跳轉（services.html / 各 pillar 頁） ─── */
.page-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(31,29,26,0.08);
}
.page-jump a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(31,29,26,0.1);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--sumi);
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
  white-space: nowrap;
}
.page-jump a:hover {
  background: var(--matcha);
  border-color: var(--matcha);
  color: #fff;
  transform: translateY(-1px);
}
.page-jump a .jp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--matcha);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.78rem;
  transition: background 0.18s;
}
.page-jump a:hover .jp {
  background: #fff;
  color: var(--matcha);
}
.page-jump a.jump-cta {
  background: rgba(74,107,77,0.08);
  border-color: rgba(74,107,77,0.2);
  color: var(--bamboo-deep);
}
.page-jump a.jump-cta:hover {
  background: var(--bamboo-deep);
  border-color: var(--bamboo-deep);
  color: #fff;
}
@media (max-width: 640px) {
  .page-jump {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .page-jump::-webkit-scrollbar { display: none; }
  .page-jump a { flex-shrink: 0; }
}

/* ════════════════════════════════════════════════════════════
   index.html ・ Brand Bible utility classes（v2 體檢重做）
   通用元件：跨頁可重用、和紙／墨色／抹茶／竹綠 token 化
   ════════════════════════════════════════════════════════════ */

/* ── §0 page-hero 中央 CTA + Stat pill 列 ─────────────────── */

/* cta-cluster ─ 主+次按鈕雙鈕組（中央或左對齊） */
.cta-cluster {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 28px 0 0;
}
.cta-cluster--center {
  display: flex;
  justify-content: center;
}
.cta-cluster .btn { margin: 0; }

/* stat-pill ─ Hero 三數字統一卡片 */
.stat-pill-row {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.stat-pill:hover {
  border-color: rgba(122, 139, 111, 0.45);
  background: rgba(255, 255, 255, 0.8);
}
.stat-pill__num {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 600;
  color: var(--bamboo-deep);
  letter-spacing: 0.04em;
  line-height: 1;
}
.stat-pill__num i {
  font-style: normal;
  font-size: 0.7em;
  color: var(--matcha);
  margin-left: 2px;
}
.stat-pill__label {
  font-size: 0.82rem;
  color: var(--sumi-soft);
  letter-spacing: 0.14em;
}
.stat-pill__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.stat-pill__link:hover { color: inherit; }
.stat-pill__link:hover .stat-pill__num { color: var(--bamboo); }
.stat-pill__link:focus-visible {
  outline: 2px solid var(--bamboo);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
@media (max-width: 640px) {
  .stat-pill-row { grid-template-columns: 1fr; gap: 12px; max-width: 320px; }
  .stat-pill { padding: 14px 12px; flex-direction: row; justify-content: space-between; text-align: left; }
  .stat-pill__link { flex-direction: row; justify-content: space-between; }
}

/* ── tile-grid ─ 3/4/6 欄響應式網格 token 化 ─────────────── */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  gap: var(--tile-gap, 24px);
}
@media (max-width: 880px) {
  .tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .tile-grid { grid-template-columns: 1fr; }
}

/* ── brand-mark ─ 章印尺寸變體 sm/lg（不引入新朱色，使用既有 token） ── */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--bamboo-deep);
  border: 1.5px solid var(--bamboo-deep);
  background: transparent;
  letter-spacing: 0;
  flex-shrink: 0;
  user-select: none;
}
.brand-mark--sm {
  width: 26px; height: 26px;
  font-size: 0.78rem;
}
.brand-mark--lg {
  width: 44px; height: 44px;
  font-size: 1.2rem;
}
.brand-mark--shu { color: var(--shu); border-color: var(--shu); }

/* ── scroll-rail ─ 通用水平捲動（評價區、未來 FAQ 快選共用） ── */
.scroll-rail {
  display: flex;
  gap: var(--rail-gap, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 16px;
  margin: 0 -4px;
}
.scroll-rail > * {
  scroll-snap-align: start;
  flex: 0 0 auto;
}
.scroll-rail::-webkit-scrollbar { height: 6px; }
.scroll-rail::-webkit-scrollbar-thumb {
  background: rgba(31, 29, 26, 0.18);
  border-radius: 999px;
}

/* ════════════════════════════════════════════════════════════
   index.html ・ §1 services-trio
   motif: C 大字漢字「冷／洗／塔」+ F 漢字方位「其一／其二／其三」+ E 細線
   ════════════════════════════════════════════════════════════ */
.trio-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.trio-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.trio-tile:hover {
  border-color: rgba(122, 139, 111, 0.45);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}
.trio-tile:focus-within {
  border-color: var(--bamboo);
  box-shadow: 0 0 0 3px rgba(74, 107, 77, 0.12);
}
.trio-tile__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.trio-tile__ord {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  color: var(--matcha);
  padding-top: 6px;
}
.trio-tile__kanji {
  font-family: var(--font-jp);
  font-size: 3.4rem;
  line-height: 0.95;
  font-weight: 500;
  color: var(--bamboo-deep);
  letter-spacing: 0;
}
.trio-tile__title {
  font-family: var(--font-jp);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--sumi);
  margin: 6px 0 0;
  font-weight: 600;
  line-height: 1.4;
}
.trio-tile__desc {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--sumi-soft);
  margin: 0;
}
.trio-tile__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 4px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(31, 29, 26, 0.1);
  font-family: var(--font-jp);
}
.trio-tile__from {
  font-size: 0.72rem;
  color: var(--sumi-soft);
  letter-spacing: 0.05em;
}
.trio-tile__amount {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--bamboo);
  letter-spacing: 0.02em;
  line-height: 1;
}
.trio-tile__unit {
  font-size: 0.78rem;
  color: var(--sumi-soft);
  margin-left: 2px;
  letter-spacing: 0.05em;
}
.trio-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jp);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  color: var(--sumi);
  text-decoration: none;
  margin-top: auto;
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.trio-tile__cta:hover { color: var(--bamboo); gap: 12px; }
.trio-tile__cta:focus-visible {
  outline: 2px solid var(--bamboo);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
@media (max-width: 880px) {
  .trio-grid { grid-template-columns: 1fr; gap: 18px; }
  .trio-tile { padding: 26px 24px 24px; }
  .trio-tile__kanji { font-size: 2.8rem; }
}

/* ════════════════════════════════════════════════════════════
   index.html ・ §3 flow-4step（漢字方位 + E 細線時間軸）
   ════════════════════════════════════════════════════════════ */
.flow-rail {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.flow-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 6px 0;
}
.flow-step__ord {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--bamboo-deep);
  font-weight: 500;
  line-height: 1;
}
.flow-step__title {
  font-family: var(--font-jp);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--sumi);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}
.flow-step__desc {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--sumi-soft);
  margin: 0;
}
@media (max-width: 880px) {
  .flow-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}
@media (max-width: 480px) {
  .flow-rail { grid-template-columns: 1fr; gap: 22px; }
}

/* ════════════════════════════════════════════════════════════
   index.html ・ §4 reviews-rail（靜態 3 卡 + .reviews-meta）
   ════════════════════════════════════════════════════════════ */
.reviews-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 18px auto 0;
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--font-jp);
  color: var(--sumi-soft);
  font-size: 0.92rem;
}
.reviews-meta__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--bamboo-deep);
  color: var(--bamboo-deep);
  font-family: var(--font-jp);
  font-size: 0.92rem;
  letter-spacing: 0;
}
.reviews-meta__score {
  color: var(--sumi);
  letter-spacing: 0.04em;
}
.reviews-meta__score strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bamboo);
}
.reviews-meta__score span {
  font-size: 0.85rem;
  color: var(--sumi-soft);
  margin-left: 2px;
}
.reviews-meta__count {
  letter-spacing: 0.1em;
}

.review-trio {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.review-tile {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.review-tile:hover {
  border-color: rgba(122, 139, 111, 0.4);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.review-tile__text {
  font-family: var(--font-jp);
  font-size: 0.98rem;
  line-height: 1.95;
  color: var(--sumi);
  margin: 0;
  letter-spacing: 0.02em;
}
.review-tile__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-jp);
  margin: 0;
}
.review-tile__name {
  font-size: 0.95rem;
  color: var(--sumi);
  letter-spacing: 0.06em;
}
.review-tile__when {
  font-size: 0.78rem;
  color: var(--sumi-soft);
  letter-spacing: 0.12em;
}
@media (max-width: 880px) {
  .review-trio { grid-template-columns: 1fr; gap: 16px; }
  .review-tile { padding: 22px 22px 20px; }
}
@media (max-width: 520px) {
  .reviews-meta { flex-wrap: wrap; justify-content: center; gap: 8px 14px; padding: 12px 18px; }
}

/* ════════════════════════════════════════════════════════════
   index.html ・ §5 areas-compact ─ al-core 內補 .tate-mast 雙欄
   ════════════════════════════════════════════════════════════ */
.al-core-mast-wrap {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: stretch;
}
.al-core-body { min-width: 0; }
@media (max-width: 768px) {
  .al-core-mast-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


/* =========================================================
   首頁 Hero（還原 - 円相 + 竹葉 + 水滴 + Logo 浮動）
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(245, 239, 228, 0) 0%, rgba(236, 227, 210, 0.6) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-enso {
  position: absolute;
  right: -120px;
  top: 50%;
  width: 620px;
  height: 620px;
  transform: translateY(-50%);
  opacity: 0.12;
  animation: enso-rotate 80s linear infinite;
}
.hero-bamboo {
  position: absolute;
  left: -150px;             /* 從 -40px 改 -150px，多 110px 推到畫面外 */
  bottom: -40px;
  width: 260px;
  opacity: 0.18;
  transform-origin: bottom left;
  transform: rotate(2deg);
}
.hero-bamboo.right {
  left: auto;
  right: -150px;            /* 右側也對稱推到畫面外 */
  bottom: -80px;
  width: 220px;
  transform: scaleX(-1) rotate(2deg);
  opacity: 0.13;
}
@keyframes enso-rotate {
  /* 起始旋轉 151°：讓圓相缺口從左下（約 7:30 鐘位）開始順時針旋轉 */
  from { transform: translateY(-50%) rotate(151deg); }
  to { transform: translateY(-50%) rotate(511deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-jp);
  color: var(--matcha);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--matcha);
}
.hero h1 {
  font-family: var(--font-jp);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 22px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: var(--sumi);
}
.hero h1 .accent {
  color: var(--bamboo-deep);
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(122, 139, 111, 0.4), transparent);
}
.hero-lead {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--sumi-soft);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-stats {
  display: grid;
  grid-template-columns: auto auto auto;   /* 每欄寬度依內容決定，靠左排列 */
  column-gap: 24px;                        /* 三欄之間固定 24px 間距 */
  padding-top: 28px;
  border-top: 1px solid var(--line);
  width: fit-content;
  align-items: start;
}
.hero-stats > div:first-child,
.hero-stats > a:first-child,
.hero-stats > div:first-child + * {
  /* 不需要 min-width，但因 15,000+ 計數時寬度變化會推右側，給第一欄保留固定寬度 */
}
.hero-stats > div:nth-child(1) {
  min-width: 130px;                        /* 預留「15,000+」最終寬度，計數時不推動其他欄 */
}
.hero-stats .label {
  white-space: nowrap;                     /* 標籤永遠單行 */
  text-align: left;
}
.hero-stats > div,
.hero-stats > a {
  display: block;
  text-decoration: none;
  text-align: left;                        /* 內容靠左 */
}
.hero-stats .num {
  display: flex;
  align-items: center;
  justify-content: flex-start;             /* flex 內容靠左 */
  font-family: var(--font-jp);
  font-size: 2rem;
  color: var(--bamboo);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
  min-height: 2rem;
  font-variant-numeric: tabular-nums;
  gap: 6px;
}
.hero-stats .num.num-rating {
  /* 屬性已繼承自 .num，這裡只需空 selector 保留以免破壞特異性 */
}
.hs-star {
  width: 22px;
  height: 22px;
  fill: #fbbc04;
  flex-shrink: 0;
}
.hero-stats .label {
  font-size: 0.85rem;
  color: var(--sumi-soft);
  letter-spacing: 0.15em;
}
.hero-stat-link {
  cursor: pointer;
  transition: transform .3s var(--ease);
}
.hero-stat-link:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  width: 100%;
}
.hero-circle {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--bamboo);
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: rgba(74, 107, 77, 0.4);
  animation: enso-rotate 30s linear infinite;
}
.hero-circle.inner {
  inset: 14%;
  border: 1px dashed var(--matcha);
  animation-duration: 60s;
  animation-direction: reverse;
}
.hero-logo-wrap {
  position: absolute;
  inset: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 12px 26px rgba(31, 29, 26, 0.16));
  animation: hero-float 6s ease-in-out infinite;
}
.hero-logo-wrap img {
  max-width: 100%;
  height: auto;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


@media (max-width: 900px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { display: none; } /* 手機板隱藏右側展示卡，節省空間 */
  .hero-stats { grid-template-columns: auto auto auto; width: auto; column-gap: 14px; align-items: start; }
  .hero-stats > div:nth-child(1) { min-width: 100px; }
  .hero-stats .num { font-size: 1.5rem; min-height: 1.5rem; }
  .hero-stats .label { font-size: 0.78rem; letter-spacing: 0.08em; }
  .hs-star { width: 18px; height: 18px; }
  .hero-enso { width: 380px; height: 380px; right: -100px; opacity: 0.08; }
  .hero-bamboo { width: 160px; opacity: 0.12; }
}
@media (max-width: 540px) {
  .hero { padding: 100px 0 48px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-lead { font-size: 1rem; }
  .hero-stats .num { font-size: 1.3rem; }
  .hero-stats .label { font-size: 0.75rem; letter-spacing: 0.08em; }
  .hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.25em; margin-bottom: 18px; }
  .hero-cta { margin-bottom: 32px; }
}
/* =========================================================
   首頁段落 CSS 還原（trust / process / services / google-reviews）
   ========================================================= */

/* ---- .section-foot ---- */
.section-foot {
  text-align: center;
  margin-top: 48px;
}

/* =========================================================
   Trust Band - 浮動精緻 pill
   ========================================================= */
.trust-band {
  padding: 0;
  margin-top: -32px;
  position: relative;
  z-index: 5;
  pointer-events: none;
}
.trust-band .container {
  display: flex;
  justify-content: center;
}
.trust-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border: 1px solid rgba(31, 29, 26, 0.06);
  border-radius: 999px;
  padding: 8px 8px;
  box-shadow: 0 10px 30px rgba(31, 29, 26, 0.06);
  pointer-events: auto;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  font-family: var(--font-jp);
  font-size: 0.88rem;
  color: var(--sumi);
  letter-spacing: 0.06em;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(31, 29, 26, 0.1);
}
.trust-ico {
  width: 16px;
  height: 16px;
  color: var(--bamboo);
  flex-shrink: 0;
  background: rgba(122, 139, 111, 0.1);
  border: 1px solid rgba(122, 139, 111, 0.22);
  border-radius: 50%;
  padding: 5px;
  box-sizing: content-box;
}
.trust-item strong {
  font-weight: 500;
  color: var(--sumi);
}
.trust-item span { display: none; }

@media (max-width: 880px) {
  .trust-row { padding: 6px; }
  .trust-item { font-size: 0.8rem; padding: 6px 12px; gap: 6px; }
  .trust-ico { width: 14px; height: 14px; }
}
@media (max-width: 540px) {
  .trust-band { margin-top: -16px; }
  .trust-row { border-radius: 16px; padding: 4px 6px; }
  .trust-item { padding: 6px 10px; font-size: 0.75rem; letter-spacing: 0.04em; }
  .trust-item:not(:last-child)::after { height: 12px; }
}

/* =========================================================
   四步驟 Process Timeline（水平連線、1234 編號）
   ========================================================= */
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 30px 0 10px;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--matcha), var(--bamboo), var(--matcha));
  opacity: 0.35;
  z-index: 0;
}
.process-step-new {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.process-circle {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--washi);
  border: 2px solid var(--bamboo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  transition: background .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 6px 20px rgba(74, 107, 77, 0.10);
  z-index: 2;
}
.process-circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed var(--matcha);
  opacity: 0.5;
  transition: transform .8s var(--ease);
}
.process-step-new:hover .process-circle {
  background: var(--bamboo);
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(74, 107, 77, 0.25);
}
.process-step-new:hover .process-circle::before {
  transform: scale(1.18) rotate(180deg);
}
.process-circle .ja-num {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bamboo);
  transition: color .3s var(--ease);
  line-height: 1;
}
.process-step-new:hover .ja-num { color: #fff; }
.process-circle .step-icon {
  width: 26px;
  height: 26px;
  stroke: var(--bamboo);
  fill: none;
  stroke-width: 1.6;
  margin-top: 4px;
  transition: stroke .3s var(--ease);
}
.process-step-new:hover .step-icon { stroke: #fff; }
.process-step-new h3 {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  color: var(--sumi);
}
.process-step-new p {
  font-size: 0.88rem;
  line-height: 1.85;
  max-width: 200px;
  margin: 0 auto;
  color: var(--sumi-soft);
}

@media (max-width: 880px) {
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 40px 16px; }
  .process-timeline::before { display: none; }
}
@media (max-width: 480px) {
  .process-timeline { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   三大服務 - 編輯雜誌風（編號 01/02/03 浮水印）
   ========================================================= */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 38px 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--bamboo);
  box-shadow: 0 18px 36px rgba(31, 29, 26, 0.08);
}
.svc-num {
  position: absolute;
  top: 22px;
  right: 30px;
  font-family: var(--font-jp);
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(74, 107, 77, 0.07);
  letter-spacing: -0.02em;
  pointer-events: none;
  transition: color .5s var(--ease), transform .5s var(--ease);
}
.svc-card:hover .svc-num {
  color: rgba(74, 107, 77, 0.18);
  transform: scale(1.06) rotate(-2deg);
}
.svc-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--washi-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: background .45s var(--ease), transform .45s var(--ease);
}
.svc-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed var(--matcha);
  opacity: 0;
  transition: opacity .4s var(--ease), transform .8s var(--ease);
}
.svc-card:hover .svc-icon-wrap {
  background: var(--bamboo);
  transform: rotate(-6deg);
}
.svc-card:hover .svc-icon-wrap::before {
  opacity: 0.7;
  transform: rotate(180deg);
}
.svc-icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke: var(--bamboo);
  fill: none;
  stroke-width: 1.6;
  transition: stroke .45s var(--ease);
}
.svc-card:hover .svc-icon-wrap svg { stroke: #fff; }
.svc-ja {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.72rem;
  color: var(--matcha);
  letter-spacing: 0.32em;
  margin-bottom: 6px;
}
.svc-title {
  font-family: var(--font-jp);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  margin-bottom: 0;
  color: var(--sumi);
  font-weight: 600;
  line-height: 1.4;
}
.svc-divider {
  width: 32px;
  height: 1.5px;
  background: var(--bamboo);
  margin: 14px 0 20px;
  transition: width .5s var(--ease);
}
.svc-card:hover .svc-divider { width: 64px; }
.svc-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--sumi-soft);
  margin-bottom: 24px;
  min-height: 102px;
}
.svc-price {
  font-family: var(--font-jp);
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(31, 29, 26, 0.1);
}
.svc-price .from {
  font-size: 0.7rem;
  color: var(--sumi-soft);
  letter-spacing: 0.05em;
}
.svc-price .num {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--bamboo);
  letter-spacing: 0.02em;
  line-height: 1;
}
.svc-price .unit {
  font-size: 0.78rem;
  color: var(--sumi-soft);
  margin-left: 2px;
  letter-spacing: 0.05em;
}
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jp);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  color: var(--sumi);
  text-decoration: none;
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.svc-cta::after {
  content: "→";
  transition: transform .3s var(--ease);
  font-size: 1rem;
}
.svc-cta:hover { color: var(--bamboo); gap: 12px; }
.svc-cta:hover::after { transform: translateX(4px); }

@media (max-width: 880px) {
  .svc-cards { grid-template-columns: 1fr; gap: 20px; }
  .svc-card { padding: 32px 28px 28px; }
  .svc-desc { min-height: auto; }
  .svc-num { font-size: 3.4rem; top: 18px; right: 24px; }
}

/* =========================================================
   Google 評價 - rating strip + 跑馬燈
   ========================================================= */
.g-rating-strip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 36px;
  box-shadow: 0 6px 20px rgba(31, 29, 26, 0.06);
  position: relative;
}
.g-rating-strip .g-logo-mini {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.g-rating-strip .score-mini {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--sumi);
  line-height: 1;
}
.g-rating-strip .score-mini small {
  font-size: 0.85rem;
  color: var(--sumi-soft);
  font-weight: 400;
}
.g-rating-strip .stars-mini {
  display: inline-flex;
  gap: 2px;
}
.g-rating-strip .stars-mini svg {
  width: 16px;
  height: 16px;
  fill: #fbbc04;
}
.g-rating-strip .count-mini {
  font-size: 0.88rem;
  color: var(--sumi-soft);
}
.g-rating-strip .count-mini strong {
  color: var(--sumi);
  font-weight: 600;
}
.g-rating-strip .strip-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
}
.g-rating-strip .strip-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  color: #4285F4;
  text-decoration: none;
  font-family: var(--font-jp);
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.g-rating-strip .strip-link:hover { color: #1a73e8; }
.g-rating-strip .strip-link::after { content: "→"; }

@media (max-width: 720px) {
  .g-rating-strip {
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 18px 24px;
    gap: 12px 16px;
  }
  .g-rating-strip .strip-divider { display: none; }
  .g-rating-strip .strip-link {
    width: 100%;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
}

/* 自動跑馬燈 */
.review-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.review-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.review-marquee:hover .review-marquee-track,
.review-marquee:focus-within .review-marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* 單則評論卡 */
.g-review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 26px;
  flex: 0 0 340px;
  margin: 0;
  position: relative;
}
.g-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.g-review-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(31, 29, 26, 0.12);
  background: var(--washi-deep);
}
.g-review-meta { flex: 1; }
.g-review-name {
  font-family: var(--font-jp);
  color: var(--sumi);
  font-weight: 500;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.g-review-name svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.g-review-time {
  font-size: 0.78rem;
  color: var(--sumi-soft);
  margin-top: 2px;
}
.g-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.g-review-stars svg {
  width: 16px;
  height: 16px;
  fill: #fbbc04;
}
.g-review-text {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--sumi);
}

@media (max-width: 600px) {
  .g-review { flex: 0 0 280px; }
  .review-marquee-track { animation-duration: 50s; }
}
@media (prefers-reduced-motion: reduce) {
  .review-marquee-track { animation: none; }
  .review-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

/* =========================================================
   首頁 ・ 額外動畫包（強調關鍵字 + CTA 脈動 + 滾動指示器 + 服務卡）
   ========================================================= */

/* Hero lead 三大服務關鍵字強調（移除底色螢光筆，改用更大字體 + 主色 + 細底線） */
.lead-keywords {
  font-family: var(--font-jp);
  font-size: 1.18em;
  font-weight: 700;
  color: var(--bamboo-deep);
  letter-spacing: 0.05em;
  padding: 0 2px;
  border-bottom: 2px solid var(--matcha);
  transition: color .35s var(--ease), border-color .35s var(--ease);
  display: inline-block;
  line-height: 1.3;
}
.lead-keywords:hover {
  color: var(--shu);
  border-color: var(--shu);
}

/* CTA 主按鈕 ・ 載入後脈動光環（加強版：更大、更亮、雙層光圈） */
.hero-cta .btn-primary {
  position: relative;
  isolation: isolate;
}
.hero-cta .btn-primary::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(74, 107, 77, 0.45) 0%, rgba(74, 107, 77, 0.22) 45%, transparent 78%);
  z-index: -1;
  opacity: 0;
  animation: cta-glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
  filter: blur(5px);
}
.hero-cta .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(74, 107, 77, 0.45);
  z-index: -1;
  opacity: 0;
  animation: cta-ring-pulse 3s ease-out infinite;
  pointer-events: none;
}
@keyframes cta-glow-pulse {
  0%, 100% { opacity: 0.15; transform: scale(0.94); }
  50% { opacity: 0.85; transform: scale(1.17); }
}
@keyframes cta-ring-pulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* CTA 箭頭 ・ 滑動動畫 */
.hero-cta .btn-primary .arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.hero-cta .btn-primary:hover .arrow {
  transform: translateX(6px);
}

/* Hero 數字計數 ・ 漸入放大 */
.hero-stats .num {
  animation: stat-pop 0.8s var(--ease) both;
}
.hero-stats > *:nth-child(1) .num { animation-delay: 0.4s; }
.hero-stats > *:nth-child(2) .num { animation-delay: 0.55s; }
.hero-stats > *:nth-child(3) .num { animation-delay: 0.7s; }
@keyframes stat-pop {
  0% { opacity: 0; transform: scale(0.85) translateY(8px); }
  60% { transform: scale(1.06) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* 四步驟 ・ 圓圈呼吸光 + Icon 載入旋入 */
.process-circle {
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.process-step-new.in .process-circle {
  animation: circle-enter 0.9s var(--ease) both;
}
.process-step-new:nth-child(1) .process-circle { animation-delay: 0.1s; }
.process-step-new:nth-child(2) .process-circle { animation-delay: 0.25s; }
.process-step-new:nth-child(3) .process-circle { animation-delay: 0.4s; }
.process-step-new:nth-child(4) .process-circle { animation-delay: 0.55s; }
@keyframes circle-enter {
  0% { opacity: 0; transform: scale(0.5) rotate(-90deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.process-step-new:hover .process-circle {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 14px 32px rgba(74, 107, 77, 0.22);
}

/* 服務卡片 ・ hover 浮起 */
.svc-card,
.service-card {
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.svc-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(31, 29, 26, 0.12);
}

/* Section title ・ Underline 延伸 */
.section-title h2 {
  position: relative;
  display: inline-block;
}
.section-title.in h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 2px;
  background: var(--matcha);
  border-radius: 2px;
  animation: title-underline 0.9s var(--ease) 0.3s forwards;
}
@keyframes title-underline {
  0% { width: 0; opacity: 0; }
  60% { opacity: 1; }
  100% { width: 100%; opacity: 0.7; }
}

/* Hero 滾動指示器 ・ 下方箭頭緩慢上下 */
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--matcha);
  opacity: 0.6;
  font-family: var(--font-jp);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  animation: scroll-hint 2.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}
.hero-scroll-hint::after {
  content: "";
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--matcha), transparent);
}
@keyframes scroll-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.8; }
}
@media (max-width: 900px) {
  .hero-scroll-hint { display: none; }
}

/* =========================================================
   服務項目頁 ・ 額外動畫（價格項目 hover ・ accordion ・ tab）
   ========================================================= */

/* 價格 accordion 項目 hover 浮起 */
.svc-item summary {
  transition: background-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc-item:not([open]):hover summary {
  background-color: rgba(122, 139, 111, 0.06);
  transform: translateX(4px);
  box-shadow: -3px 0 0 var(--matcha);
}
.svc-item summary .svc-item-toggle {
  transition: transform .35s var(--ease);
}
.svc-item[open] summary .svc-item-toggle {
  transform: rotate(180deg);
}

/* Accordion 展開動畫由 JS 控制（main.js 平滑高度動畫）*/

/* 價格 tabs hover 與 active 動效 */
.price-tab {
  position: relative;
  transition: color .3s var(--ease);
}
.price-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--matcha);
  transition: width .35s var(--ease), left .35s var(--ease);
}
.price-tab:hover::after {
  width: 60%;
  left: 20%;
}
.price-tab.active::after {
  width: 100%;
  left: 0;
}

/* 服務 details 標題 icon 旋轉指示 */
.svc-item summary {
  position: relative;
}

/* SOP card hover 提升（services 頁專用增強）*/
.sop-card {
  transition: transform .45s var(--ease);
}
.sop-card:hover {
  transform: translateX(4px);
}
.sop-card:hover .sop-num {
  color: var(--shu);
  transition: color .35s var(--ease);
}

/* =========================================================
   點擊錨點連結時 ・ 目標元素閃爍提示動畫
   ========================================================= */
.target-flash {
  animation: target-flash 1.6s var(--ease);
}
@keyframes target-flash {
  0% {
    background-color: transparent;
    box-shadow: none;
  }
  15% {
    background-color: rgba(122, 139, 111, 0.18);
    box-shadow: 0 0 0 6px rgba(122, 139, 111, 0.15);
    transform: translateY(-2px);
  }
  60% {
    background-color: rgba(122, 139, 111, 0.08);
    box-shadow: 0 0 0 3px rgba(122, 139, 111, 0.08);
    transform: translateY(0);
  }
  100% {
    background-color: transparent;
    box-shadow: none;
  }
}

/* =========================================================
   全站額外動畫包 v2 ・ 導覽、按鈕、卡片、icon、入場
   ========================================================= */

/* === 導覽列 ・ 連結滑動底線（僅桌機） === */
@media (min-width: 901px) {
  .nav-links a:not(.nav-cta) {
    position: relative;
    transition: color .3s var(--ease);
  }
  .nav-links a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--matcha);
    transition: width .35s var(--ease), left .35s var(--ease);
  }
  .nav-links a.active::after,
  .nav-links a[aria-current="page"]::after {
    width: 100%;
    left: 0;
  }
  /* hover 底線只在真 hover 裝置觸發；觸控／點擊後不會黏住 */
  @media (hover: hover) {
    .nav-links a:not(.nav-cta):hover::after {
      width: 100%;
      left: 0;
    }
  }
  /* 滑鼠點擊後即使 focus 仍在，也不要顯示底線（focus-visible 才是真鍵盤焦點） */
  .nav-links a:not(.nav-cta):focus:not(:focus-visible)::after {
    width: 0;
    left: 50%;
  }
}

/* === Header 滾動陰影過渡 === */
.site-header {
  transition: box-shadow .4s var(--ease), background-color .4s var(--ease), padding .35s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(31, 29, 26, 0.06);
}

/* === 按鈕 ・ 光掃過效果 === */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%);
  transition: left .6s var(--ease);
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(31, 29, 26, 0.14);
}
.btn:hover::after {
  left: 100%;
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(31, 29, 26, 0.1);
}

/* === 服務 icon ・ hover 旋轉放大 === */
.svc-icon-wrap,
.service-icon {
  transition: transform .5s var(--ease);
}
.svc-card:hover .svc-icon-wrap,
.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.1);
}

/* === 評價卡片 ・ Reviews hover === */
.g-review,
.notice-card,
.review-card {
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.g-review:hover,
.notice-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(31, 29, 26, 0.1);
}

/* === 區塊網格 hover (服務區域) === */
.area-tag {
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.area-tag:hover {
  transform: translateY(-2px);
  background-color: var(--matcha);
  color: #fff;
  border-color: var(--matcha);
}

/* === 計數器完成時 pop === */
.num-finished {
  animation: num-finish-pop 0.5s var(--ease);
}
@keyframes num-finish-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* === Trust band 圖示 hover === */
.trust-ico {
  transition: transform .4s var(--ease), color .35s var(--ease);
}
.trust-item:hover .trust-ico {
  transform: rotate(-6deg) scale(1.1);
  color: var(--shu);
}

/* === Footer 連結 hover 右滑 === */
.site-footer .footer-col a {
  position: relative;
  display: inline-block;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.site-footer .footer-col a:hover {
  color: var(--matcha);
  transform: translateX(4px);
}

/* === FAQ details 圓潤展開 === */
details.faq-item summary,
details.svc-item summary {
  list-style: none;
}
details.faq-item summary::-webkit-details-marker,
details.svc-item summary::-webkit-details-marker {
  display: none;
}

/* === 區域標籤條目 hover 微動 === */
.process-step-new h3,
.svc-card h3,
.service-card h3 {
  transition: color .3s var(--ease);
}
.process-step-new:hover h3,
.svc-card:hover h3,
.service-card:hover h3 {
  color: var(--bamboo-deep);
}

/* === Hero 背景元素 entrance ・ 載入時淡入 === */
.hero-bg {
  opacity: 0;
  animation: hero-elements-in 1.2s var(--ease) 0.3s forwards;
}
@keyframes hero-elements-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* === Tab pane 內容切換 fade === */
.price-pane {
  transition: opacity .35s var(--ease);
}
.price-pane:not(.active) {
  display: none;
}
.price-pane.active {
  animation: tab-fade-in 0.5s var(--ease);
}
@keyframes tab-fade-in {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === 滾動進入 reveal 動畫加強 === */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-scale.in {
  opacity: 1;
  transform: scale(1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-left.in {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-right.in {
  opacity: 1;
  transform: translateX(0);
}

/* === LINE 浮動按鈕 ・ 跳動提示 === */
.float-btn.line {
  animation: float-btn-bob 3s ease-in-out infinite;
}
@keyframes float-btn-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* === SVG path 描繪入場（section title eyebrow line）=== */
.section-title.in .ja {
  animation: eyebrow-slide-in 0.7s var(--ease) 0.1s both;
}
@keyframes eyebrow-slide-in {
  0% { opacity: 0; letter-spacing: 0.2em; transform: translateY(-4px); }
  100% { opacity: 1; letter-spacing: 0.4em; transform: translateY(0); }
}

/* === Section title h2 ・ 字符跳入 === */
.section-title.in h2 {
  animation: title-slide-up 0.7s var(--ease) 0.2s both;
}
@keyframes title-slide-up {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === 價格表 row hover 微動 === */
.local-price-table tr:not(:first-child),
.svc-price-table tr {
  transition: background-color .3s var(--ease);
}
.local-price-table tr:not(:first-child):hover,
.svc-price-table tbody tr:hover {
  background-color: rgba(122, 139, 111, 0.05);
}

/* prefers-reduced-motion 尊重設定 */
@media (prefers-reduced-motion: reduce) {
  .hero-cta .btn-primary::before,
  .hero-stats .num,
  .process-step-new.in .process-circle,
  .hero-scroll-hint,
  .section-title.in h2::after,
  .section-title.in .ja,
  .section-title.in h2,
  .target-flash,
  .svc-item[open] .svc-item-body,
  .sop-card,
  .svc-item summary,
  .btn::after,
  .float-btn.line,
  .hero-bg,
  .price-pane.active,
  .nav-links a::after {
    animation: none !important;
    transition: none !important;
  }
  .btn:hover,
  .svc-card:hover,
  .service-card:hover,
  .g-review:hover,
  .notice-card:hover,
  .area-tag:hover,
  .trust-item:hover .trust-ico {
    transform: none !important;
  }
}

/* =========================================================
   服務項目頁 ・ 進階動畫包（v3）
   ========================================================= */

/* === Page Hero 麵包屑滑入 === */
.page-hero .breadcrumb {
  opacity: 0;
  transform: translateX(-12px);
  animation: breadcrumb-slide-in 0.7s var(--ease) 0.1s forwards;
}
@keyframes breadcrumb-slide-in {
  0% { opacity: 0; transform: translateX(-12px); }
  100% { opacity: 1; transform: translateX(0); }
}
.page-hero h1 {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-h1-slide 0.8s var(--ease) 0.25s forwards;
}
@keyframes hero-h1-slide {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}
.page-hero .lead {
  opacity: 0;
  transform: translateY(10px);
  animation: hero-h1-slide 0.8s var(--ease) 0.45s forwards;
}

/* === 價格 svc-item summary ・ 箭頭三角動 === */
.svc-item summary .svc-item-toggle {
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.svc-item summary .svc-item-toggle::before,
.svc-item summary .svc-item-toggle::after {
  content: '';
  position: absolute;
  background: var(--matcha);
  transition: transform .4s var(--ease), background .3s var(--ease);
}
.svc-item summary .svc-item-toggle::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  margin-top: -1px;
}
.svc-item summary .svc-item-toggle::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  transform: rotate(0);
}
.svc-item[open] summary .svc-item-toggle::after {
  transform: rotate(90deg);
  background: var(--shu);
}
.svc-item[open] summary .svc-item-toggle::before {
  background: var(--shu);
}
.svc-item:hover summary .svc-item-toggle::before,
.svc-item:hover summary .svc-item-toggle::after {
  background: var(--bamboo-deep);
}

/* === 價格 svc-item-name hover 微滑 === */
.svc-item summary .svc-item-name {
  transition: transform .35s var(--ease), color .3s var(--ease);
  display: inline-block;
}
.svc-item:hover summary .svc-item-name {
  transform: translateX(4px);
  color: var(--bamboo-deep);
}
.svc-item summary .svc-item-ja {
  transition: color .3s var(--ease);
}
.svc-item:hover summary .svc-item-ja {
  color: var(--shu);
}

/* === 價格 svc-item-price 入場 + hover === */
.svc-item summary .svc-item-price {
  transition: transform .35s var(--ease), color .3s var(--ease);
}
.svc-item:hover summary .svc-item-price {
  transform: scale(1.05);
  color: var(--bamboo-deep);
}

/* === 服務 details body 內 ・ 條列 stagger 進場 === */
.svc-item[open] .svc-item-body ul li {
  opacity: 0;
  transform: translateX(-8px);
  animation: list-item-slide 0.4s var(--ease) forwards;
}
.svc-item[open] .svc-item-body ul li:nth-child(1) { animation-delay: 0.05s; }
.svc-item[open] .svc-item-body ul li:nth-child(2) { animation-delay: 0.12s; }
.svc-item[open] .svc-item-body ul li:nth-child(3) { animation-delay: 0.19s; }
.svc-item[open] .svc-item-body ul li:nth-child(4) { animation-delay: 0.26s; }
.svc-item[open] .svc-item-body ul li:nth-child(5) { animation-delay: 0.33s; }
.svc-item[open] .svc-item-body ul li:nth-child(6) { animation-delay: 0.40s; }
@keyframes list-item-slide {
  0% { opacity: 0; transform: translateX(-8px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* === 預約須知 Notice cards ・ 入場錯位 === */
.notice-card.reveal.in {
  animation: notice-card-rise 0.7s var(--ease);
}
@keyframes notice-card-rise {
  0% { opacity: 0; transform: translateY(20px) rotate(-1deg); }
  60% { transform: translateY(-4px) rotate(0.3deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}

/* === SOP card 入場 ・ 從左滑入 === */
.sop-card.reveal.in,
.sop-flow .sop-card.in {
  animation: sop-card-slide 0.7s var(--ease) both;
}
@keyframes sop-card-slide {
  0% { opacity: 0; transform: translateX(-16px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* === SOP 號碼 hover 律動 === */
.sop-card .sop-num {
  transition: transform .4s var(--ease), color .4s var(--ease), text-shadow .4s var(--ease);
}
.sop-card:hover .sop-num {
  transform: scale(1.08) rotate(-2deg);
  text-shadow: 4px 4px 0 rgba(122, 139, 111, 0.15);
}

/* === SOP 漢字 hover 浮動 === */
.sop-card .sop-num-kanji {
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.sop-card:hover .sop-num-kanji {
  transform: translateY(-3px);
  opacity: 1;
}

/* === SOP pin (起/核心/完了) 入場 ・ 旋轉彈跳 === */
.sop-card.in .sop-pin {
  animation: sop-pin-pop 0.7s var(--ease) 0.3s both;
}
@keyframes sop-pin-pop {
  0% { opacity: 0; transform: scale(0) rotate(-30deg); }
  60% { transform: scale(1.15) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* === 保固條款 article 入場 stagger === */
.warranty-article.reveal.in {
  animation: warranty-fade-up 0.7s var(--ease);
}
@keyframes warranty-fade-up {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === Warranty 條款 h3 ・ 線條繪入 === */
.warranty-article h3 {
  position: relative;
  display: inline-block;
}
.warranty-article.in h3::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--matcha);
  transform: translateY(-50%);
  animation: h3-line-draw 0.5s var(--ease) 0.3s forwards;
  opacity: 0.6;
}
@keyframes h3-line-draw {
  0% { width: 0; }
  100% { width: 4px; }
}

/* === CTA band ・ 背景漂浮漸層動畫 === */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(122, 139, 111, 0.12), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(201, 63, 63, 0.06), transparent 50%);
  animation: cta-bg-drift 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.cta-band > .container {
  position: relative;
  z-index: 1;
}
@keyframes cta-bg-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10%, -5%); }
}

/* === 鄰近區域 area-tags 入場 stagger === */
.area-tags .area-tag {
  opacity: 0;
  animation: tag-pop-in 0.5s var(--ease) forwards;
}
.area-tags.in .area-tag:nth-child(1) { animation-delay: 0.05s; }
.area-tags.in .area-tag:nth-child(2) { animation-delay: 0.1s; }
.area-tags.in .area-tag:nth-child(3) { animation-delay: 0.15s; }
.area-tags.in .area-tag:nth-child(4) { animation-delay: 0.2s; }
.area-tags.in .area-tag:nth-child(5) { animation-delay: 0.25s; }
@keyframes tag-pop-in {
  0% { opacity: 0; transform: translateY(8px) scale(0.9); }
  60% { transform: translateY(-2px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* === 服務 details 整體 hover light glow === */
.svc-item:not([open]) summary:hover {
  background: linear-gradient(90deg, rgba(122, 139, 111, 0.08) 0%, transparent 100%);
}

/* prefers-reduced-motion 包含新動畫 */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .page-hero .breadcrumb,
  .page-hero h1,
  .page-hero .lead,
  .svc-item summary .svc-item-toggle::before,
  .svc-item summary .svc-item-toggle::after,
  .svc-item summary .svc-item-name,
  .svc-item summary .svc-item-ja,
  .svc-item summary .svc-item-price,
  .svc-item[open] .svc-item-body ul li,
  .notice-card.reveal.in,
  .sop-card.reveal.in,
  .sop-flow .sop-card.in,
  .sop-card .sop-num,
  .sop-card .sop-num-kanji,
  .sop-card.in .sop-pin,
  .warranty-article.reveal.in,
  .warranty-article.in h3::before,
  .cta-band::before,
  .area-tags .area-tag {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ─── about.html ・ hero（左文右標誌）2026-05-12 ────────────────── */
.page-hero--about {
  padding: 140px 0 80px;
  text-align: left;
}
.page-hero--about > .container { position: relative; z-index: 1; }
.page-hero--about .breadcrumb { text-align: left; margin-bottom: 24px; }

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  align-items: center;
}

.about-hero-text .about-eyebrow {
  font-family: var(--font-jp);
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  text-indent: 0.45em;
  color: var(--matcha);
  margin: 0 0 14px;
}
.about-hero-text h1 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  text-align: left;
  margin: 0 0 20px;
  letter-spacing: 0.06em;
}
.about-hero-text .lead {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-character;
  word-break: break-all;
  margin: 0 0 18px;
  max-width: 720px;
}
.about-hero-text .lead + .lead { margin-bottom: 26px; }
.about-hero-text .file-no {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
}

.about-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-emblem {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-emblem img {
  position: relative;
  width: 240px;
  height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(47, 74, 54, 0.16));
  z-index: 2;
  animation: emblem-float 6.5s ease-in-out infinite;
}
@keyframes emblem-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.about-emblem .emblem-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.about-emblem .emblem-ring--outer {
  inset: 0;
  border: 1px dashed rgba(74, 107, 77, 0.32);
  animation: emblem-rotate 70s linear infinite;
}
@keyframes emblem-rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 820px) {
  .page-hero--about { text-align: center; padding: 130px 0 64px; }
  .page-hero--about .breadcrumb { text-align: center; }
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-hero-visual { order: -1; }
  .about-hero-text .about-eyebrow,
  .about-hero-text h1,
  .about-hero-text .lead { text-align: center; }
  .about-hero-text .about-eyebrow { text-indent: 0; }
  .about-hero-text .lead { margin-left: auto; margin-right: auto; }
  .about-hero-text .file-no { justify-content: center; }
}
@media (max-width: 640px) {
  .about-emblem { width: 240px; height: 240px; }
  .about-emblem img { width: 196px; height: 196px; }
  .about-hero-text .about-eyebrow { font-size: 0.7rem; letter-spacing: 0.35em; }
}
@media (max-width: 520px) {
  .about-hero-text .file-no { row-gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .about-emblem img,
  .about-emblem .emblem-ring--outer { animation: none !important; }
}

/* ─── about.html ・ 後記 afterword ──────────────── */
#afterword { padding: 80px 0; }
.afterword-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 8px 24px;
}
.afterword-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-family: var(--font-jp);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--bamboo-deep);
  border: 1px solid var(--bamboo-deep);
  border-radius: 4px;
  margin-bottom: 22px;
  opacity: 0.85;
  background: var(--washi);
}
.afterword-eyebrow {
  font-family: var(--font-jp);
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-indent: 0.45em;
  color: var(--matcha);
  margin: 0 0 18px;
}
.afterword-text {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  line-height: 2.1;
  color: var(--sumi);
  margin: 0 auto;
  max-width: 540px;
}
.afterword-text strong {
  font-weight: 500;
  border-bottom: 1px solid var(--matcha);
  padding-bottom: 1px;
}
.afterword-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 200px;
  margin: 28px auto 18px;
  opacity: 0.65;
}
.afterword-rule .ar-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 107, 77, 0.45), transparent);
}
.afterword-rule .ar-diamond {
  width: 5px;
  height: 5px;
  background: var(--bamboo);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.afterword-sign {
  font-family: var(--font-jp);
  font-size: 0.92rem;
  color: var(--sumi-soft);
  letter-spacing: 0.15em;
  margin: 0;
}
@media (max-width: 640px) {
  #afterword { padding: 60px 0; }
  .afterword-text { font-size: 0.98rem; line-height: 2; }
  .afterword-mark { width: 48px; height: 48px; font-size: 1.5rem; }
}

/* =========================================================
   服務區域 ・ 真實地理 SVG 地圖（g0v twgeojson 開放資料）
   ─ 2026-05-13 typography polish: editorial map / travel-guide
   ========================================================= */

/* ─── 區段標題：地圖專屬的「目錄頁」感 ─────────────────── */
#taichung-areas .section-title { margin-bottom: 48px; padding-top: 28px; }
#taichung-areas .section-title::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 20px;
  background: var(--bamboo);
  opacity: 0.55;
  transform: translateX(-0.5px);
}
#taichung-areas .section-title .ja {
  font-size: 0.72rem;
  letter-spacing: 0.55em;
  color: var(--bamboo);
  text-indent: 0.55em;     /* visually centre with tracked-out text */
  margin-bottom: 18px;
}
#taichung-areas .section-title h2 {
  font-family: var(--font-jp);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--sumi);
}
#taichung-areas .section-title .hoi-intro {
  margin-top: 14px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--sumi-soft);
}

/* ─── 地圖外殼 ─────────────────────────────────────────── */
.tc-map-wrap {
  position: relative;
  margin: var(--space-5) auto 0;
  padding: var(--space-4) clamp(var(--space-3), 3vw, var(--space-5));
  background:
    /* faint horizontal washi grain */
    repeating-linear-gradient(0deg, rgba(31,29,26,0.012) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.22)),
    var(--washi);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.tc-map-wrap::before,
.tc-map-wrap::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.28;
}
.tc-map-wrap::before {
  background: radial-gradient(circle, rgba(122,139,111,0.45), transparent 70%);
  top: -120px; left: -120px;
}
.tc-map-wrap::after {
  background: radial-gradient(circle, rgba(58,90,124,0.28), transparent 70%);
  bottom: -140px; right: -140px;
}

/* desktop only: leave room on the right for an inline info card */
@media (min-width: 1024px) {
  .tc-map-wrap { padding-right: clamp(var(--space-5), 6vw, 96px); }
}

/* ─── 圖例：旅遊書式 hairline 分隔 ─────────────────────── */
.tc-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-3);
  padding: 6px 0 10px;
  position: relative; z-index: 2;
  font-family: var(--font-jp);
  font-size: 0.7rem;
  color: var(--sumi-soft);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.tc-legend::after {
  content: "";
  display: block;
  width: 36px; height: 1px;
  background: rgba(31,29,26,0.18);
  margin: 14px auto 0;
  flex-basis: 100%;
}
.tc-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  position: relative;
}
.tc-legend-item + .tc-legend-item::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1px; height: 11px;
  background: rgba(31,29,26,0.18);
  transform: translateY(-50%);
}
.tc-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}
.tc-dot--major   { background: #fbf3e2; }
.tc-dot--anchor  { background: var(--bamboo); border-color: var(--bamboo-deep); }
.tc-dot--featured{ background: var(--gold);   border-color: var(--gold); }
.tc-dot--minor   { background: #d9cab0; border-color: #c4b596; }

/* ─── SVG 容器 ─────────────────────────────────────────── */
.tc-svg-frame {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
}
.tc-svg-map {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 6px 18px rgba(31,29,26,0.05));
  touch-action: manipulation;
}
.tc-sea { fill: rgba(58,90,124,0.035); }

/* ─── path 共通：更安靜的邊框 ──────────────────────────── */
.tc-sd path {
  stroke: rgba(31,29,26,0.28);
  stroke-width: 0.7;
  stroke-linejoin: round;
  transition: fill .25s var(--ease), stroke .25s var(--ease), stroke-width .25s var(--ease);
}

/* ─── 區名 text：editorial map label（基底，tier 在下方覆寫）── */
.tc-sd text {
  font-family: var(--font-jp);
  font-weight: 600;
  letter-spacing: 0.08em;
  fill: #fff8e8;
  text-anchor: middle;
  pointer-events: none;
  user-select: none;
  paint-order: stroke fill;
  stroke: rgba(74,107,77,0.55);
  stroke-width: 2.2;
  stroke-linejoin: round;
}
.tc-sd .tc-sd-sub {
  font-weight: 500;
  fill: var(--sumi-soft);
  letter-spacing: 0.25em;
}

/* 19 主區（有頁） */
.tc-sd--major { cursor: pointer; }
/* 19 主要服務區（熱門服務地區）：統一綠色，白字 */
.tc-sd--major path { fill: var(--green-tier-general); }
.tc-sd--major text {
  fill: #fff8e8;
  font-weight: 600;
  letter-spacing: 0.08em;
  stroke: rgba(74,107,77,0.55);
  stroke-width: 2.2;
}
.tc-sd--major:hover path,
.tc-sd--major.is-active path {
  fill: var(--green-tier-primary);
  stroke: var(--bamboo-deep);
  stroke-width: 1.4;
}
.tc-sd--major:hover text,
.tc-sd--major.is-active text {
  stroke: rgba(47,74,54,0.85);
  stroke-width: 2.4;
}

/* 10 同樣到府區（無頁） */
/* 10 區「一般服務區」：淺綠，柔墨字 */
.tc-sd--minor path { fill: var(--green-tier-minor); cursor: pointer; }
.tc-sd--minor text {
  fill: var(--sumi-soft);
  font-weight: 500;
  letter-spacing: 0.08em;
  stroke: rgba(245,239,228,0.75);
  stroke-width: 2;
}
.tc-sd--minor:hover path,
.tc-sd--minor.is-active path {
  fill: #d9cab0;
  stroke: var(--sumi-soft);
  stroke-width: 1.1;
}

/* 駐點：北屯 — 深竹綠、字色用 washi 米白並加 gold accent */
.tc-sd--anchor path {
  /* 北屯駐點：統一綠色，但加深邊線突出 */
  fill: var(--green-tier-general);
  stroke: var(--bamboo-deep);
  stroke-width: 1.4;
}
.tc-sd--anchor text {
  fill: #fff8e8;
  font-weight: 600;
  letter-spacing: 0.08em;
  stroke: rgba(47,74,54,0.7);
  stroke-width: 2.4;
}
.tc-sd--anchor .tc-sd-sub { fill: var(--gold); }
.tc-sd--anchor:hover path,
.tc-sd--anchor.is-active path {
  fill: var(--bamboo-deep);
  stroke: var(--sumi);
}

/* 重點：西屯 — gold 區塊、字色用墨黑強化對比 */
.tc-sd--featured path {
  /* 西屯七期：統一綠色，金色邊線輕微突出 */
  fill: var(--green-tier-general);
  stroke: var(--gold);
  stroke-width: 1.1;
}
.tc-sd--featured text {
  fill: var(--sumi);
  font-weight: 600;
  letter-spacing: 0.08em;
  stroke: rgba(243,223,160,0.95);
  stroke-width: 2.4;
}
.tc-sd--featured:hover path,
.tc-sd--featured.is-active path {
  fill: var(--gold);
  stroke: var(--shu);
}
.tc-sd--featured:hover text,
.tc-sd--featured.is-active text {
  stroke: rgba(176,141,87,0.95);
}

/* 山城：和平 — 大面積 matcha 透明、字級小、字距寬 */
.tc-sd--mountain path {
  /* 和平：歸入「一般服務區」淺綠（與其他 9 個 minor 一致）*/
  fill: var(--green-tier-minor);
  stroke: rgba(74,107,77,0.4);
}
.tc-sd--mountain text {
  fill: var(--sumi-soft);
  font-weight: 500;
  letter-spacing: 0.45em;
  /* font-size 沿用 SVG attribute（28），CSS 不覆寫 */
  stroke: rgba(245,239,228,0.78);
  stroke-width: 2;
}
.tc-sd--mountain:hover path { fill: rgba(74,107,77,0.28); }
.tc-sd--mountain:hover text { fill: rgba(47,74,54,1); }

/* 市中心 5 區（小）— 用更輕的字、加字距讓單字不擠 */
.tc-sd--tiny text {
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
  font-weight: 500;
}

/* 方位字 / 海線山城 小標 — 和紙書脊式 small caps */
.tc-svg-compass text {
  font-family: var(--font-jp);
  fill: var(--sumi-soft);
  opacity: 0.42;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-anchor: middle;
  pointer-events: none;
  stroke: none !important;
}

/* ─── 資訊卡 ─────────────────────────────────────────────
   桌機：地圖右下角 inline 側欄 sidebar callout
   手機：底部 sheet
*/
.tc-info-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-top: 3px solid var(--bamboo);
  border-radius: 4px;
  padding: 20px 22px 20px;
  box-shadow: 0 18px 40px rgba(31,29,26,0.14);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
  opacity: 0;
  pointer-events: none;
}
/* mobile-first: bottom sheet */
.tc-info-card {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 50;
  transform: translateY(140%);
}
.tc-info-card.is-shown {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
/* desktop: anchor to map-wrap right side, no slide animation */
@media (min-width: 1024px) {
  .tc-map-wrap { position: relative; }
  .tc-info-card {
    position: absolute;
    left: auto; right: 24px; bottom: 24px;
    width: 280px;
    transform: translateY(10px);
    box-shadow: 0 12px 32px rgba(31,29,26,0.10);
  }
  .tc-info-card.is-shown { transform: translateY(0); }
}
.tc-info-card.is-minor    { border-top-color: var(--sumi-soft); }
.tc-info-card.is-anchor   { border-top-color: var(--bamboo); }
.tc-info-card.is-featured { border-top-color: var(--gold); }

.tc-info-close {
  position: absolute; top: 8px; right: 12px;
  background: none; border: none;
  font-size: 1.4rem;
  color: var(--sumi-soft);
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  opacity: 0.6;
  transition: opacity .2s var(--ease);
}
.tc-info-close:hover { opacity: 1; }

.tc-info-eyebrow {
  font-family: var(--font-jp);
  font-size: 0.66rem;
  letter-spacing: 0.5em;
  color: var(--bamboo);
  margin: 0 0 8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tc-info-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(122,139,111,0.3);
}
.tc-info-card.is-anchor   .tc-info-eyebrow { color: var(--bamboo-deep); }
.tc-info-card.is-featured .tc-info-eyebrow { color: var(--gold); }
.tc-info-card.is-featured .tc-info-eyebrow::after { background: rgba(176,141,87,0.4); }
.tc-info-card.is-minor    .tc-info-eyebrow { color: var(--sumi-soft); }
.tc-info-card.is-minor    .tc-info-eyebrow::after { background: rgba(58,56,51,0.25); }

.tc-info-name {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  color: var(--sumi);
  margin: 0 0 6px;
  line-height: 1.2;
}
.tc-info-sub {
  font-size: 0.82rem;
  color: var(--sumi-soft);
  margin: 0 0 16px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.tc-info-cta {
  width: 100%;
  text-align: center;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}
.tc-info-cta.is-disabled {
  pointer-events: none;
  background: var(--washi-deep) !important;
  color: var(--sumi-soft) !important;
  border-color: var(--line) !important;
}

/* ─── 周邊縣市：travel-guide index 列表 ────────────────── */
.tc-outer {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  position: relative;
}
.tc-outer::before {
  /* hairline divider with central knot */
  content: "";
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background:
    linear-gradient(to right,
      transparent 0,
      rgba(31,29,26,0.18) 20%,
      rgba(31,29,26,0.18) 80%,
      transparent 100%);
}
.tc-outer::after {
  content: "・";
  position: absolute;
  top: -0.7em; left: 50%;
  transform: translateX(-50%);
  background: var(--washi);
  padding: 0 10px;
  color: var(--bamboo);
  font-family: var(--font-jp);
  font-size: 0.9rem;
  line-height: 1;
}

.tc-outer-head { text-align: center; margin-bottom: var(--space-4); }
.tc-outer-head .ja {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.66rem;
  letter-spacing: 0.55em;
  color: var(--bamboo);
  margin-bottom: 10px;
  text-indent: 0.55em;
  text-transform: uppercase;
}
.tc-outer-head h3 {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  letter-spacing: 0.14em;
  color: var(--sumi);
}

.tc-outer-list {
  counter-reset: outer-idx;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(31,29,26,0.08);    /* faux 1px grid line */
  border: 1px solid rgba(31,29,26,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.tc-outer-list li {
  counter-increment: outer-idx;
  position: relative;
  background: rgba(255,253,248,0.9);
  padding: 22px 22px 20px;
  transition: background .3s var(--ease), transform .3s var(--ease);
  border-radius: 0;
  border-left: none;
}
.tc-outer-list li::before {
  content: counter(outer-idx, decimal-leading-zero);
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--font-jp);
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  color: var(--indigo);
  opacity: 0.5;
}
.tc-outer-list li:hover {
  background: #fff;
  transform: none;
  box-shadow: inset 3px 0 0 var(--indigo);
}
.tc-outer-list b {
  display: block;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.16em;
  color: var(--sumi);
  margin-bottom: 6px;
}
.tc-outer-list span {
  display: block;
  font-size: 0.78rem;
  color: var(--sumi-soft);
  letter-spacing: 0.06em;
  line-height: 1.55;
}
.tc-outer-soon {
  background: linear-gradient(180deg, #fbf6ea, rgba(255,253,248,0.9)) !important;
}
.tc-outer-soon b { color: var(--gold); }
.tc-outer-soon::before { color: var(--gold) !important; opacity: 0.7 !important; }
.tc-outer-soon:hover { box-shadow: inset 3px 0 0 var(--gold) !important; }

/* ─── 整合 CTA：安靜的墨色長條 ───────────────────────── */
.tc-cta {
  margin-top: var(--space-5);
  padding: clamp(20px, 3vw, 32px) clamp(22px, 4vw, 44px);
  background: var(--sumi);
  border-radius: 4px;
  border: 1px solid rgba(255,248,232,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-3);
  color: #fff8e8;
  position: relative; overflow: hidden;
}
.tc-cta::before {
  /* faint paper grain */
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,248,232,0.018) 0 1px, transparent 1px 3px),
    radial-gradient(circle at 88% 50%, rgba(201,63,63,0.10), transparent 55%),
    radial-gradient(circle at 8% 30%, rgba(122,139,111,0.10), transparent 55%);
  pointer-events: none;
}
.tc-cta::after {
  /* delicate vertical rule between text and actions on desktop */
  content: "";
  position: absolute;
  top: 24%; bottom: 24%;
  left: clamp(48%, 56%, 60%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,248,232,0.18), transparent);
  pointer-events: none;
}
@media (max-width: 720px) { .tc-cta::after { display: none; } }

.tc-cta-text { position: relative; z-index: 1; max-width: 52%; }
.tc-cta-text::before {
  /* tiny japanese eyebrow inside CTA */
  content: "CONTACT ・ お問い合わせ";
  display: block;
  font-family: var(--font-jp);
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  color: rgba(255,248,232,0.45);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.tc-cta-text h3 {
  font-family: var(--font-jp);
  font-weight: 500;
  color: #fff8e8;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  line-height: 1.4;
}
.tc-cta-text p {
  color: rgba(255,248,232,0.65);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.tc-cta-actions {
  display: flex;
  gap: 12px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.tc-cta-actions .btn { letter-spacing: 0.16em; }
.tc-cta-actions .btn-outline {
  color: #fff8e8;
  border-color: rgba(255,248,232,0.35);
  background: transparent;
}
.tc-cta-actions .btn-outline:hover {
  background: rgba(255,248,232,0.08);
  border-color: #fff8e8;
}

/* ─── 響應式 ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tc-sd text { font-size: 13px; }
  .tc-sd--tiny text { font-size: 9px !important; }
  .tc-sd--mountain text { font-size: 17px !important; letter-spacing: 0.45em !important; }
  .tc-cta-text { max-width: 100%; }
}
@media (max-width: 720px) {
  .tc-map-wrap { padding: var(--space-3) var(--space-2); }
  .tc-sd text { display: block; font-size: 11px; }
  .tc-sd .tc-sd-sub { display: none; }
  .tc-sd--tiny text { font-size: 8px !important; }
  .tc-sd--anchor text,
  .tc-sd--featured text { display: block; font-size: 12px; font-weight: 600; }
  .tc-sd--mountain text { display: block; font-size: 13px !important; letter-spacing: 0.45em !important; }
  .tc-sd path { stroke-width: 1.0; }
  .tc-svg-compass text { font-size: 9px; }
  .tc-legend { font-size: 0.66rem; letter-spacing: 0.24em; }
  .tc-legend-item { padding: 0 12px; gap: 7px; }
  .tc-cta {
    padding: 22px 20px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .tc-cta-actions { width: 100%; }
  .tc-cta-actions .btn { flex: 1; min-width: 130px; text-align: center; }
  #taichung-areas .section-title h2 { letter-spacing: 0.12em; }
}
@media (max-width: 480px) {
  .tc-outer-list { grid-template-columns: 1fr 1fr; }
  .tc-outer-list li { padding: 18px 16px; }
  .tc-outer-list li::before { top: 10px; right: 12px; }
  .tc-legend-item { font-size: 0.62rem; padding: 0 10px; }
  .tc-legend-item + .tc-legend-item::before { height: 9px; }
  .tc-sd text { font-size: 10px; }
  .tc-sd--tiny text { font-size: 7.5px !important; }
  .tc-sd--anchor text,
  .tc-sd--featured text { font-size: 11px; }
  .tc-sd--mountain text { font-size: 11px !important; letter-spacing: 0.4em !important; }
}
@media (prefers-reduced-motion: reduce) {
  .tc-sd path, .tc-info-card, .tc-outer-list li { transition: none !important; }
}

/* =========================================================
   服務區域 ・ 兩層式地圖（台灣 ↔ 台中）— 水彩卡片風
   ========================================================= */

/* --- 三階綠調 palette ----------------------------------- */
:root {
  --green-tier-primary: #4a6b4d;  /* 三屯：deepest matcha */
  --green-tier-general: #7a9a76;  /* 16 區：medium green */
  --green-tier-minor:   #bcd1ad;  /* 10 區：palest wash */
  --green-tier-primary-soft: rgba(74,107,77,0.92);
  --green-tier-general-soft: rgba(122,154,118,0.85);
  --green-tier-minor-soft:   rgba(188,209,173,0.85);
  --map-cream:    #f7f1e3;        /* 卡片米奶油 */
  --map-cream-2:  #efe7d3;        /* 內陰 */
  --map-tag-bg:   #3d5a40;        /* 深竹綠 tag */
  --map-county-dim: #d8d8d4;      /* 未服務縣市灰 */
}

/* --- 外層：去掉古紙裝裱框，改為透明容器 ----------------- */
.map-stage {
  position: relative;
  margin: var(--space-4) auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  max-width: 1100px;
}
.map-stage::before,
.map-stage::after { content: none; display: none; }

/* --- 殘留的舊裝飾：隱藏前一版本的視覺殘骸 -------------- */
.map-layer--taichung::before,
.map-layer--taichung::after { content: none !important; display: none !important; }
.tc-seal-stamp,
.map-hint-whimsy,
.map-footnote { display: none !important; }

/* === 隱藏舊 breadcrumb（移到 card-tag）======================= */
.map-breadcrumb { display: none; }

/* === Card 卡片本體 ========================================= */
.map-card {
  position: relative;
  background:
    /* 微纖維紋路 */
    radial-gradient(1200px 600px at 50% -10%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(180deg, var(--map-cream) 0%, #f1e8d4 100%);
  border: 1px solid rgba(74,107,77,0.18);
  border-radius: 24px;
  padding: clamp(46px, 4.5vw, 56px) clamp(22px, 3vw, 38px) clamp(22px, 2.6vw, 30px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 0 0 1px rgba(255,255,255,0.5) inset,
    0 22px 60px -28px rgba(47,74,54,0.28),
    0 6px 18px -10px rgba(31,29,26,0.08);
  isolation: isolate;
}
/* 卡片內細紙紋（已移除：在某些縮放下兩條對角紋產生 moiré 看起來像垂直線） */
.map-card::before { content: none; display: none; }

/* === Card 左上 pill tag（兼任 "你在哪一層" 指示） ============= */
.map-card-tag {
  position: absolute;
  top: 16px; left: 18px;
  display: inline-flex; align-items: center;
  gap: 6px;
  background: var(--map-tag-bg);
  color: #f7f1e3;
  font-family: var(--font-jp), var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 6px 14px 6px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 12px -6px rgba(31,29,26,0.35);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  z-index: 4;
}
.map-card-tag:hover {
  background: #2f4a36;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -6px rgba(31,29,26,0.45);
}
.map-card-tag:focus-visible {
  outline: 2px solid var(--bamboo-deep);
  outline-offset: 2px;
}
.map-card-tag.is-active {
  background: var(--bamboo-deep);
}

/* === Card 返回鈕：浮在 Taichung 卡片右上 ==================== */
.map-card .map-back {
  position: absolute;
  top: 18px; right: 20px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(74,107,77,0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--bamboo-deep);
  cursor: pointer;
  margin: 0;
  z-index: 4;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.map-card .map-back:hover {
  background: var(--bamboo-deep);
  color: #f7f1e3;
  transform: translateY(-1px);
  letter-spacing: 0.08em;
  border-color: var(--bamboo-deep);
}

/* === Card header ============================================ */
.map-card-head {
  text-align: center;
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.map-card-title {
  font-family: var(--font-jp), var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sumi);
  margin: 0 0 6px;
}
.map-card-title small {
  font-weight: 400;
  font-size: 0.7em;
  color: var(--sumi-soft);
  letter-spacing: 0.05em;
  margin-left: 4px;
}
.map-card-sub {
  font-size: 0.92rem;
  color: var(--sumi-soft);
  letter-spacing: 0.04em;
  margin: 0;
}

/* === Legend strip =========================================== */
.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 26px;
  list-style: none;
  padding: 12px 20px;
  margin: 0 auto 18px;
  max-width: 720px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(74,107,77,0.12);
  border-radius: 14px;
  font-size: 0.82rem;
  color: var(--sumi-soft);
  letter-spacing: 0.06em;
  position: relative; z-index: 2;
}
.map-legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.map-legend-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
}
.map-legend-dot--service { background: var(--green-tier-general); }
.map-legend-dot--dim     { background: var(--map-county-dim); }
.map-legend-dot--major   { background: var(--green-tier-primary); }
.map-legend-dot--general { background: var(--green-tier-general); }
.map-legend-dot--minor   { background: var(--green-tier-minor); }

/* === Layer 切換（淡入 + 上移） ============================= */
.map-layer {
  display: none;
  position: relative;
  z-index: 2;
  animation: map-fade-in .42s var(--ease);
}
.map-layer.is-active { display: block; }
@keyframes map-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === SVG 容器 =============================================== */
.map-svg-frame {
  position: relative;
  margin: 0 auto;
  z-index: 2;
}
.map-svg-frame--taiwan    { max-width: 460px; }
.map-svg-frame--taichung  { max-width: 1000px; }

/* === Card 底部 callout 資訊框 ============================== */
.map-card-callout {
  margin: 18px auto 0;
  max-width: 720px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(74,107,77,0.18);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative; z-index: 2;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
}
.map-callout-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.map-callout-body { flex: 1; min-width: 0; }
.map-callout-title {
  font-family: var(--font-jp), var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bamboo-deep);
  margin: 0 0 2px;
  letter-spacing: 0.04em;
}
.map-callout-text {
  font-size: 0.85rem;
  color: var(--sumi-soft);
  margin: 0;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

/* === 台灣 SVG ================================================ */
.tw-svg-map {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 6px 18px rgba(74,107,77,0.12));
  overflow: visible;
}
.tw-sea { fill: transparent; }

.tw-county path {
  stroke: rgba(255,255,255,0.75);
  stroke-width: 1.1;
  stroke-linejoin: round;
  transition: fill .3s var(--ease), stroke .3s var(--ease), opacity .3s var(--ease);
}

/* 未服務縣市：水彩淡灰 */
.tw-county--dim path {
  fill: var(--map-county-dim);
  opacity: 0.78;
}
.tw-county--dim text {
  fill: var(--sumi-soft);
  opacity: 0.62;
  font-family: var(--font-jp);
  text-anchor: middle;
  pointer-events: none;
  font-weight: 500;
  letter-spacing: 0.08em;
  paint-order: stroke fill;
  stroke: rgba(245,239,228,0.75);
  stroke-width: 2;
  stroke-linejoin: round;
  /* font-size 由 SVG attribute 控制 */
}

/* 服務縣市：medium green watercolor */
.tw-county--service path {
  fill: var(--green-tier-general);
  stroke: rgba(255,255,255,0.85);
  stroke-width: 1.2;
}
.tw-county--service text {
  fill: #fff8e8;
  font-family: var(--font-jp);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-anchor: middle;
  pointer-events: none;
  paint-order: stroke fill;
  stroke: rgba(74,107,77,0.55);
  stroke-width: 2.2;
  stroke-linejoin: round;
  /* font-size 由 SVG attribute 控制 */
}

/* 新竹合併（兩塊都是服務縣市，stroke 用綠色融入） */
.tw-county[data-county="新竹市"] path,
.tw-county[data-county="新竹縣"] path {
  stroke: var(--green-tier-general) !important;
  stroke-width: 0.5 !important;
}
/* 嘉義合併（兩塊都是 dim 灰色，stroke 用 dim 色融入） */
.tw-county[data-county="嘉義市"] path,
.tw-county[data-county="嘉義縣"] path {
  stroke: var(--map-county-dim) !important;
  stroke-width: 0.5 !important;
}

/* hover 放大互動 — 所有縣市 */
.tw-county { transition: transform .25s var(--ease); transform-box: fill-box; transform-origin: center; }
.tw-county:hover {
  transform: scale(1.04);
}
.tw-county:hover path {
  filter: drop-shadow(0 4px 12px rgba(74,107,77,0.35));
  cursor: pointer;
}
.tw-county--service:hover path { fill: var(--green-tier-primary); }
.tw-county--dim:hover path { fill: #cdcdc6; opacity: 0.9; }

/* 服務縣市的 cursor 改成手指（已是 <a>） */
.tw-county--service { cursor: pointer; }
.tw-county--service:focus-visible path,
.tw-county--dim:focus-visible path {
  stroke: var(--shu);
  stroke-width: 2.5;
}

/* === 縣市 Toast（dim 縣市點擊提示） === */
.county-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--sumi);
  color: #fff8e8;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-jp);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  box-shadow: 0 12px 32px rgba(31,29,26,0.25);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .35s var(--ease);
}
.county-toast.is-shown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .tw-county { transition: none !important; }
  .tw-county:hover { transform: none !important; }
  .county-toast { transition: opacity .15s linear !important; }
}

/* 台中 - 主役・可點擊（更突出但去掉脈動） */
.tw-county--clickable { cursor: pointer; }
.tw-county--clickable path {
  fill: var(--green-tier-primary);
  stroke: rgba(255,255,255,0.95);
  stroke-width: 2.2;
  /* 永久放大 1.08 倍 + 加強光暈，視覺強調主要服務區 */
  transform: scale(1.08);
  transform-origin: center;
  transform-box: fill-box;
  filter: drop-shadow(0 6px 16px rgba(74,107,77,0.5)) drop-shadow(0 0 6px rgba(74,107,77,0.25));
  transition: filter .3s var(--ease), transform .3s var(--ease);
  animation: none;
}
.tw-county--clickable:hover path {
  transform: scale(1.12);
  filter: drop-shadow(0 8px 22px rgba(74,107,77,0.65)) drop-shadow(0 0 10px rgba(74,107,77,0.35));
}
.tw-county--clickable text {
  /* 改為顯示 SVG label（HTML pill 已移除）*/
  display: inline;
  font-family: var(--font-jp);
  fill: #fff8e8 !important;
  stroke: var(--bamboo-deep) !important;
  stroke-width: 3 !important;
  stroke-linejoin: round;
  paint-order: stroke fill;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.tw-county--clickable:hover path {
  filter: drop-shadow(0 6px 14px rgba(74,107,77,0.6));
  transform: scale(1.025);
}
.tw-county--clickable:focus-visible path {
  filter: drop-shadow(0 0 0 3px rgba(74,107,77,0.6));
}
@keyframes tw-pulse { 0%,100%,50% { filter: none; } } /* 取消脈動 */

/* === 台灣台中 浮動 callout pill（覆蓋於 SVG 之上） ============ */
.map-svg-frame--taiwan { position: relative; }
.tw-callout-pill {
  position: absolute;
  /* 台中在 viewBox 0 0 600 702 約 (220, 400) → 換算到容器百分比 */
  left: 38%;
  top: 58%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px 7px 14px;
  background: #f7f1e3;
  color: var(--bamboo-deep);
  border: 1.5px solid var(--bamboo-deep);
  border-radius: 999px;
  font-family: var(--font-jp), var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  z-index: 5;
  box-shadow:
    0 6px 18px -8px rgba(47,74,54,0.5),
    0 0 0 4px rgba(247,241,227,0.55);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.tw-callout-pill svg { stroke: var(--bamboo-deep); margin-left: 2px; }
.tw-callout-pill:hover {
  background: var(--bamboo-deep);
  color: #f7f1e3;
  transform: translate(-50%, -50%) translateY(-2px);
  box-shadow:
    0 10px 22px -8px rgba(47,74,54,0.6),
    0 0 0 4px rgba(247,241,227,0.7);
}
.tw-callout-pill:hover svg { stroke: #f7f1e3; }
.tw-callout-pill:focus-visible {
  outline: 2px solid var(--bamboo-deep);
  outline-offset: 3px;
}
/* 輕呼吸 */
@keyframes pill-breathe {
  0%, 100% { box-shadow: 0 6px 18px -8px rgba(47,74,54,0.5), 0 0 0 4px rgba(247,241,227,0.55); }
  50%      { box-shadow: 0 8px 22px -8px rgba(47,74,54,0.65), 0 0 0 6px rgba(122,154,118,0.35); }
}
.tw-callout-pill { animation: pill-breathe 3.2s ease-in-out infinite; }
.tw-callout-pill:hover { animation: none; }

/* === Taichung 台中地圖 — 3 階綠調 + 水彩 =================== */
.tc-svg-map { overflow: visible; filter: drop-shadow(0 8px 24px rgba(74,107,77,0.14)); }
.tc-sea { fill: transparent; }

/* 統一 path stroke：白色描邊 → 像水彩塊之間的留白 */
.tc-sd path {
  stroke: rgba(255,255,255,0.85);
  stroke-width: 1.4;
  stroke-linejoin: round;
  transition: fill .25s var(--ease), stroke .25s var(--ease), stroke-width .25s var(--ease), transform .25s var(--ease);
}
.tc-sd:hover path { stroke: #fff; stroke-width: 1.8; }

/* ━━━ 三階級覆寫舊 .tc-sd--major / minor / anchor / featured ━━━ */
/* 統一字體系統：
   - tier-primary / tier-general：白字 + 綠色 halo（在綠色塊上）
   - tier-minor：柔墨字 + 和紙 halo（在淺綠塊上）
   - 字距 0.08em（一般）／字重 600（主要）／500（次要）
*/
.tc-sd.tier-primary path {
  /* 與 tier-general 同色：3 屯 與 16 主要區一起標為「熱門服務地區」*/
  fill: var(--green-tier-general);
}
.tc-sd.tier-primary text {
  fill: #fff8e8;
  font-family: var(--font-jp);
  font-weight: 600;
  letter-spacing: 0.08em;
  paint-order: stroke fill;
  stroke: rgba(74,107,77,0.55);
  stroke-width: 2.2;
  stroke-linejoin: round;
}
.tc-sd.tier-primary:hover path,
.tc-sd.tier-primary.is-active path {
  fill: #38522f;
}

.tc-sd.tier-general path {
  fill: var(--green-tier-general);
}
.tc-sd.tier-general text {
  fill: #fff8e8;
  font-family: var(--font-jp);
  font-weight: 600;
  letter-spacing: 0.08em;
  paint-order: stroke fill;
  stroke: rgba(74,107,77,0.55);
  stroke-width: 2.2;
  stroke-linejoin: round;
}
.tc-sd.tier-general:hover path,
.tc-sd.tier-general.is-active path {
  fill: #5e8259;
}

.tc-sd.tier-minor path {
  fill: var(--green-tier-minor);
}
.tc-sd.tier-minor text {
  fill: var(--sumi-soft);
  font-family: var(--font-jp);
  font-weight: 500;
  letter-spacing: 0.08em;
  paint-order: stroke fill;
  stroke: rgba(245,239,228,0.78);
  stroke-width: 2;
  stroke-linejoin: round;
}
.tc-sd.tier-minor:hover path,
.tc-sd.tier-minor.is-active path {
  fill: #a8c195;
}

/* 北屯/西屯 不再特殊化 — 統一歸於「熱門服務地區」與其他 17 區同色（user requirement: 2 tiers only）*/

/* 山城・和平 — 維持 tier-minor 配色，拉大字距如書脊感 */
.tc-sd--mountain text {
  fill: var(--sumi-soft);
  font-weight: 500;
  letter-spacing: 0.45em;
  /* font-size 沿用 SVG attribute（28）*/
  stroke: rgba(245,239,228,0.78);
  stroke-width: 2;
}

/* 5 個市中心微小行政區 — 恢復顯示在地圖上（不再用 HTML pill）*/
.tc-sd--tiny path {
  cursor: pointer;
}
.tc-sd--tiny text { display: inline !important; }

/* === 城中五區 浮動 pill cluster ============================= */
.map-svg-frame--taichung { position: relative; }
.svc-tc-cluster {
  position: absolute;
  /* 中區 SVG 位於 cropped viewBox(600x491) 內 (235, 328) → 39.2% / 67% */
  left: 39.2%;
  top: 67%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-areas:
    "xi   bei"
    "zhong zhong"
    "nan  dong";
  gap: 4px 6px;
  z-index: 6;
  padding: 8px;
  background: rgba(247,241,227,0.55);
  border: 1px dashed rgba(74,107,77,0.35);
  border-radius: 14px;
  backdrop-filter: blur(3px);
}
.svc-tc-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 4px 10px;
  font-family: var(--font-jp), var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--bamboo-deep);
  background: #fff;
  border: 1px solid rgba(74,107,77,0.5);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 2px 6px -3px rgba(47,74,54,0.35);
}
.svc-tc-pill:hover {
  background: var(--bamboo-deep);
  color: #f7f1e3;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px -3px rgba(47,74,54,0.55);
}
.svc-tc-pill:focus-visible {
  outline: 2px solid var(--bamboo-deep);
  outline-offset: 2px;
}
.svc-tc-pill--xi    { grid-area: xi; }
.svc-tc-pill--bei   { grid-area: bei; }
.svc-tc-pill--zhong { grid-area: zhong; justify-self: center; }
.svc-tc-pill--nan   { grid-area: nan; }
.svc-tc-pill--dong  { grid-area: dong; }

/* 和平已由 SVG viewBox 硬裁切，移除 mask */

/* === 響應式 ================================================ */
@media (max-width: 880px) {
  .map-svg-frame--taiwan { max-width: 380px; }
  .map-card { border-radius: 20px; padding: clamp(40px, 8vw, 50px) clamp(16px, 4vw, 22px) 22px; }
  .map-card-tag { font-size: 0.72rem; padding: 5px 12px; }
  .map-card .map-back { font-size: 0.72rem; padding: 5px 12px; }
  .svc-tc-cluster { transform: translate(-50%, -50%) scale(0.7); }
  .tw-callout-pill { font-size: 0.74rem; padding: 5px 8px 5px 12px; }
}
@media (max-width: 720px) {
  .map-svg-frame--taiwan { max-width: 320px; }
  .map-svg-frame--taichung { max-width: 100%; }
  /* 手機字體略縮但仍可讀 */
  .tw-county--service text { font-size: 18px !important; }
  .tw-county--dim text { font-size: 15px !important; }
  .map-legend { gap: 10px 14px; padding: 10px 14px; font-size: 0.76rem; }
  .map-card-title { font-size: 1.1rem; }
  .map-card-sub { font-size: 0.82rem; }
  .map-callout-title { font-size: 0.88rem; }
  .map-callout-text { font-size: 0.78rem; }
  .svc-tc-cluster { transform: translate(-50%, -50%) scale(0.62); }
}
@media (max-width: 480px) {
  .map-card { padding-top: 52px; }
  .map-card-tag { top: 14px; left: 14px; }
  .map-card .map-back { top: 16px; right: 14px; }
  .svc-tc-cluster { transform: translate(-50%, -50%) scale(0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .map-layer { animation: none !important; }
  .tw-county--clickable path { animation: none !important; }
  .tw-callout-pill { animation: none !important; }
  .map-card-tag, .tw-callout-pill, .svc-tc-pill, .map-card .map-back { transition: none !important; }
}

/* (Old 兩層式 map styles removed — replaced by watercolor card above) */

/* ════════════════════════════════════════════════════════════
   about.html ・ 動畫強化 layer（2026-05-12）
   ════════════════════════════════════════════════════════════ */

/* ─── ① Hero 進場 cascade ─────────────────────────────── */
.page-hero--about { position: relative; overflow: hidden; }

.page-hero--about .breadcrumb {
  opacity: 0;
  animation: about-bc-in 0.7s cubic-bezier(0.22,1,0.36,1) 0.05s forwards;
}
@keyframes about-bc-in {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

.about-hero-text .about-eyebrow {
  opacity: 0;
  background: linear-gradient(90deg, var(--matcha) 0%, var(--bamboo-deep) 50%, var(--matcha) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    about-eyebrow-in 1s cubic-bezier(0.22,1,0.36,1) 0.25s forwards,
    eyebrow-shimmer 7s ease-in-out 1.5s infinite;
}
@keyframes about-eyebrow-in {
  0%   { opacity: 0; letter-spacing: 0.2em; }
  60%  { opacity: 1; }
  100% { opacity: 1; letter-spacing: 0.45em; }
}
@keyframes eyebrow-shimmer {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 100% 0%; }
}

.about-hero-text h1 {
  opacity: 0;
  animation: about-h1-in 1s cubic-bezier(0.22,1,0.36,1) 0.45s forwards;
}
@keyframes about-h1-in {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.about-hero-text .lead {
  opacity: 0;
  animation: about-lead-in 0.9s cubic-bezier(0.22,1,0.36,1) 0.7s forwards;
}
.about-hero-text .lead + .lead {
  animation-delay: 0.95s;
}
.about-hero-text .file-no {
  opacity: 0;
  animation: about-lead-in 0.9s cubic-bezier(0.22,1,0.36,1) 1.2s forwards;
}
@keyframes about-lead-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* file-no 的「研」印持續呼吸 */
.about-hero-text .file-no .fn-mark {
  animation: fn-mark-pulse 3.6s ease-in-out 1.6s infinite;
}
@keyframes fn-mark-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 107, 77, 0); transform: scale(1); }
  50%      { box-shadow: 0 0 0 5px rgba(74, 107, 77, 0.10); transform: scale(1.08); }
}

/* ─── ② Logo emblem 進場 + 環繞 + 呼吸光暈 ────────────── */
.about-emblem { isolation: isolate; }
.about-emblem::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(122, 139, 111, 0.22), transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: emblem-breathe 5s ease-in-out 1.2s infinite;
  opacity: 0;
}
@keyframes emblem-breathe {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.10); }
}

.about-emblem img {
  opacity: 0;
  transform-origin: center;
  animation:
    about-logo-in 1.2s cubic-bezier(0.22,1,0.36,1) 0.45s forwards,
    emblem-float 6.5s ease-in-out 1.7s infinite;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), filter 0.5s ease;
}
@keyframes about-logo-in {
  0%   { opacity: 0; transform: scale(0.55) rotate(-14deg); }
  60%  { opacity: 1; transform: scale(1.05) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.about-emblem .emblem-ring--outer {
  opacity: 0;
  animation:
    about-ring-in 1.2s cubic-bezier(0.22,1,0.36,1) 0.75s forwards,
    emblem-rotate 70s linear 1.95s infinite;
  transition: animation-duration 0.6s ease;
}
@keyframes about-ring-in {
  0%   { opacity: 0; transform: scale(0.6) rotate(0); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Hover: logo 放大 + 環加速 */
.about-emblem:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 18px 32px rgba(47, 74, 54, 0.22));
}
.about-emblem:hover .emblem-ring--outer {
  animation-duration: 1.2s, 12s;
}

/* ─── ③ 全頁飄落葉粒子（position: fixed, 24 朵）───────── */
.page-petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.petal {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--matcha);
  border-radius: 0 100% 0 100%;
  top: -40px;
  opacity: 0;
  animation: petal-fall linear infinite, petal-fade linear infinite;
  will-change: transform, opacity;
}
.petal-1  { left:  3%; animation-duration: 13s, 13s; animation-delay:  0.0s,  0.0s; }
.petal-2  { left:  9%; animation-duration: 15s, 15s; animation-delay:  2.8s,  2.8s; background: var(--bamboo); width: 7px; height: 7px; }
.petal-3  { left: 15%; animation-duration: 11s, 11s; animation-delay:  5.5s,  5.5s; width: 9px; height: 9px; }
.petal-4  { left: 21%; animation-duration: 14s, 14s; animation-delay:  1.4s,  1.4s; background: var(--bamboo); }
.petal-5  { left: 27%; animation-duration: 16s, 16s; animation-delay:  7.2s,  7.2s; width: 8px; height: 8px; }
.petal-6  { left: 33%; animation-duration: 12s, 12s; animation-delay:  3.6s,  3.6s; }
.petal-7  { left: 39%; animation-duration: 17s, 17s; animation-delay:  8.0s,  8.0s; background: var(--bamboo); width: 6px; height: 6px; }
.petal-8  { left: 45%; animation-duration: 14s, 14s; animation-delay:  4.4s,  4.4s; }
.petal-9  { left: 51%; animation-duration: 11s, 11s; animation-delay:  9.5s,  9.5s; width: 9px; height: 9px; background: var(--bamboo); }
.petal-10 { left: 57%; animation-duration: 15s, 15s; animation-delay:  1.0s,  1.0s; }
.petal-11 { left: 63%; animation-duration: 13s, 13s; animation-delay:  6.3s,  6.3s; width: 7px; height: 7px; }
.petal-12 { left: 69%; animation-duration: 16s, 16s; animation-delay:  3.2s,  3.2s; background: var(--bamboo); }
.petal-13 { left: 75%; animation-duration: 12s, 12s; animation-delay:  8.7s,  8.7s; width: 8px; height: 8px; }
.petal-14 { left: 81%; animation-duration: 14s, 14s; animation-delay:  4.9s,  4.9s; background: var(--bamboo); width: 6px; height: 6px; }
.petal-15 { left: 87%; animation-duration: 11s, 11s; animation-delay:  0.7s,  0.7s; }
.petal-16 { left: 93%; animation-duration: 15s, 15s; animation-delay:  5.1s,  5.1s; }
.petal-17 { left: 97%; animation-duration: 13s, 13s; animation-delay:  9.8s,  9.8s; background: var(--bamboo); width: 7px; height: 7px; }
.petal-18 { left: 12%; animation-duration: 16s, 16s; animation-delay: 11.2s, 11.2s; width: 8px; height: 8px; }
.petal-19 { left: 36%; animation-duration: 12s, 12s; animation-delay: 10.5s, 10.5s; background: var(--bamboo); }
.petal-20 { left: 54%; animation-duration: 17s, 17s; animation-delay: 12.3s, 12.3s; width: 7px; height: 7px; }
.petal-21 { left: 78%; animation-duration: 13s, 13s; animation-delay: 11.7s, 11.7s; background: var(--bamboo); width: 9px; height: 9px; }
.petal-22 { left:  6%; animation-duration: 14s, 14s; animation-delay: 13.5s, 13.5s; }
.petal-23 { left: 42%; animation-duration: 11s, 11s; animation-delay: 14.0s, 14.0s; background: var(--bamboo); width: 6px; height: 6px; }
.petal-24 { left: 66%; animation-duration: 15s, 15s; animation-delay: 14.8s, 14.8s; width: 8px; height: 8px; }
@keyframes petal-fall {
  0%   { transform: translateY(-40px) translateX(0) rotate(0); }
  100% { transform: translateY(110vh) translateX(40px) rotate(720deg); }
}
@keyframes petal-fade {
  0%, 100% { opacity: 0; }
  6%, 94%  { opacity: 0.42; }
}

.page-hero--about > .container { position: relative; z-index: 2; }

/* ─── ④ Chapter seal「森・研・初・型・土」彈跳進場 + hover ── */
.chapter-seal {
  display: inline-block;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}
.reveal.in .section-h3 .chapter-seal {
  animation: seal-pop 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.reveal.in .section-h3:nth-of-type(1) .chapter-seal { animation-delay: 0.15s; }
.reveal.in .section-h3:nth-of-type(2) .chapter-seal { animation-delay: 0.35s; }
.reveal.in .section-h3:nth-of-type(3) .chapter-seal { animation-delay: 0.55s; }
@keyframes seal-pop {
  0%   { opacity: 0; transform: scale(0) rotate(-180deg); }
  60%  { opacity: 1; transform: scale(1.15) rotate(8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.chapter-seal:hover {
  transform: rotate(-8deg) scale(1.12);
  color: var(--bamboo);
}

/* 創辦人簽名章 hover */
.founder-sign__mark {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.founder-sign__mark:hover {
  transform: rotate(-6deg) scale(1.08);
}

/* ─── ⑤ 不清單印章「印章按壓」動畫 + hover ──────────── */
.not-row .not-stamp {
  display: inline-block;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}
.reveal.not-roll.in .not-row .not-stamp {
  animation: stamp-press 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.reveal.not-roll.in .not-row:nth-child(1) .not-stamp { animation-delay: 0.08s; }
.reveal.not-roll.in .not-row:nth-child(2) .not-stamp { animation-delay: 0.18s; }
.reveal.not-roll.in .not-row:nth-child(3) .not-stamp { animation-delay: 0.28s; }
.reveal.not-roll.in .not-row:nth-child(4) .not-stamp { animation-delay: 0.38s; }
.reveal.not-roll.in .not-row:nth-child(5) .not-stamp { animation-delay: 0.48s; }
.reveal.not-roll.in .not-row:nth-child(6) .not-stamp { animation-delay: 0.58s; }
@keyframes stamp-press {
  0%   { opacity: 0; transform: scale(0) rotate(-30deg); }
  60%  { opacity: 1; transform: scale(1.15) rotate(10deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.not-row .not-stamp:hover {
  transform: rotate(-5deg) scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(74, 107, 77, 0.25));
}

/* 不清單文字: 滑入 */
.reveal.not-roll.in .not-row .not-text {
  animation: not-text-in 0.7s cubic-bezier(0.22,1,0.36,1) backwards;
}
.reveal.not-roll.in .not-row:nth-child(1) .not-text { animation-delay: 0.18s; }
.reveal.not-roll.in .not-row:nth-child(2) .not-text { animation-delay: 0.28s; }
.reveal.not-roll.in .not-row:nth-child(3) .not-text { animation-delay: 0.38s; }
.reveal.not-roll.in .not-row:nth-child(4) .not-text { animation-delay: 0.48s; }
.reveal.not-roll.in .not-row:nth-child(5) .not-text { animation-delay: 0.58s; }
.reveal.not-roll.in .not-row:nth-child(6) .not-text { animation-delay: 0.68s; }
@keyframes not-text-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* 不-seal-foot 落款飄入 */
.reveal.not-seal-foot.in {
  animation: seal-foot-in 1.2s cubic-bezier(0.22,1,0.36,1) 0.6s backwards;
}
@keyframes seal-foot-in {
  from { opacity: 0; transform: translateY(20px) scale(0.92); letter-spacing: 0; }
  to   { opacity: 1; transform: translateY(0) scale(1); letter-spacing: normal; }
}

/* ─── ⑥ Founder quote 與分隔線 ─────────────────────── */
.founder-mast-wrap .rule-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,107,77,0.4), transparent);
  margin: 14px 0;
  transform-origin: left center;
}
.reveal.in .rule-line {
  animation: rule-draw 1s cubic-bezier(0.22,1,0.36,1) 0.2s backwards;
}
.reveal.in .rule-line--dashed {
  animation-delay: 1.3s;
}
@keyframes rule-draw {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

.reveal.in .founder-quote__text {
  animation: quote-fade-in 1.3s cubic-bezier(0.22,1,0.36,1) 0.45s backwards;
}
@keyframes quote-fade-in {
  from { opacity: 0; transform: translateY(18px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.reveal.in .founder-sign {
  animation: founder-sign-in 0.9s cubic-bezier(0.22,1,0.36,1) 1.1s backwards;
}
@keyframes founder-sign-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tate-mast {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in .tate-mast {
  animation: tate-slide-in 1s cubic-bezier(0.22,1,0.36,1) 0.4s backwards;
}
@keyframes tate-slide-in {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── ⑦ Section eyebrow letter-spacing 展開 ────────── */
.reveal.in .eyebrow-jp,
.reveal.in .ja,
.section-title.reveal.in .eyebrow-jp,
.section-title.reveal.in .ja {
  animation: eyebrow-spread 1.2s cubic-bezier(0.22,1,0.36,1) backwards;
}
@keyframes eyebrow-spread {
  from { opacity: 0; letter-spacing: 0.05em; }
  to   { opacity: 1; letter-spacing: 0.3em; }
}

/* ─── ⑧ Afterword 後記動畫 ─────────────────────────── */
.afterword-card { perspective: 800px; }
.afterword-card.reveal.in .afterword-mark {
  animation: afterword-mark-pop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
@keyframes afterword-mark-pop {
  0%   { opacity: 0; transform: scale(0) rotate(-180deg); }
  60%  { opacity: 1; transform: scale(1.15) rotate(8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.afterword-card.reveal.in .afterword-eyebrow {
  animation: about-eyebrow-in 0.9s cubic-bezier(0.22,1,0.36,1) 0.25s backwards;
}
.afterword-card.reveal.in .afterword-text {
  animation: quote-fade-in 1.2s cubic-bezier(0.22,1,0.36,1) 0.45s backwards;
}
.afterword-card.reveal.in .afterword-rule {
  transform-origin: center;
  animation: rule-draw 1s cubic-bezier(0.22,1,0.36,1) 0.85s backwards;
}
.afterword-card.reveal.in .afterword-sign {
  animation: founder-sign-in 0.9s cubic-bezier(0.22,1,0.36,1) 1.15s backwards;
}
.afterword-mark { transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
.afterword-mark:hover {
  transform: rotate(-6deg) scale(1.08);
}

/* afterword strong: hover 強調 */
.afterword-text strong {
  position: relative;
  transition: color 0.3s ease;
}
.afterword-text strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--bamboo);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.afterword-text:hover strong { color: var(--bamboo-deep); }
.afterword-text:hover strong::after { transform: scaleX(1); }

/* ─── ⑨ Strong text 動態強調（hero / 故事段落）─────── */
.about-hero-text strong,
#why-komori .reveal strong,
#founder .founder-body strong {
  position: relative;
  display: inline;
  transition: color 0.3s ease;
}
.about-hero-text strong::before,
#why-komori .reveal strong::before,
#founder .founder-body strong::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 6px;
  background: linear-gradient(180deg, transparent 50%, rgba(122,139,111,0.32) 50%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
  z-index: -1;
}
.about-hero-text:hover strong::before,
#why-komori .reveal:hover strong::before,
#founder .founder-body:hover strong::before {
  transform: scaleX(1);
}

/* ─── ⑩ CTA 區呼吸 ──────────────────────────────────── */
.cta-band .btn-primary {
  position: relative;
  animation: cta-breathe 3.2s ease-in-out 1s infinite;
}
@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 4px 12px rgba(74, 107, 77, 0.25); }
  50%      { box-shadow: 0 8px 24px rgba(74, 107, 77, 0.45); }
}
.cta-band .btn-primary::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: var(--bamboo);
  opacity: 0;
  transform: scale(0.95);
  z-index: -1;
  animation: cta-ripple 3.2s ease-out 1s infinite;
  pointer-events: none;
}
@keyframes cta-ripple {
  0%   { opacity: 0.3; transform: scale(0.95); }
  100% { opacity: 0;   transform: scale(1.15); }
}

/* ─── ⑪ Section title h2 ─底線推進 ──────────────────── */
.section-title.reveal.in h2,
.reveal.in .section-h2 {
  animation: section-title-in 1s cubic-bezier(0.22,1,0.36,1) 0.15s backwards;
}
@keyframes section-title-in {
  from { opacity: 0; transform: translateY(16px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ─── ⑫ 服務據點 fn-text 滑入 + 接力放大循環 ────────── */
.about-hero-text .file-no .fn-mark,
.about-hero-text .file-no .fn-text,
.about-hero-text .file-no .fn-sep {
  display: inline-block;
  opacity: 0;
  transform-origin: center;
  animation:
    chip-in 0.5s cubic-bezier(0.22,1,0.36,1) forwards,
    chip-pulse 7.2s ease-in-out infinite;
}
/* 進場 stagger（first 1.0~1.61s）+ 接力放大每 1.2s 一個（第二項 animation-delay） */
.about-hero-text .file-no > .fn-mark              { animation-delay: 1.00s, 3.0s; }   /* 研 */
.about-hero-text .file-no > .fn-text:nth-child(2) { animation-delay: 1.05s, 4.2s; }   /* EST. 2019 */
.about-hero-text .file-no > .fn-sep:nth-child(3)  { animation-delay: 1.12s; }
.about-hero-text .file-no > .fn-text:nth-child(4) { animation-delay: 1.19s, 5.4s; }   /* TAICHUNG */
.about-hero-text .file-no > .fn-sep:nth-child(5)  { animation-delay: 1.26s; }
.about-hero-text .file-no > .fn-text:nth-child(6) { animation-delay: 1.33s, 6.6s; }   /* CHANGHUA */
.about-hero-text .file-no > .fn-sep:nth-child(7)  { animation-delay: 1.40s; }
.about-hero-text .file-no > .fn-text:nth-child(8) { animation-delay: 1.47s, 7.8s; }   /* TAIPEI */
.about-hero-text .file-no > .fn-sep:nth-child(9)  { animation-delay: 1.54s; }
.about-hero-text .file-no > .fn-text:nth-child(10){ animation-delay: 1.61s, 9.0s; }   /* NEW TAIPEI */

/* 分隔符不參與 pulse — 只進場 */
.about-hero-text .file-no .fn-sep {
  animation: chip-in 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes chip-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes chip-pulse {
  0%   { transform: scale(1); color: inherit; text-shadow: 0 0 0 transparent; }
  4%   { transform: scale(1.35); color: var(--bamboo-deep); text-shadow: 0 2px 8px rgba(74, 107, 77, 0.35); }
  9%   { transform: scale(1); color: inherit; text-shadow: 0 0 0 transparent; }
  100% { transform: scale(1); color: inherit; text-shadow: 0 0 0 transparent; }
}

/* ─── ⑬ 後記 typewriter（一字一字顯示）─────────────── */
.afterword-text .tw-char {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.afterword-card.tw-on .afterword-text .tw-char { opacity: 1; }
/* 覆寫先前一次性 quote-fade-in，改由 typewriter 接管 */
.afterword-card.reveal.in .afterword-text { animation: none; opacity: 1; }
/* 在 typewriter 啟動前，strong 的底線先隱形避免懸空 */
.afterword-text strong {
  border-bottom-color: transparent;
  transition: border-bottom-color 0.6s ease 0.4s;
}
.afterword-card.tw-on .afterword-text strong {
  border-bottom-color: var(--matcha);
}

/* ─── prefers-reduced-motion 降階 ───────────────────── */
@media (prefers-reduced-motion: reduce) {
  .page-hero--about *,
  .page-hero--about *::before,
  .page-hero--about *::after,
  .hero-petals .petal,
  .chapter-seal,
  .not-row .not-stamp,
  .not-row .not-text,
  .founder-quote__text,
  .rule-line,
  .afterword-card *,
  .cta-band .btn-primary,
  .cta-band .btn-primary::after {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}



/* 服務地圖 ・ Whimsy Injector additions（2026-05-13） */
/* (1) 北屯 駐點 印章 — vermilion seal stamps when Taichung layer enters */
.map-stage { position: relative; }
.tc-seal-stamp{
  position:absolute; pointer-events:none; z-index:4;
  width:44px; height:44px; border-radius:6px;
  background:#b73a2e; color:#fff8e8;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; letter-spacing:0.04em; font-size:13px;
  font-family:"Noto Serif TC",serif;
  box-shadow:inset 0 0 0 2px rgba(255,248,232,.55), 0 1px 0 rgba(0,0,0,.08);
  opacity:0; transform:translate(-50%,-50%) scale(2.2) rotate(-12deg);
  filter:blur(1.5px);
  text-shadow:0 0 1px rgba(0,0,0,.2);
}
.tc-seal-stamp::before{
  content:""; position:absolute; inset:0; border-radius:6px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,248,232,.18) 0 22%, transparent 35%),
    radial-gradient(circle at 75% 70%, rgba(0,0,0,.18) 0 18%, transparent 30%);
  mix-blend-mode:overlay; opacity:.9; pointer-events:none;
}
.tc-seal-stamp.is-stamped{
  animation:tc-seal-down .55s cubic-bezier(.2,.7,.25,1) forwards;
}
@keyframes tc-seal-down{
  0%   { opacity:0; transform:translate(-50%,-50%) scale(2.2) rotate(-12deg); filter:blur(2px); }
  55%  { opacity:.96; transform:translate(-50%,-50%) scale(.92) rotate(-7deg); filter:blur(0); }
  72%  { transform:translate(-50%,-50%) scale(1.04) rotate(-7deg); }
  100% { opacity:.94; transform:translate(-50%,-50%) scale(1) rotate(-7deg); filter:blur(0); }
}

/* (2) 台中 idle invitation — one-shot gentle wave */
.tw-county--clickable.is-nudge path{
  animation:tw-nudge 1.4s ease-in-out 1 both;
  transform-origin:center;
  transform-box:fill-box;
}
@keyframes tw-nudge{
  0%,100% { transform:translateY(0); }
  30%     { transform:translateY(-2.2px); }
  60%     { transform:translateY(.6px); }
}

/* (3) First-visit brush hint — uses unique class to avoid collision with existing .map-hint */
.map-hint-whimsy{
  position:absolute; left:50%; bottom:18px; transform:translateX(-50%);
  font-size:12px; letter-spacing:.18em; color:var(--sumi-soft);
  background:rgba(245,239,228,.85);
  padding:6px 14px 6px 28px; border-radius:2px;
  border:1px solid rgba(31,29,26,.08);
  opacity:0; pointer-events:none; z-index:3;
  transition:opacity .6s ease;
  white-space:nowrap;
}
.map-hint-whimsy::before{
  content:""; position:absolute; left:9px; top:50%;
  width:14px; height:8px; transform:translateY(-50%);
  background:linear-gradient(90deg, transparent 0, var(--sumi-soft) 35%, var(--sumi-soft) 70%, transparent 100%);
  opacity:.55;
  clip-path:polygon(0 45%, 70% 30%, 100% 50%, 70% 70%, 0 55%);
}
.map-hint-whimsy.is-visible{ opacity:.92; }
.map-hint-whimsy.is-fading{ opacity:0; transition:opacity 1s ease; }
@media (max-width:480px){
  .map-hint-whimsy{ font-size:11px; bottom:10px; padding:5px 12px 5px 26px; }
}

@media (prefers-reduced-motion: reduce){
  .tc-seal-stamp.is-stamped{ animation:none; opacity:.94;
    transform:translate(-50%,-50%) scale(1) rotate(-7deg); filter:none; }
  .tw-county--clickable.is-nudge path{ animation:none; }
  .map-hint-whimsy{ transition:none; }
}

/* =========================================================
   服務地圖 ・ Accessibility 補丁（2026-05-13）
   ========================================================= */

/* sr-only — 螢幕閱讀器專用，視覺隱藏 */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 焦點輪廓 — 可聚焦的地圖元素 */
.tw-county--clickable:focus-visible,
.tc-svg-map a:focus-visible,
.tc-svg-map .tc-sd:focus-visible {
  outline: none;
}
.tw-county--clickable:focus-visible path,
.tc-svg-map a:focus-visible path,
.tc-svg-map .tc-sd:focus-visible path {
  stroke: var(--shu);
  stroke-width: 2.4;
  filter: drop-shadow(0 0 0 var(--shu)) drop-shadow(0 0 4px rgba(201,63,63,0.6));
}
.map-step:focus-visible,
.map-back:focus-visible,
.tc-info-close:focus-visible,
.tc-info-cta:focus-visible,
.map-jump summary:focus-visible {
  outline: 2px solid var(--shu);
  outline-offset: 2px;
}

/* 已加 aria-disabled 的縣市 — 視覺上不變，鍵盤跳過 */
.tw-county[aria-disabled="true"] { cursor: default; }

/* === 文字備援清單（直接跳區） === */
section.map-jump,
.map-jump {
  max-width: 720px;
  margin: var(--space-3) auto 0;
  padding: 0 !important;  /* 覆寫 section 全域 96px 0 padding */
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.55);
  font-family: var(--font-jp);
}
/* 永遠展開：用 <h4 class="map-jump-title"> 取代 <summary> */
.map-jump-title {
  margin: 0;
  padding: 14px 18px 0;
  font-family: var(--font-jp);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--sumi);
  text-align: center;
}
.map-jump summary {
  cursor: pointer;
  padding: 12px 18px;
  list-style: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--sumi-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color .25s var(--ease);
}
.map-jump summary::-webkit-details-marker { display: none; }
.map-jump summary::after {
  content: " ▾";
  font-size: 0.7em;
  color: var(--bamboo);
  transition: transform .3s var(--ease);
}
.map-jump[open] summary::after { transform: rotate(180deg); }
.map-jump summary:hover { color: var(--sumi); }
.map-jump-list {
  list-style: none;
  padding: 14px 18px 18px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 6px;
  border-top: 1px dashed var(--line);
}
.map-jump-list li { display: block; }
.map-jump-list a,
.map-jump-list span {
  display: block;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-family: var(--font-jp);
  min-height: 44px; /* WCAG 觸控目標 */
  line-height: 24px;
}
.map-jump-list a {
  background: #fff;
  border: 1px solid rgba(74,107,77,0.25);
  color: var(--sumi);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.map-jump-list a:hover,
.map-jump-list a:focus-visible {
  background: var(--bamboo);
  color: #fff8e8;
  border-color: var(--bamboo-deep);
  outline: none;
}
.map-jump-list span {
  background: var(--washi-deep);
  color: var(--sumi-soft);
  border: 1px dashed var(--line);
}
.map-jump-divider {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-jp);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--sumi-soft);
  padding: 8px 0 4px !important;
  border: none !important;
  background: none !important;
  min-height: 0 !important;
}

/* 強化動畫 prefers-reduced-motion 對應 */
@media (prefers-reduced-motion: reduce) {
  .tw-county--clickable path { animation: none !important; }
  .map-layer { animation: none !important; }
  .map-jump summary::after { transition: none !important; }
}

/* 加大市中心 5 區手機觸控區（中/東/西/南/北） */
@media (max-width: 720px) {
  .tc-sd--tiny path {
    stroke-width: 6 !important;
    stroke: transparent !important;
  }
}

/* 移除點擊後的黑色 focus 外框（鍵盤 focus-visible 仍有朱紅輪廓）*/
.tw-county:focus,
.tw-county:focus a,
a.tw-county:focus,
.tc-svg-map a:focus {
  outline: none !important;
}
/* 只在鍵盤 focus 才顯示 focus 環 */
.tw-county:focus:not(:focus-visible),
a.tw-county:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

/* 收緊服務範圍地圖區的上方留白（與前一段距離過大）*/
section#taichung-areas { padding-top: 48px; }

/* === 台中 29 區 SVG label — 共用安全網（不強制覆蓋 tier 顏色） ====
   只保證 font-family / text-anchor / paint-order / 視覺基線一致。
   字色 / 字重 / halo 由各 tier 規則決定（white-on-green vs sumi-on-pale）。
*/
.tc-svg-map .tc-sd text {
  font-family: var(--font-jp);
  text-anchor: middle;
  paint-order: stroke fill;
  stroke-linejoin: round;
  pointer-events: none;
}
/* 和平：山城書脊感字距（覆蓋 tier-minor 的 0.08em）*/
.tc-svg-map .tc-sd--mountain text {
  letter-spacing: 0.45em !important;
}

/* === 城中 5 區：放大複製 callout（左下方）======================== */
.tc-zoom-line {
  stroke: var(--sumi-soft);
  stroke-width: 0.8;
  stroke-dasharray: 3 3;
  opacity: 0.6;
  fill: none;
}
.tc-zoom-dot {
  fill: var(--shu);
  stroke: rgba(255,248,232,0.9);
  stroke-width: 1;
}
.tc-zoom-bg {
  fill: rgba(255,248,232,0.85);
  stroke: rgba(74,107,77,0.4);
  stroke-width: 0.6;
}
.tc-zoom-region { cursor: pointer; }
.tc-zoom-region path {
  fill: var(--green-tier-general);
  stroke: #fff;
  stroke-width: 0.6;
  transition: fill .2s ease;
}
.tc-zoom-region:hover path {
  fill: var(--green-tier-primary);
}
.tc-zoom-label {
  fill: #fff8e8 !important;
  font-family: var(--font-jp);
  font-weight: 600 !important;
  font-size: 6px !important;  /* base size; scaled up 2.6x by parent transform */
  letter-spacing: 0.08em !important;
  text-anchor: middle;
  paint-order: stroke fill;
  stroke: rgba(74,107,77,0.55) !important;
  stroke-width: 1 !important;
  stroke-linejoin: round;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════
   ⚠️ 2-TIER ENFORCEMENT（強制只有 熱門服務地區 / 一般服務地區 兩級）
   - 取消 北屯（anchor）、西屯（featured）、和平（mountain）的特殊視覺
   - 取消 台中（clickable）的脈動、放大、特殊濾鏡
   ════════════════════════════════════════════════════════════ */

/* 台中（Taiwan 層）：和其他服務縣市同視覺 */
.tw-county--clickable path {
  transform: none !important;
  filter: none !important;
  animation: none !important;
  fill: var(--green-tier-general) !important;
  stroke: rgba(255,255,255,0.85) !important;
  stroke-width: 1.2 !important;
}
.tw-county--clickable:hover path {
  transform: none !important;
  filter: none !important;
  fill: var(--green-tier-primary) !important;
}
.tw-county--clickable text {
  fill: #fff8e8 !important;
  font-weight: 600 !important;
  font-size: 22px !important;
  letter-spacing: 0.08em !important;
  stroke: rgba(74,107,77,0.55) !important;
  stroke-width: 2.2 !important;
  paint-order: stroke;
}
.tw-county--clickable.is-nudge path,
.tw-county--clickable.is-nudge {
  animation: none !important;
}

/* 北屯（駐點）/ 西屯（七期）：完全同 major */
.tc-sd--anchor path,
.tc-sd--featured path {
  fill: var(--green-tier-general) !important;
  stroke: rgba(255,255,255,0.85) !important;
  stroke-width: 1.4 !important;
  filter: none !important;
}
.tc-sd--anchor:hover path,
.tc-sd--featured:hover path,
.tc-sd--anchor.is-active path,
.tc-sd--featured.is-active path {
  fill: #5e8259 !important;
  stroke: #fff !important;
}
.tc-sd--anchor text,
.tc-sd--featured text {
  fill: #fff8e8 !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  stroke: rgba(74,107,77,0.55) !important;
  stroke-width: 2.2 !important;
  paint-order: stroke;
}
.tc-sd--anchor .tc-sd-sub,
.tc-sd--featured .tc-sd-sub { display: none !important; }

/* 和平（山城）：完全同 minor，移除書脊字距 */
.tc-sd--mountain path {
  fill: var(--green-tier-minor) !important;
  stroke: rgba(255,255,255,0.85) !important;
  stroke-width: 1.4 !important;
}
.tc-sd--mountain:hover path {
  fill: #a8c195 !important;
}
.tc-sd--mountain text,
.tc-svg-map .tc-sd--mountain text {
  fill: var(--sumi-soft) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  stroke: rgba(245,239,228,0.78) !important;
  stroke-width: 2 !important;
  paint-order: stroke;
}

/* 駐點印章、首訪刷毫提示等 whimsy 特效全部關閉（屬於特殊化）*/
.tc-seal-stamp { display: none !important; }
.map-hint-whimsy { display: none !important; }

/* 移除 tc-sd--anchor / featured 區的 stamp / hint pseudo elements */
.tc-sd--anchor::before, .tc-sd--anchor::after,
.tc-sd--featured::before, .tc-sd--featured::after { content: none !important; }
