/* opt.css — 優化覆寫層（最後載入；隔離所有全站安全加法，易回退） */

/* P4：補上 width/height 後，確保圖片仍依容器等比縮放、不變形（CLS 修正的前置） */
img { height: auto; }

/* P5 a11y：鍵盤焦點可見（Webflow 全站 outline:0 → 鍵盤使用者看不到焦點，WCAG 2.4.7 失敗）。
   只作用於鍵盤聚焦（:focus-visible），滑鼠點擊不顯示外框，故對既有滑鼠互動零影響。 */
*:focus-visible {
  outline: 3px solid #0b66c3 !important;
  outline-offset: 2px !important;
  border-radius: 2px;
}

/* P5 a11y：螢幕閱讀器專用文字工具類（供 skip-link／新視窗提示等使用） */
.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;
}

/* P5 a11y：跳至主要內容（鍵盤 Tab 第一站；平時隱藏，聚焦時出現）。
   2026-07-03 稽核#4 補上 24 頁對應元素時一併改用「左移出畫面」經典模式：
   原 top:-64px 依賴元素高度 < 64px 才藏得住（字級放大/窄容器折行時會露出），
   left:-9999px 與高度無關、任何情況都完全離屏，聚焦時才回到畫面內。 */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  z-index: 10000;
  background: #0b66c3; color: #fff;
  padding: 10px 16px; border-radius: 6px;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 16px; text-decoration: none;
  white-space: nowrap;
}
.skip-link:focus { left: 8px; }

/* Reserve the final Lottie footprint so FAQ rows do not jump when SVG content initializes. */
.qa-point-animation {
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  flex: 0 0 50px;
  overflow: hidden;
}

/* The train Lottie is 400 x 300; reserve its box before Webflow injects SVG. */
.animation-train {
  aspect-ratio: 4 / 3;
  line-height: 0;
}

.animation-train > svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .animation-train {
    width: 100%;
    flex: 0 0 auto;
  }
}

/* Match Webflow's initial hidden state before its interaction bundle is ready. */
html.w-mod-js .answer {
  display: none;
  opacity: 0;
  transform: translateY(-100%);
}

.question-wapper[role="button"] {
  cursor: pointer;
}

/* 手機/平板導覽選單：不做任何覆寫，沿用 Webflow 原生 over-right 滑入選單。
   2026-06-29 回退：先前 P7 誤把「.nav-link 內 <br> 的兩行標籤（關於/我們）+ 右側滑入的半透明灰窄面板
   （webflow.css ≤991px：.nav-menu{ background:#c8c8c8a3; margin-right:-95px }）」當成擠壓 bug，
   改用全寬／不透明覆寫去「修」，反而把原本好的選單改壞（owner 三次回報壞掉，並指定部署 f93d82cc 原版為基準）。
   原版根本沒有 opt.css，選單是純 Webflow 原生行為。故此處移除全部 nav 覆寫，回到原生。
   ※ 切勿再對 .nav-menu / .w-nav-overlay 加任何 max-width:991 覆寫。 */

/* GPT/Bing 手機體驗：防首頁/全站手機水平溢出。
   GPT 從 CSS 的 width:100vw 推測會溢出；實測 320/360/375 渲染後 document 並無溢出
   （撐寬者為評論 widget 橫向輪播，已由其容器裁切）。但 100vw 在「有可見捲軸」的
   瀏覽器/裝置仍可能溢出捲軸寬，故加此零風險防護。
   用 overflow-x: clip（非 hidden）：不建立捲動容器、不破壞 position:sticky 與子層橫向捲動；
   不支援 clip 的舊瀏覽器會忽略此宣告 → 退回現狀，無回歸。 */
@media screen and (max-width: 991px) {
  html, body { overflow-x: clip; }
}

/* GPT(Bing 中優先)根因修：.card-stack 的 width:100vw（webflow.css ≤991/≤479）在「有可見捲軸」
   時會溢出捲軸寬。改 100% + max-width，與上方 overflow-x:clip 雙保險。
   ⚠ 必須限縮在 ≤991px：桌面原生是 .card-stack{ width:1000px; margin:auto }（置中版面），
   先前此條未包 media query，width:100%!important 把桌面卡片格撐成全螢幕寬（owner 回報修壞，
   2026-06-29 已限縮回退）。≤991px 原本即 100vw 全寬，改 100% 版面不變、只消捲軸溢出。 */
@media screen and (max-width: 991px) {
  .card-stack { width: 100% !important; max-width: 100% !important; }
}

/* Rental page partner shop cards */
.rental-partners {
  width: 100%;
  padding: 30px 0 25px;
}

.rental-partners-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 22px;
}

.rental-partners-title {
  width: auto !important;
  text-align: left !important;
}

.rental-partners-en {
  margin-bottom: 0;
}

.rental-partners-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #334155;
  font-size: 18px;
  line-height: 1.8;
}

.rental-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}

.rental-shop-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid #d7e7ef;
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 10px 24px rgba(31, 76, 96, .08);
}

.rental-shop-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 14px;
}

.rental-shop-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #e6f7fb;
  color: #0f6270;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.rental-shop-name {
  margin: 0;
  color: #163c4d;
  font-size: 30px;
  line-height: 1.25;
}

.rental-shop-summary {
  min-height: 96px;
  margin: 0 0 18px;
  color: #334155;
  font-size: 18px;
  line-height: 1.75;
}

.rental-shop-list {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  color: #334155;
}

.rental-shop-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #dcebf2;
}

.rental-shop-list dt {
  color: #185a9d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.rental-shop-list dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.rental-shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 6px;
  background: #1f7a8c;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.rental-shop-link:hover,
.rental-shop-link:focus-visible {
  background: #155e6f;
  color: #fff;
}

.rental-partner-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 4px solid #1f7a8c;
  border-radius: 6px;
  background: #fff;
  color: #334155;
  font-size: 17px;
  line-height: 1.7;
}

@media screen and (max-width: 991px) {
  .rental-partners {
    padding-top: 18px;
  }

  .rental-partners-head {
    flex-direction: column;
    gap: 4px;
  }

  .rental-partners-lead {
    max-width: none;
    margin-top: 0;
  }

  .rental-shop-grid {
    grid-template-columns: 1fr;
  }

  .rental-shop-summary {
    min-height: 0;
  }
}

@media screen and (max-width: 479px) {
  .rental-shop-card {
    padding: 18px;
  }

  .rental-shop-name {
    font-size: 26px;
  }

  .rental-shop-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .rental-shop-link {
    width: 100%;
  }
}

/* Rental page 2026 hybrid redesign */
.rental-fun-page {
  overflow-x: hidden;
  background: #cff4ff;
}

.rental-fun-page > .navbar,
.rental-fun-page > .top-bar.rentel,
.rental-fun-page > main:not(.rental-hybrid),
.rental-fun-page > section,
.rental-fun-page > .ready-section {
  display: none !important;
}

.rental-hybrid {
  --rental-ink: #10243a;
  --rental-muted: #607087;
  --rental-paper: #fffdf7;
  --rental-snow: #f5fbff;
  --rental-sky: #02bfe7;
  --rental-mint: #45d483;
  --rental-sun: #ffbd3f;
  --rental-berry: #ff6798;
  --rental-grape: #8d78ff;
  --rental-line: rgba(16, 36, 58, .16);
  --rental-shadow: rgba(24, 96, 132, .18);
  min-height: 100vh;
  overflow-x: clip;
  color: var(--rental-ink);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  background:
    linear-gradient(135deg, rgba(255, 189, 63, .18), rgba(255, 189, 63, 0) 24%),
    linear-gradient(225deg, rgba(255, 103, 152, .22), rgba(255, 103, 152, 0) 42%),
    linear-gradient(90deg, rgba(28, 126, 179, .12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(28, 126, 179, .1) 1px, transparent 1px),
    linear-gradient(180deg, #bef6ff 0%, #e6fbff 30%, #def9ed 30%, #f7fcff 70%, #fff4fb 100%);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  padding-bottom: 64px;
}

.rental-hybrid *,
.rental-hybrid *::before,
.rental-hybrid *::after {
  box-sizing: border-box;
}

.rental-hybrid a {
  color: inherit;
  text-decoration: none;
}

.rental-hybrid-topbar,
.rental-hybrid-hero,
.rental-hybrid-stats,
.rental-hybrid-section {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.rental-hybrid-topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  margin-top: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 0 rgba(2, 191, 231, .12);
  backdrop-filter: blur(16px);
}

.rental-hybrid-brand,
.rental-hybrid-navlinks a,
.rental-hybrid-action,
.rental-hybrid-actions a,
.rental-hybrid-stats article,
.rental-route-grid article,
.rental-partner-card,
.rental-kit-card,
.rental-price-table-wrap,
.rental-price-notes article,
.rental-flow-grid article,
.rental-faq-grid article,
.rental-checklist-strip {
  border: 1px solid var(--rental-line);
  border-radius: 8px;
}

.rental-hybrid-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  background: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.rental-hybrid-brand span {
  color: var(--rental-berry);
  font-size: 12px;
}

.rental-hybrid-navlinks {
  display: flex;
  justify-content: center;
  gap: 8px;
  scrollbar-width: none;
}

.rental-hybrid-navlinks::-webkit-scrollbar {
  display: none;
}

.rental-hybrid-navlinks a,
.rental-hybrid-action {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  background: var(--rental-paper);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.rental-hybrid-navlinks a:nth-child(2) {
  background: var(--rental-ink);
  color: #fff;
}

.rental-hybrid-action {
  background: var(--rental-sun);
  box-shadow: 0 6px 0 rgba(255, 161, 47, .26);
}

.rental-hybrid-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .72fr);
  gap: 30px;
  align-items: center;
  min-height: 640px;
  padding: 76px 0 46px;
}

.rental-hybrid-copy,
.rental-hybrid-section-head,
.rental-hybrid-pass {
  min-width: 0;
}

.rental-hybrid-copy {
  position: relative;
  z-index: 2;
}

.rental-hybrid-eyebrow {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(2, 191, 231, .48);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: #047b9a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.rental-hybrid h1 {
  max-width: 780px;
  margin: 18px 0;
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 4px 0 #fff, 0 8px 0 rgba(255, 189, 63, .44);
  overflow-wrap: anywhere;
}

.rental-hybrid-copy > p:not(.rental-hybrid-eyebrow),
.rental-hybrid-section-head > p:not(.rental-hybrid-eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #25435f;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 800;
}

.rental-hybrid-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.rental-hybrid-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  font-weight: 900;
}

.rental-hybrid-actions a:first-child {
  background: var(--rental-sun);
  box-shadow: 0 7px 0 rgba(255, 161, 47, .34);
}

.rental-hybrid-actions a:last-child {
  background: var(--rental-sky);
  box-shadow: 0 7px 0 rgba(2, 132, 199, .22);
}

.rental-quick-panel {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 22px;
  padding: 16px;
  border-left: 8px solid var(--rental-sky);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 0 rgba(24, 96, 132, .08);
}

.rental-quick-panel strong {
  color: var(--rental-ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.rental-quick-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rental-quick-panel li {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding-left: 10px;
  border-left: 3px solid rgba(4, 123, 154, .24);
}

.rental-quick-panel li span,
.rental-decision-strip span,
.rental-partner-compare span,
.rental-price-toolbar span {
  color: #047b9a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.rental-quick-panel b {
  color: var(--rental-ink);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.rental-quick-panel small {
  color: var(--rental-muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.rental-hybrid-visual {
  position: relative;
  z-index: 1;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .94);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 0 rgba(2, 191, 231, .12), 0 30px 60px var(--rental-shadow);
}

.rental-hybrid-visual img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.rental-hybrid-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .22) 0 2px, transparent 2px 18px),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(16, 36, 58, .2));
  pointer-events: none;
}

.rental-hybrid-pass {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .84);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
}

.rental-hybrid-pass > span,
.rental-hybrid-stats span,
.rental-route-grid span,
.rental-partner-card-head span,
.rental-kit-card span,
.rental-flow-grid span,
.rental-checklist-strip span {
  color: #047b9a;
  font-size: 12px;
  font-weight: 900;
}

.rental-hybrid-pass strong {
  font-size: 30px;
  line-height: 1.12;
  font-weight: 900;
}

.rental-hybrid-pass div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.rental-hybrid-pass p {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  background: #f3fbff;
}

.rental-hybrid-pass b {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.rental-hybrid-pass small {
  color: var(--rental-muted);
  font-size: 12px;
  font-weight: 900;
}

.rental-hybrid-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 34px;
}

.rental-hybrid-stats article,
.rental-route-grid article,
.rental-partner-card,
.rental-price-notes article,
.rental-flow-grid article,
.rental-faq-grid article {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 0 rgba(24, 96, 132, .1);
}

.rental-hybrid-stats article {
  display: grid;
  gap: 10px;
  min-height: 178px;
  padding: 18px;
  border-top: 8px solid var(--tone);
}

.rental-hybrid-stats strong {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.rental-hybrid-stats small,
.rental-route-grid small,
.rental-partner-specs small {
  color: var(--rental-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.rental-hybrid-section {
  padding: 58px 0;
}

.rental-hybrid-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.rental-hybrid-section-head h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 900;
  text-shadow: 0 4px 0 rgba(255, 255, 255, .84);
}

.rental-route-grid,
.rental-partner-grid,
.rental-kit-grid,
.rental-price-notes,
.rental-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rental-route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rental-route-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  padding: 20px;
  border-top: 8px solid var(--tone);
}

.rental-decision-strip,
.rental-partner-compare,
.rental-price-toolbar {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-left: 8px solid var(--rental-sun);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 0 rgba(24, 96, 132, .08);
}

.rental-decision-strip strong,
.rental-partner-compare strong,
.rental-price-toolbar strong {
  display: block;
  margin: 4px 0 6px;
  color: var(--rental-ink);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 900;
}

.rental-decision-strip p,
.rental-partner-compare p,
.rental-price-toolbar p {
  margin: 0;
  color: #25435f;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 800;
}

.rental-decision-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.rental-decision-options a {
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(16, 36, 58, .12);
  border-radius: 8px;
  background: #f5fbff;
}

.rental-decision-options b {
  color: var(--rental-ink);
  font-size: 17px;
  line-height: 1.18;
  font-weight: 900;
}

.rental-decision-options small {
  color: var(--rental-muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.rental-route-grid h3,
.rental-partner-card h3,
.rental-kit-card h3,
.rental-price-notes strong,
.rental-flow-grid h3,
.rental-faq-grid h3 {
  margin: 0;
  color: var(--rental-ink);
  font-weight: 900;
}

.rental-route-grid h3,
.rental-partner-card h3 {
  font-size: 28px;
  line-height: 1.16;
}

.rental-partner-logo-title {
  display: flex;
  flex: 1 1 180px;
  align-items: center;
  min-width: 0;
  min-height: 52px;
  line-height: 0;
}

.rental-partner-logo {
  display: block;
  width: auto;
  max-width: min(300px, 100%);
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.rental-partner-logo.is-qingda {
  height: 52px;
  max-width: min(150px, 100%);
}

.rental-partner-logo.is-snowbuddies {
  max-width: min(280px, 100%);
}

.rental-route-grid p,
.rental-partner-card p,
.rental-kit-card p,
.rental-price-notes p,
.rental-flow-grid p,
.rental-faq-grid p,
.rental-checklist-strip p {
  margin: 0;
  color: #25435f;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 800;
}

.rental-price-table-wrap {
  overflow-x: auto;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 0 rgba(24, 96, 132, .1);
}

.rental-price-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(16, 36, 58, .1);
  background: linear-gradient(90deg, #fff, #f1fbff);
}

.rental-price-table-head strong {
  color: #047b9a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
}

.rental-price-table-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 8px;
  background: #e1f7ef;
  color: #11684c;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.rental-price-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: var(--rental-ink);
}

.rental-price-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.rental-price-table th,
.rental-price-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(16, 36, 58, .12);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.6;
}

.rental-price-table thead th {
  background: #10243a;
  color: #fff;
  font-weight: 900;
}

.rental-price-table tbody th {
  width: 300px;
  color: var(--rental-ink);
  font-size: 18px;
  font-weight: 900;
}

.rental-combo-name {
  display: block;
  margin-bottom: 10px;
  color: var(--rental-ink);
  font-size: 23px;
  line-height: 1.1;
  font-weight: 900;
}

.rental-combo-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rental-combo-items span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 2px 8px;
  border: 1px solid rgba(4, 123, 154, .16);
  border-radius: 8px;
  background: #eaf8fb;
  color: #047b9a;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  white-space: nowrap;
}

.rental-price-table td {
  color: #25435f;
  font-weight: 800;
}

.rental-price-table td.is-pending,
.rental-price-table td.is-reference {
  text-align: center;
}

.rental-price-table td strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 2px 10px;
  border-radius: 8px;
  background: #fff1c8;
  color: #10243a;
  font-weight: 900;
  white-space: nowrap;
}

.rental-price-table td.is-pending strong {
  background: #edf4f8;
  color: #607087;
}

.rental-price-table td.is-reference strong {
  background: #e1f7ef;
  color: #11684c;
}

.rental-price-table tbody tr:nth-child(even) td,
.rental-price-table tbody tr:nth-child(even) th {
  background: rgba(245, 251, 255, .72);
}

.rental-price-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.rental-price-notes article {
  display: grid;
  gap: 8px;
  min-height: 164px;
  padding: 18px;
  border-top: 8px solid var(--rental-sun);
}

.rental-price-notes article:nth-child(2) {
  border-top-color: var(--rental-berry);
}

.rental-price-notes article:nth-child(3) {
  border-top-color: var(--rental-sky);
}

.rental-price-notes span {
  color: #047b9a;
  font-size: 12px;
  font-weight: 900;
}

.rental-price-notes strong {
  font-size: 22px;
  line-height: 1.22;
}

.rental-partner-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 22px;
  border-top: 8px solid var(--tone);
}

.rental-partner-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.rental-partner-specs {
  display: grid;
  gap: 10px;
}

.rental-partner-specs div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 36, 58, .12);
}

.rental-partner-specs b {
  color: #047b9a;
  font-size: 15px;
  font-weight: 900;
}

.rental-partner-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(16, 36, 58, .18);
  border-radius: 8px;
  background: var(--rental-ink);
  color: #fff;
  font-weight: 900;
}

.rental-partner-compare {
  grid-template-columns: minmax(0, .64fr) minmax(420px, 1fr);
  border-left-color: var(--rental-grape);
}

.rental-partner-compare dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.rental-partner-compare dl div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px;
  border-top: 4px solid rgba(141, 120, 255, .42);
  background: #f8f7ff;
}

.rental-partner-compare dt {
  color: var(--rental-ink);
  font-size: 18px;
  font-weight: 900;
}

.rental-partner-compare dd {
  margin: 0;
  color: var(--rental-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.rental-price-toolbar {
  grid-template-columns: minmax(0, 1fr) auto;
  margin: -2px 0 16px;
  border-left-color: var(--rental-mint);
}

.rental-price-toolbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--rental-ink);
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.rental-kit-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 0 rgba(24, 96, 132, .1);
}

.rental-kit-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: linear-gradient(180deg, #ecfbff, #fff);
}

.rental-kit-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.rental-kit-card h3 {
  font-size: 30px;
}

.rental-checklist-strip {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 18px 20px;
  border-left: 8px solid var(--rental-sun);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 0 rgba(24, 96, 132, .08);
}

.rental-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.rental-flow-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 18px;
  border-top: 8px solid var(--rental-sky);
}

.rental-flow-grid article:nth-child(2) {
  border-top-color: var(--rental-sun);
}

.rental-flow-grid article:nth-child(3) {
  border-top-color: var(--rental-mint);
}

.rental-flow-grid article:nth-child(4) {
  border-top-color: var(--rental-grape);
}

.rental-flow-grid article:nth-child(5) {
  border-top-color: var(--rental-berry);
}

.rental-flow-grid h3 {
  font-size: 22px;
}

.rental-faq-grid article {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 20px;
  border-left: 8px solid var(--rental-mint);
}

.rental-faq-grid article:nth-child(2) {
  border-left-color: var(--rental-sun);
}

.rental-faq-grid article:nth-child(3) {
  border-left-color: var(--rental-berry);
}

.rental-faq-grid article:nth-child(4) {
  border-left-color: var(--rental-sky);
}

.rental-faq-grid h3 {
  font-size: 24px;
}

.rental-fun-page .end-section {
  margin-top: 0;
}

@media screen and (max-width: 991px) {
  .rental-hybrid-topbar,
  .rental-hybrid-hero,
  .rental-hybrid-stats,
  .rental-hybrid-section {
    width: min(100% - 28px, 760px);
  }

  .rental-hybrid-topbar {
    grid-template-columns: 1fr auto;
  }

  .rental-hybrid-navlinks {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .rental-hybrid-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 46px;
  }

  .rental-hybrid h1 {
    font-size: 54px;
  }

  .rental-hybrid-visual,
  .rental-hybrid-visual img {
    min-height: 420px;
    height: 420px;
  }

  .rental-hybrid-visual {
    height: auto;
    margin-top: 18px;
    overflow: visible;
  }

  .rental-hybrid-pass {
    position: static;
    margin: -82px 18px 18px;
  }

  .rental-hybrid-stats,
  .rental-route-grid,
  .rental-partner-grid,
  .rental-kit-grid,
  .rental-price-notes,
  .rental-flow-grid,
  .rental-faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rental-decision-strip,
  .rental-partner-compare,
  .rental-price-toolbar {
    grid-template-columns: 1fr;
  }

  .rental-route-grid article,
  .rental-flow-grid article {
    min-height: 0;
  }
}

@media screen and (max-width: 640px) {
  .rental-hybrid {
    background-size: auto, auto, 32px 32px, 32px 32px, auto;
  }

  .rental-hybrid-topbar {
    top: 8px;
    width: calc(100% - 18px);
    gap: 8px;
  }

  .rental-hybrid-navlinks {
    min-width: 0;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
  }

  .rental-hybrid-navlinks a {
    flex: 1 1 calc(33.333% - 6px);
    justify-content: center;
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .rental-hybrid-brand {
    min-width: 0;
    max-width: 100%;
  }

  .rental-hybrid-action {
    padding: 0 10px;
  }

  .rental-hybrid h1 {
    font-size: 38px;
  }

  .rental-hybrid-section-head h2 {
    font-size: 34px;
  }

  .rental-hybrid-copy > p:not(.rental-hybrid-eyebrow),
  .rental-hybrid-section-head > p:not(.rental-hybrid-eyebrow) {
    font-size: 16px;
  }

  .rental-hybrid h1,
  .rental-hybrid h2,
  .rental-hybrid h3,
  .rental-hybrid p,
  .rental-hybrid small {
    overflow-wrap: anywhere;
  }

  .rental-hybrid-visual,
  .rental-hybrid-visual img {
    min-height: 360px;
    height: 360px;
  }

  .rental-hybrid-pass {
    left: auto;
    right: auto;
    bottom: auto;
    margin: -72px 12px 12px;
  }

  .rental-hybrid-pass strong {
    font-size: 24px;
  }

  .rental-quick-panel ul,
  .rental-decision-options,
  .rental-partner-compare dl,
  .rental-price-toolbar {
    grid-template-columns: 1fr;
  }

  .rental-quick-panel {
    padding: 14px;
  }

  .rental-decision-strip,
  .rental-partner-compare,
  .rental-price-toolbar {
    padding: 16px;
  }

  .rental-price-toolbar a {
    width: 100%;
  }

  .rental-hybrid-pass div,
  .rental-hybrid-stats,
  .rental-route-grid,
  .rental-partner-grid,
  .rental-kit-grid,
  .rental-price-notes,
  .rental-flow-grid,
  .rental-faq-grid {
    grid-template-columns: 1fr;
  }

  .rental-price-table-wrap {
    margin-inline: -2px;
    overflow-x: visible;
  }

  .rental-price-table-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }

  .rental-price-table {
    min-width: 0;
  }

  .rental-price-table,
  .rental-price-table caption,
  .rental-price-table tbody,
  .rental-price-table tr,
  .rental-price-table th,
  .rental-price-table td {
    display: block;
    width: 100%;
  }

  .rental-price-table thead {
    display: none;
  }

  .rental-price-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .rental-price-table tbody {
    display: grid;
    gap: 12px;
    padding: 16px;
  }

  .rental-price-table tbody tr {
    overflow: hidden;
    border: 1px solid rgba(16, 36, 58, .12);
    border-radius: 8px;
    background: #fff;
  }

  .rental-price-table tbody th {
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(16, 36, 58, .12);
    background: #10243a !important;
    color: #fff;
  }

  .rental-price-table tbody th .rental-combo-name {
    color: #fff;
    font-size: 22px;
  }

  .rental-price-table tbody th .rental-combo-items span {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .14);
    color: #fff;
  }

  .rental-price-table tbody td {
    display: grid;
    grid-template-columns: minmax(92px, .46fr) minmax(0, 1fr);
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(16, 36, 58, .08);
    background: #fff !important;
  }

  .rental-price-table tbody td::before {
    content: attr(data-label);
    color: #047b9a;
    font-size: 13px;
    font-weight: 900;
  }

  .rental-price-table tbody td:last-child {
    border-bottom: 0;
  }

  .rental-price-table td strong {
    width: fit-content;
  }

  .rental-partner-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .rental-kit-card img {
    height: 210px;
  }

  .rental-partner-card > a,
  .rental-hybrid-actions a {
    width: 100%;
    justify-content: center;
  }

  .rental-fun-page #sg-fab {
    display: none !important;
  }
}

.rental-hybrid .rental-hybrid-visual {
  height: auto;
  overflow: visible;
}

.rental-hybrid .rental-hybrid-pass {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 16px;
}

@media screen and (max-width: 640px) {
  .rental-hybrid .rental-hybrid-pass {
    margin: 12px;
  }
}

/* P7 a11y：尊重使用者的「減少動態效果」偏好（WCAG 2.3.3/2.2.2）。
   覆寫 CSS 動畫/轉場/平滑捲動；僅對開啟此偏好的使用者生效。
   註：JS 驅動的 Lottie autoplay 無法用 CSS 暫停，需另以 JS 處理（待續）。 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media screen and (min-width: 992px) {
  .nav-menu {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
  }

  .nav-menu .nav-link {
    flex: 0 0 auto;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-menu .nav-link.language-switch {
    align-self: center;
    margin: 0 18px 0 10px;
  }
}

.nav-link.language-switch {
  box-sizing: border-box;
  width: auto;
  min-width: 74px;
  height: 34px;
  margin: 43px 18px 0 10px;
  padding: 0 12px;
  border: 1px solid rgba(20, 34, 55, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .42);
  color: #111;
  font-size: 15px;
  font-weight: 800;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: top;
  display: inline-flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.nav-link.language-switch:hover {
  padding: 0 12px;
  border: 1px solid rgba(20, 34, 55, .52);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
  color: #111;
}

.nav-link.language-switch strong {
  font-weight: 800;
}

.language-globe {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}

.language-globe::before,
.language-globe::after {
  content: "";
  position: absolute;
}

.language-globe::before {
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.language-globe::after {
  display: none;
}

/* 手機語言鈕:真根因是**定位**不是寬度(前幾版都在調寬度所以修不好)。手機一般 .nav-link 是
   `display:flex;flex-flow:column;align-items:flex-start;padding-left:30px`（block 級、填滿寬、左靠),
   語言鈕原本 `display:inline-flex`(inline 級、縮到內容)→ 在 block 面板裡以行內流動、被推到最右切出畫面
   (owner 真機截圖:語言鈕整顆切到畫面外只剩右緣一條)。改成**與一般 .nav-link 完全一致**(display/對齊/padding/
   字級全對齊,去 pill/地球)→ 就和正常運作的標籤排同一欄、同樣可見。桌面(≥992)地球+pill 維持不動。真機複驗。 */
@media screen and (max-width: 991px) {
  .nav-link.language-switch,
  .nav-link.language-switch:hover {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    min-width: 0;
    height: auto;
    margin: 0;
    padding: 12px 18px 12px 30px;
    border: 0;
    border-radius: 0;
    background: none;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 2px;
  }

  .nav-link.language-switch .language-globe { display: none; }

  /* owner 要「像桌面一樣有明顯框框」：pill 框加在**文字 <strong>** 上(非整個 <a>），框只包住「繁中/EN」、
     維持在欄內不撐滿整欄(否則框右緣又滑出可見區被裁)。桌面同色 border/bg;字級縮到 15px 讓框右緣 ≤ 一般標籤右緣。 */
  .nav-link.language-switch strong {
    display: inline-block;
    margin: 0;
    padding: 4px 7px;
    border: 1px solid rgba(20, 34, 55, .34);
    border-radius: 8px;
    background: rgba(255, 255, 255, .42);
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 1px;
    font-weight: 800;
  }
}

/* English copy needs softer containers than the original Chinese fixed-height layout. */













































/* English feature headings（.feature-text）：長英文在桌面/平板固定 45px 會折行（如
   Certified Instructors / English-Friendly Lessons）。縮字級保持單行；手機沿用既有 ≤767 覆寫。 */

/* ── 英文版：版面與中文原版完全一致，僅「較長英文放不下時單純縮字級」，不動幾何/位置 ──
   （owner 指定:一模一樣的排版，文字可打小、換行可變） */

/* nav：中文靠 .nav-link.menu padding-top:47 讓單行「首頁」對齊兩行鄰居；英文全單行，
   故所有連結統一 padding-top:47 置中對齊（否則 Home 47、About 31 差 16px 跑位）。語言鈕維持自身 pill。
   ⚠ 僅桌面：此對齊只在桌面橫向 nav 需要；≤991 是漢堡直向選單，套 47px 會把標籤下推。故包 min-width:992。 */
@media screen and (min-width: 992px) {
  html[lang="en"] .nav-link:not(.language-switch) { padding-top: 47px; }
}

/* 手機漢堡選單壓高度（owner 真機回報：選單打開太長、要壓進一個螢幕內）。
   根因：webflow 原生 .nav-link 在 ≤991 手機仍沿用桌面 height:120px（導覽列高），7 項×120px≈739px 超過一螢幕。
   ⚠ 只准改「高度/內距」，絕不改標籤寬度：那半透明右滑面板**刻意只留左側約 74px 可見**（margin-right:-95px 讓右側滑出畫面外），
   兩行標籤（每行 2 字 ~44px）就是為了塞進這 74px 可見區才刻意 <br> 兩行。2026-07-06 我一度加 `.nav-link br{display:none}`
   改單行（4 字 ~88px）→ 超出可見區被裁（「馬上預定」的「定」被切，owner 回報「還是有問題」），已移除。
   ※ headless 預覽測「單行放得下」是假象（面板開啟後的真實可見寬度預覽測不準，正是 P7 教訓，別再信）。故只保留降高度：
   每項 height:120px→auto+內距 → 約 84px、總高 739px→~590px。中英兩站共用。完全不碰 .nav-menu/.w-nav-overlay。真機複驗。 */
@media screen and (max-width: 991px) {
  .nav-menu .nav-link,
  .nav-menu .nav-link.menu { height: auto; min-height: 0; padding-top: 12px; padding-bottom: 12px; }

  html[lang="en"] .nav-menu .nav-link:not(.language-switch) {
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 767px) {
  .buttom-link {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .buttom-social-list > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
  }

  .text-card > a.w-inline-block,
  .jr-time-table > a.w-inline-block,
  .book-block > a.w-inline-block,
  a.access-pass-text.time-1,
  a.buy-link,
  a.reservation {
    box-sizing: border-box;
    min-height: 44px;
  }

  .text-card > a.w-inline-block,
  .jr-time-table > a.w-inline-block,
  .book-block > a.w-inline-block,
  a.access-pass-text.time-1,
  a.buy-link,
  a.reservation {
    display: flex;
    align-items: center;
  }

  a.access-pass-text.time-1,
  a.buy-link {
    justify-content: center;
  }

  .w-password-page.w-input,
  .w-password-page.w-button {
    min-height: 44px;
  }
}

/* hero 副標：長英文縮小以塞進中文原版的 home-bar 固定框（標題不變,只縮副標;分斷點對齊各尺寸框高）。 */
html[lang="en"] .home-bar-txet.next { font-size: 24px; line-height: 1.3; }
@media screen and (max-width: 991px) { html[lang="en"] .home-bar-txet.next { font-size: 18px; line-height: 1.3; } }
@media screen and (max-width: 479px) {
  html[lang="en"] .home-bar-txet:not(.next) { font-size: 40px; }  /* Echigo-Yuzawa 較寬,手機縮到單行不折(中文越後湯澤4字不折) */
  html[lang="en"] .home-bar-txet.next { font-size: 14px; line-height: 1.25; }
}

/* 功能標題(.feature-text)：長英文桌面/平板縮字級保持單行；手機沿用 webflow 響應式。 */
@media screen and (min-width: 768px) {
  html[lang="en"] .feature-text { font-size: clamp(26px, 2.5vw, 32px); line-height: 1.2; white-space: nowrap; }
}

/* 雪場詳細頁大標(.paragraph-intro.ch)：英文雪場名較長,縮字級保持單行不被容器裁切。 */
html[lang="en"] .paragraph-intro.ch { font-size: 30px; }

/* 雪場介紹頁「推薦給初學者」徽章:webflow `.recommend-text{width:5ch}` 是為中文短字(6字)設計的窄欄;
   英文「Recommended for Beginners」24 字塞進 5ch → 狂折行,又被 ≤991 的 overflow-x:clip 裁掉(手機尤明顯,
   owner 回報)。英文改 width:auto + 單行 → 徽章完整顯示(量測桌面/手機皆單行、無溢出);中文維持 5ch 不動。 */
html[lang="en"] .recommend-text { width: auto; white-space: nowrap; }

/* footer 付款欄標題：中文「由日本主流支付平台提供安全的線上付款服務」較短,欄寬由 Square 圖(200px)綁定;
   英文「Secure online payments provided by a major Japanese payment platform」較長,第二行超出圖寬把該欄
   撐到 396px(中文 208px)→ .buttom-contain 的 space-between(含 ::before/::after 共 4 flex item)均分間距塌成 3px,
   footer 整組被撐到貼邊失衡=「歪」。把標題寬綁回圖寬,讓它多折行(換行可變,不縮字/不動位置),欄寬回 208px、
   間距回復 ~66px 平衡,與中文版一致。 */
html[lang="en"] .buttom-pay .buttom-title { max-width: 200px; }

/* 雪場介紹格線卡片大標(.card.intro .paragraph-intro)：中文名短(全 1 行,JP 小字齊平 147);英文名長,27px 下
   折 2-3 行不等 → 卡片內 JP 小字高低不齊「排版跑掉」。縮到 20px + line-height 1.25(2 行≈中文 1 行 50px 框)
   + min-height:50px 讓短名也保留 2 行高 → 全部統一 2 行、JP 小字回到齊平,與中文格線一致。跨 16 頁共用格線一次修好。
   （:not(.jp) 只縮英文大標,不動日文小字;detail 頁大標另由 .paragraph-intro.ch 管,特異度更高不受影響。） */
/* 大標固定 min-height:50px(2 行框)讓各卡日文小字齊平;內部用 flex 垂直置中,這樣「較寬卡片下名字只 1 行」時
   文字不會卡在框頂留空(上下置中),1 行/2 行都在框中央、且日文小字仍齊平。 */
html[lang="en"] .card.intro .paragraph-intro:not(.jp) { font-size: 20px; line-height: 1.25; min-height: 50px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
/* 文字水平置中:卡片是 flex column + align-items:center(logo/整塊已置中),但文字本身 text-align:start(靠左)→
   中文名 1 行看似置中,英文名折 2 行時兩行靠左顯歪。文字改置中(大標+日文小字),與中文版視覺一致。 */
html[lang="en"] .card.intro .paragraph-intro { text-align: center; }
/* 小手機(≤479,2 欄卡片縮到 ~170px)最長名(Ishiuchi Maruyama / Kagura…)在 20px 會折 3 行破壞對齊;降到 18px 全回 2 行。 */
@media screen and (max-width: 479px) {
  html[lang="en"] .card.intro .paragraph-intro:not(.jp) { font-size: 18px; }
}

/* Seasonal data status on resort detail pages. */
.season-status {
  box-sizing: border-box;
  width: 100%;
  margin: 16px auto 0;
  padding: 14px 18px;
  border-left: 4px solid #c96d00;
  border-radius: 6px;
  background: #fff7e2;
  color: #32230e;
}

.season-status--announced {
  border-left-color: #177653;
  background: #eaf7f0;
  color: #123c2e;
}

.season-status__eyebrow,
.season-status__title,
.season-status__copy {
  margin: 0;
  letter-spacing: 0;
}

.season-status__eyebrow {
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.season-status__title {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 800;
}

.season-status__copy {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.65;
}

@media screen and (max-width: 479px) {
  .season-status {
    margin-top: 12px;
    padding: 12px 14px;
  }

  .season-status__title {
    font-size: 18px;
  }
}

/* Search-friendly planning hub replacing the empty Webflow CMS list. */
.guide-hero {
  display: flex;
  min-height: 300px;
  margin-top: 120px;
  padding: 64px max(24px, calc((100vw - 1120px) / 2));
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: rgba(246, 250, 252, 0.88);
  background-image: url("/images/background_mountains.avif");
  background-position: center;
  background-size: cover;
  background-blend-mode: screen;
  text-align: left;
}

.guide-hero .blog-hero-eyebrow,
.guide-hero .blog-hero-title,
.guide-hero .blog-hero-subtitle {
  width: min(100%, 760px);
  margin-left: 0;
  margin-right: 0;
  letter-spacing: 0;
}

.guide-hero .blog-hero-title {
  margin-top: 8px;
  margin-bottom: 14px;
  color: #142d3a;
  font-size: 40px;
  line-height: 1.2;
}

.guide-hero .blog-hero-eyebrow {
  display: block;
  color: #126c91;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.guide-hero .blog-hero-subtitle {
  color: #304a56;
  font-size: 17px;
  line-height: 1.75;
}

.guide-links-section {
  padding: 64px 24px 72px;
  background: #f5f7f8;
}

.guide-links-section .blog-list-container,
.guide-checklist-container {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.guide-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.guide-section-kicker {
  margin-bottom: 6px;
  color: #126c91;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: 0;
}

.guide-section-heading h2,
.guide-checklist-heading h2 {
  margin: 0;
  color: #18242b;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
}

.guide-section-heading p,
.guide-checklist-heading p {
  margin: 10px 0 0;
  color: #4b5960;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.guide-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: minmax(180px, 42%) 1fr;
  border: 1px solid #d8e0e4;
  border-radius: 8px;
  background: #fff;
  color: #18242b;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.guide-card:hover,
.guide-card:focus-visible {
  border-color: #1595c6;
  box-shadow: 0 8px 22px rgba(24, 49, 61, 0.12);
  transform: translateY(-2px);
}

.guide-card:focus-visible {
  outline: 3px solid #f1b800;
  outline-offset: 3px;
}

.guide-card-media {
  min-height: 220px;
  overflow: hidden;
  background: #dce8ed;
}

.guide-card-media--contain {
  background: #e8f2f5;
}

.guide-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card-media--contain .guide-card-image {
  padding: 22px;
  object-fit: contain;
}

.guide-card-content {
  display: flex;
  min-width: 0;
  padding: 22px;
  flex-direction: column;
}

.guide-card-category {
  margin-bottom: 7px;
  color: #126c91;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0;
}

.guide-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}

.guide-card p {
  margin: 10px 0 18px;
  color: #536169;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
}

.guide-card-cta {
  margin-top: auto;
  color: #075f83;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 800;
}

.guide-checklist-section {
  padding: 64px 24px 72px;
  background: #eaf4ee;
}

.guide-checklist-container {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
}

.guide-checklist-heading {
  align-self: start;
}

.guide-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-checklist li {
  display: grid;
  padding: 19px 0;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid #b9d0c2;
}

.guide-checklist li:last-child {
  border-bottom: 1px solid #b9d0c2;
}

.guide-step-number {
  color: #177653;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 800;
}

.guide-checklist h3 {
  margin: 0;
  color: #173b2d;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: 0;
}

.guide-checklist p {
  margin: 5px 0 0;
  color: #3d584d;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
}

.guide-faq-link {
  grid-column: 2;
  justify-self: start;
  min-height: 44px;
  margin-top: -26px;
  color: #075f83;
  font-size: 16px;
  line-height: 44px;
  font-weight: 800;
  text-decoration: none;
}

.guide-faq-link:hover,
.guide-faq-link:focus-visible {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .guide-hero {
    margin-top: 100px;
  }

  .guide-card {
    grid-template-columns: 1fr;
  }

  .guide-card-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media screen and (max-width: 767px) {
  .guide-hero {
    min-height: 270px;
    padding: 48px 20px;
  }

  .guide-hero .blog-hero-title {
    font-size: 34px;
  }

  .guide-links-section,
  .guide-checklist-section {
    padding: 48px 16px 56px;
  }

  .guide-section-heading h2,
  .guide-checklist-heading h2 {
    font-size: 26px;
  }

  .guide-grid,
  .guide-checklist-container {
    grid-template-columns: 1fr;
  }

  .guide-checklist-container {
    gap: 26px;
  }

  .guide-faq-link {
    grid-column: 1;
    margin-top: -6px;
  }
}
