:root {
  --blue-950: #03275f;
  --blue-900: #073e98;
  --blue-800: #0b4db8;
  --blue-700: #1265d7;
  --blue-600: #2a73dc;
  --blue-100: #e9f2ff;
  --blue-050: #f5f8fd;
  --ink: #111827;
  --muted: #667085;
  --line: #e4eaf2;
  --surface: #ffffff;
  --bg: #f5f7fb;
  --shadow-sm: 0 7px 22px rgba(28, 55, 94, .07);
  --shadow: 0 20px 55px rgba(20, 47, 86, .11);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 15px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, a { font: inherit; }
button { color: inherit; }
button:focus-visible, a:focus-visible { outline: 3px solid rgba(18, 101, 215, .3); outline-offset: 3px; }
.skip-link { position: fixed; left: 12px; top: -70px; z-index: 1000; padding: 10px 14px; background: #fff; border-radius: 10px; color: var(--blue-900); box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(225, 232, 242, .9);
  backdrop-filter: blur(18px);
}
.header-inner {
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}
.brand { justify-self: start; display: inline-flex; align-items: center; min-width: 0; color: inherit; text-decoration: none; }
.brand-program { min-width: 0; display: grid; gap: 2px; line-height: 1.12; }
.brand-program b { color: var(--blue-900); font-size: 23px; letter-spacing: .018em; font-weight: 900; }
.brand-program small { color: #475467; font-size: 10px; font-weight: 720; white-space: nowrap; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 2px; margin-left: 0; }
.desktop-nav a, .desktop-nav button { border: 0; background: transparent; text-decoration: none; color: #475467; padding: 10px 11px; border-radius: 11px; font-size: 14px; font-weight: 750; cursor: pointer; white-space: nowrap; }
.desktop-nav a:hover, .desktop-nav button:hover { background: var(--blue-050); color: var(--blue-900); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.language-switcher { display: flex; align-items: center; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 3px 10px rgba(28,55,94,.04); }
.language-option { display: flex; align-items: center; gap: 6px; height: 34px; padding: 0 9px; border: 0; border-radius: 10px; background: transparent; color: #667085; font-size: 11px; font-weight: 800; white-space: nowrap; cursor: pointer; }
.language-option img { width: 23px; height: 16px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(16,24,40,.08); }
.language-option em { display: none; font-style: normal; }
.language-option.active { color: var(--blue-900); background: var(--blue-100); }
.menu-button { display: none; width: 42px; height: 42px; border: 0; border-radius: 12px; background: transparent; cursor: pointer; }
.menu-button:hover { background: var(--blue-050); }
.menu-button span { display: block; width: 24px; height: 2px; background: #1d2939; margin: 5px auto; border-radius: 3px; }

.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #0a4195;
}
.hero-image { position: absolute; inset: 0; background: url("assets/hero-city-v21.jpg") 38% 45% / cover no-repeat; transform: scale(1.01); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,39,95,.96) 0%, rgba(4,53,124,.83) 30%, rgba(3,47,111,.36) 57%, rgba(2,21,53,.08) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1180px; height: 100%; margin: 0 auto; padding: 65px 28px; display: flex; flex-direction: column; justify-content: center; color: #fff; }
.eyebrow { margin: 0 0 12px; font-size: 12px; letter-spacing: .16em; font-weight: 800; opacity: .78; }
.hero h1 { margin: 0; font-size: clamp(58px, 6.6vw, 88px); line-height: .92; letter-spacing: -.055em; font-weight: 850; }
.hero-subtitle { max-width: 520px; margin: 23px 0 0; font-size: clamp(23px, 2.6vw, 34px); line-height: 1.25; font-weight: 720; letter-spacing: -.035em; }
.hero-caption { margin: 20px 0 0; padding-left: 17px; border-left: 3px solid rgba(255,255,255,.9); font-size: 17px; font-weight: 650; }
.hero-meta { display: flex; gap: 10px; margin-top: 26px; font-size: 13px; font-weight: 700; }
.hero-meta span { padding: 9px 13px; white-space: nowrap; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(2,30,77,.24); backdrop-filter: blur(8px); }

.schedule-shell {
  position: relative;
  z-index: 10;
  max-width: 1120px;
  margin: -38px auto 0;
  padding: 0 32px 30px;
  border: 1px solid rgba(224, 232, 242, .96);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.985);
  box-shadow: var(--shadow);
}
.schedule-topline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 -32px 28px;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: #fbfcfe;
}
.program-period, .program-route { min-width: 0; display: flex; align-items: center; gap: 13px; }
.program-route { padding-left: 28px; border-left: 1px solid var(--line); }
.summary-icon { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue-800); border-radius: 12px; background: var(--blue-100); }
.program-period div, .program-route div { min-width: 0; display: grid; gap: 4px; }
.program-period small, .program-route small { color: var(--muted); font-size: 11px; font-weight: 750; }
.program-period strong, .program-route strong { overflow: hidden; font-size: 14px; white-space: nowrap; text-overflow: ellipsis; }
.section-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 17px; }
.section-kicker { margin: 0 0 4px; font-size: 10px; letter-spacing: .14em; color: var(--blue-700); font-weight: 850; }
.section-heading h2 { margin: 0; font-size: 27px; letter-spacing: -.035em; }
.text-button { border: 0; background: transparent; color: var(--blue-800); font-size: 14px; font-weight: 800; padding: 9px 3px; cursor: pointer; }
.text-button:hover { color: var(--blue-600); }
.text-button span { font-size: 22px; vertical-align: -2px; }

.schedule-list { display: grid; gap: 9px; }
.schedule-row {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto 42px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: left;
  padding: 0;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.schedule-row:hover { transform: translateY(-1px); border-color: #bed0e8; background: #fcfdff; box-shadow: var(--shadow-sm); }
.day-block { display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr 1fr; align-content: center; column-gap: 9px; padding: 18px 20px; color: var(--blue-900); background: var(--blue-050); border-right: 1px solid var(--line); }
.day-block small { grid-row: 1 / span 2; align-self: center; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: #fff; background: linear-gradient(145deg, var(--blue-900), var(--blue-700)); font-size: 9px; font-weight: 850; letter-spacing: .04em; }
.day-block strong { align-self: end; font-size: 20px; line-height: 1.05; white-space: nowrap; font-variant-numeric: tabular-nums; }
.day-block em { align-self: start; color: #667085; font-size: 11px; font-style: normal; font-weight: 750; }
.schedule-main { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 15px 20px; }
.schedule-main h3 { margin: 0 0 5px; font-size: 18px; letter-spacing: -.025em; }
.schedule-main p { overflow: hidden; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; white-space: nowrap; text-overflow: ellipsis; }
.tag-list { align-self: center; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 6px; max-width: 270px; padding: 12px 10px; }
.tag { display: inline-flex; padding: 6px 9px; border-radius: 8px; background: var(--blue-050); color: var(--blue-900); font-size: 11px; line-height: 1; font-weight: 750; white-space: nowrap; }
.schedule-arrow { display: grid; place-items: center; color: #98a2b3; font-size: 25px; }

.desktop-support { max-width: 1120px; margin: 18px auto 84px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.support-card { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); background: #fff; border-radius: 17px; padding: 17px; text-align: left; cursor: pointer; box-shadow: 0 7px 22px rgba(28,55,94,.045); }
.support-card:hover { border-color: #bdcfe8; }
.support-icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue-800); background: var(--blue-050); }
.support-card span:last-child { min-width: 0; display: grid; gap: 2px; }
.support-card small { color: var(--blue-700); font-size: 9px; letter-spacing: .12em; font-weight: 900; }
.support-card strong { font-size: 16px; }
.support-card em { overflow: hidden; color: var(--muted); font-style: normal; font-size: 12px; white-space: nowrap; text-overflow: ellipsis; }

.bottom-nav { display: none; }
.side-menu { position: fixed; inset: 0; z-index: 80; pointer-events: none; opacity: 0; transition: opacity .2s ease; background: rgba(4,20,46,.38); }
.side-menu.open { pointer-events: auto; opacity: 1; }
.side-menu-panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(87vw, 370px); padding: 22px; background: #fff; transform: translateX(105%); transition: transform .25s ease; box-shadow: -24px 0 60px rgba(4,20,46,.16); }
.side-menu.open .side-menu-panel { transform: translateX(0); }
.side-menu-head { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.side-menu-head div { display: grid; gap: 2px; }
.side-menu-head b { color: var(--blue-900); font-size: 23px; }
.side-menu-head small { color: var(--muted); font-size: 10px; letter-spacing: .1em; }
.side-menu-head button { border: 0; background: #f2f5f9; width: 39px; height: 39px; border-radius: 11px; font-size: 27px; cursor: pointer; }
.side-menu-panel > a, .side-menu-panel > button { display: block; width: 100%; border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 17px 3px; color: #1d2939; text-decoration: none; text-align: left; font-weight: 800; cursor: pointer; }
.side-language { margin-top: 24px; }
.side-language > small { display: block; margin-bottom: 9px; color: var(--muted); font-size: 11px; font-weight: 800; }
.side-language-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.side-language-buttons button { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; border: 1px solid var(--line); border-radius: 11px; background: #fff; font-size: 12px; font-weight: 800; cursor: pointer; }
.side-language-buttons button.active { border-color: #9ab8df; color: var(--blue-900); background: var(--blue-050); }
.side-language-buttons img { width: 24px; height: 16px; border-radius: 2px; }
.menu-note { position: absolute; left: 22px; bottom: 30px; color: var(--muted); font-size: 12px; line-height: 1.6; }

.modal { position: fixed; inset: 0; z-index: 100; visibility: hidden; opacity: 0; transition: opacity .2s ease; }
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,20,48,.62); backdrop-filter: blur(5px); }
.modal-sheet {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1080px, calc(100% - 40px));
  height: min(860px, calc(100dvh - 40px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translate(-50%, -48%) scale(.985);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 34px 110px rgba(0,0,0,.3);
  transition: transform .22s ease;
}
.modal.open .modal-sheet { transform: translate(-50%, -50%) scale(1); }
.modal-header { flex: 0 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 24px 28px 19px; border-bottom: 1px solid var(--line); background: #fff; }
.modal-header p { margin: 0 0 5px; color: var(--blue-700); font-size: 11px; letter-spacing: .11em; font-weight: 850; }
.modal-header h2 { margin: 0; font-size: 28px; letter-spacing: -.03em; }
.modal-header button { flex: 0 0 auto; border: 0; background: #f1f4f8; width: 44px; height: 44px; border-radius: 13px; font-size: 30px; line-height: 1; cursor: pointer; }
.modal-body { flex: 1 1 auto; overflow: auto; padding: 26px 28px 30px; background: #f8fafc; }
.day-detail { min-height: 100%; display: grid; grid-template-rows: auto 1fr auto; gap: 20px; }
.day-overview { display: grid; grid-template-columns: 120px minmax(0, 1fr); overflow: hidden; border-radius: 20px; color: #fff; background: linear-gradient(120deg, var(--blue-950), var(--blue-700)); box-shadow: 0 16px 40px rgba(7,62,152,.18); }
.day-overview-date { display: grid; place-items: center; align-content: center; padding: 24px 16px; border-right: 1px solid rgba(255,255,255,.18); }
.day-overview-date small { font-size: 11px; letter-spacing: .1em; font-weight: 800; opacity: .8; }
.day-overview-date strong { margin-top: 4px; font-size: 34px; line-height: 1; }
.day-overview-date em { margin-top: 5px; font-size: 13px; font-style: normal; font-weight: 750; opacity: .8; }
.day-overview-copy { display: flex; flex-direction: column; justify-content: center; padding: 25px 28px; }
.day-overview-copy h3 { margin: 0 0 7px; font-size: 27px; letter-spacing: -.03em; }
.day-overview-copy p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.55; }
.detail-timeline { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.detail-timeline-title { margin: 0; padding: 17px 22px; border-bottom: 1px solid var(--line); font-size: 16px; }
.timeline { padding: 4px 22px 8px; }
.timeline-item { position: relative; display: grid; grid-template-columns: 76px 18px 1fr; gap: 13px; min-height: 78px; padding-top: 18px; }
.timeline-item:not(:last-child)::after { content: ""; position: absolute; left: 84px; top: 35px; bottom: -3px; width: 2px; background: #dce8f7; }
.timeline-time { color: var(--blue-800); font-size: 14px; font-weight: 850; padding-top: 1px; }
.timeline-dot { position: relative; z-index: 1; width: 13px; height: 13px; margin-top: 3px; border: 3px solid #fff; border-radius: 50%; background: var(--blue-700); box-shadow: 0 0 0 2px #aac4e6; }
.timeline-content { padding-bottom: 18px; }
.timeline-content strong { display: block; margin-bottom: 5px; font-size: 17px; }
.timeline-content span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.detail-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.detail-navigation button { min-height: 50px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--blue-900); font-weight: 800; cursor: pointer; }
.detail-navigation button:hover { border-color: #afc6e6; background: var(--blue-050); }
.detail-navigation button:disabled { visibility: hidden; }
.full-schedule-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.full-day-link { display: grid; grid-template-columns: 72px minmax(0, 1fr) 24px; align-items: center; min-height: 90px; border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 0; overflow: hidden; text-align: left; cursor: pointer; }
.full-day-link:hover { border-color: #b6cae5; box-shadow: var(--shadow-sm); }
.full-day-number { align-self: stretch; display: grid; place-items: center; align-content: center; gap: 3px; color: #fff; background: var(--blue-900); }
.full-day-number small { font-size: 9px; font-weight: 850; }
.full-day-number strong { font-size: 20px; }
.full-day-copy { min-width: 0; padding: 13px 16px; }
.full-day-copy strong { display: block; margin-bottom: 4px; font-size: 15px; }
.full-day-copy p { overflow: hidden; margin: 0; color: var(--muted); font-size: 12px; white-space: nowrap; text-overflow: ellipsis; }
.full-day-arrow { color: #98a2b3; font-size: 23px; }
.detail-summary { margin: 0 0 18px; color: var(--muted); line-height: 1.65; }
.info-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.info-card { padding: 19px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.info-card strong { display: block; margin-bottom: 6px; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }
.course-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.course-card { padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.course-card b { display: block; margin-bottom: 6px; color: var(--blue-900); }
.course-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.speaker-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; }
.speaker-card { display: grid; grid-template-columns: 46px 1fr; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.speaker-avatar { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-050); color: var(--blue-800); font-weight: 900; }
.speaker-card b { display: block; margin-bottom: 3px; }
.speaker-card small { color: var(--muted); line-height: 1.45; }

.icon-svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Vietnamese dates use dd/MM/yyyy. Give the full date a dedicated, non-overlapping column on desktop. */
html[lang="vi"] .schedule-row { grid-template-columns: 198px minmax(0, 1fr) auto 42px; }
html[lang="vi"] .day-block { padding-left: 16px; padding-right: 16px; }
html[lang="vi"] .day-block strong { min-width: 0; font-size: 18px; letter-spacing: -.025em; white-space: nowrap; }
html[lang="vi"] .day-overview { grid-template-columns: 188px minmax(0, 1fr); }
html[lang="vi"] .day-overview-date strong { font-size: 24px; letter-spacing: -.025em; white-space: nowrap; }
html[lang="vi"] .full-day-link { grid-template-columns: 112px minmax(0, 1fr) 24px; }
html[lang="vi"] .full-day-number strong { font-size: 14px; letter-spacing: -.02em; white-space: nowrap; }

@media (max-width: 1180px) {
  .header-inner { display: flex; }
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .menu-button { display: block; }
}

@media (max-width: 760px) {
  body { padding-bottom: calc(76px + var(--safe-bottom)); }
  .site-header { height: 67px; }
  .header-inner { display: flex; padding: 0 15px; gap: 8px; }
  .brand { flex: 0 1 auto; }
  .brand-program b { font-size: 16px; }
  .brand-program small { display: none; }
  .header-actions { gap: 4px; margin-left: auto; }
  .language-switcher { flex: 0 0 auto; gap: 1px; padding: 3px; border-radius: 12px; }
  .language-option { width: auto; height: 31px; justify-content: center; gap: 4px; padding: 0 6px; font-size: 9.5px; line-height: 1; }
  .language-option img { width: 20px; height: 14px; }
  .language-option span { display: inline; white-space: nowrap; }
  .language-option em { display: none; }
  .menu-button { width: 34px; height: 38px; }
  .menu-button span { width: 22px; }

  .hero { height: 350px; border-radius: 0 0 22px 22px; }
  .hero-image { background-position: 65% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,39,95,.95) 0%, rgba(4,53,124,.72) 47%, rgba(2,21,53,.12) 88%); }
  .hero-content { padding: 46px 25px 66px; justify-content: center; }
  .eyebrow { margin-bottom: 10px; font-size: 9px; }
  .hero h1 { font-size: clamp(50px, 16vw, 68px); }
  .hero-subtitle { max-width: 310px; margin-top: 18px; font-size: 21px; line-height: 1.35; }
  .hero-caption { margin-top: 15px; padding-left: 12px; font-size: 14px; }
  .hero-meta { display: none; }

  .schedule-shell { width: calc(100% - 18px); margin-top: -24px; padding: 0 10px 14px; border-radius: 20px; }
  .schedule-topline { grid-template-columns: 1fr 1fr; margin: 0 -10px 19px; padding: 14px 12px; border-radius: 20px 20px 0 0; }
  .program-period, .program-route { gap: 7px; }
  .program-route { padding-left: 9px; }
  .summary-icon { width: 31px; height: 31px; border-radius: 9px; }
  .summary-icon .icon-svg { width: 19px; height: 19px; }
  .program-period small, .program-route small { font-size: 9px; }
  .program-period strong, .program-route strong { font-size: 10.5px; }
  .section-heading { margin: 0 5px 13px; }
  .section-kicker { display: none; }
  .section-heading h2 { font-size: 23px; }
  .text-button { font-size: 12px; }
  .schedule-list { gap: 7px; }
  .schedule-row { grid-template-columns: 77px minmax(0, 1fr) 29px; min-height: 85px; border-radius: 13px; }
  .day-block { display: grid; grid-template-columns: 1fr; grid-template-rows: auto auto auto; place-items: center; align-content: center; gap: 2px; padding: 10px 5px; }
  .day-block small { grid-row: auto; width: auto; height: auto; padding: 4px 7px; border-radius: 7px; font-size: 8px; background: var(--blue-900); }
  .day-block strong { align-self: auto; font-size: 19px; }
  .day-block em { align-self: auto; font-size: 10px; }
  .schedule-main { padding: 12px 11px; }
  .schedule-main h3 { margin-bottom: 4px; font-size: 16px; }
  .schedule-main p { font-size: 11.5px; }
  .tag-list { display: none; }
  .schedule-arrow { font-size: 21px; }
  .desktop-support { display: none; }

  .bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: calc(70px + var(--safe-bottom));
    padding: 6px 5px var(--safe-bottom);
    border-top: 1px solid #e0e6ef;
    background: rgba(255,255,255,.97);
    box-shadow: 0 -9px 25px rgba(12,44,92,.07);
    backdrop-filter: blur(18px);
  }
  .bottom-nav a, .bottom-nav button { min-width: 0; border: 0; background: transparent; color: #7b8491; display: grid; place-items: center; align-content: center; gap: 3px; text-decoration: none; cursor: pointer; }
  .bottom-nav .active { color: var(--blue-800); }
  .bottom-nav span { display: grid; place-items: center; height: 27px; }
  .bottom-nav .icon-svg { width: 22px; height: 22px; }
  .bottom-nav small { max-width: 66px; overflow: hidden; font-size: 10px; white-space: nowrap; text-overflow: ellipsis; }

  .modal-sheet { inset: 0; width: 100%; height: 100dvh; transform: translateY(100%); border-radius: 0; }
  .modal.open .modal-sheet { transform: translateY(0); }
  .modal-header { min-height: 72px; padding: 16px 17px 14px; }
  .modal-header p { font-size: 9px; }
  .modal-header h2 { font-size: 23px; }
  .modal-header button { width: 40px; height: 40px; border-radius: 12px; }
  .modal-body { padding: 16px 14px calc(24px + var(--safe-bottom)); }
  .day-detail { gap: 13px; }
  .day-overview { grid-template-columns: 83px minmax(0,1fr); border-radius: 16px; }
  .day-overview-date { padding: 18px 8px; }
  .day-overview-date small { font-size: 8px; }
  .day-overview-date strong { font-size: 25px; }
  .day-overview-date em { font-size: 11px; }
  .day-overview-copy { padding: 19px 16px; }
  .day-overview-copy h3 { font-size: 20px; }
  .day-overview-copy p { font-size: 12px; }
  .detail-timeline { border-radius: 16px; }
  .detail-timeline-title { padding: 14px 16px; font-size: 14px; }
  .timeline { padding: 1px 15px 7px; }
  .timeline-item { grid-template-columns: 57px 15px 1fr; gap: 8px; min-height: 70px; padding-top: 16px; }
  .timeline-item:not(:last-child)::after { left: 63px; top: 32px; }
  .timeline-time { font-size: 12px; }
  .timeline-dot { width: 11px; height: 11px; }
  .timeline-content strong { font-size: 15px; }
  .timeline-content span { font-size: 12px; }
  .detail-navigation button { min-height: 46px; font-size: 12px; }
  .full-schedule-grid, .info-list, .course-grid, .speaker-list { grid-template-columns: 1fr; }
  .full-day-link { min-height: 82px; grid-template-columns: 67px minmax(0,1fr) 22px; }
}


/* Mobile-first refinements: keep compact labels and dates on one line */
@media (max-width: 760px) {
  .brand-program { max-width: 105px; }
  .brand-program b { white-space: nowrap; }
  .language-switcher { max-width: calc(100vw - 174px); overflow: hidden; }
  .language-option { min-width: 0; white-space: nowrap; }
  .language-option span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .schedule-topline { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .program-period strong, .program-route strong { white-space: nowrap; }
  .schedule-main h3 { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .day-block strong { white-space: nowrap; font-variant-numeric: tabular-nums; }
  html[lang="vi"] .schedule-row { grid-template-columns: 94px minmax(0, 1fr) 25px; }
  html[lang="vi"] .day-block strong { font-size: 13px; letter-spacing: -.02em; }
  html[lang="vi"] .day-overview { grid-template-columns: 104px minmax(0, 1fr); }
  html[lang="vi"] .day-overview-date strong { font-size: 15px; white-space: nowrap; }
  html[lang="vi"] .full-day-link { grid-template-columns: 92px minmax(0,1fr) 20px; }
  html[lang="vi"] .full-day-number strong { font-size: 12px; white-space: nowrap; }
  .dining-day-head strong { white-space: nowrap; }
  .dining-card-body h3 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .dining-detail-row strong { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
}

@media (max-width: 390px) {
  .header-inner { padding-left: 11px; padding-right: 10px; }
  .brand-program b { font-size: 14px; }
  .language-option { padding: 0 4px; font-size: 8.2px; }
  .language-option img { width: 17px; height: 12px; }
  .hero { height: 330px; }
  .hero-content { padding-left: 21px; padding-right: 21px; }
  .hero h1 { font-size: 51px; }
  .hero-subtitle { font-size: 19px; }
  .schedule-row { grid-template-columns: 70px minmax(0,1fr) 25px; }
  html[lang="vi"] .schedule-row { grid-template-columns: 90px minmax(0,1fr) 23px; }
  .schedule-main { padding-left: 9px; padding-right: 7px; }
  .schedule-main h3 { font-size: 15px; }
  .program-route strong { max-width: 115px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* VOSP2026 field insight & stay sections */
.content-section {
  max-width: 1120px;
  margin: 18px auto 0;
  padding: 30px 32px 32px;
  border: 1px solid rgba(224, 232, 242, .96);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.985);
  box-shadow: 0 12px 38px rgba(20, 47, 86, .075);
  scroll-margin-top: 92px;
}
.content-section-heading { margin-bottom: 18px; }
.section-lead { margin: 6px 0 0; color: var(--muted); font-size: 13px; font-weight: 650; }
.visit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.visit-card,
.hotel-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  padding: 0;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 7px 22px rgba(28,55,94,.04);
  transition: transform .17s ease, box-shadow .17s ease, border-color .17s ease;
}
.visit-card:hover,
.hotel-card:hover { transform: translateY(-2px); border-color: #b9cde7; box-shadow: var(--shadow-sm); }
.experience-image-shell { position: relative; overflow: hidden; background: linear-gradient(135deg, #dce9fb, #f1f6fd); }
.experience-image-shell img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .28s ease; }
.visit-card:hover img,
.hotel-card:hover img { transform: scale(1.025); }
.image-fallback { display: none; position: absolute; inset: 0; place-items: center; padding: 20px; color: #667085; font-size: 12px; font-weight: 700; text-align: center; }
.experience-image-shell.image-missing .image-fallback { display: grid; }
.visit-card-image { height: 205px; }
.visit-card-body,
.hotel-card-body { display: flex; min-width: 0; flex-direction: column; padding: 17px 18px 18px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.card-meta em { display: inline-flex; align-items: center; min-height: 25px; padding: 0 9px; border-radius: 999px; background: var(--blue-100); color: var(--blue-900); font-size: 10px; font-style: normal; font-weight: 850; }
.card-meta small { color: #667085; font-size: 10px; font-weight: 800; }
.visit-card-body > strong,
.hotel-card-body > strong { font-size: 19px; line-height: 1.25; letter-spacing: -.025em; }
.card-summary { display: -webkit-box; overflow: hidden; margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.card-link { margin-top: 13px; color: var(--blue-800); font-size: 12px; font-weight: 850; }
.card-link b { font-size: 17px; vertical-align: -1px; }
.hotel-section { margin-top: 14px; }
.hotel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.hotel-card { display: grid; grid-template-columns: minmax(180px, 41%) minmax(0,1fr); min-height: 220px; }
.hotel-card-image { min-height: 220px; }
.hotel-card-body { justify-content: center; padding: 20px; }
.hotel-location { margin-top: 5px; color: var(--blue-800); font-size: 11px; font-weight: 800; }
.desktop-support { margin-top: 18px; }

.experience-detail { display: grid; gap: 15px; }
.experience-detail-image { height: min(36vh, 340px); min-height: 250px; border-radius: 19px; border: 1px solid var(--line); }
.experience-detail-summary { margin: 0; color: #344054; font-size: 17px; line-height: 1.65; font-weight: 650; }
.fact-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.fact-chips span { display: inline-flex; align-items: center; min-height: 32px; padding: 0 11px; border-radius: 10px; background: var(--blue-050); color: var(--blue-900); font-size: 12px; font-weight: 750; }
.experience-points { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.experience-points h3 { margin: 0; padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: 15px; }
.experience-points ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.experience-points li { position: relative; padding: 14px 18px 14px 43px; color: #475467; font-size: 14px; line-height: 1.55; }
.experience-points li + li { border-top: 1px solid #edf1f6; }
.experience-points li::before { content: ""; position: absolute; left: 19px; top: 20px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue-700); box-shadow: 0 0 0 4px var(--blue-100); }
.hotel-location-large { margin-top: -6px; color: var(--blue-800); font-size: 13px; font-weight: 800; }
.schedule-note { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; padding: 14px 16px; border-radius: 15px; background: var(--blue-050); }
.schedule-note b { color: var(--blue-900); font-size: 12px; white-space: nowrap; }
.schedule-note span { color: #475467; font-size: 12px; line-height: 1.5; }
.experience-source { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 3px 2px 0; }
.experience-source a { color: var(--blue-800); text-decoration: none; font-size: 12px; font-weight: 850; }
.experience-source a:hover { text-decoration: underline; }
.experience-source small { color: #98a2b3; font-size: 10px; text-align: right; }
.experience-source.credit-only { justify-content: flex-end; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
}

@media (max-width: 760px) {
  .content-section {
    width: calc(100% - 18px);
    margin-top: 11px;
    padding: 18px 13px 16px;
    border-radius: 20px;
    box-shadow: 0 8px 26px rgba(20,47,86,.065);
    scroll-margin-top: 76px;
  }
  .content-section-heading { margin: 0 5px 13px; }
  .content-section-heading h2 { font-size: 22px; }
  .section-lead { margin-top: 4px; font-size: 11px; }
  .visit-grid,
  .hotel-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin: 0 -13px;
    padding: 0 13px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .visit-grid::-webkit-scrollbar,
  .hotel-grid::-webkit-scrollbar { display: none; }
  .visit-card {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
    border-radius: 16px;
  }
  .visit-card-image { height: 172px; }
  .visit-card-body { padding: 14px 15px 15px; }
  .visit-card-body > strong,
  .hotel-card-body > strong { font-size: 17px; }
  .card-summary { font-size: 12px; -webkit-line-clamp: 2; }
  .card-link { margin-top: 10px; }
  .hotel-section { margin-top: 10px; }
  .hotel-card {
    display: block;
    flex: 0 0 min(86vw, 355px);
    min-height: 0;
    scroll-snap-align: start;
    border-radius: 16px;
  }
  .hotel-card-image { height: 175px; min-height: 0; }
  .hotel-card-body { padding: 14px 15px 15px; }
  .experience-detail { gap: 12px; }
  .experience-detail-image { height: 225px; min-height: 225px; border-radius: 16px; }
  .experience-detail-summary { font-size: 14px; line-height: 1.55; }
  .fact-chips { gap: 6px; }
  .fact-chips span { min-height: 29px; padding: 0 9px; font-size: 10px; }
  .experience-points { border-radius: 15px; }
  .experience-points h3 { padding: 13px 15px; font-size: 13px; }
  .experience-points li { padding: 12px 14px 12px 38px; font-size: 12px; }
  .experience-points li::before { left: 16px; top: 18px; width: 7px; height: 7px; }
  .schedule-note { grid-template-columns: 1fr; gap: 5px; padding: 12px 13px; }
  .experience-source { align-items: flex-start; flex-direction: column; gap: 6px; }
  .experience-source small { text-align: left; }
}


/* Dining guide */
.dining-summary { max-width: 760px; margin-bottom: 18px; }
.dining-days { display: grid; gap: 16px; }
.dining-day { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.dining-day-head { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--blue-050); }
.dining-day-head span { display: inline-flex; align-items: center; min-height: 24px; padding: 0 9px; border-radius: 999px; background: var(--blue-900); color: #fff; font-size: 10px; font-weight: 850; letter-spacing: .04em; }
.dining-day-head strong { color: #344054; font-size: 13px; }
.dining-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dining-card { display: grid; grid-template-columns: 145px minmax(0, 1fr); min-height: 156px; background: #fff; }
.dining-card + .dining-card { border-left: 1px solid var(--line); }
.dining-image-shell { position: relative; overflow: hidden; min-height: 156px; background: #eaf1fb; }
.dining-image-shell img { width: 100%; height: 100%; min-height: 156px; display: block; object-fit: cover; }
.dining-image-credit { position: absolute; left: 7px; right: 7px; bottom: 7px; z-index: 1; overflow: hidden; padding: 4px 6px; border-radius: 7px; background: rgba(9,29,62,.70); color: #fff; font-size: 8px; font-weight: 700; line-height: 1.2; white-space: nowrap; text-overflow: ellipsis; backdrop-filter: blur(4px); }
.dining-card-body { min-width: 0; padding: 16px 16px 15px; }
.dining-card-body h3 { margin: 0 0 12px; font-size: 16px; line-height: 1.32; letter-spacing: -.02em; }
.dining-detail-row { display: grid; gap: 3px; }
.dining-detail-row small { color: var(--blue-700); font-size: 9px; font-weight: 850; letter-spacing: .04em; }
.dining-detail-row strong { color: #344054; font-size: 13px; line-height: 1.45; }
.dining-location { display: flex; align-items: center; gap: 5px; margin-top: 9px; color: #667085; font-size: 11px; font-weight: 700; }
.dining-location [data-icon-inline] { color: var(--blue-700); font-size: 8px; }

@media (max-width: 760px) {
  .dining-summary { margin-bottom: 14px; font-size: 13px; }
  .dining-days { gap: 12px; }
  .dining-day { border-radius: 15px; }
  .dining-day-head { padding: 11px 12px; }
  .dining-card-grid { grid-template-columns: 1fr; }
  .dining-card { grid-template-columns: 116px minmax(0, 1fr); min-height: 136px; }
  .dining-card + .dining-card { border-left: 0; border-top: 1px solid var(--line); }
  .dining-image-shell, .dining-image-shell img { min-height: 136px; }
  .dining-card-body { padding: 13px 13px 12px; }
  .dining-card-body h3 { margin-bottom: 9px; font-size: 14px; }
  .dining-detail-row strong { font-size: 12px; }
  .dining-location { margin-top: 7px; font-size: 10px; }
}

@media (max-width: 360px) {
  .language-option { padding: 0 4px; font-size: 8.2px; }
  .language-option img { width: 17px; height: 12px; }
  .menu-button { width: 31px; }
  .dining-card { grid-template-columns: 98px minmax(0, 1fr); }
}


/* v6.1 mobile-first polish: one period summary, compact language controls, no awkward wraps */
.schedule-topline { grid-template-columns: minmax(0, 1fr); }
.program-period { width: 100%; }
.program-period strong { white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-note #menu-period { white-space: nowrap; font-variant-numeric: tabular-nums; }

@media (max-width: 760px) {
  .schedule-topline { grid-template-columns: minmax(0, 1fr); }
  .program-period { justify-content: flex-start; }
  .program-period strong { font-size: 12px; }
  .language-switcher { max-width: none; flex-shrink: 0; }
  .language-option { overflow: visible; flex: 0 0 auto; padding-inline: 6px; }
  .language-option span { overflow: visible; text-overflow: clip; white-space: nowrap; }
  .schedule-main h3, .schedule-main p { min-width: 0; }
  html[lang="vi"] .schedule-main h3 { font-size: 14px; }
  html[lang="vi"] .schedule-main p { font-size: 10.8px; }
  .dining-day-head { flex-wrap: nowrap; }
  .dining-day-head span, .dining-day-head strong { flex: 0 0 auto; white-space: nowrap; }
  html[lang="vi"] .dining-day-head strong { font-size: 11.5px; }
  .dining-card-body h3 { -webkit-line-clamp: 1; white-space: nowrap; text-overflow: ellipsis; display: block; }
  .dining-detail-row strong { -webkit-line-clamp: 1; white-space: nowrap; text-overflow: ellipsis; display: block; }
}

@media (max-width: 390px) {
  .brand-program { max-width: 92px; }
  .brand-program small { font-size: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .language-option { padding-inline: 3px; font-size: 8px; gap: 3px; }
  .language-option img { width: 16px; height: 11px; }
  .program-period strong { font-size: 11.5px; }
  html[lang="vi"] .schedule-row { grid-template-columns: 88px minmax(0, 1fr) 21px; }
  html[lang="vi"] .day-block strong { font-size: 12px; }
  html[lang="vi"] .schedule-main h3 { font-size: 13.5px; }
  .dining-card { grid-template-columns: 104px minmax(0, 1fr); }
}

@media (max-width: 350px) {
  .header-inner { gap: 4px; padding-inline: 8px; }
  .brand-program { max-width: 82px; }
  .brand-program small { display: none; }
  .language-option { font-size: 7.6px; padding-inline: 2px; }
  .menu-button { width: 28px; }
  html[lang="vi"] .schedule-row { grid-template-columns: 83px minmax(0, 1fr) 20px; }
  html[lang="vi"] .day-block strong { font-size: 11.3px; }
  .schedule-main h3 { font-size: 14px; }
  html[lang="vi"] .schedule-main h3 { font-size: 12.8px; }
  .dining-card { grid-template-columns: 94px minmax(0, 1fr); }
}

/* V12: richer field insight details */
.floor-guide { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.floor-guide h3 { margin: 0; padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: 15px; }
.floor-list { display: grid; }
.floor-row { display: grid; grid-template-columns: 92px minmax(0, 1fr); align-items: start; gap: 16px; padding: 14px 18px; }
.floor-row + .floor-row { border-top: 1px solid #edf1f6; }
.floor-row strong { color: var(--blue-800); font-size: 13px; font-weight: 900; letter-spacing: .01em; white-space: nowrap; }
.floor-row span { color: #475467; font-size: 14px; line-height: 1.55; }
.extra-guide { background: #fbfcfe; }
.route-guide .floor-row strong { min-width: 70px; }
.experience-extra-image { margin: 0; display: grid; gap: 7px; }
.experience-extra-image img { display: block; width: 100%; max-height: 430px; object-fit: contain; border-radius: 17px; border: 1px solid var(--line); background: #f7f9fc; }
.experience-extra-image figcaption { color: #98a2b3; font-size: 10px; line-height: 1.4; }

@media (max-width: 720px) {
  .floor-guide { border-radius: 15px; }
  .floor-guide h3 { padding: 13px 15px; font-size: 13px; }
  .floor-row { grid-template-columns: 66px minmax(0, 1fr); gap: 10px; padding: 12px 14px; }
  .floor-row strong { font-size: 11px; }
  .floor-row span { font-size: 12px; line-height: 1.5; }
  .experience-extra-image img { max-height: 330px; border-radius: 15px; }
}

/* V13: guest-friendly visit descriptions and interactive Nurimaru stories */
.visit-stories { display: grid; gap: 12px; }
.visit-stories > h3 { margin: 0; font-size: 15px; color: #101828; }
.visit-story-list { display: grid; gap: 10px; }
.visit-story { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.visit-story summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 14px 16px; }
.visit-story summary::-webkit-details-marker { display: none; }
.visit-story-badge { display: inline-grid; place-items: center; min-width: 58px; height: 28px; padding: 0 9px; border-radius: 999px; background: #edf4ff; color: #1358bd; font-size: 10px; font-weight: 900; letter-spacing: .04em; }
.visit-story-heading { display: grid; gap: 3px; min-width: 0; }
.visit-story-heading strong { font-size: 14px; color: #101828; }
.visit-story-heading small { color: #667085; font-size: 11.5px; line-height: 1.4; }
.visit-story-chevron { color: #667085; font-size: 17px; transition: transform .2s ease; }
.visit-story[open] .visit-story-chevron { transform: rotate(180deg); }
.visit-story-body { display: grid; gap: 12px; padding: 0 16px 16px; border-top: 1px solid #eef2f6; }
.visit-story-body figure { margin: 14px 0 0; display: grid; gap: 6px; }
.visit-story-body figure img { width: 100%; height: 250px; object-fit: cover; border-radius: 13px; background: #eef2f7; }
.visit-story-body figure figcaption { font-size: 9.5px; color: #98a2b3; }
.visit-story-body > p { margin: 0; color: #475467; font-size: 13px; line-height: 1.7; }
.vietnam-connection { display: grid; grid-template-columns: 30px minmax(0,1fr); gap: 9px; align-items: start; padding: 12px; border-radius: 13px; background: #fff8eb; }
.vietnam-connection span { font-size: 20px; line-height: 1.2; }
.vietnam-connection p { margin: 0; color: #664d18; font-size: 12.5px; line-height: 1.65; }

@media (max-width: 720px) {
  .visit-stories > h3 { font-size: 13px; }
  .visit-story summary { gap: 9px; padding: 12px; }
  .visit-story-badge { min-width: 52px; height: 26px; font-size: 9px; }
  .visit-story-heading strong { font-size: 12.5px; }
  .visit-story-heading small { font-size: 10.5px; }
  .visit-story-body { padding: 0 12px 13px; gap: 10px; }
  .visit-story-body figure img { height: 190px; }
  .visit-story-body > p, .vietnam-connection p { font-size: 11.8px; }
  .experience-extra-image img { max-height: 560px; }
}


/* V14: Pangyo hotel walking guide - interactive, no route lines or compass */
.nearby-section { margin-top: 14px; }
.nearby-heading { margin-bottom: 18px; }
.nearby-guide-layout { display: grid; grid-template-columns: 235px minmax(0,1fr); gap: 14px; align-items: stretch; }
.nearby-hotel-card { border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 19px; display: flex; flex-direction: column; gap: 12px; box-shadow: 0 7px 20px rgba(28,55,94,.04); }
.nearby-hotel-pin { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: #fff; background: linear-gradient(145deg,var(--blue-900),var(--blue-700)); font-size: 20px; }
.nearby-hotel-card > div:first-of-type { display: grid; gap: 4px; }
.nearby-hotel-card small { color: var(--blue-700); font-size: 10px; font-weight: 800; }
.nearby-hotel-card strong { color: #12223e; font-size: 14px; line-height: 1.35; }
.nearby-hotel-card span:not(.nearby-hotel-pin):not(.nearby-category-chip) { color: #667085; font-size: 11px; }
.nearby-category-list { margin-top: auto; display: grid; gap: 7px; padding-top: 13px; border-top: 1px solid #eef2f6; }
.nearby-category-chip { display: flex; align-items: center; min-height: 28px; padding: 5px 9px; border-radius: 9px; background: #f7f9fc; color: #475467; font-size: 10.5px; font-weight: 750; }
.nearby-category-chip::before { content:""; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: #667085; }
.nearby-category-chip.shopping::before { background:#8d55d8; } .nearby-category-chip.culture::before { background:#f28b22; } .nearby-category-chip.mart::before { background:#5fa844; } .nearby-category-chip.convenience::before { background:#2f80d8; }
.nearby-map-wrap { min-width: 0; display: grid; gap: 8px; }
.nearby-map { position: relative; min-height: 390px; overflow: hidden; border: 1px solid #dbe3ec; border-radius: 20px; background:
  radial-gradient(circle at 18% 18%, rgba(151,189,129,.23) 0 12%, transparent 13%),
  radial-gradient(circle at 82% 72%, rgba(151,189,129,.2) 0 11%, transparent 12%),
  linear-gradient(135deg, transparent 0 25%, rgba(255,255,255,.92) 25% 31%, transparent 31% 100%),
  linear-gradient(45deg, transparent 0 41%, rgba(255,255,255,.92) 41% 47%, transparent 47% 100%),
  #eaf0e8;
  box-shadow: inset 0 0 50px rgba(46,69,91,.06);
}
.nearby-map::after { content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,.02)); }
.map-road { position:absolute; z-index:0; height:18px; background:rgba(255,255,255,.86); box-shadow:0 0 0 1px rgba(150,162,177,.2); transform-origin:center; }
.road-a { width:130%; left:-15%; top:48%; transform:rotate(-19deg); } .road-b { width:120%; left:-8%; top:52%; transform:rotate(24deg); } .road-c { width:100%; left:10%; top:64%; transform:rotate(-2deg); }
.map-block { position:absolute; z-index:0; border-radius:11px; border:1px solid rgba(98,118,138,.12); background:linear-gradient(145deg,#d8e0df,#c6d3d2); box-shadow:5px 7px 0 rgba(90,112,118,.08); transform:rotate(-7deg); }
.block-a{left:8%;top:10%;width:22%;height:22%}.block-b{left:65%;top:8%;width:24%;height:24%;transform:rotate(5deg)}.block-c{left:74%;top:43%;width:19%;height:20%;transform:rotate(-4deg)}.block-d{left:12%;top:61%;width:21%;height:20%;transform:rotate(7deg)}.block-e{left:48%;top:70%;width:17%;height:16%;transform:rotate(3deg)}
.hotel-map-marker { position:absolute; z-index:4; left:50%; top:48%; transform:translate(-50%,-50%); display:grid; justify-items:center; gap:4px; color:var(--blue-900); }
.hotel-map-marker span { display:grid; place-items:center; width:54px; height:54px; border-radius:50% 50% 50% 12px; transform:rotate(-45deg); color:#fff; background:linear-gradient(145deg,#1665d8,#07439f); box-shadow:0 10px 24px rgba(7,67,159,.28); font-size:24px; }
.hotel-map-marker span::first-letter { transform:rotate(45deg); }
.hotel-map-marker b { padding:6px 10px; border-radius:10px; background:rgba(255,255,255,.94); box-shadow:0 6px 18px rgba(28,55,94,.12); font-size:11px; letter-spacing:.02em; }
.nearby-map-point { position:absolute; z-index:5; transform:translate(-50%,-50%); border:0; background:transparent; display:grid; grid-template-columns:auto auto; grid-template-rows:auto auto; align-items:center; column-gap:7px; padding:0; cursor:pointer; text-align:left; }
.nearby-map-point > span { grid-row:1/span 2; display:grid; place-items:center; width:34px; height:34px; border:3px solid #fff; border-radius:50%; color:#fff; background:#2f80d8; box-shadow:0 4px 12px rgba(20,47,86,.2); font-size:13px; font-weight:900; }
.nearby-map-point.shopping > span { background:#9253d7; }.nearby-map-point.culture > span { background:#f27d21; }.nearby-map-point.mart > span { background:#61aa45; }.nearby-map-point.convenience > span { background:#2f80d8; }
.nearby-map-point b,.nearby-map-point small { max-width:125px; padding:3px 7px; background:rgba(255,255,255,.94); white-space:nowrap; box-shadow:0 3px 10px rgba(28,55,94,.08); }
.nearby-map-point b { align-self:end; border-radius:8px 8px 0 0; color:#172033; font-size:10.5px; }.nearby-map-point small { align-self:start; border-radius:0 0 8px 8px; color:#667085; font-size:9px; font-weight:750; }
.nearby-map-point:hover { z-index:8; transform:translate(-50%,-50%) scale(1.04); }
.nearby-map-note { margin:0; color:#667085; font-size:11px; text-align:center; }
.nearby-card-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; margin-top:14px; }
.nearby-place-card { min-width:0; min-height:205px; display:flex; flex-direction:column; align-items:flex-start; gap:6px; padding:15px; border:1px solid var(--line); border-radius:16px; background:#fff; text-align:left; cursor:pointer; transition:.16s ease; }
.nearby-place-card:hover { transform:translateY(-2px); border-color:#bdcee6; box-shadow:var(--shadow-sm); }
.nearby-place-top { width:100%; display:flex; align-items:center; justify-content:space-between; gap:8px; }
.nearby-no,.nearby-detail-no { display:grid; place-items:center; width:28px; height:28px; flex:0 0 auto; border-radius:50%; background:#2f80d8; color:#fff; font-size:12px; font-weight:900; font-style:normal; }
.nearby-no.shopping,.nearby-detail-no.shopping{background:#9253d7}.nearby-no.culture,.nearby-detail-no.culture{background:#f27d21}.nearby-no.mart,.nearby-detail-no.mart{background:#61aa45}.nearby-no.convenience,.nearby-detail-no.convenience{background:#2f80d8}
.nearby-place-top em { max-width:75%; padding:4px 7px; border:1px solid #dce6f3; border-radius:7px; color:#667085; font-size:9px; font-style:normal; font-weight:750; white-space:nowrap; }
.nearby-place-card > strong { margin-top:2px; color:#15213a; font-size:14px; line-height:1.3; }.nearby-place-card > small { color:#667085; font-size:9.5px; line-height:1.3; }.nearby-walk { display:flex; align-items:center; gap:5px; margin-top:3px; color:#344054; font-size:10.5px; font-weight:760; }.nearby-walk b { color:var(--blue-700); }
.nearby-place-card p { display:-webkit-box; overflow:hidden; -webkit-line-clamp:3; -webkit-box-orient:vertical; margin:3px 0 0; color:#667085; font-size:10.5px; line-height:1.55; }
.nearby-card-link { margin-top:auto; color:var(--blue-800); font-size:10px; font-weight:850; }.nearby-card-link b { font-size:15px; vertical-align:-1px; }
.nearby-disclaimer { margin:12px 2px 0; color:#98a2b3; font-size:9.5px; line-height:1.5; }
.nearby-detail { display:grid; gap:14px; }.nearby-detail-head { display:grid; grid-template-columns:auto minmax(0,1fr) auto; gap:12px; align-items:center; padding:15px; border:1px solid var(--line); border-radius:16px; background:#fbfcfe; }.nearby-detail-no { width:38px;height:38px;font-size:15px}.nearby-detail-head > div:nth-child(2){display:grid;gap:3px}.nearby-detail-head small{color:#667085;font-size:10px}.nearby-detail-head strong{font-size:12px;color:#344054}.nearby-detail-walk{text-align:right;display:grid;gap:2px}.nearby-detail-walk b{color:var(--blue-900);font-size:18px}.nearby-detail-walk span{color:#98a2b3;font-size:9px}.nearby-detail-section{padding:16px;border:1px solid var(--line);border-radius:16px;background:#fff}.nearby-detail-section h3{margin:0 0 9px;font-size:14px}.nearby-detail-section p{margin:0;color:#475467;font-size:12.5px;line-height:1.7}.nearby-detail-section ul{display:grid;gap:8px;margin:0;padding:0;list-style:none}.nearby-detail-section li{position:relative;padding-left:16px;color:#475467;font-size:12.5px;line-height:1.55}.nearby-detail-section li::before{content:"";position:absolute;left:0;top:.6em;width:6px;height:6px;border-radius:50%;background:var(--blue-600)}.nearby-tip{margin-top:13px;padding:11px 12px;border-radius:12px;background:#f5f8fd;color:#344054;font-size:11px;line-height:1.55}.nearby-back-hotel{display:flex;align-items:center;gap:10px;padding:13px 15px;border-radius:14px;background:#eef5ff;color:#123d7a}.nearby-back-hotel>span{font-size:20px}.nearby-back-hotel>div{display:grid;gap:2px}.nearby-back-hotel small{font-size:9px;color:#667085}.nearby-back-hotel b{font-size:11px}

@media (max-width: 760px) {
  .nearby-section { padding-left:16px; padding-right:16px; }
  .nearby-guide-layout { grid-template-columns:1fr; }
  .nearby-hotel-card { display:grid; grid-template-columns:auto minmax(0,1fr); gap:10px 12px; padding:14px; }
  .nearby-hotel-pin { grid-row:1; }
  .nearby-hotel-card > div:first-of-type { grid-column:2; }
  .nearby-category-list { grid-column:1/-1; grid-template-columns:repeat(2,minmax(0,1fr)); margin-top:0; padding-top:10px; }
  .nearby-map { min-height:340px; }
  .nearby-map-point b,.nearby-map-point small { display:none; }
  .nearby-map-point > span { width:36px;height:36px;font-size:13px; }
  .hotel-map-marker span { width:48px;height:48px; }
  .hotel-map-marker b { font-size:9px; }
  .nearby-card-grid { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:10px; margin-right:-16px; padding-right:16px; scrollbar-width:none; }
  .nearby-card-grid::-webkit-scrollbar{display:none}
  .nearby-place-card { flex:0 0 77vw; max-width:300px; min-height:190px; scroll-snap-align:start; }
  .nearby-place-card p { -webkit-line-clamp:2; }
  .nearby-disclaimer { font-size:9px; }
}
@media (max-width: 390px) {
  .nearby-map { min-height:310px; }
  .nearby-map-point > span { width:32px;height:32px;border-width:2px;font-size:12px; }
  .nearby-category-chip { font-size:9.5px; }
  .nearby-place-card { flex-basis:80vw; }
}


/* V15 — card-first hotel walking guide. The synthetic map was intentionally removed. */
.nearby-section{overflow:hidden}
.nearby-overview-card{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:18px;padding:16px 18px;border:1px solid var(--line);border-radius:18px;background:linear-gradient(135deg,#f8fbff,#fff);box-shadow:var(--shadow-sm)}
.nearby-base-copy{display:flex;align-items:center;gap:12px;min-width:0}
.nearby-base-copy .nearby-hotel-pin{width:42px;height:42px;display:grid;place-items:center;flex:0 0 auto;border-radius:14px;color:#fff;background:linear-gradient(145deg,var(--blue-900),var(--blue-700));font-size:19px}
.nearby-base-copy>div{display:grid;gap:2px;min-width:0}.nearby-base-copy small{color:var(--blue-700);font-size:10px;font-weight:800}.nearby-base-copy strong{color:#14213a;font-size:14px}.nearby-base-copy span:not(.nearby-hotel-pin){color:#667085;font-size:10.5px}
.nearby-overview-card .nearby-category-list{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:7px;margin:0;padding:0;border:0}.nearby-overview-card .nearby-category-chip{min-height:26px;padding:5px 9px}
.nearby-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:13px;margin-top:16px}
.nearby-place-card{min-height:0;padding:0;overflow:hidden;border:1px solid var(--line);border-radius:18px;background:#fff;display:block;text-align:left;cursor:pointer;transition:transform .16s ease,border-color .16s ease,box-shadow .16s ease}
.nearby-place-card:hover{transform:translateY(-3px);border-color:#b7c9e4;box-shadow:0 12px 30px rgba(25,55,95,.08)}
.nearby-place-image-wrap{position:relative;display:block;aspect-ratio:16/9;background:#eef3f9;overflow:hidden}
.nearby-place-image{display:block;width:100%;height:100%;object-fit:cover;transition:transform .25s ease}.nearby-place-card:hover .nearby-place-image{transform:scale(1.025)}
.nearby-place-image-wrap .nearby-place-top{position:absolute;left:10px;top:10px;width:auto;display:flex;align-items:center;gap:6px}.nearby-place-image-wrap .nearby-place-top em{max-width:none;padding:4px 7px;border:1px solid rgba(255,255,255,.9);border-radius:8px;background:rgba(255,255,255,.94);backdrop-filter:blur(7px);color:#475467;font-size:9px;font-style:normal;font-weight:800;white-space:nowrap}
.nearby-time-badge{position:absolute;right:10px;bottom:10px;padding:6px 9px;border-radius:999px;background:rgba(10,52,111,.90);backdrop-filter:blur(6px);color:#fff;font-size:10.5px;font-weight:850;box-shadow:0 4px 12px rgba(0,0,0,.12)}
.nearby-place-body{display:flex;min-height:148px;flex-direction:column;align-items:flex-start;gap:4px;padding:14px 15px 15px}.nearby-place-body>strong{color:#15213a;font-size:14px;line-height:1.35}.nearby-place-body>small{color:#8a94a6;font-size:9.5px;line-height:1.3}.nearby-place-body p{display:-webkit-box;overflow:hidden;-webkit-line-clamp:2;-webkit-box-orient:vertical;margin:5px 0 0;color:#667085;font-size:10.5px;line-height:1.55}.nearby-place-body .nearby-card-link{margin-top:auto;padding-top:8px;color:var(--blue-800);font-size:10px;font-weight:850}
.nearby-disclaimer{margin:13px 2px 0;color:#7b8798;font-size:9.5px;line-height:1.55}
.nearby-detail-image-wrap{margin:0;border-radius:17px;overflow:hidden;border:1px solid var(--line);background:#eef3f9}.nearby-detail-image{display:block;width:100%;max-height:310px;object-fit:cover}.nearby-detail-image-wrap figcaption{padding:7px 10px;background:#fbfcfe;color:#98a2b3;font-size:8.5px;line-height:1.45}
.nearby-map-hint{margin:-6px 3px 0;color:#8a94a6;font-size:9.5px;line-height:1.55;text-align:center}
@media (max-width:760px){.nearby-overview-card{display:grid;gap:12px;padding:14px}.nearby-overview-card .nearby-category-list{justify-content:flex-start}.nearby-card-grid{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;gap:10px;margin-right:-16px;padding-right:16px;scrollbar-width:none}.nearby-card-grid::-webkit-scrollbar{display:none}.nearby-place-card{flex:0 0 82vw;max-width:330px;scroll-snap-align:start}.nearby-place-body{min-height:138px}.nearby-place-body>strong{font-size:14px}.nearby-place-body p{font-size:10.5px}.nearby-detail-image{max-height:240px}}
@media (max-width:390px){.nearby-place-card{flex-basis:86vw}.nearby-base-copy strong{font-size:13px}.nearby-overview-card .nearby-category-chip{font-size:9px}.nearby-time-badge{font-size:10px}}

/* V17 — customer-facing copy, visual floor guides, Jamsil course */
.guest-intro { background: linear-gradient(180deg,#fbfdff,#fff); }
.guest-highlight { margin-top: 2px; padding: 13px 15px; border-left: 3px solid #f1b84a; border-radius: 12px; background: #fff9ee; }
.guest-highlight p { margin: 0; color: #6b5120; font-size: 12.5px; line-height: 1.7; }

.floor-visual-guide { overflow: visible; }
.floor-visual-guide > h3 { border: 1px solid var(--line); border-radius: 16px 16px 0 0; background:#fff; }
.floor-visual-list { display: grid; gap: 9px; padding-top: 9px; }
.floor-visual-card { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background:#fff; }
.floor-visual-card summary { list-style:none; cursor:pointer; display:grid; grid-template-columns:56px minmax(0,1fr) auto; align-items:center; gap:12px; padding:10px 13px; }
.floor-visual-card summary::-webkit-details-marker { display:none; }
.floor-visual-card summary img { width:56px; height:56px; object-fit:cover; border-radius:12px; background:#eef4fb; }
.floor-visual-card summary > span { display:grid; gap:3px; min-width:0; }
.floor-visual-card summary small { color:var(--blue-700); font-size:10px; font-weight:900; }
.floor-visual-card summary strong { color:#14213a; font-size:13px; line-height:1.35; }
.floor-visual-card summary > b { color:#7c8798; font-size:19px; font-weight:400; transition:transform .18s ease; }
.floor-visual-card[open] summary > b { transform:rotate(45deg); }
.floor-visual-body { display:grid; grid-template-columns:112px minmax(0,1fr); gap:13px; align-items:center; padding:0 13px 13px; border-top:1px solid #eef2f6; }
.floor-visual-body img { width:112px; height:82px; margin-top:13px; object-fit:cover; border-radius:12px; background:#eef4fb; }
.floor-visual-body p { margin:13px 0 0; color:#475467; font-size:12.5px; line-height:1.65; }

.jamsil-course { display:grid; gap:12px; padding:16px; border:1px solid #dce6f2; border-radius:18px; background:linear-gradient(135deg,#f7faff,#fff); }
.jamsil-course-head { display:grid; gap:5px; }
.jamsil-course-head h3 { margin:0; color:#10264a; font-size:15px; }
.jamsil-course-head p { margin:0; color:#667085; font-size:12px; line-height:1.6; }
.jamsil-course-steps { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; }
.jamsil-course-step { position:relative; min-width:0; display:grid; grid-template-columns:46px minmax(0,1fr) auto; align-items:center; gap:9px; min-height:72px; padding:9px 10px; border:1px solid #dfe7f1; border-radius:14px; background:#fff; text-align:left; cursor:pointer; transition:.16s ease; }
.jamsil-course-step:hover { transform:translateY(-2px); border-color:#bfd0e8; box-shadow:var(--shadow-sm); }
.jamsil-course-step img { width:46px; height:46px; object-fit:cover; border-radius:11px; background:#eef4fb; }
.jamsil-course-step > span:nth-of-type(2) { display:grid; gap:3px; min-width:0; }
.jamsil-course-step strong { color:#15213a; font-size:12px; line-height:1.3; }
.jamsil-course-step small { color:#667085; font-size:9.5px; line-height:1.35; }
.jamsil-course-step > b { color:#7c8798; font-size:18px; }
.jamsil-course-no { position:absolute; left:4px; top:4px; display:grid; place-items:center; min-width:24px; height:18px; padding:0 5px; border-radius:999px; background:#0d4ea6; color:#fff; font-size:8px; font-weight:900; box-shadow:0 2px 8px rgba(13,78,166,.18); }



@media (max-width:720px) {
  .guest-highlight { padding:11px 12px; }
  .guest-highlight p { font-size:11.8px; line-height:1.65; }
  .floor-visual-card summary { grid-template-columns:48px minmax(0,1fr) auto; gap:9px; padding:9px 10px; }
  .floor-visual-card summary img { width:48px; height:48px; }
  .floor-visual-card summary small { font-size:9px; }
  .floor-visual-card summary strong { font-size:12px; }
  .floor-visual-body { grid-template-columns:82px minmax(0,1fr); gap:10px; padding:0 10px 10px; }
  .floor-visual-body img { width:82px; height:68px; margin-top:10px; }
  .floor-visual-body p { margin-top:10px; font-size:11.5px; }
  .jamsil-course { padding:13px; border-radius:16px; }
  .jamsil-course-head h3 { font-size:13px; }
  .jamsil-course-head p { font-size:11px; }
  .jamsil-course-steps { display:flex; overflow-x:auto; gap:8px; margin-right:-13px; padding-right:13px; scroll-snap-type:x mandatory; scrollbar-width:none; }
  .jamsil-course-steps::-webkit-scrollbar { display:none; }
  .jamsil-course-step { flex:0 0 78vw; max-width:290px; min-height:68px; scroll-snap-align:start; grid-template-columns:48px minmax(0,1fr) auto; }
  .jamsil-course-step img { width:48px; height:48px; }
  .jamsil-course-step strong { font-size:11.5px; }
  .jamsil-course-step small { font-size:9px; }
}
.vietnam-connection{display:none!important}

/* V17 customer-friendly Korea–Vietnam story highlight */
.visit-connection{margin:14px 0 22px}
.visit-connection p{margin:0}

/* V18 — accurate walking-route images, large walking times, simplified guest navigation */
.nearby-detail-head-v18{background:linear-gradient(135deg,#f8fbff,#fff)}
.nearby-detail-walk-v18 b{font-size:26px;line-height:1;color:var(--blue-800)}
.nearby-route-section{display:grid;gap:10px;padding:14px;border:1px solid var(--line);border-radius:18px;background:#fff}
.nearby-route-title{display:flex;align-items:center;gap:10px}.nearby-route-title>span{display:grid;place-items:center;width:40px;height:40px;border-radius:12px;background:#eef5ff;font-size:21px}.nearby-route-title>div{display:grid;gap:2px}.nearby-route-title small{color:#667085;font-size:9.5px;font-weight:800}.nearby-route-title strong{color:#14213a;font-size:14px}
.nearby-route-image-wrap{margin:0;overflow:hidden;border:1px solid #dfe7f1;border-radius:15px;background:#f5f7fa}.nearby-route-image{display:block;width:100%;height:auto;max-height:520px;object-fit:contain;background:#fff}.nearby-route-image-wrap figcaption{padding:8px 10px;color:#667085;background:#fbfcfe;font-size:9.5px;line-height:1.45}
.nearby-time-badge{padding:8px 12px;font-size:14px;letter-spacing:-.01em}.nearby-place-body .nearby-card-link{font-size:11px}.nearby-place-body>strong{font-size:15px}
.nearby-detail-no.beauty{background:#45a653}.nearby-place-no.beauty{background:#45a653}.nearby-category-chip.beauty{color:#30783b;background:#eef8ef;border-color:#cfe9d2}
@media(max-width:760px){.nearby-detail-head-v18{grid-template-columns:auto minmax(0,1fr);align-items:start}.nearby-detail-walk-v18{grid-column:1/-1;display:flex;align-items:baseline;gap:7px;padding:10px 12px;border-radius:12px;background:#eef5ff;text-align:left}.nearby-detail-walk-v18 b{font-size:24px}.nearby-route-section{padding:10px}.nearby-route-image{max-height:none}.nearby-route-title strong{font-size:13px}.nearby-time-badge{font-size:13px}}

.nearby-walk-large{display:flex;align-items:center;gap:7px;margin:5px 0 2px;padding:8px 10px;border-radius:11px;background:#eef5ff;color:var(--blue-900)}.nearby-walk-large span{font-size:16px}.nearby-walk-large b{font-size:17px;line-height:1;letter-spacing:-.02em}.nearby-place-card.beauty .nearby-walk-large{background:#eef8ef;color:#30783b}.nearby-place-card.mart .nearby-walk-large{background:#f2f8ec;color:#4b7c34}.nearby-place-card.convenience .nearby-walk-large{background:#eef6fd;color:#236daf}.nearby-place-card.culture .nearby-walk-large{background:#f4f0fb;color:#6d46a2}@media(max-width:760px){.nearby-walk-large b{font-size:18px}}

/* V22 - Today's VOSP dashboard */
.today-hub {
  width: min(1180px, calc(100% - 40px));
  margin: -28px auto 26px;
  position: relative;
  z-index: 4;
  padding: 24px;
  border: 1px solid #dfe8f4;
  border-radius: 24px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 42px rgba(18, 48, 86, .12);
}
.today-hub-heading { display:flex; align-items:flex-start; justify-content:space-between; gap:18px; margin-bottom:18px; }
.today-hub-heading h2 { margin:3px 0 3px; font-size:28px; line-height:1.15; letter-spacing:-.04em; }
.today-hub-heading > div > p:last-child { margin:0; color:#667085; font-size:13px; }
.today-status-pill { flex:0 0 auto; padding:7px 11px; border-radius:999px; background:#edf4ff; color:#0b4db8; font-size:10px; font-weight:850; letter-spacing:.08em; }
.today-dashboard { display:grid; grid-template-columns: .92fr 1.18fr .9fr; gap:14px; }
.today-summary-card,.today-agenda-card,.today-korean-card { min-width:0; border:1px solid #e1e8f2; border-radius:19px; background:#fff; padding:18px; }
.today-summary-card { background:linear-gradient(145deg,#f7fbff 0%,#fff 68%); }
.today-day-line { display:flex; align-items:center; gap:12px; margin-bottom:15px; }
.today-day-badge { padding:8px 10px; border-radius:11px; background:#0b4db8; color:#fff; font-size:11px; font-weight:850; white-space:nowrap; }
.today-day-line div { display:flex; flex-direction:column; min-width:0; }
.today-day-line strong { color:#14213d; font-size:19px; letter-spacing:-.02em; }
.today-day-line span:not(.today-day-badge) { color:#667085; font-size:12px; margin-top:2px; }
.weather-card { display:grid; grid-template-columns:auto minmax(0,1fr) auto; gap:10px; align-items:center; padding:14px; border-radius:16px; background:#0b376e; color:#fff; }
.weather-icon { font-size:31px; line-height:1; }
.weather-main { display:flex; flex-direction:column; min-width:0; }
.weather-main strong { font-size:15px; letter-spacing:-.025em; }
.weather-main span { margin-top:3px; color:rgba(255,255,255,.78); font-size:11px; line-height:1.35; }
.weather-place { padding:6px 8px; border:1px solid rgba(255,255,255,.25); border-radius:999px; font-size:10px; font-weight:750; white-space:nowrap; }
.weather-advice { margin:12px 2px 5px; color:#475467; font-size:11.5px; line-height:1.5; }
.weather-source { color:#98a2b3; font-size:9px; }
.today-card-title { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px; }
.today-card-title small { color:#0b4db8; font-size:9px; font-weight:850; letter-spacing:.09em; }
.today-card-title h3 { margin:3px 0 0; font-size:18px; letter-spacing:-.035em; }
.today-full-button { padding:7px 9px; border:0; border-radius:10px; background:#f3f7fc; color:#0b4db8; font-size:10.5px; font-weight:750; cursor:pointer; white-space:nowrap; }
.today-agenda-list { display:grid; gap:6px; }
.today-agenda-item { display:grid; grid-template-columns:51px minmax(0,1fr); gap:10px; align-items:start; padding:8px 9px; border-radius:11px; background:#f8fafc; }
.today-agenda-item.next { background:#edf4ff; box-shadow:inset 3px 0 0 #0b63ce; }
.today-agenda-item time { color:#0b4db8; font-size:11px; font-weight:850; }
.today-agenda-item div { min-width:0; }
.today-agenda-item strong { display:block; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; color:#1d2939; font-size:12px; }
.today-agenda-item span { display:block; overflow:hidden; margin-top:2px; color:#667085; font-size:10px; white-space:nowrap; text-overflow:ellipsis; }
.today-next-tag { display:inline-flex!important; width:max-content; margin-top:4px!important; padding:2px 6px; border-radius:999px; background:#0b4db8; color:#fff!important; font-size:8px!important; font-weight:850; }
.korean-flag { font-size:24px; }
.korean-intro { margin:-2px 0 11px; color:#667085; font-size:11px; line-height:1.45; }
.korean-phrase-list { display:grid; gap:7px; }
.korean-phrase { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:8px; align-items:center; padding:9px 10px; border-radius:12px; background:#f8fafc; }
.korean-phrase-main { min-width:0; }
.korean-phrase-main strong { display:block; color:#111827; font-size:13px; letter-spacing:-.02em; }
.korean-phrase-main small { display:block; margin-top:2px; color:#667085; font-size:9.5px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.korean-phrase-vi { max-width:115px; color:#0b4db8; font-size:10px; font-weight:750; line-height:1.3; text-align:right; }

@media (max-width: 980px) {
  .today-dashboard { grid-template-columns:1fr 1fr; }
  .today-korean-card { grid-column:1 / -1; }
  .korean-phrase-list { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .today-hub { width:calc(100% - 18px); margin:-20px auto 18px; padding:16px 12px; border-radius:20px; }
  .today-hub-heading { align-items:center; margin-bottom:13px; }
  .today-hub-heading h2 { font-size:21px; }
  .today-hub-heading > div > p:last-child { font-size:11px; }
  .today-status-pill { font-size:8.5px; padding:6px 8px; }
  .today-dashboard { grid-template-columns:1fr; gap:9px; }
  .today-summary-card,.today-agenda-card,.today-korean-card { padding:13px; border-radius:15px; }
  .today-korean-card { grid-column:auto; }
  .weather-card { padding:11px; grid-template-columns:auto minmax(0,1fr); }
  .weather-place { grid-column:2; width:max-content; padding:4px 7px; }
  .weather-main strong { font-size:14px; }
  .weather-main span { font-size:10px; }
  .weather-advice { font-size:10.5px; }
  .today-agenda-item { grid-template-columns:46px minmax(0,1fr); padding:8px; }
  .today-agenda-item strong { font-size:11.5px; }
  .today-agenda-item span { font-size:9.5px; }
  .korean-phrase-list { grid-template-columns:1fr; }
  .korean-phrase { padding:8px 9px; }
  .korean-phrase-main strong { font-size:12.5px; }
  .korean-phrase-vi { max-width:46%; font-size:9.5px; }
}
.today-hub + .schedule-shell { margin-top: 0; }
@media (max-width:700px){ .today-hub + .schedule-shell { margin-top:0; } }


/* V23 — mobile-first field-use polish (360–430px primary target) */
@media (max-width: 430px) {
  html { -webkit-text-size-adjust: 100%; }
  body { padding-bottom: calc(74px + var(--safe-bottom)); }
  button, a, summary, .schedule-row, .nearby-place-card { -webkit-tap-highlight-color: transparent; }
  button, .text-button, .language-option, .schedule-row, .nearby-place-card, .bottom-nav a, .bottom-nav button { touch-action: manipulation; }

  .site-header { height: 62px; }
  .header-inner { padding: 0 10px; gap: 5px; }
  .brand-program b { font-size: 15px; letter-spacing: -.02em; }
  .language-switcher { padding: 2px; border-radius: 11px; }
  .language-option { min-height: 32px; padding: 0 5px; font-size: 9px; }
  .language-option img { width: 18px; height: 13px; }
  .menu-button { width: 34px; min-width: 34px; height: 36px; }

  .hero { height: 312px; border-radius: 0 0 18px 18px; }
  .hero-content { padding: 34px 18px 52px; }
  .hero h1 { font-size: clamp(46px, 15vw, 60px); line-height: .96; }
  .hero-subtitle { max-width: 285px; margin-top: 14px; font-size: 18px; line-height: 1.35; }
  .hero-caption { margin-top: 12px; font-size: 12.5px; }

  .today-hub { width: calc(100% - 12px); margin: -18px auto 14px; padding: 12px 10px; border-radius: 17px; }
  .today-hub-heading { gap: 8px; margin-bottom: 10px; }
  .today-hub-heading h2 { font-size: 19px; }
  .today-hub-heading > div > p:last-child { font-size: 10px; line-height: 1.45; }
  .today-status-pill { max-width: 92px; padding: 5px 7px; font-size: 7.5px; text-align:center; }
  .today-dashboard { gap: 8px; }
  .today-summary-card,.today-agenda-card,.today-korean-card { padding: 11px; border-radius: 14px; }
  .today-day-line { gap: 9px; margin-bottom: 10px; }
  .today-day-badge { padding: 6px 8px; font-size: 9.5px; }
  .today-day-line strong { font-size: 16px; }
  .weather-card { padding: 10px; }
  .today-card-title h3 { font-size: 16px; }
  .today-full-button { min-height: 36px; padding: 7px 9px; }
  .today-agenda-list { gap: 5px; }
  .today-agenda-item { min-height: 48px; grid-template-columns: 43px minmax(0,1fr); gap: 7px; padding: 7px; }
  .today-agenda-item time { font-size: 10.5px; }
  .today-agenda-item strong { font-size: 11.5px; line-height: 1.35; }
  .korean-phrase-list { gap: 6px; }
  .korean-phrase { min-height: 48px; }

  .schedule-shell { width: calc(100% - 12px); margin-top: -14px; padding: 0 8px 12px; border-radius: 17px; }
  .schedule-topline { margin: 0 -8px 14px; padding: 11px 9px; border-radius: 17px 17px 0 0; }
  .section-heading { margin: 0 3px 10px; gap: 8px; }
  .section-heading h2 { font-size: 20px; }
  .text-button { min-height: 38px; padding: 0 5px; }
  .schedule-list { gap: 6px; }
  .schedule-row { grid-template-columns: 70px minmax(0,1fr) 27px; min-height: 82px; border-radius: 12px; }
  .day-block { padding: 8px 4px; }
  .day-block strong { font-size: 17px; }
  .schedule-main { padding: 10px 8px; }
  .schedule-main h3 { font-size: 14.5px; line-height: 1.28; }
  .schedule-main p { font-size: 10.5px; line-height: 1.35; }

  .nearby-overview-card { margin-top: 12px; padding: 11px; border-radius: 15px; }
  .nearby-card-grid { gap: 8px; margin-right: -10px; padding-right: 10px; }
  .nearby-place-card { flex-basis: 88vw; max-width: 330px; border-radius: 15px; }
  .nearby-place-body { min-height: 132px; padding: 11px 12px 12px; }
  .nearby-place-body > strong { font-size: 14px; }
  .nearby-place-body p { font-size: 10px; line-height: 1.5; }
  .nearby-walk-large { padding: 7px 9px; }
  .nearby-walk-large b { font-size: 17px; }
  .nearby-time-badge { right: 8px; bottom: 8px; padding: 7px 10px; font-size: 12px; }

  .floor-visual-card summary { min-height: 66px; }
  .jamsil-course-step { flex-basis: 84vw; }

  .bottom-nav { height: calc(68px + var(--safe-bottom)); padding-top: 4px; }
  .bottom-nav a, .bottom-nav button { min-height: 58px; }
  .bottom-nav .icon-svg { width: 21px; height: 21px; }
  .bottom-nav small { max-width: 60px; font-size: 9px; }

  .modal-header { min-height: 66px; padding: 13px 14px 11px; }
  .modal-header h2 { font-size: 20px; }
  .modal-body { padding: 12px 10px calc(20px + var(--safe-bottom)); }
  .detail-navigation button { min-height: 48px; }
}

@media (max-width: 360px) {
  .brand-program b { font-size: 14px; }
  .language-option { font-size: 8.3px; padding: 0 4px; }
  .hero { height: 292px; }
  .hero h1 { font-size: 44px; }
  .hero-subtitle { font-size: 16.5px; }
  .today-hub-heading h2 { font-size: 18px; }
  .schedule-row { grid-template-columns: 65px minmax(0,1fr) 24px; }
  .schedule-main h3 { font-size: 13.5px; }
  .nearby-place-card { flex-basis: 90vw; }
}


/* V24 hero / course groups / mobile-first polish */
.hero{background:linear-gradient(135deg,#07336f 0%,#0b56a8 52%,#eef5ff 140%)}.hero-image{background-image:radial-gradient(circle at 84% 20%,rgba(255,255,255,.22),transparent 34%),linear-gradient(140deg,#083a7d,#0b58a8 58%,#0a315e)!important;opacity:1!important}.hero-overlay{background:linear-gradient(90deg,rgba(2,28,68,.78),rgba(5,52,105,.35) 52%,rgba(4,33,70,.12))!important}.hero-country-flags{display:flex;align-items:center;gap:10px;margin-bottom:14px}.hero-country-flags span{width:48px;height:32px;border-radius:7px;padding:2px;background:#fff;box-shadow:0 6px 18px rgba(0,0,0,.15);overflow:hidden}.hero-country-flags img{width:100%;height:100%;display:block;object-fit:cover}.hero-country-flags i{display:block;width:22px;height:1px;background:rgba(255,255,255,.72)}.brand-program{align-items:center}.brand-program b{font-size:22px}.course-group-list{display:grid;gap:14px}.course-group{border:1px solid #dce5f1;border-radius:18px;padding:16px;background:#fff}.course-group h3{display:inline-flex;margin:0 0 12px;background:#0b4db8;color:#fff;border-radius:999px;padding:8px 12px;font-size:13px}.course-group-items{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.course-group-items span{background:#f2f4f7;color:#35445b;border-radius:12px;padding:12px 13px;font-size:12px;line-height:1.45;font-weight:700}.desktop-nav{gap:18px}.desktop-nav a,.desktop-nav button{font-size:13px}
@media(max-width:760px){.hero-country-flags{margin-bottom:10px}.hero-country-flags span{width:42px;height:28px}.hero h1{font-size:clamp(48px,15vw,68px)}.course-group-list{gap:10px}.course-group{padding:13px;border-radius:15px}.course-group h3{font-size:12px;padding:7px 10px;margin-bottom:9px}.course-group-items{grid-template-columns:1fr;gap:6px}.course-group-items span{font-size:11px;padding:10px 11px}.brand-program b{font-size:20px}}


/* V25 - mobile-first weather + travel Korean */
.language-option em{display:none!important}
.today-dashboard{grid-template-columns:.9fr 1.1fr}
.today-summary-card,.today-agenda-card{min-width:0}
.weather-card{display:block;padding:15px;border-radius:17px;background:linear-gradient(145deg,#0b376e,#0b579b);color:#fff}
.weather-visual{display:flex;align-items:center;gap:11px}
.weather-visual>div{display:flex;flex-direction:column;min-width:0}
.weather-icon{font-size:42px;filter:drop-shadow(0 4px 7px rgba(0,0,0,.12))}
.weather-visual strong{font-size:15px;letter-spacing:-.02em}
.weather-place{margin-top:3px;padding:0;border:0;color:rgba(255,255,255,.76);font-size:10.5px;font-weight:650}
.weather-temperatures{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:13px}
.weather-temp{display:flex;align-items:flex-end;justify-content:space-between;gap:8px;padding:10px 11px;border-radius:12px;background:rgba(255,255,255,.12)}
.weather-temp small{color:rgba(255,255,255,.75);font-size:10px;font-weight:700}
.weather-temp strong{font-size:24px;line-height:1;color:#fff}
.weather-temp.high strong{color:#fff4ce}.weather-temp.low strong{color:#dff1ff}
.weather-rain{margin-top:8px;padding-top:8px;border-top:1px solid rgba(255,255,255,.16);font-size:10.5px;color:rgba(255,255,255,.82)}
.korean-guide-section{overflow:hidden}
.korean-guide-heading{align-items:center}
.korean-guide-bubble{padding:10px 14px;border-radius:999px;background:#eef5ff;color:#0b4db8;font-size:12px;font-weight:800;white-space:nowrap}
.korean-situation-tabs{display:flex;gap:8px;overflow-x:auto;padding:3px 1px 10px;scrollbar-width:none;-webkit-overflow-scrolling:touch}
.korean-situation-tabs::-webkit-scrollbar{display:none}
.korean-situation-chip{flex:0 0 auto;display:inline-flex;align-items:center;gap:6px;border:1px solid #dce5f1;border-radius:999px;background:#fff;color:#44546a;padding:9px 12px;font-size:12px;font-weight:750;cursor:pointer}
.korean-situation-chip span{font-size:15px}.korean-situation-chip.active{border-color:#0b4db8;background:#0b4db8;color:#fff;box-shadow:0 6px 16px rgba(11,77,184,.16)}
.korean-expression-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:4px}
.korean-expression-card{position:relative;min-height:138px;padding:17px;border:1px solid #e1e8f2;border-radius:17px;background:linear-gradient(145deg,#fff,#f8fbff)}
.phrase-number{display:inline-flex;padding:4px 7px;border-radius:8px;background:#edf4ff;color:#0b4db8;font-size:9px;font-weight:850}
.phrase-korean{display:block;margin-top:12px;color:#111827;font-size:20px;letter-spacing:-.035em;line-height:1.25}
.phrase-roman{display:block;margin-top:5px;color:#667085;font-size:10.5px}
.phrase-meaning{margin-top:12px;padding-top:10px;border-top:1px solid #edf0f4;color:#0b4db8;font-size:12px;font-weight:750;line-height:1.4}
.korean-guide-tip{margin-top:11px;padding:11px 13px;border-radius:13px;background:#fff9e9;color:#6e5826;font-size:11px;line-height:1.5}
@media(max-width:1180px){.desktop-nav{gap:5px!important}.desktop-nav a,.desktop-nav button{padding:9px 7px!important;font-size:12px!important}}
@media(max-width:700px){
  .today-dashboard{grid-template-columns:1fr}
  .weather-card{padding:13px}
  .weather-icon{font-size:38px}
  .weather-temperatures{gap:7px;margin-top:11px}
  .weather-temp{padding:9px 10px}
  .weather-temp strong{font-size:22px}
  .korean-guide-section{padding-left:13px;padding-right:13px}
  .korean-guide-heading{align-items:flex-start}
  .korean-guide-bubble{display:none}
  .korean-expression-grid{grid-template-columns:1fr;gap:8px}
  .korean-expression-card{min-height:0;padding:14px;border-radius:14px}
  .phrase-korean{font-size:18px;margin-top:9px}
  .phrase-meaning{margin-top:9px;padding-top:8px}
  .korean-situation-chip{min-height:40px;padding:8px 11px;font-size:11px}
}
@media(max-width:430px){
  .weather-temp strong{font-size:21px}
  .weather-visual strong{font-size:14px}
  .korean-guide-section{padding-left:11px;padding-right:11px}
}


/* V26 — Option A home, mobile-first */
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.site-header{height:68px;background:#fff;backdrop-filter:none;box-shadow:0 1px 0 rgba(21,54,94,.08)}
.header-inner{max-width:1240px;padding:0 22px;gap:18px}
.brand{gap:10px}.brand-flags{display:flex;align-items:center;gap:4px}.brand-flags img{width:30px;height:20px;object-fit:cover;border-radius:2px;box-shadow:0 0 0 1px rgba(0,0,0,.08)}.brand-program b{font-size:21px;letter-spacing:-.03em;color:#0a3478}
.desktop-nav{gap:12px}.desktop-nav a,.desktop-nav button{font-size:12px!important;font-weight:760;color:#243b5e;padding:9px 7px!important}
.language-switcher{box-shadow:none;border-color:#e5eaf1;border-radius:12px}.language-option{height:32px}

.hero.hero-v26{height:330px;background:#eef7ff!important;overflow:hidden}
.hero.hero-v26 .hero-image{inset:0;background:url("assets/hero-hanoi-seoul-v26.jpg") center center / cover no-repeat!important;transform:none!important;opacity:1!important}
.hero.hero-v26 .hero-overlay{background:linear-gradient(90deg,rgba(255,255,255,.03) 0%,rgba(255,255,255,.08) 28%,rgba(255,255,255,.10) 50%,rgba(255,255,255,.06) 72%,rgba(255,255,255,.03) 100%)!important}
.hero.hero-v26 .hero-content{max-width:1180px;padding:52px 26px 42px;align-items:center;justify-content:center;text-align:center;color:#0b315f}
.hero.hero-v26 h1{max-width:650px;margin:0;white-space:pre-line;font-size:clamp(34px,4.3vw,56px);line-height:1.2;letter-spacing:-.055em;font-weight:850;text-shadow:0 1px 0 rgba(255,255,255,.35)}
.hero-dots{display:flex;gap:7px;margin-top:72px}.hero-dots i{width:10px;height:10px;border-radius:50%;background:#aab8c9}.hero-dots i.active{background:#173f78}

.today-hub.today-hub-v26{width:min(1180px,calc(100% - 38px));margin:-34px auto 24px;padding:0;border:0;background:transparent;box-shadow:none}
.today-hub-v26 .today-dashboard{grid-template-columns:1fr 1.08fr 1fr;gap:14px;align-items:stretch}
.today-hub-v26 .today-summary-card,.today-hub-v26 .today-agenda-card,.today-hub-v26 .today-survey-access{min-height:286px;padding:18px 19px;border:1px solid #dfe7f1;border-radius:17px;background:rgba(255,255,255,.97);box-shadow:0 10px 30px rgba(27,58,97,.07)}
.v26-card-heading h3,.v26-agenda-card h3{margin:0;color:#14294b;font-size:17px;letter-spacing:-.035em}.v26-location{display:flex;align-items:center;gap:5px;margin-top:7px;color:#98a2b3;font-size:10px}.v26-location span{font-size:8px;color:#91a6bf}.v26-location b{font-weight:650}
.v26-weather-main{display:flex;align-items:center;justify-content:center;gap:20px;margin:30px 0 16px}.v26-weather-main .weather-icon{font-size:70px;line-height:1;filter:drop-shadow(0 6px 8px rgba(20,50,80,.08))}.v26-current-temp{display:flex;flex-direction:column;align-items:flex-start}.v26-current-temp strong{font-size:46px;line-height:.95;color:#132c54;letter-spacing:-.055em}.v26-current-temp span{margin-top:6px;color:#667085;font-size:10px}
.v26-weather-extremes{display:flex;justify-content:center;align-items:center;gap:12px}.v26-weather-extremes span{display:flex;align-items:baseline;gap:5px}.v26-weather-extremes small{font-size:10px;color:#667085}.v26-weather-extremes b{font-size:16px}.v26-weather-extremes .high b{color:#e64545}.v26-weather-extremes .low b{color:#1768cf}.v26-weather-extremes i{width:1px;height:18px;background:#dce4ee}
.v26-weather-bottom{display:flex;justify-content:space-between;gap:10px;margin-top:22px;padding-top:13px;border-top:1px solid #e8edf3;color:#46566d;font-size:10px;line-height:1.35}.v26-weather-bottom span:first-child{font-weight:750;color:#31537d}.v26-weather-bottom span:last-child{text-align:right;max-width:55%}.weather-source{display:none}.v26-hidden-meta{display:none}
.v26-agenda-card .today-card-title{align-items:center;margin-bottom:14px}.v26-day-pill{padding:6px 9px;border-radius:7px;background:#0b55c9;color:#fff;font-size:10px;font-weight:850}.v26-agenda-card .today-agenda-list{gap:7px}.v26-agenda-card .today-agenda-item{grid-template-columns:48px minmax(0,1fr);padding:7px 8px;background:#fff;border-radius:0;border-bottom:1px solid #f0f3f7}.v26-agenda-card .today-agenda-item.next{background:#fff;box-shadow:none;border-left:3px solid #2f82e9}.v26-agenda-card .today-agenda-item time{font-size:11px}.v26-agenda-card .today-agenda-item strong{font-size:12px}.v26-agenda-card .today-agenda-item span{font-size:9.5px}.v26-full-link{display:block;width:100%;margin-top:8px;padding:9px;border:0;border-top:1px solid #e8edf3;background:transparent;color:#0b4db8;font-size:10.5px;font-weight:800;cursor:pointer}
.v26-survey-card{display:flex!important;flex-direction:column!important}.v26-survey-center{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:8px 8px 12px}.v26-survey-card .today-survey-icon{display:grid;place-items:center;width:58px;height:58px;border-radius:50%;background:#eef5ff;color:#2f78dc;font-size:26px;margin-bottom:12px}.v26-survey-center strong{font-size:17px;line-height:1.4;color:#19365f;white-space:pre-line}.v26-survey-center p{max-width:240px;margin:9px 0 0;color:#667085;font-size:10.5px;line-height:1.55}.v26-survey-card .today-survey-button{width:100%;min-height:40px;margin:0;border-radius:10px;font-size:11px}
.v26-support-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:11px}.v26-support-card{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:12px;align-items:center;padding:13px 17px;border:1px solid #dfe7f1;border-radius:14px;background:#fff;color:#1f3555;text-align:left;cursor:pointer;box-shadow:0 5px 18px rgba(27,58,97,.04)}.v26-support-icon{display:grid;place-items:center;width:40px;height:40px;border-radius:50%;background:#edf5ff;font-size:20px}.v26-support-card span:nth-child(2){display:grid;gap:2px}.v26-support-card b{font-size:12px}.v26-support-card small{color:#667085;font-size:9.5px}.v26-support-card i{font-size:23px;color:#8495aa;font-style:normal}
.today-hub-v26 + .schedule-shell{margin-top:0}

@media(max-width:980px){
  .today-hub-v26 .today-dashboard{grid-template-columns:1fr 1fr}.v26-survey-card{grid-column:1/-1;min-height:220px!important}.v26-survey-center{padding:2px 8px 10px}
}
@media(max-width:760px){
  .site-header{height:62px}.header-inner{padding:0 10px}.brand-flags img{width:23px;height:15px}.brand{gap:6px}.brand-program b{font-size:17px}.language-option span{display:none}.language-option{padding:0 6px}.language-option img{width:22px;height:15px}.menu-button{display:block}
  .hero.hero-v26{height:270px}.hero.hero-v26 .hero-image{background-position:center center!important}.hero.hero-v26 .hero-content{padding:38px 18px 36px}.hero.hero-v26 h1{max-width:330px;font-size:clamp(27px,8vw,38px);line-height:1.25}.hero-dots{margin-top:56px}.hero-dots i{width:8px;height:8px}
  .today-hub.today-hub-v26{width:calc(100% - 14px);margin:-27px auto 16px}.today-hub-v26 .today-dashboard{grid-template-columns:1fr;gap:9px}.today-hub-v26 .today-summary-card,.today-hub-v26 .today-agenda-card,.today-hub-v26 .today-survey-access{min-height:0;padding:14px 15px;border-radius:15px}
  .v26-weather-main{margin:18px 0 12px;gap:16px}.v26-weather-main .weather-icon{font-size:56px}.v26-current-temp strong{font-size:39px}.v26-weather-bottom{margin-top:15px}.v26-survey-card{grid-column:auto;min-height:220px!important}.v26-support-row{grid-template-columns:1fr;gap:8px}.v26-support-card{padding:11px 13px}.v26-support-icon{width:36px;height:36px}
}
@media(max-width:430px){
  .hero.hero-v26{height:244px}.hero.hero-v26 .hero-content{padding:32px 14px 32px}.hero.hero-v26 h1{font-size:27px;max-width:295px}.hero-dots{margin-top:47px}
  .today-hub.today-hub-v26{margin-top:-23px}.v26-card-heading h3,.v26-agenda-card h3{font-size:16px}.v26-weather-main{margin:16px 0 10px}.v26-weather-main .weather-icon{font-size:50px}.v26-current-temp strong{font-size:36px}.v26-weather-extremes b{font-size:15px}.v26-weather-bottom{font-size:9.5px}.v26-agenda-card .today-agenda-item{grid-template-columns:45px minmax(0,1fr)}.v26-survey-center strong{font-size:15px}.v26-survey-center p{font-size:9.8px}
}


/* V27 — full hero image, aligned Today dashboard, Korean expression cards */
.hero.hero-v26{
  height:clamp(220px,43.75vw,640px);
  background:#f4f8fd!important;
}
.hero.hero-v26 .hero-image{
  background-image:url("assets/hero-hanoi-seoul-v26.jpg")!important;
  background-size:contain!important;
  background-position:center center!important;
  background-repeat:no-repeat!important;
}
.hero.hero-v26 .hero-overlay{background:transparent!important}
.hero.hero-v26 .hero-content{padding:clamp(28px,5vw,72px) 26px;}
.hero.hero-v26 h1{font-size:clamp(32px,4.1vw,56px)}
.hero-dots{display:none!important}

.today-hub.today-hub-v26{
  width:min(1120px,calc(100% - 38px));
  margin:32px auto 24px;
  padding:0;
}
.today-hub-heading-v27{margin:0 0 16px;padding:0 2px}
.today-hub-heading-v27 h2{margin:0;color:#111827;font-size:27px;line-height:1.15;letter-spacing:-.04em}
.today-hub-heading-v27 p{margin:7px 0 0;color:#667085;font-size:13px;line-height:1.5}
.today-hub-v26 .today-dashboard{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}
.today-hub-v26 .today-summary-card,
.today-hub-v26 .today-agenda-card,
.today-hub-v26 .today-survey-access{
  width:100%;
  min-width:0;
  height:310px;
  min-height:310px;
  display:flex;
  flex-direction:column;
}
.v26-agenda-card .today-agenda-list{flex:1;overflow:auto}
.v26-survey-card .v26-survey-center{flex:1}

.korean-guide-section{overflow:hidden}
.korean-situation-tabs{display:flex;gap:8px;overflow-x:auto;padding:3px 1px 12px;scrollbar-width:none;-webkit-overflow-scrolling:touch}
.korean-situation-tabs::-webkit-scrollbar{display:none}
.korean-situation-chip{flex:0 0 auto;display:inline-flex;align-items:center;gap:6px;min-height:42px;border:1px solid #dce5f1;border-radius:999px;background:#fff;color:#44546a;padding:9px 13px;font-size:12px;font-weight:780;cursor:pointer}
.korean-situation-chip span{font-size:16px}
.korean-situation-chip.active{border-color:#0b4db8;background:#0b4db8;color:#fff;box-shadow:0 6px 16px rgba(11,77,184,.16)}
.korean-expression-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:4px}
.korean-expression-card{display:block;position:relative;min-height:148px;padding:18px;border:1px solid #e1e8f2;border-radius:18px;background:linear-gradient(145deg,#fff,#f7faff);box-shadow:0 6px 18px rgba(25,55,92,.045)}
.phrase-number{display:inline-flex;padding:4px 8px;border-radius:8px;background:#edf4ff;color:#0b4db8;font-size:10px;font-weight:850}
.phrase-korean{display:block;margin-top:12px;color:#111827;font-size:21px;letter-spacing:-.035em;line-height:1.25}
.phrase-roman{display:block;margin-top:6px;color:#667085;font-size:11px;line-height:1.35}
.phrase-meaning{margin-top:13px;padding-top:10px;border-top:1px solid #e9eef5;color:#0b4db8;font-size:13px;font-weight:760;line-height:1.4}
.korean-guide-tip{margin-top:13px;padding:12px 14px;border-radius:13px;background:#fff8e8;color:#6e5826;font-size:11px;line-height:1.55}

@media(max-width:980px){
  .today-hub-v26 .today-dashboard{grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
  .today-hub-v26 .today-summary-card,.today-hub-v26 .today-agenda-card,.today-hub-v26 .today-survey-access{height:300px;min-height:300px;padding:15px}
}
@media(max-width:700px){
  .hero.hero-v26{height:230px}
  .hero.hero-v26 .hero-image{background-size:contain!important}
  .hero.hero-v26 .hero-content{padding:28px 16px}
  .hero.hero-v26 h1{font-size:clamp(26px,7.8vw,34px);max-width:340px}
  .today-hub.today-hub-v26{width:calc(100% - 12px);margin:20px auto 16px}
  .today-hub-heading-v27{margin:0 5px 12px}
  .today-hub-heading-v27 h2{font-size:22px}
  .today-hub-heading-v27 p{font-size:11px}
  .today-hub-v26 .today-dashboard{grid-template-columns:1fr;gap:9px}
  .today-hub-v26 .today-summary-card,.today-hub-v26 .today-agenda-card,.today-hub-v26 .today-survey-access{height:auto;min-height:0;padding:14px 15px}
  .korean-expression-grid{grid-template-columns:1fr;gap:9px}
  .korean-expression-card{min-height:0;padding:15px;border-radius:15px}
  .phrase-korean{font-size:19px;margin-top:10px}
  .phrase-meaning{margin-top:10px;padding-top:9px}
}
@media(max-width:430px){
  .hero.hero-v26{height:216px}
  .hero.hero-v26 .hero-content{padding:24px 13px}
  .hero.hero-v26 h1{font-size:26px;max-width:310px}
  .today-hub.today-hub-v26{margin-top:18px}
  .korean-guide-section{padding-left:11px;padding-right:11px}
}

/* V28 — schedule synchronization and Today card alignment */
.today-hub-v26 .today-survey-access{margin-top:0!important;align-self:stretch!important}
@media(max-width:700px){
  .today-hub-v26 .v26-agenda-card .today-agenda-list{max-height:238px;overflow-y:auto;overscroll-behavior:contain;padding-right:2px}
}

/* V30 — make romanized Korean pronunciation easy to read at a glance */
.phrase-roman{
  display:block;
  margin-top:9px;
  color:#0b4db8;
  font-size:18px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:.01em;
}
@media(max-width:700px){
  .phrase-roman{font-size:17px;margin-top:8px;line-height:1.4}
}
@media(max-width:430px){
  .phrase-roman{font-size:16.5px}
}


/* V31 — Jamsil duty-free guide */
.dutyfree-guide{display:grid;gap:12px;padding:16px;border:1px solid #d8e4f4;border-radius:18px;background:linear-gradient(145deg,#f6f9ff,#fff)}
.dutyfree-guide-head{display:flex;align-items:center;gap:12px;padding-bottom:4px}.dutyfree-guide-head .dutyfree-icon{display:grid;place-items:center;width:46px;height:46px;border-radius:15px;background:#0d4ea6;color:#fff;font-size:22px}.dutyfree-guide-head h3{margin:0;color:#10264a;font-size:17px}.dutyfree-guide-head p{margin:3px 0 0;color:#667085;font-size:12px;line-height:1.5}.dutyfree-guide h4{margin:5px 0 0;color:#153765;font-size:13px}.dutyfree-location-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}.dutyfree-location-card{display:grid;gap:3px;padding:12px 13px;border:1px solid #e0e8f3;border-radius:14px;background:#fff}.dutyfree-location-card strong{color:#0d4ea6;font-size:15px}.dutyfree-location-card span{color:#475467;font-size:11.5px;line-height:1.4}.dutyfree-category-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}.dutyfree-category-card{display:grid;gap:6px;align-content:start;padding:13px;border:1px solid #e1e9f4;border-radius:15px;background:#fff}.dutyfree-category-card>span{font-size:25px}.dutyfree-category-card strong{color:#172b4d;font-size:12.5px}.dutyfree-category-card p{margin:0;color:#667085;font-size:10.5px;line-height:1.5}.dutyfree-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}.dutyfree-step{display:grid;grid-template-columns:30px minmax(0,1fr);gap:9px;padding:12px;border-radius:14px;background:#eef5ff}.dutyfree-step>b{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#0d4ea6;color:#fff;font-size:12px}.dutyfree-step strong{color:#153765;font-size:12px}.dutyfree-step p{margin:4px 0 0;color:#53627a;font-size:10.5px;line-height:1.5}.dutyfree-tip{padding:13px 14px;border-radius:14px;background:#fff6df;border:1px solid #f5e4b8}.dutyfree-tip strong{color:#694d00;font-size:12px}.dutyfree-tip p{margin:5px 0 0;color:#6f5b25;font-size:11px;line-height:1.55}
@media(max-width:700px){.dutyfree-guide{padding:13px;border-radius:16px}.dutyfree-guide-head{align-items:flex-start}.dutyfree-guide-head .dutyfree-icon{width:40px;height:40px;border-radius:13px;font-size:19px}.dutyfree-guide-head h3{font-size:14px}.dutyfree-guide-head p{font-size:10.5px}.dutyfree-location-grid{grid-template-columns:1fr}.dutyfree-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.dutyfree-steps{grid-template-columns:1fr}.dutyfree-category-card{min-height:132px}.jamsil-course-steps .jamsil-course-step{flex-basis:82vw}}


/* V32 — language-specific partnership hero + dining wording alignment */
.hero.hero-v26{
  height:auto!important;
  min-height:0;
  aspect-ratio:3/2;
  max-height:none;
  background:#fff!important;
}
.hero.hero-v26 .hero-image{
  background-image:url("assets/hero-v49-ko.webp")!important;
  background-size:contain!important;
  background-position:center center!important;
  background-repeat:no-repeat!important;
  background-color:#fff!important;
}
html[lang="vi"] .hero.hero-v26 .hero-image{background-image:url("assets/hero-v49-vi.webp")!important}
.hero.hero-v26 .hero-overlay{display:none!important}
.hero.hero-v26 .hero-content{pointer-events:none;padding:0!important}
@media(max-width:760px){
  .hero.hero-v26{min-height:0;max-height:none;aspect-ratio:3/2;height:auto!important}
  .hero.hero-v26 .hero-image{background-size:contain!important}
}

/* V33 — user-supplied dining/location images + final language-specific hero artwork */

/* V34 — responsive hero sizing: keep the complete artwork visible on desktop and mobile */
.hero.hero-v26{
  width:100%;
  height:clamp(220px,42vw,520px)!important;
  min-height:0!important;
  max-height:520px!important;
  aspect-ratio:auto!important;
  background:#fff!important;
}
.hero.hero-v26 .hero-image{
  background-size:contain!important;
  background-position:center center!important;
  background-repeat:no-repeat!important;
}
@media(max-width:760px){
  .hero.hero-v26{
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    aspect-ratio:3/2!important;
  }
  .hero.hero-v26 .hero-image{
    background-size:contain!important;
    background-position:center center!important;
  }
}
@media(max-width:430px){
  .hero.hero-v26{aspect-ratio:3/2!important}
}

/* V35 — improve mobile readability of the Today schedule */
@media(max-width:700px){
  .v26-agenda-card .today-agenda-item time{
    font-size:12.5px;
    line-height:1.35;
  }
  .v26-agenda-card .today-agenda-item strong{
    font-size:13.5px;
    line-height:1.4;
  }
}

/* V39 — large Korean-expression display */
.korean-expression-card{width:100%;font:inherit;text-align:left;cursor:pointer}.phrase-show-large{display:block;margin-top:11px;color:#0b4db8;font-size:9.5px;font-weight:850}.korean-expression-card:hover,.korean-expression-card:focus-visible{border-color:#a8c6ee;box-shadow:0 8px 22px rgba(11,77,184,.08);outline:none}
.phrase-display-overlay{position:fixed;inset:0;z-index:1200;display:none;align-items:center;justify-content:center;padding:20px;background:rgba(7,20,42,.78);backdrop-filter:blur(8px)}.phrase-display-overlay.open{display:flex}.phrase-display-card{position:relative;width:min(760px,100%);min-height:min(72vh,560px);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:54px 34px 42px;border-radius:28px;background:#fff;box-shadow:0 30px 80px rgba(0,0,0,.28)}.phrase-display-close{position:absolute;right:18px;top:16px;width:42px;height:42px;border:0;border-radius:50%;background:#eef2f7;color:#26384f;font-size:26px;cursor:pointer}.phrase-display-card>small{color:#7b8797;font-size:11px;font-weight:900;letter-spacing:.08em}.phrase-display-card>strong{margin-top:22px;color:#0d2d5a;font-size:clamp(44px,8vw,86px);line-height:1.15;letter-spacing:-.04em;word-break:keep-all}.phrase-display-card>span{margin-top:22px;color:#0b4db8;font-size:clamp(20px,3vw,30px);font-weight:800}.phrase-display-card>p{margin:12px 0 0;color:#55657a;font-size:clamp(16px,2.2vw,22px);line-height:1.5}
@media(max-width:700px){.phrase-display-overlay{padding:12px}.phrase-display-card{min-height:74vh;padding:48px 22px 34px;border-radius:22px}.phrase-display-card>strong{font-size:clamp(42px,15vw,70px)}.phrase-show-large{font-size:9px}}


/* V40 — header VOSP logo */
.brand-logo{display:block;width:auto;height:42px;max-width:118px;object-fit:contain;border-radius:4px}
@media(max-width:760px){.brand-logo{height:36px;max-width:96px;border-radius:3px}}
@media(max-width:430px){.brand-logo{height:34px;max-width:90px}}

/* V42 - VOSP AI guide floating action button and mobile sheet */
.vosp-ai-fab {
  position: fixed;
  right: 16px;
  bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  z-index: 980;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 16px 10px 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0868f7, #0054d8);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 76, 190, .30);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.vosp-ai-fab:hover { transform: translateY(-1px); box-shadow: 0 13px 30px rgba(0, 76, 190, .34); }
.vosp-ai-fab:active { transform: translateY(0); }
.vosp-ai-fab:focus-visible { outline: 3px solid rgba(8, 104, 247, .25); outline-offset: 3px; }
.vosp-ai-fab-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 10px;
  background: #fff;
  color: #0868f7;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -1px;
}
#vosp-ai-fab-label { display: inline-block; white-space: nowrap; }
.vosp-ai-overlay { position: fixed; inset: 0; z-index: 1500; display: none; }
.vosp-ai-overlay.open { display: block; }
.vosp-ai-backdrop { position: absolute; inset: 0; background: rgba(7, 20, 42, .48); backdrop-filter: blur(3px); }
.vosp-ai-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(430px, calc(100% - 36px));
  height: min(690px, calc(100dvh - 36px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dce5f2;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(10, 31, 62, .28);
}
.vosp-ai-head { display: flex; align-items: center; justify-content: space-between; padding: 17px 18px 14px; border-bottom: 1px solid #edf1f6; }
.vosp-ai-head small { display: block; color: #0868f7; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.vosp-ai-head strong { display: block; margin-top: 3px; color: #0d274c; font-size: 16px; }
.vosp-ai-close { width: 36px; height: 36px; border: 0; border-radius: 50%; background: #f0f4f9; color: #3d4c61; font-size: 23px; cursor: pointer; }
.vosp-ai-status { margin: 10px 14px 0; padding: 9px 11px; border-radius: 11px; background: #fff6da; color: #855b00; font-size: 10px; line-height: 1.45; }
.vosp-ai-messages { flex: 1; overflow: auto; padding: 15px 14px 8px; display: flex; flex-direction: column; gap: 10px; }
.vosp-ai-msg { max-width: 88%; padding: 11px 13px; border-radius: 16px; font-size: 12px; line-height: 1.55; white-space: pre-wrap; }
.vosp-ai-msg.user { align-self: flex-end; background: #e9f2ff; color: #173d73; border-bottom-right-radius: 5px; }
.vosp-ai-msg.bot { align-self: flex-start; background: #f5f7fa; color: #28384e; border-bottom-left-radius: 5px; }
.vosp-ai-msg.loading { color: #748095; }
.vosp-ai-source { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; padding-top: 8px; border-top: 1px solid #e5eaf0; color: #7b8795; font-size: 9px; }
.vosp-ai-source button { border: 0; background: transparent; color: #0868f7; font-size: 9px; font-weight: 850; cursor: pointer; }
.vosp-ai-suggestions { display: flex; gap: 6px; overflow-x: auto; padding: 5px 14px 10px; scrollbar-width: none; }
.vosp-ai-suggestions::-webkit-scrollbar { display: none; }
.vosp-ai-suggestions button { flex: 0 0 auto; border: 1px solid #dbe5f2; border-radius: 999px; background: #fff; padding: 8px 10px; color: #42536b; font-size: 10px; font-weight: 750; cursor: pointer; }
.vosp-ai-form { display: grid; grid-template-columns: 1fr 42px; gap: 8px; padding: 11px 13px 8px; border-top: 1px solid #edf1f6; background: #fff; }
.vosp-ai-form textarea { min-height: 42px; max-height: 90px; resize: none; border: 1px solid #d8e1ed; border-radius: 13px; padding: 10px 11px; font: inherit; font-size: 11px; line-height: 1.45; outline: none; }
.vosp-ai-form textarea:focus { border-color: #7eb0f7; box-shadow: 0 0 0 3px rgba(8, 104, 247, .08); }
.vosp-ai-form button { align-self: stretch; border: 0; border-radius: 13px; background: #0868f7; color: #fff; font-size: 18px; cursor: pointer; }
.vosp-ai-form button:disabled { opacity: .45; }
.vosp-ai-foot { display: block; padding: 0 14px 11px; color: #9099a6; font-size: 8.5px; text-align: center; }
.vosp-ai-welcome { align-self: stretch !important; max-width: none !important; background: #fff !important; border: 1px solid #e4eaf2 !important; }
.vosp-ai-welcome strong { display: block; margin-bottom: 5px; color: #143a70; font-size: 13px; }
.vosp-ai-welcome span { color: #5d6b7e; }
.vosp-ai-offline-note { color: #a14d00; font-weight: 800; }
@media (max-width: 700px) {
  .vosp-ai-fab {
    right: 14px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    min-height: 44px;
    padding: 8px 14px 8px 8px;
    font-size: 11px;
    box-shadow: 0 9px 22px rgba(0, 76, 190, .28);
  }
  .vosp-ai-fab-icon { width: 27px; height: 27px; flex-basis: 27px; }
  #vosp-ai-fab-label { display: inline-block; }
  .vosp-ai-panel {
    right: 0;
    bottom: 0;
    width: 100%;
    height: min(84dvh, 720px);
    border-radius: 24px 24px 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .vosp-ai-backdrop { background: rgba(7, 20, 42, .38); }
  .vosp-ai-msg { font-size: 11.5px; }
  .vosp-ai-suggestions button { font-size: 9.5px; }
}
@media (max-width: 390px) {
  .vosp-ai-fab { right: 10px; padding-right: 12px; font-size: 10.5px; }
}


/* V43 — Pangyo bilingual illustrated walking map + selected-place highlight */
.pangyo-map-panel{display:grid;gap:10px;margin:14px 0 2px;padding:14px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow-sm)}
.pangyo-map-panel-head{display:flex;align-items:end;justify-content:space-between;gap:16px}.pangyo-map-panel-head>div{display:grid;gap:2px}.pangyo-map-panel-head small{color:var(--blue-700);font-size:9px;font-weight:900;letter-spacing:.08em}.pangyo-map-panel-head strong{color:#10264a;font-size:15px;line-height:1.35}.pangyo-map-panel-head>span{max-width:50%;color:#667085;font-size:10px;line-height:1.45;text-align:right}
.pangyo-map-stage{position:relative;width:min(100%,680px);margin:0 auto;overflow:hidden;border:1px solid #dce5ef;border-radius:16px;background:#eef3f8}.pangyo-map-stage>img{display:block;width:100%;height:auto}.pangyo-map-hotspots{position:absolute;inset:0;pointer-events:none}.pangyo-map-hotspot{--map-x:50%;--map-y:50%;position:absolute;left:var(--map-x);top:var(--map-y);z-index:4;width:18%;height:8%;transform:translate(-50%,-50%);border:0;background:transparent;pointer-events:auto;cursor:pointer}.pangyo-map-hotspot>span{position:absolute;inset:-8px;border:4px solid transparent;border-radius:22px;transition:border-color .18s ease,box-shadow .18s ease,background .18s ease}.pangyo-map-hotspot>b{position:absolute;left:50%;top:-22px;transform:translateX(-50%);max-width:150px;padding:4px 8px;border-radius:999px;background:rgba(12,78,180,.93);color:#fff;font-size:9px;font-weight:850;white-space:nowrap;opacity:0;transition:opacity .15s ease}.pangyo-map-hotspot:hover>span,.pangyo-map-hotspot:focus-visible>span,.pangyo-map-hotspot.is-active>span{border-color:#991b1b;box-shadow:0 0 0 6px rgba(153,27,27,.30),0 8px 26px rgba(127,29,29,.32);background:rgba(185,28,28,.12)}.pangyo-map-hotspot:hover>b,.pangyo-map-hotspot:focus-visible>b,.pangyo-map-hotspot.is-active>b{opacity:1}.pangyo-map-hotspot.is-pulsing>span{animation:pangyoMapPulse .9s ease-in-out 4}.pangyo-map-caption{margin:0;color:#7a8798;font-size:9.5px;line-height:1.5;text-align:center}
@keyframes pangyoMapPulse{0%,100%{transform:translateY(0) scale(1)}45%{transform:translateY(-9px) scale(1.04);border-color:#7f1d1d;box-shadow:0 0 0 13px rgba(153,27,27,.26),0 12px 30px rgba(127,29,29,.38);background:rgba(185,28,28,.16)}}
.nearby-card-actions{display:flex;flex-wrap:wrap;gap:7px;width:100%;margin-top:auto;padding-top:9px}.nearby-map-focus-btn,.nearby-detail-btn{min-height:34px;padding:7px 10px;border-radius:10px;font-size:10px;font-weight:850;cursor:pointer}.nearby-map-focus-btn{flex:1;border:1px solid #bcd1ef;background:#eef5ff;color:var(--blue-800)}.nearby-detail-btn{border:1px solid #dce5ef;background:#fff;color:#475467}.nearby-map-focus-btn:hover{background:#e1efff}.nearby-detail-btn:hover{border-color:#bdd0e8;color:var(--blue-800)}
@media(max-width:760px){.pangyo-map-panel{margin-top:12px;padding:10px;border-radius:16px}.pangyo-map-panel-head{display:grid;gap:4px}.pangyo-map-panel-head strong{font-size:13.5px}.pangyo-map-panel-head>span{max-width:none;font-size:9.5px;text-align:left}.pangyo-map-stage{border-radius:13px}.pangyo-map-hotspot{width:23%;height:8%}.pangyo-map-hotspot>b{top:-19px;font-size:8.5px}.nearby-map-focus-btn,.nearby-detail-btn{font-size:10.5px}}
@media(prefers-reduced-motion:reduce){.pangyo-map-hotspot.is-pulsing>span{animation:none}}


/* V44 — calmer Pangyo nearby UX: cards first, map collapsed by default */
.pangyo-map-panel{margin-top:18px!important;padding:12px 14px!important;background:#f8fbff!important;box-shadow:none!important}
.pangyo-map-panel-head{align-items:center!important}
.pangyo-map-panel-head>div{min-width:0}
.pangyo-map-panel-head>div>span{display:block;margin-top:3px;color:#718096;font-size:10px;line-height:1.4}
.pangyo-map-toggle{flex:0 0 auto;border:0;background:transparent;color:var(--blue-700);font-size:11px;font-weight:850;cursor:pointer;padding:8px 4px}
.pangyo-map-toggle b{display:inline-block;transition:transform .2s ease}
.pangyo-map-panel:not(.is-collapsed) .pangyo-map-toggle b{transform:rotate(180deg)}
.pangyo-map-body{display:grid;gap:10px;overflow:hidden;max-height:1200px;opacity:1;margin-top:4px;transition:max-height .28s ease,opacity .2s ease,margin .2s ease}
.pangyo-map-panel.is-collapsed .pangyo-map-body{max-height:0;opacity:0;margin-top:0;pointer-events:none}
.pangyo-map-stage{width:min(100%,620px)!important;max-height:55vh;overflow:auto!important}
.nearby-card-grid{margin-top:16px!important}
@media(max-width:760px){.pangyo-map-panel{margin-top:14px!important;padding:10px 12px!important}.pangyo-map-panel-head{display:flex!important;align-items:center!important}.pangyo-map-panel-head>div>span{font-size:9px}.pangyo-map-toggle{font-size:10.5px}.pangyo-map-stage{max-height:48vh}.nearby-card-grid{margin-top:14px!important}}
@media(prefers-reduced-motion:reduce){.pangyo-map-body,.pangyo-map-toggle b{transition:none!important}}


/* V45 — restore Pangyo map at its natural aspect ratio; keep map collapsed until requested */
.pangyo-map-stage{
  width:min(100%,620px)!important;
  max-height:none!important;
  overflow:hidden!important;
}
.pangyo-map-stage>img{
  display:block!important;
  width:100%!important;
  height:auto!important;
  max-height:none!important;
  object-fit:contain!important;
}
@media(max-width:760px){
  .pangyo-map-stage{max-height:none!important;overflow:hidden!important;}
}

/* V49 performance/detail cleanup */
.nearby-detail-image-wrap figcaption,.experience-source.credit-only,.dining-image-credit,.experience-extra-image figcaption,.visit-story figure figcaption{display:none!important}

/* V50 — translucent blue glass header + capsule language control */
.site-header{
  height:64px!important;
  background:linear-gradient(135deg,rgba(236,247,255,.90) 0%,rgba(248,252,255,.88) 55%,rgba(255,255,255,.86) 100%)!important;
  border-bottom:1px solid rgba(72,139,220,.22)!important;
  box-shadow:0 6px 22px rgba(28,76,135,.10)!important;
  -webkit-backdrop-filter:blur(16px) saturate(145%);
  backdrop-filter:blur(16px) saturate(145%);
}
.header-inner{
  padding-top:0!important;
  padding-bottom:0!important;
}
.brand-logo{
  height:38px!important;
  max-width:108px!important;
  border-radius:10px!important;
  box-shadow:0 3px 12px rgba(11,77,184,.12);
}
.language-switcher{
  gap:2px!important;
  padding:3px!important;
  border:1px solid rgba(100,151,214,.28)!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.58)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.70),0 3px 10px rgba(39,86,145,.06)!important;
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
}
.language-option{
  height:32px!important;
  padding:0 9px!important;
  border:1px solid transparent!important;
  border-radius:999px!important;
  color:#52657d!important;
  background:transparent!important;
  transition:background .16s ease,border-color .16s ease,color .16s ease,box-shadow .16s ease;
}
.language-option.active{
  color:#073e98!important;
  background:rgba(220,237,255,.94)!important;
  border-color:rgba(48,116,203,.30)!important;
  box-shadow:0 2px 8px rgba(29,94,175,.10)!important;
}
.language-option:hover{background:rgba(235,245,255,.76)!important;color:#073e98!important}
.menu-button{
  width:38px!important;
  height:38px!important;
  border-radius:12px!important;
  color:#073e98;
}
.menu-button:hover{background:rgba(221,238,255,.70)!important}
.menu-button span{width:23px!important;height:2px!important;background:#0a3478!important}
.desktop-nav a,.desktop-nav button{color:#405873}
.desktop-nav a:hover,.desktop-nav button:hover{background:rgba(225,240,255,.68)!important;color:#073e98!important}

@media(max-width:760px){
  .site-header{height:58px!important}
  .header-inner{padding:0 10px!important;gap:8px!important}
  .brand-logo{height:34px!important;max-width:94px!important;border-radius:9px!important}
  .header-actions{gap:7px!important}
  .language-switcher{padding:2px!important}
  .language-option{height:30px!important;padding:0 7px!important}
  .language-option img{width:21px!important;height:14px!important;border-radius:3px!important}
  .menu-button{width:36px!important;height:36px!important}
  .menu-button span{width:22px!important}
}
@media(max-width:390px){
  .site-header{height:56px!important}
  .header-inner{padding:0 8px!important;gap:6px!important}
  .brand-logo{height:32px!important;max-width:88px!important}
  .header-actions{gap:5px!important}
  .language-option{height:29px!important;padding:0 6px!important}
  .language-option img{width:20px!important;height:13px!important}
  .menu-button{width:34px!important;height:34px!important}
}
