/* =====================================================
   義覓 Trova Italia — 質感版全站樣式
   字體：Cormorant Garamond（西文襯線）× Noto Serif TC（中文襯線標題）
        × Noto Sans TC（內文）
   色調：橄欖綠 / 陶土紅 / 暖象牙白
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Noto+Serif+TC:wght@500;600;700&family=Noto+Sans+TC:wght@300;400;500;700&display=swap');

:root {
  --olive: #3e5c40;
  --olive-deep: #27402a;
  --terracotta: #b4532f;
  --terracotta-dark: #93401f;
  --gold: #c8a45c;
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --ink: #2b2925;
  --muted: #837c6f;
  --line: #e5ddcc;
  --serif-latin: "Cormorant Garamond", "Noto Serif TC", serif;
  --serif: "Noto Serif TC", "Cormorant Garamond", serif;
  --sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --shadow-sm: 0 1px 3px rgba(43,41,37,.06);
  --shadow-md: 0 10px 30px -12px rgba(43,41,37,.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.95;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--olive); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--terracotta); }

/* --- 導覽列 --- */
header.site-header {
  background: var(--olive-deep);
  border-bottom: 1px solid rgba(200,164,92,.45);
  position: sticky; top: 0; z-index: 100;
}
.nav-wrap {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.logo {
  color: #f5efdf; font-family: var(--serif); font-size: 1.35rem;
  font-weight: 700; letter-spacing: .12em; padding: 16px 0;
}
.logo span {
  font-family: var(--serif-latin); font-style: italic; font-weight: 500;
  color: var(--gold); font-size: .95rem; letter-spacing: .18em; margin-left: 10px;
}
nav.main-nav a {
  color: #ded8c6; padding: 22px 18px; display: inline-block;
  font-size: .95rem; letter-spacing: .16em; font-weight: 500;
  border-bottom: 2px solid transparent; transition: all .25s ease;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: #fff; border-bottom-color: var(--gold);
}

/* --- Hero --- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 120%, rgba(200,164,92,.28) 0%, transparent 55%),
    linear-gradient(150deg, #37533a 0%, var(--olive-deep) 70%);
  color: #f5efdf; text-align: center; padding: 96px 24px 88px;
  overflow: hidden;
}
.hero::after {
  content: "· · ·"; display: block; color: var(--gold);
  letter-spacing: 1.2em; margin-top: 34px; font-size: .8rem;
}
.hero h1 {
  font-family: var(--serif); font-weight: 600; font-size: 2.6rem;
  letter-spacing: .1em; line-height: 1.5; margin-bottom: 18px;
}
.hero p {
  font-weight: 300; font-size: 1.05rem; letter-spacing: .06em;
  opacity: .88; max-width: 600px; margin: 0 auto 34px;
}
.btn {
  display: inline-block; background: var(--terracotta); color: #fff;
  padding: 13px 36px; border-radius: 2px; font-weight: 500;
  letter-spacing: .2em; font-size: .92rem; margin: 6px;
  transition: background .25s ease, transform .2s ease;
}
.btn:hover { background: var(--terracotta-dark); color: #fff; transform: translateY(-2px); }
.btn.ghost { background: transparent; border: 1px solid rgba(245,239,223,.6); }
.btn.ghost:hover { background: rgba(245,239,223,.1); border-color: #f5efdf; }

/* --- 內容區 --- */
main { max-width: 1100px; margin: 0 auto; padding: 64px 24px 96px; }
.section-title {
  font-family: var(--serif); font-weight: 600; font-size: 1.65rem;
  letter-spacing: .1em; color: var(--olive-deep);
  margin: 72px 0 14px; padding-bottom: 14px; position: relative;
}
.section-title:first-of-type { margin-top: 0; }
.section-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 56px; height: 2px; background: var(--terracotta);
}
.intro { color: var(--muted); font-weight: 300; letter-spacing: .05em; margin-bottom: 36px; }

/* --- 卡片格線 --- */
.grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-top: 3px solid var(--olive);
  padding: 34px 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top-color: var(--terracotta); }
.card h3 {
  font-family: var(--serif); font-weight: 600; font-size: 1.28rem;
  letter-spacing: .08em; color: var(--olive-deep); margin-bottom: 10px;
}
.card p { color: var(--muted); font-weight: 300; font-size: .93rem; line-height: 1.9; margin-bottom: 18px; }
.card .more {
  font-size: .88rem; font-weight: 500; letter-spacing: .14em; color: var(--terracotta);
  border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color .2s ease;
}
.card .more:hover { border-bottom-color: var(--terracotta); }
/* 整張卡片可點擊（.more 連結延伸覆蓋全卡） */
.card { position: relative; }
.card a.more::after { content: ""; position: absolute; inset: 0; z-index: 1; }

/* --- 文章目錄卡片：密度較高，方便掃描 --- */
.article-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.article-card {
  min-height: 170px;
  padding: 24px 26px 22px;
  border-top: 1px solid var(--line);
  border-left: 3px solid rgba(62,92,64,.72);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.article-card:hover {
  transform: translateY(-2px);
  border-top-color: var(--line);
  border-left-color: var(--terracotta);
}
.article-card h3 {
  font-size: 1.08rem;
  line-height: 1.65;
  letter-spacing: .04em;
  margin: 12px 0 20px;
}
.article-card .more {
  margin-top: auto;
  font-size: .82rem;
  letter-spacing: .12em;
}
.article-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--gold);
  font-family: var(--serif-latin);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
}
/* --- 主題總覽：柔和置中卡片 --- */
.topic-showcase {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.topic-feature-card {
  min-height: 300px;
  padding: 38px 34px 34px;
  border-top: 1px solid var(--line);
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.topic-feature-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--line);
}
.topic-feature-card h3 {
  font-size: 1.28rem;
  line-height: 1.55;
  letter-spacing: .08em;
  margin: 24px 0 14px;
}
.topic-feature-card p {
  color: #85877d;
  font-size: .95rem;
  line-height: 1.9;
  letter-spacing: .04em;
  margin: 0 auto 22px;
  max-width: 290px;
}
.topic-feature-card .more {
  color: #b89a72;
  font-size: .86rem;
  letter-spacing: .14em;
}
.topic-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(62,92,64,.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.topic-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: rgba(62,92,64,.86);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 卡片內的縣市直達連結（浮在覆蓋層之上） */
.citylinks { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.citylinks a {
  position: relative; z-index: 2;
  display: inline-block; font-size: .88rem; font-weight: 500; letter-spacing: .08em;
  color: var(--olive-deep); background: var(--ivory);
  border: 1px solid var(--line); border-radius: 2px; padding: 5px 14px;
  transition: all .25s ease;
}
.citylinks a:hover { border-color: var(--terracotta); color: var(--terracotta); background: #fdf6ef; }

/* --- 麵包屑 --- */
.breadcrumb {
  font-size: .82rem; letter-spacing: .1em; color: var(--muted);
  margin-bottom: 40px; font-weight: 300;
}
.breadcrumb a { color: var(--olive); }
.breadcrumb span { margin: 0 8px; color: #cbc2ad; }

/* --- 文章 --- */
article.post {
  background: var(--paper); border: 1px solid var(--line);
  padding: 46px 52px; margin-bottom: 40px; box-shadow: var(--shadow-sm);
}
article.post h2 {
  font-family: var(--serif); font-weight: 600; font-size: 1.5rem;
  letter-spacing: .06em; line-height: 1.6; color: var(--olive-deep); margin-bottom: 8px;
}
article.post .meta {
  color: var(--gold); font-size: .78rem; letter-spacing: .22em;
  text-transform: uppercase; margin-bottom: 26px; font-weight: 500;
}
article.post h4 {
  font-family: var(--serif); color: var(--terracotta); font-size: 1.05rem;
  letter-spacing: .1em; margin: 28px 0 8px;
}
article.post p { margin-bottom: 16px; font-weight: 300; }
article.post ul { margin: 0 0 16px 26px; font-weight: 300; }
article.post li { margin-bottom: 6px; }
article.post li::marker { color: var(--gold); }

.restaurant-profile-card {
  background: rgba(255,253,248,.98);
  border: 1px solid rgba(200,164,92,.45);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  margin: 30px 0 28px;
  padding: 30px 34px 32px;
  box-shadow: 0 18px 42px -30px rgba(43,41,37,.52);
}
.restaurant-profile-tag {
  display: inline-block;
  color: #fff;
  background: var(--olive);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
}
.restaurant-profile-card h3 {
  font-family: var(--serif);
  color: var(--olive-deep);
  font-size: 1.75rem;
  line-height: 1.45;
  letter-spacing: .04em;
  margin: 0 0 20px;
}
.restaurant-profile-row {
  display: flex;
  gap: 20px;
  align-items: baseline;
  margin-top: 12px;
  line-height: 1.8;
}
.restaurant-profile-row span {
  width: 3.4em;
  flex: 0 0 auto;
  color: var(--terracotta);
  font-weight: 700;
  letter-spacing: .1em;
}
.restaurant-profile-row a {
  color: var(--olive-deep);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.restaurant-profile-row a:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.toc {
  background: var(--paper); border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 24px 32px; margin-bottom: 44px; box-shadow: var(--shadow-sm);
}
.toc strong {
  font-family: var(--serif); color: var(--olive-deep);
  letter-spacing: .12em; font-size: 1rem;
}
.toc ol { margin: 12px 0 0 24px; font-weight: 300; }
.toc li { margin-bottom: 4px; }
.toc li::marker { color: var(--terracotta); font-weight: 500; }

/* --- 餐廳分層 --- */
.region-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.region-nav a {
  background: transparent; color: var(--olive); border: 1px solid var(--olive);
  padding: 8px 26px; border-radius: 2px; font-weight: 500;
  font-size: .9rem; letter-spacing: .14em; transition: all .25s ease;
}
.region-nav a:hover { background: var(--olive); color: #f5efdf; }

.quick-nav {
  background: var(--paper); border: 1px solid var(--line);
  padding: 24px 28px; margin: 0 0 44px; box-shadow: var(--shadow-sm);
}
.quick-nav h3 {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--olive-deep); letter-spacing: .12em; margin-bottom: 14px;
}
.quick-nav div { display: flex; flex-wrap: wrap; gap: 10px; }
.quick-nav a {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--ivory); border: 1px solid var(--line);
  color: var(--olive-deep); border-radius: 2px;
  padding: 8px 16px; font-weight: 500; letter-spacing: .08em;
}
.quick-nav a:hover { border-color: var(--terracotta); color: var(--terracotta); background: #fdf6ef; }
.quick-nav small {
  color: var(--muted); font-size: .76rem; font-weight: 300; letter-spacing: .04em;
}

.city-block {
  background: var(--paper); border: 1px solid var(--line);
  padding: 40px 46px; margin-bottom: 36px; box-shadow: var(--shadow-sm);
}
.city-block > h2 {
  font-family: var(--serif); font-weight: 600; letter-spacing: .12em;
  color: var(--olive-deep); border-bottom: 1px solid var(--line);
  padding-bottom: 14px; margin-bottom: 26px;
}
.county-section > h2 {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
}
.county-section > h2 span {
  font-family: var(--sans); color: var(--muted); font-size: .86rem;
  letter-spacing: .08em; font-weight: 400;
}
.district { margin-bottom: 30px; }
.district h3 {
  font-family: var(--serif); color: var(--terracotta); font-size: 1.1rem;
  letter-spacing: .12em; margin-bottom: 14px;
}
.district h3 small {
  font-family: var(--sans); color: var(--muted); font-size: .78rem;
  font-weight: 400; letter-spacing: .08em; margin-left: 8px;
}

.resto-list { list-style: none; }
.resto-list li {
  background: var(--paper); border: 1px solid var(--line);
  border-left: 3px solid var(--olive);
  padding: 24px 28px; margin-bottom: 18px; box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.resto-list li:hover { box-shadow: var(--shadow-md); border-left-color: var(--terracotta); }
.resto-list strong {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 600;
  letter-spacing: .06em; color: var(--ink);
}
.resto-list .tag {
  display: inline-block; background: transparent; color: var(--gold);
  border: 1px solid var(--gold); font-size: .72rem; letter-spacing: .16em;
  padding: 2px 12px; border-radius: 2px; margin-left: 12px; vertical-align: 2px;
}
.resto-list .desc {
  color: var(--muted); font-weight: 300; font-size: .92rem;
  display: block; margin-top: 8px; line-height: 1.9;
}

.contact { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.contact a {
  display: inline-flex; align-items: center; font-size: .87rem; font-weight: 500;
  letter-spacing: .04em; background: var(--ivory); border: 1px solid var(--line);
  border-radius: 2px; padding: 7px 16px; color: var(--olive-deep);
  transition: all .25s ease;
}
.contact a:hover { border-color: var(--terracotta); color: var(--terracotta); background: #fdf6ef; }
.contact .nophone {
  display: inline-flex; align-items: center; font-size: .87rem; color: var(--muted);
  font-weight: 300; padding: 7px 16px; border: 1px dashed var(--line); border-radius: 2px;
}

.note {
  background: #fbf5e8; border: 1px solid #e3d3ac; color: #8a6d33;
  padding: 20px 28px; font-size: .92rem; font-weight: 300;
  letter-spacing: .04em; margin: 28px 0; border-radius: 2px;
}

/* --- 頁尾 --- */
footer.site-footer {
  background: var(--olive-deep); color: #d8dccd;
  padding: 52px 24px 34px; font-size: .9rem; font-weight: 300; letter-spacing: .06em;
  border-top: 1px solid rgba(200,164,92,.45);
}
footer.site-footer a { color: #f1e7c9; }
footer.site-footer a:hover { color: var(--gold); }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
}
.footer-brand {
  display: grid; gap: 12px; max-width: 680px; margin-bottom: 34px;
}
.footer-logo {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  letter-spacing: .16em; color: #f5efdf;
}
.footer-logo span {
  font-family: var(--serif-latin); font-style: italic; color: var(--gold);
  font-size: .96rem; margin-left: 10px; letter-spacing: .16em;
}
.footer-brand p {
  color: #c7cebf; line-height: 1.9; letter-spacing: .05em;
}
.footer-links {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px; padding: 28px 0; border-top: 1px solid rgba(200,164,92,.22);
  border-bottom: 1px solid rgba(200,164,92,.22);
}
.footer-links h3 {
  font-family: var(--serif); color: var(--gold); font-size: 1rem;
  font-weight: 600; letter-spacing: .14em; margin-bottom: 12px;
}
.footer-links a {
  display: block; margin: 7px 0; line-height: 1.6;
}
.footer-note {
  color: #aeb9a8; font-size: .82rem; margin-top: 22px; line-height: 1.8;
}

/* --- RWD --- */
@media (max-width: 640px) {
  .hero { padding: 64px 20px 56px; }
  .hero h1 { font-size: 1.8rem; letter-spacing: .06em; }
  nav.main-nav a { padding: 14px 10px; font-size: .88rem; letter-spacing: .08em; }
  article.post { padding: 28px 22px; }
  .restaurant-profile-card { padding: 24px 20px 26px; }
  .restaurant-profile-card h3 { font-size: 1.35rem; }
  .restaurant-profile-row { gap: 12px; }
  .city-block { padding: 28px 22px; }
  .resto-list li { padding: 20px 18px; }
  main { padding: 40px 18px 72px; }
  .section-title { margin-top: 52px; }
  .footer-links { grid-template-columns: 1fr; gap: 22px; }
}


/* --- 推薦義式餐廳 --- */
.reco {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,253,248,.98) 0%, rgba(253,246,239,.98) 58%, rgba(247,232,198,.76) 100%);
  border: 1px solid rgba(200,164,92,.62);
  border-top: 5px solid var(--terracotta);
  border-left: 0;
  padding: 30px 34px 32px; margin: 0 0 46px;
  box-shadow: 0 18px 46px -24px rgba(43,41,37,.45);
}
.reco::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 7px;
  background: linear-gradient(180deg, var(--terracotta), var(--gold));
}
.reco::after {
  content: ""; position: absolute; right: -70px; top: -90px;
  width: 210px; height: 210px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,92,.22) 0%, rgba(200,164,92,0) 68%);
  pointer-events: none;
}
.reco.reco-bottom { margin: 52px 0 0; }
.reco-title {
  position: relative; z-index: 1;
  font-family: var(--serif); font-weight: 700; font-size: 1.34rem;
  letter-spacing: .12em; color: var(--olive-deep); margin-bottom: 22px;
  display: flex; align-items: center; gap: 8px;
}
.reco-title::before {
  content: "\2605";
  color: var(--gold);
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline;
  font-size: .95rem;
  box-shadow: none;
}
.reco-title::after {
  content: ""; flex: 1 1 auto; height: 1px;
  background: linear-gradient(90deg, rgba(200,164,92,.72), rgba(200,164,92,0));
}
.reco-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
.reco-list li {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ivory); border: 1px solid var(--line); border-radius: 2px;
  padding: 10px 18px;
}
.reco-list strong {
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
  letter-spacing: .05em; color: var(--ink);
}
.reco-map {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: var(--olive-deep); border: 1px solid var(--line); border-radius: 2px;
  padding: 4px 12px; background: var(--paper); transition: all .25s ease;
}
.reco-map:hover { border-color: var(--terracotta); color: var(--terracotta); background: #fdf6ef; }
@media (max-width: 640px) {
  .reco-list li { width: 100%; justify-content: space-between; }
}

/* logo 連結至首頁：維持品牌配色 */
a.logo { cursor: pointer; }
a.logo:hover { color: #f5efdf; }
a.logo:hover span { color: var(--gold); }

/* --- 推薦餐廳卡片（診所清單風格） --- */
.reco-cards {
  position: relative; z-index: 1;
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.reco-card {
  background: rgba(255,253,248,.96); border: 1px solid rgba(200,164,92,.5);
  border-top: 4px solid var(--gold);
  border-radius: 8px; padding: 28px 30px 26px;
  box-shadow: 0 14px 34px -24px rgba(43,41,37,.5);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.reco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px -24px rgba(43,41,37,.55);
  border-color: var(--terracotta);
}
.reco-tag {
  display: inline-block; font-size: .74rem; letter-spacing: .16em;
  color: #fff; background: var(--olive);
  border: 1px solid rgba(39,64,42,.18); border-radius: 999px;
  padding: 5px 16px; margin-bottom: 16px;
}
.reco-name {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 700;
  letter-spacing: .05em; color: var(--olive-deep); margin-bottom: 18px;
}
.reco-row {
  display: flex; gap: 16px; align-items: baseline;
  margin-top: 12px; font-size: .95rem; line-height: 1.7;
}
.reco-label {
  flex: 0 0 auto; width: 3.4em; color: var(--terracotta);
  font-weight: 600; letter-spacing: .1em;
}
.reco-row a {
  color: var(--olive-deep); font-weight: 500;
  border-bottom: 1px solid transparent; transition: all .2s ease;
}
.reco-row a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.reco-row span.reco-val { color: var(--muted); font-weight: 300; }
.reco-join {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center; gap: 22px;
  margin-top: 26px; padding: 20px 22px 20px 24px;
  background: rgba(39,64,42,.94); border: 1px solid rgba(200,164,92,.38);
  border-left: 4px solid var(--gold);
  text-align: left; box-shadow: 0 16px 32px -24px rgba(39,64,42,.9);
}
.reco-join p {
  color: #f7f3ea; font-family: var(--serif);
  font-size: 1.08rem; font-weight: 600;
  letter-spacing: .08em; line-height: 1.7; margin: 0;
}
.reco-join a {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 11px 26px; border-radius: 2px;
  background: var(--terracotta); color: #fff; font-size: .9rem; font-weight: 700;
  letter-spacing: .14em; box-shadow: none;
}
.reco-join a:hover { background: var(--terracotta-dark); color: #fff; transform: translateY(-1px); }

/* --- 加入推薦方案頁 --- */
.join-hero {
  min-height: 430px; color: #f7f3ea; display: flex; align-items: center;
  background:
    linear-gradient(90deg, rgba(39,64,42,.94) 0%, rgba(39,64,42,.82) 42%, rgba(39,64,42,.48) 100%),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1800&q=80") center / cover;
}
.join-hero-inner {
  width: min(1100px, calc(100% - 48px)); margin: 0 auto; padding: 76px 0;
}
.join-eyebrow {
  display: block; color: var(--gold); font-weight: 700; letter-spacing: .18em;
  font-size: .9rem; margin-bottom: 14px;
}
.join-hero h1 {
  max-width: 820px; font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-weight: 700; letter-spacing: .08em; line-height: 1.35; margin-bottom: 18px;
}
.join-hero p {
  max-width: 780px; color: #efe7d3; font-size: 1.05rem;
  line-height: 2; letter-spacing: .06em;
}
.join-page {
  max-width: none; padding: 0;
}
.join-section {
  padding: 68px 24px;
}
.join-section.soft {
  background: #eef5ee;
}
.join-inner {
  max-width: 1100px; margin: 0 auto;
}
.join-panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 42px; box-shadow: var(--shadow-md);
}
.join-panel h2,
.join-section h2 {
  font-family: var(--serif); color: var(--olive-deep); font-size: 2rem;
  line-height: 1.45; letter-spacing: .08em; margin-bottom: 14px;
}
.join-panel p,
.join-section p {
  color: var(--muted); line-height: 2; letter-spacing: .05em;
}
.join-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin: 22px 0 28px;
}
.join-primary {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 12px 24px; background: var(--terracotta);
  color: #fff; border-radius: 2px; font-weight: 700; letter-spacing: .08em;
}
.join-primary:hover {
  background: var(--terracotta-dark); color: #fff; transform: translateY(-1px);
}
.join-minor {
  display: inline-flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.join-minor a {
  color: var(--olive-deep); font-size: .9rem; font-weight: 600;
  border-bottom: 1px solid rgba(62,92,64,.28);
}
.join-minor a:hover {
  color: var(--terracotta); border-bottom-color: var(--terracotta);
}
.join-steps {
  display: grid; gap: 16px;
}
.join-step {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  padding: 22px 24px; background: #fff; border: 1px solid var(--line);
  border-radius: 6px; box-shadow: var(--shadow-sm);
}
.join-step-num {
  width: 44px; height: 44px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; background: var(--olive);
  color: #fff; font-weight: 700; letter-spacing: .04em;
}
.join-step h3,
.join-audience-card h3 {
  font-family: var(--serif); color: var(--olive-deep); font-size: 1.28rem;
  letter-spacing: .07em; margin-bottom: 6px;
}
.join-audience-head {
  margin-bottom: 28px;
}
.join-audience-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.join-audience-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px;
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}

/* --- 內文引註與參考資料 --- */
.cite {
  color: var(--terracotta); font-weight: 600; font-size: .72em;
  vertical-align: super; text-decoration: none; margin: 0 1px; letter-spacing: 0;
}
.cite:hover { text-decoration: underline; }
.references {
  background: var(--paper); border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 22px 30px; margin: 36px 0 0; box-shadow: var(--shadow-sm);
}
.references h4 {
  font-family: var(--serif); color: var(--olive-deep);
  letter-spacing: .1em; font-size: 1rem; margin-bottom: 12px;
}
.references ol { margin: 0 0 0 22px; font-weight: 300; font-size: .86rem; color: var(--muted); }
.references li { margin-bottom: 9px; line-height: 1.7; }
.references a { color: var(--olive-deep); font-weight: 500; }
.references a:hover { color: var(--terracotta); }
:target { scroll-margin-top: 90px; }

@media (max-width: 640px) {
  .reco { padding: 24px 18px 26px; }
  .reco-title { font-size: 1.15rem; align-items: center; }
  .reco-title::after { display: none; }
  .reco-cards { grid-template-columns: minmax(0, 1fr); }
  .reco-card { padding: 24px 20px 22px; }
  .reco-join { align-items: stretch; flex-direction: column; text-align: left; gap: 12px; }
  .reco-join a { width: 100%; }
  .join-hero { min-height: 380px; }
  .join-hero-inner { width: min(100% - 36px, 1100px); padding: 56px 0; }
  .join-section { padding: 46px 18px; }
  .join-panel { padding: 28px 22px; }
  .join-panel h2,
  .join-section h2 { font-size: 1.55rem; }
  .join-actions { align-items: stretch; flex-direction: column; }
  .join-primary { width: 100%; text-align: center; }
  .join-step { grid-template-columns: 1fr; gap: 12px; }
  .join-audience-grid { grid-template-columns: 1fr; }
}
