:root {
  --bg: #f5efe6;
  --surface: rgba(255, 251, 246, 0.86);
  --surface-strong: #fffaf3;
  --ink: #251f1a;
  --ink-soft: #6e655d;
  --line: rgba(98, 72, 39, 0.12);
  --line-strong: rgba(145, 112, 67, 0.2);
  --accent: #b08b56;
  --accent-deep: #7d6037;
  --accent-soft: rgba(176, 139, 86, 0.12);
  --shadow: 0 30px 70px rgba(46, 29, 12, 0.12);
  --shadow-soft: 0 16px 40px rgba(46, 29, 12, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --max-width: 1560px;
  --font-ui-zh: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-ui-en: "Manrope", "Segoe UI", sans-serif;
  --font-ui-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-title-zh: "Noto Serif TC", "PingFang TC", serif;
  --font-title-en: "Cormorant Garamond", Georgia, serif;
  --font-title-ja: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-ui-current: var(--font-ui-zh);
  --font-title-current: var(--font-title-zh);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

html[lang="zh-Hant"] {
  --font-ui-current: var(--font-ui-zh);
  --font-title-current: var(--font-title-zh);
}

html[lang="en"] {
  --font-ui-current: var(--font-ui-en);
  --font-title-current: var(--font-title-en);
}

html[lang="ja"] {
  --font-ui-current: var(--font-ui-ja);
  --font-title-current: var(--font-title-ja);
}

body {
  position: relative;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font-ui-current);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(180deg, #efe5d6 0%, #f7f1e9 32%, #f5efe6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 75%);
  opacity: 0.16;
}

a {
  color: inherit;
}

.ambient {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.4;
  pointer-events: none;
}

.ambient--one {
  top: -8rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(176, 139, 86, 0.3), transparent 68%);
}

.ambient--two {
  bottom: -10rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(102, 81, 49, 0.18), transparent 68%);
}

.page-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 20px auto 40px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 30px;
  border-radius: 38px;
  background:
    linear-gradient(120deg, rgba(24, 20, 17, 0.92), rgba(59, 43, 24, 0.7)),
    linear-gradient(180deg, rgba(176, 139, 86, 0.4), rgba(49, 37, 21, 0.18));
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.hero__eyebrow-row,
.hero__grid,
.experience {
  position: relative;
  z-index: 1;
}

.hero--title-only {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 34px 28px;
  text-align: left;
}

.hero__title-row {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  padding-bottom: 2px;
}

.hero__title-stack {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.version-tag {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 244, 230, 0.95);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.version-tag--global {
  position: fixed;
  left: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 42;
  min-height: 26px;
  padding: 0 10px;
  border-color: rgba(145, 112, 67, 0.24);
  background: rgba(255, 247, 236, 0.94);
  color: var(--accent-deep);
  font-size: 0.66rem;
  box-shadow: 0 10px 22px rgba(46, 29, 12, 0.16);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.version-tag--global.is-visible-bottom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.install-strip {
  position: fixed;
  left: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.install-strip.is-visible-bottom {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.install-strip .version-tag--global {
  position: static;
  left: auto;
  bottom: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.install-button,
.pwa-install-close {
  min-height: 30px;
  border: 1px solid rgba(145, 112, 67, 0.26);
  border-radius: var(--radius-pill);
  background: rgba(255, 247, 236, 0.96);
  color: var(--accent-deep);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 22px rgba(46, 29, 12, 0.14);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.install-button {
  padding: 0 13px;
}

.install-button:hover,
.install-button:focus-visible,
.pwa-install-close:hover,
.pwa-install-close:focus-visible {
  border-color: rgba(145, 112, 67, 0.5);
  background: var(--accent-deep);
  color: #ffffff;
  transform: translateY(-1px);
}

.pwa-install-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: min(330px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid rgba(145, 112, 67, 0.24);
  border-radius: 16px;
  background: rgba(255, 248, 244, 0.98);
  color: var(--accent-deep);
  box-shadow: 0 18px 42px rgba(46, 29, 12, 0.18);
}

.pwa-install-panel p {
  margin: 0 0 10px;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

.pwa-install-close {
  padding: 0 12px;
  box-shadow: none;
}

.version-tag--hotel {
  position: absolute;
  right: 20px;
  bottom: 14px;
  z-index: 2;
  min-height: 32px;
  padding: 0 12px;
  border-color: rgba(145, 112, 67, 0.22);
  background: rgba(255, 247, 236, 0.92);
  color: var(--accent-deep);
  box-shadow: 0 8px 18px rgba(46, 29, 12, 0.18);
  backdrop-filter: blur(8px);
}

.hero__controls {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.hero-quick-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
  width: auto;
  flex: 1 1 auto;
  justify-content: flex-start;
}

.hero-quick-nav__label {
  color: rgba(255, 241, 224, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 245, 230, 0.96);
  text-decoration: none;
  font-family: var(--font-ui-current);
  font-size: 0.86rem;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-jump--button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.hero-jump:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.hero__bottom-row {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-home-entry {
  display: grid;
  gap: 8px;
  min-width: 220px;
  max-width: 340px;
  flex: 0 1 340px;
}

.hero-jump--helper {
  justify-content: flex-start;
  padding: 0 14px;
}

.hero-home-hint {
  margin: 0;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 245, 230, 0.96);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hero__footer-controls {
  position: relative;
  z-index: 1;
  margin-top: 0;
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.lang-select {
  min-height: 40px;
  min-width: 128px;
  padding: 0 36px 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 245, 230, 0.95);
  font: inherit;
  font-family: var(--font-ui-current);
  font-size: 0.9rem;
  cursor: pointer;
}

.lang-select option {
  color: #2a1f13;
  background: #fffaf3;
  font-family: var(--font-ui-current);
}

.lang-select:focus-visible {
  outline: 2px solid rgba(176, 139, 86, 0.5);
  outline-offset: 3px;
}

.jump-target {
  scroll-margin-top: 16px;
}

.weather-widget {
  min-width: 220px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 245, 230, 0.96);
  text-align: left;
}

.hero__bottom-row .weather-widget {
  flex: 0 0 auto;
  min-width: 240px;
}

.weather-widget__title {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.82;
}

.weather-widget__summary {
  margin: 4px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.weather-widget__rain {
  margin: 2px 0 0;
  font-size: 0.85rem;
  opacity: 0.86;
}

.weather-widget--panel {
  min-height: 120px;
  padding: 16px 20px;
  min-width: 0;
  border-radius: 24px;
  border: 1px solid rgba(145, 112, 67, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 241, 229, 0.84));
  color: var(--ink);
}

.weather-widget--panel .weather-widget__title {
  color: var(--ink-soft);
  opacity: 1;
}

.weather-widget--panel .weather-widget__summary {
  color: var(--ink);
}

.weather-widget--panel .weather-widget__rain {
  color: var(--ink-soft);
  opacity: 1;
}

.hero--title-only h1 {
  margin-top: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.lang-button {
  min-height: 36px;
  min-width: 68px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 245, 230, 0.92);
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

.lang-button.is-active {
  color: #2a1f13;
  border-color: transparent;
  background: linear-gradient(135deg, #f2dfbf, #e5c58e);
}

.guest-note {
  margin-top: 0;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.8;
}

.guest-note p {
  margin: 0;
}

.filters-note {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.85;
}

.intro-row {
  margin-top: 16px;
  display: block;
}

.panel--hotel {
  margin-top: 22px;
}

.panel--concierge {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(145, 112, 67, 0.2);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.95), rgba(249, 241, 229, 0.9));
  box-shadow: var(--shadow);
}

.panel--concierge-gifts {
  margin-top: 22px;
  padding: 24px;
}

.concierge-subtitle {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.concierge-toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.concierge-toggle {
  min-width: 152px;
}

.concierge-empty {
  margin: 14px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(145, 112, 67, 0.24);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.concierge-block {
  margin-top: 14px;
}

.concierge-first-list {
  display: grid;
  gap: 12px;
}

.concierge-first-card {
  cursor: default;
}

.concierge-first-card:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(145, 112, 67, 0.14);
}

.concierge-first-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.concierge-first-card__actions .button {
  width: 100%;
  min-width: 0;
  flex: 0 1 auto;
}

.concierge-gift-list {
  display: grid;
  gap: 10px;
}

.concierge-gift-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(145, 112, 67, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.concierge-gift-logo {
  min-height: 76px;
  border-radius: 16px;
  border: 1px solid rgba(145, 112, 67, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  text-align: center;
  background: linear-gradient(135deg, #2f2417, #85653d);
  color: #f6deb4;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.concierge-gift-logo--chiate {
  background: linear-gradient(135deg, #4e2018, #8f4a34);
}

.concierge-gift-logo--sunnyhills {
  background: linear-gradient(135deg, #8e6b38, #c79b56);
  color: #fff6e7;
}

.concierge-gift-logo--sugarspice {
  background: linear-gradient(135deg, #7b3038, #a4565f);
}

.concierge-gift-body {
  min-width: 0;
}

.concierge-gift-code {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concierge-gift-body h3 {
  margin: 4px 0 0;
  font-size: 1rem;
}

.concierge-gift-body p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.concierge-order-note {
  margin: 14px 0 2px;
  color: var(--accent-deep);
  font-size: 0.86rem;
}

.section-heading--hero {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.section-heading--hero h2 {
  color: #fff7ef;
}

.section-heading.section-heading--collapse-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.section-heading.section-heading--collapse-row > :first-child {
  min-width: 0;
}

.section-heading.section-heading--collapse-row .panel-collapse-toggle {
  flex: 0 0 auto;
  width: 34px;
}

.panel-collapse-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(145, 112, 67, 0.2);
  background: rgba(255, 255, 255, 0.84);
  color: var(--accent-deep);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.panel-collapse-toggle--hero {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: #fff7ef;
}

.panel-collapse-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(145, 112, 67, 0.34);
}

.panel-collapse-toggle--hero:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
}

.panel-collapse-toggle.is-collapsed {
  background: rgba(176, 139, 86, 0.16);
}

.panel-collapse-body[hidden] {
  display: none !important;
}

.concierge-block-title {
  margin: 0;
  font-family: var(--font-title-current);
  font-size: 1.45rem;
}

.panel--picks {
  margin-top: 22px;
  padding: 24px;
  border: 2px solid rgba(176, 139, 86, 0.34);
  box-shadow:
    0 22px 55px rgba(46, 29, 12, 0.12),
    inset 0 0 0 1px rgba(255, 245, 231, 0.55);
}

.picks-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.hero--bottom {
  margin-top: 22px;
  padding: 18px;
}

.hero__card--bottom {
  max-width: 860px;
  margin: 0 auto;
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 247, 235, 0.72);
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__signature {
  margin: 0;
  font-size: 0.86rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
  margin-top: 22px;
  align-items: stretch;
}

.hero__main {
  padding: 18px 8px 8px;
}

.hero__kicker {
  margin: 0;
  color: rgba(255, 240, 222, 0.76);
  font-size: 0.95rem;
}

.hero h1,
.section-heading h2,
.spotlight__intro h3,
.hero__card h2 {
  margin: 0;
  font-family: var(--font-title-current);
  font-weight: 700;
}

.hero h1 {
  margin-top: 8px;
  color: #fff7ef;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
}

.hero__intro {
  max-width: 54rem;
  margin: 18px 0 0;
  color: rgba(255, 244, 232, 0.86);
  font-size: 1.03rem;
  line-height: 1.9;
}

.hero__card {
  align-self: end;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  color: #fff8f0;
}

.hero__card-label {
  margin: 0;
  color: rgba(255, 241, 224, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__card h2 {
  margin-top: 10px;
  font-size: 2rem;
}

html[lang="en"] .hero h1,
html[lang="en"] .section-heading h2,
html[lang="en"] .spotlight__intro h3,
html[lang="en"] .hero__card h2 {
  letter-spacing: -0.01em;
  font-weight: 600;
}

html[lang="zh-Hant"] .hero h1,
html[lang="ja"] .hero h1 {
  letter-spacing: 0.015em;
}

html[lang="zh-Hant"] .eyebrow,
html[lang="zh-Hant"] .hero-quick-nav__label,
html[lang="ja"] .eyebrow,
html[lang="ja"] .hero-quick-nav__label {
  letter-spacing: 0.12em;
}

.hero__card > p:not(.hero__card-label) {
  margin: 4px 0 0;
  color: rgba(255, 243, 230, 0.75);
}

.hero__facts {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
}

.hero__facts div {
  display: grid;
  gap: 6px;
}

.hero__facts dt {
  color: rgba(255, 241, 224, 0.62);
  font-size: 0.8rem;
}

.hero__facts dd {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: #fffdf9;
  background: linear-gradient(135deg, #2f2417, #8d6f44);
  box-shadow: var(--shadow-soft);
}

.button,
.quick-filter,
.chip,
.text-button,
.open-favorites,
.back-to-top {
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.button:hover,
.open-favorites:hover,
.back-to-top:hover {
  transform: translateY(-1px);
}

.button--hero {
  width: 100%;
}

.button--secondary,
.button--ghost {
  color: var(--accent-deep);
  background: rgba(176, 139, 86, 0.14);
}

.button--slim {
  min-height: 40px;
  font-size: 0.9rem;
}

.experience {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
  margin-top: 22px;
  align-items: start;
}

.rail {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 18px;
}

.panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(252, 247, 240, 0.82));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel--filters,
.panel--summary,
.spotlight,
.collection {
  padding: 24px;
}

.section-heading {
  display: grid;
  gap: 6px;
}

.section-heading h2 {
  font-size: 2rem;
}

.search-field {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.search-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(117, 89, 58, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
}

.search-field input:focus {
  outline: 2px solid rgba(176, 139, 86, 0.18);
  border-color: rgba(176, 139, 86, 0.4);
}

.toggle-row,
.filter-block__head,
.collection__header,
.spotlight__header,
.spotlight__title-row,
.spotlight__actions,
.filter-actions,
.place-card__top,
.place-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.toggle-row {
  margin-top: 16px;
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent-deep);
  font: inherit;
  cursor: pointer;
}

.filter-block {
  margin-top: 20px;
}

.quick-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(141, 111, 68, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.quick-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(141, 111, 68, 0.32);
}

.quick-filter.is-active {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, #2f2417, #8d6f44);
}

.filter-actions {
  align-items: center;
  margin-top: 18px;
}

.filter-actions .button {
  flex: 0 0 auto;
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.filter-pending {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.7;
}

.filter-block__head {
  margin-bottom: 10px;
}

.filter-block__head h3 {
  margin: 0;
  font-size: 1rem;
}

.filter-block__head span,
.collection__hint,
.spotlight__note,
.status-text {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.panel--favorites {
  padding: 24px;
}

.panel--favorites-bottom {
  margin-top: 22px;
}

.favorites-inline-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.favorites-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.favorites-empty {
  padding: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(145, 112, 67, 0.22);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.favorite-item {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(145, 112, 67, 0.14);
  background: rgba(255, 255, 255, 0.8);
}

.favorite-item__body h3 {
  margin: 0;
  font-size: 0.96rem;
}

.favorite-item__body p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.favorite-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.favorite-item__actions .button {
  flex: 1 1 calc(50% - 8px);
  min-width: 90px;
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid rgba(141, 111, 68, 0.16);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-soft);
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(141, 111, 68, 0.32);
}

.chip.is-active {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #d7b889);
}

.summary-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.summary-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(117, 89, 58, 0.1);
  background: var(--surface-strong);
}

.summary-card span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.summary-card strong {
  max-width: 8rem;
  text-align: right;
  font-size: 1rem;
}

.status-text {
  margin: 16px 0 0;
  line-height: 1.8;
}

.spotlight__content {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.spotlight__intro {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(248, 242, 232, 0.9));
  border: 1px solid rgba(145, 112, 67, 0.14);
}

.spotlight__kicker {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.spotlight__intro h3 {
  font-size: 2rem;
  line-height: 1;
}

.spotlight__secondary,
.spotlight__meta,
.spotlight__notes {
  margin: 0;
  color: var(--ink-soft);
}

.spotlight__secondary {
  margin-top: 4px;
  font-size: 0.96rem;
}

.spotlight__badges,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.pill,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
}

.tag,
.badge {
  color: var(--accent-deep);
  background: var(--accent-soft);
}

.pill {
  color: white;
  background: linear-gradient(135deg, #2f2417, #8d6f44);
}

.spotlight__meta {
  font-size: 0.92rem;
  line-height: 1.7;
}

.spotlight__notes {
  min-height: 5.4rem;
  padding-top: 4px;
  line-height: 1.9;
}

.spotlight__actions {
  align-items: stretch;
  margin-top: 2px;
}

.spotlight__actions .button {
  flex: 1;
}

.map-frame-shell {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #e8dfd0, #f4ece0);
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 12px;
}

.map-frame {
  display: block;
  width: 100%;
  height: 740px;
  border: 0;
  border-radius: 22px;
  background: #ddd4c8;
}

.collection__hint {
  margin: 0;
}

.card-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  max-height: 820px;
  overflow: auto;
  padding-right: 6px;
}

.pick-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  border-width: 2px;
  border-color: rgba(176, 139, 86, 0.38);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.99), rgba(248, 239, 226, 0.96));
  box-shadow: 0 16px 34px rgba(176, 139, 86, 0.14);
}

.pick-card__title {
  margin: 0;
  font-size: 1.05rem;
}

.pick-card__meta,
.pick-card__note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pick-card__actions {
  display: flex;
  margin-top: 2px;
}

.pick-card__actions .button {
  width: 100%;
}

.place-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(145, 112, 67, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 233, 0.96));
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.place-card:hover {
  transform: translateY(-1px);
  border-color: rgba(145, 112, 67, 0.26);
  box-shadow: var(--shadow-soft);
}

.place-card.is-selected {
  border-color: rgba(176, 139, 86, 0.42);
  box-shadow: 0 18px 40px rgba(176, 139, 86, 0.12);
}

.place-card__title {
  margin: 0;
  font-size: 1.08rem;
}

.place-card__secondary {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.place-card__meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.place-card__actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.place-card__actions .button {
  flex: 1 1 calc(33.333% - 8px);
  min-width: 110px;
}

.pick-card .place-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  align-items: stretch;
}

.pick-card .place-card__actions .button {
  width: 100%;
  min-width: 0;
  flex: 0 1 auto;
}

.empty-state {
  padding: 28px;
  border-radius: 26px;
  border: 1px dashed rgba(145, 112, 67, 0.24);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-soft);
  line-height: 1.8;
}

.spotlight--bottom {
  margin-top: 22px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-pill);
  color: #fffaf3;
  background: linear-gradient(135deg, rgba(47, 36, 23, 0.96), rgba(141, 111, 68, 0.94));
  box-shadow: 0 18px 40px rgba(46, 29, 12, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  backdrop-filter: blur(14px);
}

.open-favorites {
  position: fixed;
  right: 92px;
  bottom: 22px;
  z-index: 41;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-pill);
  color: #fffaf3;
  background: linear-gradient(135deg, rgba(47, 36, 23, 0.96), rgba(141, 111, 68, 0.94));
  box-shadow: 0 18px 40px rgba(46, 29, 12, 0.2);
  cursor: pointer;
  backdrop-filter: blur(14px);
  white-space: nowrap;
}

.open-favorites.is-active {
  color: var(--accent-deep);
  border-color: rgba(145, 112, 67, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 235, 220, 0.9));
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:focus-visible,
.open-favorites:focus-visible,
.button:focus-visible,
.panel-collapse-toggle:focus-visible,
.quick-filter:focus-visible,
.chip:focus-visible,
.text-button:focus-visible,
.search-field input:focus-visible {
  outline: 2px solid rgba(176, 139, 86, 0.5);
  outline-offset: 3px;
}

@media (max-width: 1380px) {
  .experience {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .card-list {
    max-height: none;
  }
}

@media (max-width: 1280px) {
  .hero--title-only {
    padding: 28px 22px;
    text-align: left;
  }

  .hero__title-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero__bottom-row {
    margin-top: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__controls {
    display: grid;
    grid-template-columns: auto;
    align-items: start;
    gap: 10px;
    justify-content: end;
  }

  .lang-switch {
    justify-self: end;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 8.2vw, 4.2rem);
    line-height: 0.97;
  }

  .hero-quick-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    width: 100%;
  }

  .hero-jump {
    width: 100%;
    white-space: nowrap;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.83rem;
  }

  .hero__footer-controls {
    justify-content: center;
  }

  .hero__footer-controls .lang-select {
    width: 100%;
    max-width: 280px;
  }

  .hero-home-entry {
    width: 100%;
    max-width: none;
    min-width: 0;
    flex: 1 1 auto;
  }

  .hero-jump--helper {
    width: 100%;
    justify-content: center;
  }

  .picks-list {
    grid-template-columns: 1fr;
  }

  .pick-card .place-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pick-card .place-card__actions .button {
    width: 100%;
    min-width: 0;
    flex-basis: 100%;
  }

  .intro-row {
    display: block;
  }
}

@media (max-width: 1120px) {
  .picks-list {
    grid-template-columns: 1fr;
  }

  .experience,
  .spotlight__content {
    grid-template-columns: 1fr;
  }

  .rail {
    position: static;
  }

  .map-frame {
    height: 520px;
  }

  .spotlight {
    order: 1;
  }

  .rail {
    order: 2;
  }

  .collection {
    order: 3;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    margin: 10px auto 96px;
  }

  .hero,
  .panel--concierge,
  .panel--concierge-gifts,
  .guest-note,
  .panel--filters,
  .panel--summary,
  .panel--picks,
  .panel--favorites,
  .spotlight,
  .collection {
    padding: 18px;
  }

  .hero {
    border-radius: 28px;
  }

  .hero--title-only {
    padding: 24px 18px;
  }

  .hero__title-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__title-stack {
    justify-items: start;
  }

  .hero__controls {
    display: grid;
    grid-template-columns: auto;
    align-items: stretch;
    justify-content: end;
  }

  .hero-quick-nav {
    grid-area: nav;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
  }

  .hero__bottom-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    grid-template-areas:
      "nav weather"
      "helper lang";
    padding: 0;
    border: 0;
    border-top: 0;
    border-radius: 0;
    background: transparent;
    gap: 10px;
  }

  .hero-quick-nav__label {
    width: auto;
  }

  .lang-switch {
    width: 100%;
    justify-content: space-between;
    justify-self: stretch;
  }

  .hero__footer-controls {
    grid-area: lang;
    margin-top: 0;
    justify-content: flex-end;
    align-self: center;
  }

  .hero-home-entry {
    grid-area: helper;
    width: 100%;
    max-width: none;
    min-width: 0;
    flex: none;
  }

  .hero-jump--helper {
    width: 100%;
    justify-content: center;
  }

  .hero-home-hint {
    font-size: 0.78rem;
  }

  .hero__footer-controls .lang-select {
    width: auto;
    min-width: 148px;
  }

  .hero__bottom-row .weather-widget {
    grid-area: weather;
    min-width: 0;
    min-height: 100%;
    padding: 10px 12px;
  }

  .lang-select {
    min-width: 118px;
  }

  .hero::after {
    inset: 12px;
    border-radius: 22px;
  }

  .hero__main {
    padding: 6px 0 0;
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 0.98;
  }

  .hero__eyebrow-row,
  .toggle-row,
  .collection__header,
  .spotlight__title-row,
  .spotlight__actions,
  .place-card__top,
  .place-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .spotlight__header.section-heading--collapse-row {
    flex-direction: row;
    align-items: center;
  }

  .spotlight__header.section-heading--collapse-row .section-heading {
    flex: 1 1 auto;
    min-width: 0;
  }

  .hero__eyebrow-row {
    align-items: flex-start;
  }

  .hero__card {
    padding: 18px;
    border-radius: 24px;
  }

  .hero--bottom {
    margin-top: 18px;
    padding: 14px;
  }

  .guest-note {
    margin-top: 0;
    padding: 14px 16px;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .intro-row {
    margin-top: 12px;
    display: block;
  }

  .weather-widget--panel {
    min-height: 0;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .hero__intro {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .filter-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-actions .button {
    width: 100%;
  }

  .quick-filter-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concierge-toggle-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concierge-toggle {
    width: 100%;
    min-width: 0;
    min-height: 46px;
  }

  .concierge-gift-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .concierge-gift-logo {
    min-height: 60px;
  }

  .concierge-order-note {
    text-align: center;
  }

  .quick-filter {
    width: 100%;
    min-height: 46px;
  }

  .chip-wrap {
    gap: 8px;
  }

  .chip {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }

  .section-heading h2,
  .spotlight__intro h3 {
    font-size: 1.7rem;
  }

  .spotlight__content {
    gap: 14px;
  }

  .spotlight__intro {
    padding: 16px;
    border-radius: 22px;
  }

  .spotlight__notes {
    min-height: 0;
  }

  .map-frame {
    height: 360px;
  }

  .picks-list {
    grid-template-columns: 1fr;
  }

  .card-list {
    gap: 12px;
    padding-right: 0;
  }

  .place-card {
    padding: 16px;
    border-radius: 20px;
  }

  .place-card__actions .button {
    width: 100%;
    min-width: 0;
    flex-basis: 100%;
  }

  .favorite-item__actions .button {
    min-width: 0;
    flex-basis: 100%;
  }

  .back-to-top {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    min-width: 52px;
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .open-favorites {
    right: 86px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    min-width: 108px;
    min-height: 52px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .version-tag--global {
    left: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .hero,
  .panel--concierge,
  .panel--concierge-gifts,
  .guest-note,
  .panel--filters,
  .panel--summary,
  .panel--picks,
  .panel--favorites,
  .spotlight,
  .collection {
    padding: 16px;
  }

  .hero--title-only {
    padding: 20px 16px;
  }

  .lang-button {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-quick-nav__label {
    display: none;
  }

  .hero-quick-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-jump {
    min-height: 34px;
    font-size: 0.8rem;
    padding: 0 11px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-heading h2,
  .spotlight__intro h3 {
    font-size: 1.55rem;
  }

  .quick-filter-strip {
    grid-template-columns: 1fr;
  }

  .concierge-toggle-row {
    grid-template-columns: 1fr;
  }

  .chip {
    flex-basis: 100%;
  }

  .map-frame {
    height: 300px;
  }
}

/* V1 visual skin 2026-05-15: keep all existing DOM and JS hooks intact. */
:root {
  --bg: #fff8f4;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #1e1b18;
  --ink-soft: #625c55;
  --line: rgba(0, 24, 46, 0.12);
  --line-strong: rgba(149, 102, 82, 0.28);
  --accent: #956652;
  --accent-deep: #00182e;
  --accent-soft: rgba(149, 102, 82, 0.12);
  --shadow: 0 24px 60px rgba(0, 24, 46, 0.12);
  --shadow-soft: 0 12px 30px rgba(0, 24, 46, 0.08);
  --radius-xl: 10px;
  --radius-lg: 8px;
  --radius-pill: 999px;
  --font-ui-en: "Manrope", "Noto Sans TC", sans-serif;
  --font-title-en: "Cormorant Garamond", "Noto Serif TC", serif;
}

body {
  background:
    linear-gradient(180deg, #fff8f4 0%, #f6efe8 42%, #fff8f4 100%);
}

body::before {
  background:
    linear-gradient(90deg, rgba(0, 24, 46, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(0, 24, 46, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.32;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 72%);
}

.ambient {
  display: none;
}

.page-shell {
  margin-top: 18px;
}

.hero,
.hero--bottom {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(0, 24, 46, 0.98), rgba(18, 58, 91, 0.92)),
    #00182e;
  box-shadow: var(--shadow);
}

.hero::after {
  inset: 18px;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.hero--title-only {
  min-height: 220px;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(26px, 4vw, 54px);
}

.hero__title-stack {
  max-width: 940px;
}

.hero--title-only h1,
.hero h1,
.hero__card h2,
.section-heading h2,
.spotlight__intro h3 {
  letter-spacing: 0;
}

.hero--title-only h1,
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.95;
  color: #ffffff;
  text-wrap: balance;
}

.hero__bottom-row {
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.hero-jump,
.lang-select,
.weather-widget,
.hero-home-hint {
  border-radius: 8px;
}

.hero-jump {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.hero-jump:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.lang-select {
  border-color: rgba(255, 255, 255, 0.24);
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.lang-select option {
  color: var(--ink);
}

.weather-widget {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.weather-widget__title,
.weather-widget__rain,
.hero__card-label,
.eyebrow,
.spotlight__kicker {
  color: #cda98e;
  letter-spacing: 0.12em;
}

.weather-widget__summary {
  color: #ffffff;
}

.panel,
.panel--concierge,
.panel--concierge-gifts,
.panel--filters,
.panel--summary,
.panel--picks,
.panel--favorites,
.spotlight,
.collection {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: none;
}

.panel--concierge,
.panel--concierge-gifts,
.panel--filters,
.panel--summary,
.panel--picks,
.panel--favorites,
.spotlight,
.collection {
  padding: clamp(22px, 3vw, 36px);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.concierge-block-title {
  color: var(--accent-deep);
}

.section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.04;
}

.concierge-subtitle,
.filters-note,
.collection__hint,
.spotlight__note,
.status-text,
.place-card__secondary,
.place-card__meta,
.pick-card__meta,
.pick-card__note {
  color: var(--ink-soft);
}

.concierge-block {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.concierge-first-list,
.picks-list,
.card-list {
  gap: 14px;
}

.place-card,
.pick-card,
.concierge-first-card,
.favorite-item,
.summary-card,
.hero__card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: none;
}

.place-card,
.pick-card,
.concierge-first-card {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.place-card:hover,
.pick-card:hover,
.concierge-first-card:hover,
.place-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(0, 24, 46, 0.1);
  transform: translateY(-1px);
}

.place-card__title,
.pick-card__title,
.concierge-gift-body h3,
.favorite-item__body h3 {
  color: var(--ink);
}

.button,
.quick-filter,
.chip,
.text-button,
.open-favorites,
.back-to-top,
.panel-collapse-toggle {
  border-radius: 8px;
  font-weight: 700;
}

.button,
.quick-filter.is-active,
.chip.is-active,
.open-favorites {
  border-color: var(--accent-deep);
  background: var(--accent-deep);
  color: #ffffff;
}

.button:hover,
.quick-filter:hover,
.chip:hover,
.open-favorites:hover,
.back-to-top:hover {
  transform: translateY(-1px);
}

.button--secondary,
.button--ghost,
.text-button,
.quick-filter,
.chip,
.back-to-top,
.panel-collapse-toggle {
  border-color: var(--line);
  background: #ffffff;
  color: var(--accent-deep);
}

.button--hero {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--accent-deep);
}

.button--slim {
  min-height: 42px;
}

.panel-collapse-toggle {
  min-width: 42px;
  color: var(--accent-deep);
}

.panel-collapse-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.panel-collapse-toggle--hero {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.search-field input {
  min-height: 48px;
  border-color: var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.search-field input:focus,
.lang-select:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(149, 102, 82, 0.16);
}

.quick-filter-strip,
.chip-wrap {
  gap: 8px;
}

.tag,
.pill,
.badge {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.spotlight__content {
  gap: 22px;
}

.spotlight__intro {
  border-color: var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.spotlight__intro h3 {
  color: var(--accent-deep);
}

.map-frame-shell {
  border-color: var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.map-frame {
  border-radius: 6px;
}

.hero__card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  backdrop-filter: none;
}

.hero__card > p:not(.hero__card-label),
.hero__facts dd,
.hero__facts dt {
  color: rgba(255, 255, 255, 0.82);
}

.hero__facts div {
  border-color: rgba(255, 255, 255, 0.16);
}

.hero__facts dd {
  color: #ffffff;
}

.open-favorites,
.back-to-top {
  box-shadow: 0 12px 30px rgba(0, 24, 46, 0.16);
}

.back-to-top {
  color: var(--accent-deep);
}

@media (max-width: 760px) {
  .hero--title-only {
    min-height: auto;
    padding: 24px 18px;
  }

  .hero--title-only h1,
  .hero h1 {
    font-size: clamp(2.2rem, 13vw, 4rem);
  }

  .hero__bottom-row {
    border-top: 0;
    padding-top: 0;
  }

  .panel--concierge,
  .panel--concierge-gifts,
  .panel--filters,
  .panel--summary,
  .panel--picks,
  .panel--favorites,
  .spotlight,
  .collection {
    padding: 18px;
  }

  .place-card__actions,
  .pick-card__actions,
  .concierge-first-card__actions {
    grid-template-columns: 1fr;
  }

  .install-strip {
    left: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    max-width: calc(100vw - 20px);
  }

  .install-button {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.72rem;
  }

  .install-strip .version-tag--global {
    min-height: 34px;
    font-size: 0.7rem;
  }
}
