:root {
  --bg: #031617;
  --bg-2: #062326;
  --panel: #0b2427;
  --panel-2: #102e30;
  --gold: #d9a84d;
  --gold-2: #f0c56c;
  --cream: #fff3d1;
  --muted: #b6c5bf;
  --line: rgba(218, 176, 91, .5);
  --shadow: 0 18px 36px rgba(0,0,0,.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 72% 8%, rgba(217,168,77,.15), transparent 24%),
    linear-gradient(180deg, #031214 0%, #062326 46%, #031617 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: 30;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(20px, 4.5vw, 58px);
  background: rgba(2, 14, 16, .86);
  border-bottom: 1px solid rgba(217,168,77,.24);
  backdrop-filter: blur(14px);
}
.brand {
  min-width: 270px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid var(--gold);
  border-radius: 10px;
  font-size: 1.65rem;
  box-shadow: inset 0 0 18px rgba(217,168,77,.16);
}
.brand strong {
  display: block;
  font-family: "Noto Serif TC", Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: .05em;
}
.brand small {
  display: block;
  color: #c8b07a;
  font-size: .75rem;
  letter-spacing: .1em;
}
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 1vw, 14px);
  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: #ecdfc2;
  font: inherit;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
}
.nav-item > a > i,
.nav-item > button > i:first-child { color: var(--gold); font-size: 14px; }
.nav-item > a:hover,
.nav-item > button:hover,
.nav-item.open > button {
  color: var(--gold-2);
  background: rgba(217, 168, 77, .12);
}
.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: 268px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
  box-shadow: 0 24px 54px rgba(0, 0, 0, .5);
}
.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(--cream);
  white-space: nowrap;
}
.nav-drop a:hover { background: rgba(217, 168, 77, .12); color: var(--gold-2); }
.drop-ic {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(217, 168, 77, .16);
  color: var(--gold-2);
  font-size: 14px;
  transition: .2s ease;
}
.nav-drop a:hover .drop-ic { background: var(--gold); color: #1c1405; }
.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,
.spot-grid a {
  border: 0;
  border-radius: 8px;
  color: #1c1609;
  background: linear-gradient(135deg, #f4cc7b, #d99b36);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(217,168,77,.22);
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 112px 24px 88px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(1,10,12,.64), rgba(1,10,12,.26), rgba(1,10,12,.78)),
    url("../images/hero-night-market.png") left center / 58% 100% no-repeat,
    linear-gradient(90deg, transparent 42%, rgba(5,16,19,.05) 43%),
    url("https://www.season5inn.com.tw/flash/room11.jpg") right center / 52% 100% no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 55% 30%, rgba(217,168,77,.2), transparent 28%), linear-gradient(180deg, rgba(1,8,10,.08), rgba(1,8,10,.78));
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow: 0 8px 28px rgba(0,0,0,.58);
}
.hero-content p {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: .16em;
}
.hero h1 {
  margin: 0;
  color: #fff4dc;
  font-family: "Noto Serif TC", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: .08em;
}
.hero-content strong {
  display: block;
  margin-top: 18px;
  color: #f0c56c;
  font-size: 1.3rem;
  letter-spacing: .16em;
}

.category-strip,
.section {
  width: min(1220px, calc(100% - 44px));
  margin-inline: auto;
}
.category-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.category-strip button {
  min-height: 86px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px solid rgba(217,168,77,.42);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(9,31,34,.7);
  cursor: pointer;
}
.category-strip i {
  color: var(--gold-2);
  font-size: 1.9rem;
}
.category-strip span { font-weight: 900; }

.section { padding: 32px 0 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #f7ddb0;
  font-family: "Noto Serif TC", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: .08em;
}
.section-head h2::before,
.section-head h2::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.section-head a {
  color: var(--gold-2);
  font-weight: 800;
}
.deal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.deal-card,
.stay-card,
.feature-card,
.spot-grid article,
.guide-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 27, 29, .88);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.deal-card {
  position: relative;
  color: #2d2515;
  background: #fff8ea;
}
.deal-card img,
.stay-card img {
  width: 100%;
  height: 152px;
  object-fit: cover;
  background: #1b302f;
}
.badge {
  position: absolute;
  right: 12px;
  top: 124px;
  z-index: 1;
  padding: 4px 9px;
  border-radius: 4px;
  color: #fff;
  background: #b8463d;
  font-size: .78rem;
  font-weight: 900;
}
.card-body { padding: 13px 15px 14px; }
.card-body h3 { margin: 0 0 7px; font-size: 1.05rem; }
.card-body p { margin: 0 0 10px; color: #625743; line-height: 1.55; }
.price-line {
  display: flex;
  justify-content: end;
  align-items: baseline;
  gap: 6px;
  color: #8e5b1f;
  font-weight: 900;
}
.price-line strong { color: #b16a1d; font-size: 1.25rem; }

.stay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stay-card {
  position: relative;
  color: #2d2515;
  background: #fff7e8;
  transition: transform .18s ease, box-shadow .18s ease;
}
.stay-card:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(0,0,0,.45); }
.stay-card img { height: 168px; }
.stay-card .card-body { padding: 12px 13px 14px; }
.stay-card h3 { font-size: 1.02rem; }
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 7px 0;
}
.tag {
  padding: 3px 7px;
  border-radius: 999px;
  color: #7c551f;
  background: #f5e7cf;
  font-size: .72rem;
  font-weight: 900;
}
.stay-card small { color: #6e634f; }
.stay-price {
  margin-top: 7px;
  color: #9a241f;
  font-size: 1.1rem;
  font-weight: 1000;
}
.more-btn {
  display: block;
  width: 170px;
  height: 34px;
  margin: 18px auto 0;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(7,27,29,.65);
  cursor: pointer;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 168px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  color: #fff8e4;
  background-size: cover;
  background-position: center;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.2));
}
.feature-card > * { position: relative; z-index: 1; }
.feature-card span { color: var(--gold-2); font-weight: 900; }
.feature-card h3 {
  margin: 6px 0 4px;
  font-family: "Noto Serif TC", Georgia, serif;
  font-size: 1.8rem;
}
.feature-card p { margin: 0 0 14px; }
.feature-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  min-width: 118px;
  max-width: 100%;
  padding: 10px 16px;
  text-align: center;
  white-space: nowrap;
}
.villa { background-image: url("https://olivewood.elbnb.com/flash/abt11.jpg"); }
.family { background-image: url("https://www.earlysummer.com.tw/flash/room11.jpg"); }
.night { background-image: url("../images/spot-market.png"); }

.spot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.spot-grid img { width: 100%; height: 170px; object-fit: cover; opacity: .82; }
.spot-grid h3 { margin: 14px 16px 5px; color: #f8e4bf; }
.spot-grid p { margin: 0 16px 12px; color: var(--muted); }
.spot-grid a {
  display: inline-block;
  margin: 0 16px 16px;
  padding: 7px 12px;
  font-size: .85rem;
}

.guide-panel {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.2fr;
  gap: 18px;
  padding: 16px;
  margin-bottom: 34px;
  background:
    linear-gradient(90deg, rgba(9,31,34,.95), rgba(9,31,34,.88)),
    url("../images/footer-night.png") center/cover no-repeat;
}
.guide-photo { position: relative; overflow: hidden; border-radius: 6px; }
.guide-photo img { width: 100%; height: 180px; object-fit: cover; opacity: .72; }
.guide-photo h2 {
  position: absolute;
  left: 20px;
  bottom: 16px;
  margin: 0;
  font-family: "Noto Serif TC", Georgia, serif;
  font-size: 2rem;
}
.guide-list,
.guide-info {
  display: grid;
  align-content: center;
  gap: 12px;
}
.guide-info h2 { margin: 0 0 6px; font-family: "Noto Serif TC", Georgia, serif; }
.guide-list a,
.guide-info a {
  color: #ecd3a0;
  font-weight: 800;
}
.guide-list i,
.guide-info i { width: 28px; color: var(--gold-2); }

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #1f1708;
  background: var(--gold-2);
  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: 1180px) {
  .site-header { flex-wrap: wrap; gap: 14px; }
  .main-nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .category-strip { grid-template-columns: repeat(4, 1fr); margin-top: 24px; }
  .deal-grid { grid-template-columns: repeat(3, 1fr); }
  .stay-grid { grid-template-columns: repeat(4, 1fr); }
  .guide-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 10px 14px; }
  .brand { min-width: 230px; }
  .brand strong { font-size: 1.16rem; }
  .brand-mark { width: 42px; height: 42px; }
  .hero { min-height: 520px; padding: 86px 16px 70px; align-content: center; background-size: cover, cover, cover, cover; }
  .hero h1 { font-size: 2.85rem; }
  .category-strip { grid-template-columns: repeat(2, 1fr); }
  .deal-grid, .feature-grid, .spot-grid { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .stay-card img { height: 108px; }
  .stay-card .card-body { padding: 9px 10px 11px; }
  .stay-card h3 { font-size: .9rem; margin-bottom: 5px; }
  .stay-card .tag { font-size: .68rem; padding: 2px 6px; }
}

/* ── 子頁與 FAQ(v20260829a) ── */
.subhero { min-height: 320px; padding: 118px 24px 60px; }
.subhero h1 { font-size: clamp(2.2rem, 5vw, 3.1rem); }
.article { max-width: 1180px; margin: 0 auto; }
.article h2 {
  margin: 34px 0 14px;
  color: var(--gold-2);
  font-size: 1.45rem;
  letter-spacing: .04em;
}
.article h2 i { margin-right: 8px; }
.article p { margin: 0 0 14px; line-height: 1.95; color: var(--cream); }
.article ul { margin: 0 0 18px; padding-left: 22px; }
.article li { margin-bottom: 8px; line-height: 1.85; color: var(--cream); }
.article a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.article strong { color: var(--gold-2); }
.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 var(--line);
  border-radius: 14px;
  background: linear-gradient(120deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
}
.cta-strip strong { display: block; color: var(--gold-2); font-size: 1.1rem; }
.cta-strip span { color: var(--muted); font-size: .92rem; }
.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(--gold), var(--gold-2));
  color: #1c1405;
  font-weight: 800;
  text-decoration: none;
}
.btn.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold-2);
}
/* .article a 的金色連結規則不得覆蓋按鈕 */
.article a.btn,
.cta-strip a.btn {
  color: #1c1405;
  text-decoration: none;
}
.article a.btn.btn-ghost,
.cta-strip a.btn.btn-ghost { color: var(--gold-2); }
.btn:hover { filter: brightness(1.08); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(150deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
  padding: 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 15px 44px 15px 18px;
  position: relative;
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: .03em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 20px;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0; padding: 0 18px 16px; color: var(--muted); line-height: 1.9; }
@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; }
  .subhero { min-height: 260px; padding: 100px 16px 48px; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}

/* ── 內頁圖卡(深色金主題)v20260829b ── */
.art-figure {
  position: relative;
  margin: 18px 0 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.art-figure img {
  display: block;
  width: 100%;
  height: min(340px, 44vw);
  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(1, 10, 12, .85));
  color: var(--cream);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .04em;
}
@media (max-width: 720px) {
  .art-figure img { height: 200px; }
  .art-figure figcaption { font-size: 12px; padding-bottom: 10px; }
}

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

@media (max-width: 1180px) {
  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;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 68px;
    padding: 10px 16px;
    background: rgba(4, 22, 24, .96);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .4);
    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 var(--line);
    border-radius: 0 0 16px 16px;
    background: var(--bg-2);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .5);
    white-space: normal;
  }
  html.mobile-nav-ready .main-nav.is-open { display: flex; }
  html.mobile-nav-ready .nav-item { width: 100%; }

  /* 首頁主鍵(JS 注入) */
  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(--gold);
    border-radius: 10px;
    background: linear-gradient(120deg, var(--gold), var(--gold-2));
    color: #1c1405;
    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 rgba(218, 176, 91, .3);
    border-radius: 0;
    background: none;
    color: var(--gold);
    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 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: linear-gradient(150deg, var(--panel), var(--panel-2));
    color: var(--cream);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: normal;
  }
  html.mobile-nav-ready .nav-drop a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    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 var(--line);
    border-radius: 10px;
    background: linear-gradient(150deg, var(--panel), var(--panel-2));
    color: var(--cream);
    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(--gold);
    margin-left: auto;
  }
  html.mobile-nav-ready .main-nav > .nav-item > a > i { color: var(--gold-2); }
}

/* ── 民宿卡:詳細資料膠囊(v20260830c) ── */
.stay-card .card-body { padding-bottom: 48px; }
.detail-pill {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #c99b3f;
  border-radius: 999px;
  color: #8e5b1f;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
  transition: .18s ease;
}
.stay-card:hover .detail-pill {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  border-color: var(--gold);
  color: #1c1405;
}
@media (max-width: 760px) {
  .stay-card .card-body { padding-bottom: 42px; }
  .detail-pill { right: 9px; bottom: 9px; padding: 5px 11px; font-size: .72rem; }
  .section-head { flex-wrap: wrap; gap: 8px 12px; }
  .section-head h2 { gap: 10px; font-size: 1.5rem; letter-spacing: .05em; }
  .section-head h2::before,
  .section-head h2::after { width: 20px; }
}
