:root {
  --ink: #223039;
  --muted: #6e7a80;
  --line: #f0d8bd;
  --cream: #fff8ec;
  --mint: #48c5b4;
  --mint-dark: #149985;
  --orange: #ff7048;
  --orange-2: #ff914d;
  --yellow: #ffe8a8;
  --blue: #9ed9f2;
  --green: #b9df88;
  --shadow: 0 12px 28px rgba(125, 89, 45, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 22%, rgba(255, 226, 138, .45), transparent 22%),
    radial-gradient(circle at 92% 8%, rgba(134, 219, 211, .35), transparent 20%),
    linear-gradient(180deg, #fffaf2 0%, #fff 38%, #fff5e4 100%);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #f4d5bf;
  box-shadow: 0 6px 18px rgba(105, 67, 35, .08);
  backdrop-filter: blur(12px);
}

.brand {
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #ff7048, #ffd36b 50%, #35c6b4);
  font-size: 1.55rem;
  box-shadow: 0 8px 18px rgba(255, 112, 72, .22);
}
.brand strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: .02em;
  font-weight: 900;
}
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, .8vw, 12px);
  white-space: nowrap;
}
.nav-item { position: relative; }
.nav-item > a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 0;
  border-radius: 10px;
  background: none;
  color: #28313a;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.nav-item > a > i,
.nav-item > button > i:first-child { color: var(--orange); font-size: 14px; }
.nav-item > a:hover,
.nav-item > button:hover,
.nav-item.open > button {
  color: var(--orange);
  background: rgba(255, 112, 72, .1);
}
.caret { font-size: 11px; transition: transform .2s ease; }
.nav-item.open .caret { transform: rotate(180deg); }
.nav-drop::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: none;
  min-width: 264px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(105, 67, 35, .2);
}
.nav-item:hover .nav-drop,
.nav-item.open .nav-drop { display: block; }
.nav-drop a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--ink);
  white-space: nowrap;
}
.nav-drop a:hover { background: rgba(255, 145, 77, .12); color: var(--orange); }
.drop-ic {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 145, 77, .16);
  color: #e0602f;
  font-size: 14px;
  transition: .2s ease;
}
.nav-drop a:hover .drop-ic { background: var(--orange); color: #fff; }
.drop-tx { display: block; font-weight: 800; font-size: 14.5px; }
.drop-tx small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}

.feature-card a {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7048, #ff8f39);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 112, 72, .28);
}
.hero {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 740px) 1fr;
  align-items: stretch;
  overflow: visible;
  background:
    radial-gradient(circle at 48% 14%, rgba(255, 255, 255, .94), rgba(255, 250, 238, .82) 54%, transparent 56%),
    linear-gradient(180deg, #fff3d8, #fff9ef);
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 112, 72, .38) 2px, transparent 3px),
    radial-gradient(circle, rgba(72, 197, 180, .32) 2px, transparent 3px);
  background-size: 92px 92px, 120px 120px;
  background-position: 16px 18px, 65px 44px;
  pointer-events: none;
}
.hero-photo {
  min-height: 310px;
  background-size: cover;
  background-position: center;
}
.hero-room {
  background-image: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,248,236,.22)), url("https://macaron.gogobnb.com/flash/dex1.jpg");
  border-bottom-right-radius: 38% 24%;
}
.hero-town {
  background-image: linear-gradient(90deg, rgba(255,248,236,.28), rgba(255,255,255,.05)), url("../images/spot-market.png");
  border-bottom-left-radius: 38% 24%;
}
.hero-center {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 50px 24px 70px;
}
.hero-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  justify-content: center;
  padding: 9px 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--mint);
  font-weight: 900;
  letter-spacing: .04em;
}
.hero h1 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(3.1rem, 6.6vw, 5.8rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .08em;
  text-shadow: 3px 4px 0 rgba(255, 219, 137, .85);
}
.hero-center p:last-child {
  margin: 18px 0 0;
  font-size: 1.35rem;
  font-weight: 900;
}
.topic-strip,
.section {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}
.topic-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.topic-strip button {
  min-height: 88px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 0;
  border-radius: 18px;
  color: #1f3440;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.topic-strip button:nth-child(1) { background: #ffe0d2; }
.topic-strip button:nth-child(2) { background: #ffefc8; }
.topic-strip button:nth-child(3) { background: #e8f6cc; }
.topic-strip button:nth-child(4) { background: #ffedc8; }
.topic-strip button:nth-child(5) { background: #dff3ff; }
.topic-strip button:nth-child(6) { background: #ebdefb; }
.topic-strip button:nth-child(7) { background: #e5fff4; }
.topic-strip button:nth-child(8) { background: #e4f4c8; }
.topic-strip i { font-size: 2.2rem; color: var(--mint-dark); }
.topic-strip button:nth-child(1) i,
.topic-strip button:nth-child(4) i,
.topic-strip button:nth-child(7) i { color: var(--orange); }

.section { padding: 34px 0 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 16px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: .08em;
  font-weight: 1000;
}
.section-head a {
  padding: 8px 16px;
  border-radius: 999px;
  color: #5c5f60;
  border: 1px solid #f0d8bd;
  background: #fff;
  font-weight: 800;
}
.doodle h2::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  margin-left: 12px;
  vertical-align: middle;
  background: var(--orange);
}
.slider-actions { display: flex; gap: 10px; }
.slider-actions button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  cursor: pointer;
}
.deal-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.deal-card,
.stay-card,
.spot-grid article,
.guide-card,
.feature-card {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.deal-card {
  position: relative;
  text-align: center;
}
.deal-card img,
.stay-card img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  background: #f2e0ca;
}
.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 5px 12px;
  border-radius: 8px 8px 8px 0;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  background: var(--orange);
}
.card-body { padding: 12px 13px 15px; }
.card-body h3 {
  margin: 0 0 6px;
  font-size: 1.06rem;
}
.card-body p {
  min-height: 40px;
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.55;
}
.book-link {
  display: inline-grid;
  place-items: center;
  min-width: 96px;
  min-height: 30px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: .88rem;
  font-weight: 900;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f2d8c3;
}
.dots .active { width: 18px; background: var(--orange); }

.stay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stay-card {
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.stay-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(125, 89, 45, .22); }
.meta { display: flex; flex-wrap: wrap; gap: 5px; margin: 8px 0; }
.tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff1df;
  color: #b76428;
  font-size: .76rem;
  font-weight: 900;
}
.stay-card .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.price { color: var(--orange); font-size: 1.22rem; font-weight: 1000; }
.price small { color: var(--muted); font-size: .72rem; }
.view {
  min-width: 78px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #ffc7a8;
  color: #51443a;
  background: #fffaf2;
  font-size: .83rem;
  font-weight: 900;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.05fr;
  gap: 20px;
}
.feature-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  padding: 24px;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 26, 33, .78), rgba(13, 26, 33, .2));
}
.feature-card > * { position: relative; z-index: 1; }
.feature-card strong { display: block; font-size: 1.8rem; letter-spacing: .05em; }
.feature-card span { display: block; margin-top: 6px; font-weight: 800; line-height: 1.6; }
.feature-card a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  white-space: nowrap;
}
.night { background-image: url("../images/hero-night-market.png"); }
.family { background-image: url("https://www.earlysummer.com.tw/flash/room11.jpg"); }
.villa { background-image: url("https://sleephere.elbnb.com/flash/dex_a3.jpg"); }

.spot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spot-grid img { width: 100%; height: 165px; object-fit: cover; }
.spot-grid h3 { margin: 13px 16px 4px; }
.spot-grid p { margin: 0 16px 16px; color: var(--muted); }

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px;
  padding-bottom: 44px;
}
.guide-card {
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255, 242, 213, .96));
}
.compact { margin-bottom: 8px; }
.compact h2 { font-size: 1.55rem; }
.compact a { font-size: .86rem; padding: 6px 12px; }
.guide-card > a {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #edcfad;
}
.guide-card > a:last-child { border-bottom: 0; }
.guide-card img {
  width: 90px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
}
.guide-card strong { display: block; }
.guide-card small { color: var(--muted); }
.travel > a { grid-template-columns: 38px 1fr; }
.travel > a i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--mint);
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--mint-dark);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .2s ease;
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 1120px) {
  .site-header { height: auto; min-height: 78px; flex-wrap: wrap; padding-block: 10px; gap: 12px; }
  .main-nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .topic-strip { margin-top: 28px; grid-template-columns: repeat(4, 1fr); }
  .deal-row, .stay-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid, .guide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding-inline: 14px; }
  .brand { min-width: 210px; }
  .brand strong { font-size: 1.18rem; }
  .brand-icon { width: 42px; height: 42px; border-radius: 14px; }
  .hero { display: block; min-height: auto; padding-bottom: 26px; }
  .hero-photo { min-height: 145px; }
  .hero-room, .hero-town { border-radius: 0; }
  .hero-town { display: none; }
  .hero-center { padding: 34px 18px 26px; }
  .hero h1 { font-size: 3.2rem; }
  .hero-kicker { line-height: 1.7; }
  .topic-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .topic-strip button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 54px;
    padding: 0 14px;
    text-align: left;
    border-radius: 12px;
  }
  .topic-strip button i { font-size: 1.15rem; }
  .deal-row, .spot-grid { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .stay-card img { height: 106px; }
  .stay-card .card-body { padding: 9px 10px 11px; }
  .stay-card h3 { font-size: .92rem; }
  .stay-card .tag { font-size: .66rem; padding: 2px 6px; }
  .stay-short { display: none; }
  .feature-card { display: block; }
  .feature-card a { display: inline-block; margin-top: 16px; }
}

/* ── 整修新增(v20260901a):類型指南/FAQ/詳細資料膠囊 ── */
.type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.type-card {
  padding: 20px 18px;
  border: 1px solid rgba(150, 110, 50, .28);
  border-radius: 12px;
  background: #fffdf6;
  box-shadow: 0 12px 26px rgba(120, 90, 40, .1);
}
.type-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d99b36, #f4cc7b);
  color: #2a1e0a;
  font-size: 18px;
}
.type-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.type-card p { margin: 0 0 10px; font-size: .9rem; line-height: 1.75; color: #6b5c41; }
.type-tip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5e7cf;
  color: #7c551f;
  font-size: .76rem;
  font-weight: 800;
}
.stay-short { margin: 6px 0 0; font-size: .82rem; line-height: 1.6; color: #6b5c41; }
.stay-card { position: relative; }
.stay-card .card-body { padding-bottom: 46px; }
.detail-pill {
  position: absolute;
  right: 11px;
  bottom: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #c99b3f;
  border-radius: 999px;
  color: #8e5b1f;
  font-size: .8rem;
  font-weight: 900;
}
.stay-card:hover .detail-pill { background: linear-gradient(120deg, #d99b36, #f4cc7b); color: #2a1e0a; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.faq details {
  border: 1px solid rgba(150, 110, 50, .28);
  border-radius: 12px;
  background: #fffdf6;
  box-shadow: 0 10px 22px rgba(120, 90, 40, .08);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 15px 44px 15px 18px;
  color: #8e5b1f;
  font-weight: 800;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #b07f24;
  font-size: 20px;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0; padding: 0 18px 16px; color: #6b5c41; line-height: 1.85; }
@media (max-width: 980px) {
  .type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .type-card { padding: 14px 12px; }
  .type-card b { width: 36px; height: 36px; font-size: 15px; margin-bottom: 8px; }
  .type-card h3 { font-size: .98rem; }
  .type-card p { font-size: .8rem; line-height: 1.65; }
  .type-tip { font-size: .68rem; padding: 3px 8px; }
}

/* ── 手機版漢堡選單(v20260901b):固定頂欄+分區標題+卡片面板 ── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #f4d5bf;
  border-radius: 10px;
  background: rgba(255, 145, 77, .12);
  color: #e0602f;
  font-size: 18px;
  cursor: pointer;
}
.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] { background: rgba(255, 145, 77, .26); }
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  background: rgba(70, 45, 25, .4);
  backdrop-filter: blur(2px);
}
.nav-backdrop.is-open { display: block; }
.nav-primary { display: none; }

@media (max-width: 1120px) {
  html.mobile-nav-ready { scroll-padding-top: 76px; }
  html.mobile-nav-ready body { padding-top: 68px; }
  html.mobile-nav-ready .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    height: 68px;
    min-height: 68px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 26px rgba(105, 67, 35, .14);
    backdrop-filter: blur(8px);
  }
  html.mobile-nav-ready .brand { min-width: 0; }
  html.mobile-nav-ready .nav-toggle { display: inline-flex; }
  html.mobile-nav-ready .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 80;
    order: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: auto;
    margin: 0;
    padding: 10px 14px 18px;
    max-height: calc(100vh - 68px);
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    overflow-x: hidden;
    border-top: 1px solid #f4d5bf;
    border-radius: 0 0 16px 16px;
    background: var(--cream);
    box-shadow: 0 26px 60px rgba(105, 67, 35, .28);
    white-space: normal;
  }
  html.mobile-nav-ready .main-nav.is-open { display: flex; }
  html.mobile-nav-ready .nav-item { width: 100%; }
  html.mobile-nav-ready .main-nav a.nav-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    margin: 6px 0 2px;
    padding: 12px 14px;
    border: 1px solid var(--orange);
    border-radius: 10px;
    background: linear-gradient(120deg, var(--orange), var(--orange-2));
    color: #fff;
    font-size: 15px;
    font-weight: 800;
  }
  html.mobile-nav-ready .main-nav a.nav-primary::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 10px;
  }
  html.mobile-nav-ready .nav-item > button {
    width: 100%;
    justify-content: flex-start;
    gap: 7px;
    margin: 14px 0 8px;
    padding: 8px 2px 7px;
    border: 0;
    border-bottom: 1px solid #f0d8bd;
    border-radius: 0;
    background: none;
    color: #e0602f;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    pointer-events: none;
  }
  html.mobile-nav-ready .nav-item > button .caret { display: none; }
  html.mobile-nav-ready .nav-drop,
  html.mobile-nav-ready .nav-item:hover .nav-drop,
  html.mobile-nav-ready .nav-item.open .nav-drop {
    position: static;
    transform: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  html.mobile-nav-ready .nav-drop::before { content: none; }
  html.mobile-nav-ready .nav-drop a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid #f0d8bd;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font-size: 13.5px;
    font-weight: 700;
    white-space: normal;
  }
  html.mobile-nav-ready .nav-drop a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--orange);
    margin-left: 8px;
  }
  html.mobile-nav-ready .nav-drop .drop-ic,
  html.mobile-nav-ready .nav-drop .drop-tx small { display: none; }
  html.mobile-nav-ready .nav-drop .drop-tx { font-size: 13.5px; line-height: 1.35; }
  html.mobile-nav-ready .main-nav > .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    min-height: 46px;
    margin-top: 8px;
    padding: 11px 13px;
    border: 1px solid #f0d8bd;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 800;
  }
  html.mobile-nav-ready .main-nav > .nav-item > a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--orange);
    margin-left: auto;
  }
  html.mobile-nav-ready .main-nav > .nav-item > a > i { color: var(--orange); }
}

/* 景點卡:無照片項的圖示封面(v20260901c) */
.spot-grid .spot-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 165px;
  background:
    radial-gradient(ellipse 90% 80% at 70% 20%, rgba(255, 211, 107, .5), transparent 62%),
    linear-gradient(135deg, #ff7048, #ff914d);
  color: #fff;
  font-size: 44px;
}

/* ── 子頁(v20260902a):subhero/article/cta ── */
.subhero {
  padding: 108px 24px 52px;
  text-align: center;
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(255, 145, 77, .28), transparent 62%),
    linear-gradient(180deg, #ffe9d2 0%, #fff4e4 70%, var(--cream) 100%);
}
.sub-kicker {
  margin: 0 0 10px;
  color: #e0602f;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.subhero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  letter-spacing: .06em;
}
.sub-lede { margin: 12px 0 0; color: #7a6a52; font-weight: 700; letter-spacing: .08em; }
.article { max-width: 1180px; margin: 0 auto; }
.article h2 { margin: 32px 0 12px; color: #b8511f; font-size: 1.35rem; }
.article h2 i { margin-right: 8px; }
.article p { margin: 0 0 14px; line-height: 1.95; color: #4c4437; }
.article ul { margin: 0 0 18px; padding-left: 22px; }
.article li { margin-bottom: 8px; line-height: 1.85; color: #4c4437; }
.article a { color: #b8511f; text-decoration: underline; text-underline-offset: 3px; }
.article strong { color: #b8511f; }
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 30px 0 6px;
  padding: 20px 22px;
  border: 1px solid #f0d8bd;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.cta-strip strong { display: block; color: #b8511f; font-size: 1.08rem; }
.cta-strip span { color: var(--muted); font-size: .9rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--orange), var(--orange-2));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.article a.btn,
.cta-strip a.btn { color: #fff; text-decoration: none; }
.btn.btn-ghost,
.article a.btn.btn-ghost,
.cta-strip a.btn.btn-ghost {
  background: transparent;
  border: 1px solid #e8b48a;
  color: #b8511f;
}
.btn:hover { filter: brightness(1.06); }
@media (max-width: 720px) {
  .subhero { padding: 96px 16px 40px; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}

/* ── 內頁圖卡(v20260902d) ── */
.art-figure {
  position: relative;
  margin: 16px 0 26px;
  border: 1px solid #f0d8bd;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.art-figure img {
  display: block;
  width: 100%;
  height: min(320px, 42vw);
  object-fit: cover;
  transition: transform .5s ease;
}
.art-figure:hover img { transform: scale(1.03); }
.art-figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 18px 12px;
  background: linear-gradient(180deg, transparent, rgba(48, 30, 12, .78));
  color: #fff6e8;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .04em;
}
.stay-grid + .cta-strip { margin-top: 26px; }
section .art-figure:first-child { margin-top: 0; }
@media (max-width: 720px) {
  .art-figure img { height: 190px; }
  .art-figure figcaption { font-size: 12px; padding-bottom: 10px; }
}

/* ── 速覽事實盒(v20260902f) ── */
.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.fact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #f0d8bd;
  border-radius: 12px;
  background: #fffdf6;
  box-shadow: 0 10px 22px rgba(120, 90, 40, .08);
}
.fact-item i {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff7048, #ff914d);
  color: #fff;
  font-size: 15px;
}
.fact-item p { margin: 0; font-size: .92rem; line-height: 1.75; color: #4c4437; }
.fact-item strong { color: #b8511f; }
@media (max-width: 980px) { .fact-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .fact-strip { grid-template-columns: 1fr; } }

/* ── 速查表(v20260903b) ── */
.table-wrap { overflow-x: auto; margin: 6px 0 16px; }
.info-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: #fffdf6;
  border: 1px solid #f0d8bd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(120, 90, 40, .08);
  font-size: .92rem;
}
.info-table th {
  padding: 11px 14px;
  text-align: left;
  color: #fff;
  background: linear-gradient(120deg, #ff7048, #ff914d);
  font-weight: 900;
  letter-spacing: .04em;
}
.info-table td {
  padding: 10px 14px;
  border-top: 1px solid #f4e3cd;
  color: #4c4437;
  line-height: 1.7;
}
.info-table tbody tr:nth-child(even) { background: #fdf6ea; }
.info-table td:first-child { font-weight: 800; color: #b8511f; white-space: nowrap; }
