  :root {
    --bg:      oklch(99% 0.002 240);
    --surface: oklch(100% 0 0);
    --fg:      oklch(18% 0.012 250);
    --muted:   oklch(54% 0.012 250);
    --border:  oklch(92% 0.005 250);
    --accent:  #f2cc45;
    --accent-soft: oklch(58% 0.18 255 / 0.08);
    --logo-yellow: #F5D747;

    --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
    --font-body:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
    --font-mono:    "JetBrains Mono", "IBM Plex Mono", ui-monospace, Menlo, monospace;

    --max: 1240px;
    --r:   12px;
    --r-sm: 8px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
  }
  h2 { font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.025em; }
  h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }

  .num { font-variant-numeric: tabular-nums; }
  .mono { font-family: var(--font-mono); }

  .eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding-inline: 24px;
  }

  /* ────── Legacy front shell reset ────── */
  main#app {
    min-height: calc(100vh - 68px);
    margin-top: 0;
    padding-top: 0;
  }
  .header .logo,
  .footer .logo {
    max-width: none;
    height: auto;
  }
  .header .logo img,
  .footer .logo img {
    max-height: none;
  }
  .footer {
    color: var(--fg);
    background: transparent;
  }
  .footer > .container {
    display: block;
    justify-content: initial;
    align-items: initial;
    padding-block: 0;
  }
  .footer a {
    color: inherit;
  }

  /* ────── Header ────── */
  .header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in oklch, var(--bg) 88%, transparent);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .header__inner {
    display: flex; align-items: center; gap: 32px;
    height: 68px;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    /* flex-shrink: 0; */
  }
  .logo__mark {
    width: 36px; height: 36px;
    background: var(--logo-yellow);
    border-radius: 8px;
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 700; font-size: 18px;
    color: var(--fg);
    letter-spacing: -0.04em;
  }
  .logo__name {
    font-family: var(--font-display);
    font-weight: 600; font-size: 19px;
    letter-spacing: -0.02em;
  }
  .nav {
    display: flex; gap: 28px;
    font-size: 15px; color: var(--muted);
  }
  .nav > a, .nav__item > .nav__trigger { transition: color .15s; }
  .nav > a:hover, .nav__item > .nav__trigger:hover { color: var(--fg); }
  .nav a.is-active { color: var(--fg); font-weight: 500; }

  /* Nav dropdown */
  .nav__item { position: relative; }
  .nav__trigger {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--muted); font-size: 15px;
    font-family: inherit; cursor: pointer;
    padding: 0;
  }
  .nav__trigger svg {
    transition: transform .2s;
  }
  .nav__item[data-open="true"] .nav__trigger { color: var(--fg); }
  .nav__item[data-open="true"] .nav__trigger svg { transform: rotate(180deg); }
  .nav__panel {
    position: absolute;
    top: calc(100% + 18px);
    inset-inline-start: -24px;
    width: 540px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: 0 12px 40px rgb(0 0 0 / 0.08);
    padding: 24px;
    display: none;
    z-index: 50;
  }
  .nav__item[data-open="true"] .nav__panel { display: block; }
  .nav__panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 24px;
  }
  .nav__panel-group-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 8px 0 6px;
    padding-inline-start: 10px;
  }
  .nav__panel-link {
    display: flex; align-items: center; gap: 12px;
    padding: 10px;
    border-radius: 8px;
    color: var(--fg);
    font-size: 15px;
    transition: background .12s;
  }
  .nav__panel-link:hover { background: oklch(96% 0.005 250); }
  .nav__panel-link .ico {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: oklch(95% 0.008 250);
    display: grid; place-items: center;
    color: var(--muted);
    flex-shrink: 0;
  }
  .nav__panel-link .ico svg { width: 16px; height: 16px; }
  .nav__panel-link .lbl { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
  .nav__panel-link .lbl small { font-size: 12px; color: var(--muted); }
  .nav__panel-plainlink {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--fg);
    font-size: 14px;
    line-height: 1.3;
  }
  .nav__panel-plainlink:hover { background: oklch(96% 0.005 250); }

  .header__right {
    margin-inline-start: auto;
    display: flex; gap: 12px; align-items: center;
    flex-shrink: 0;
  }
  .icon-btn {
    position: relative;
    width: 40px; height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--fg);
    transition: border-color .15s, background .15s;
  }
  .icon-btn:hover { border-color: var(--fg); }
  .icon-btn__badge {
    position: absolute;
    top: -4px; inset-inline-end: -4px;
    min-width: 18px; height: 18px; padding: 0 5px;
    border-radius: 999px;
    background: var(--accent); color: white;
    font-size: 11px; font-weight: 600;
    display: grid; place-items: center;
    font-variant-numeric: tabular-nums;
    border: 2px solid var(--surface);
    line-height: 1;
  }

  /* Mobile drawer */
  .drawer-backdrop {
    position: fixed; inset: 0;
    background: rgb(0 0 0 / 0.4);
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
    z-index: 90;
  }
  .drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
  .drawer {
    position: fixed; top: 0; inset-inline-end: 0;
    width: min(340px, 88vw); height: 100dvh;
    background: var(--surface);
    z-index: 100;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column;
    overflow-y: auto;
  }
  [dir="rtl"] .drawer { transform: translateX(-100%); }
  .drawer.is-open { transform: translateX(0); }
  .drawer__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
  }
  .drawer__close {
    width: 36px; height: 36px;
    border-radius: 999px;
    display: grid; place-items: center;
    color: var(--fg);
  }
  .drawer__close:hover { background: var(--border); }
  .drawer__nav { padding: 8px 12px; }
  .drawer__link, .drawer__accordion-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 12px;
    font-size: 16px;
    color: var(--fg);
    width: 100%;
    border-radius: 8px;
  }
  .drawer__link:hover, .drawer__accordion-head:hover { background: oklch(96% 0.005 250); }
  .drawer__accordion-head svg { transition: transform .2s; color: var(--muted); }
  .drawer__accordion[data-open="true"] .drawer__accordion-head svg { transform: rotate(180deg); }
  .drawer__accordion-body {
    display: none;
    padding: 4px 0 8px 12px;
    border-inline-start: 1px solid var(--border);
    margin-inline-start: 18px;
  }
  .drawer__accordion[data-open="true"] .drawer__accordion-body { display: block; }
  .drawer__sub {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--muted);
    border-radius: 6px;
  }
  .drawer__sub:hover { color: var(--fg); background: oklch(96% 0.005 250); }
  .drawer__sub-group {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); padding: 12px 14px 4px;
  }
  .drawer__footer {
    margin-top: auto;
    padding: 16px 22px 22px;
    border-top: 1px solid var(--border);
    display: flex; gap: 10px;
  }
  .drawer__footer .btn { flex: 1; justify-content: center; text-align: center; }
  .header__mobile-login { display: none; }
  .btn {
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 14px; font-weight: 500;
    transition: background .15s, border-color .15s, color .15s;
  }
  .btn--ghost { color: var(--fg); }
  .btn--ghost:hover { background: var(--border); }
  .btn--primary {
    background: var(--accent); color: white;
  }
  .btn--primary:hover { filter: brightness(.92); }
  .btn--outline {
    border: 1px solid var(--border);
    background: var(--surface);
  }
  .btn--outline:hover { border-color: var(--fg); }

  .header__menu {
    display: none;
    width: 40px; height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    align-items: center; justify-content: center;
  }

  /* ────── Hero / Carousel ────── */
  .hero { padding-top: 24px; }
  .hero__inner { position: relative; }
  .hero--no-banner {
    padding-top: 44px;
  }
  .hero--no-banner .search {
    margin-top: 0;
    max-width: 100%;
  }
  .hero--no-banner .search__submit {
    border: 0;
  }

  .carousel {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 21 / 9;
    background: var(--border);
  }
  .carousel__track {
    position: absolute; inset: 0;
    display: flex;
    transition: transform .7s cubic-bezier(.65,.05,.36,1);
  }
  .slide {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
  }
  .slide__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
  }
  .slide__bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
      transparent 0%, transparent 40%,
      rgb(0 0 0 / 0.05) 60%,
      rgb(0 0 0 / 0.55) 100%);
  }
  .slide__caption {
    position: absolute;
    inset-inline-start: 48px;
    bottom: 48px;
    color: white;
    max-width: 560px;
  }
  .slide__kicker {
    display: inline-block;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgb(255 255 255 / 0.85);
    margin-bottom: 14px;
  }
  .slide__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.4vw, 56px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: white;
    margin: 0 0 12px;
  }
  .slide__sub {
    font-size: 16px;
    color: rgb(255 255 255 / 0.88);
    max-width: 460px;
  }

  /* gradients standing in for photography */
  .bg-kyoto    { background-image: linear-gradient(135deg, #c44545 0%, #6b1f1f 60%, #2c0d0d 100%); }
  .bg-iceland  { background-image: linear-gradient(135deg, #6ea0c4 0%, #345a7a 55%, #14202c 100%); }
  .bg-santorini{ background-image: linear-gradient(135deg, #e8eef5 0%, #93b5d4 50%, #3a6e9a 100%); }
  .bg-chiangmai{ background-image: linear-gradient(135deg, #d4a04b 0%, #8e5921 60%, #3a230d 100%); }
  .bg-machu    { background-image: linear-gradient(135deg, #9bb56e 0%, #4f7434 55%, #1e2f12 100%); }

  .bg-tokyo    { background-image: linear-gradient(160deg, #2a2f4a 0%, #d04a7a 60%, #f3c14a 100%); }
  .bg-seoul    { background-image: linear-gradient(140deg, #e7d4b9 0%, #b08a5a 60%, #4d3a22 100%); }
  .bg-bali     { background-image: linear-gradient(135deg, #5fb098 0%, #2d6e60 60%, #102923 100%); }
  .bg-maldives { background-image: linear-gradient(160deg, #cfeaf0 0%, #5db3c4 50%, #1f5a6b 100%); }
  .bg-bcn      { background-image: linear-gradient(140deg, #f3b85c 0%, #d76a3f 60%, #6d2a18 100%); }
  .bg-paris    { background-image: linear-gradient(160deg, #d4c5b0 0%, #8a7a64 60%, #3b2f23 100%); }
  .bg-nz       { background-image: linear-gradient(135deg, #7fb0c4 0%, #2f6e5b 55%, #102a23 100%); }
  .bg-marrakech{ background-image: linear-gradient(135deg, #e89a4a 0%, #b14f29 60%, #4a1c0c 100%); }
  .bg-lisbon   { background-image: linear-gradient(150deg, #f5dcc4 0%, #d99a6e 55%, #6b3724 100%); }
  .bg-rome     { background-image: linear-gradient(140deg, #e8c89a 0%, #b97a3d 55%, #4a2812 100%); }
  .bg-newyork  { background-image: linear-gradient(155deg, #5a6e8a 0%, #2b3a52 55%, #0d1422 100%); }

  .car-ctrl {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.92);
    display: grid; place-items: center;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.12);
    color: var(--fg);
    transition: background .15s, transform .15s;
  }
  .car-ctrl:hover { background: white; transform: translateY(-50%) scale(1.04); }
  .car-ctrl--prev { inset-inline-start: 16px; }
  .car-ctrl--next { inset-inline-end: 16px; }
  .car-ctrl svg { width: 18px; height: 18px; }

  .car-dots {
    position: absolute;
    bottom: 20px;
    inset-inline-end: 24px;
    display: flex; gap: 8px;
  }
  .car-dot {
    width: 28px; height: 4px;
    border-radius: 2px;
    background: rgb(255 255 255 / 0.4);
    transition: background .25s, width .25s;
  }
  .car-dot.is-active { background: white; width: 40px; }

  /* ────── Search bar ────── */
  .search {
    margin-top: -36px;
    position: relative; z-index: 5;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 8px 28px rgb(0 0 0 / 0.08), 0 2px 6px rgb(0 0 0 / 0.04);
    display: flex;
    align-items: stretch;
    padding: 6px;
    max-width: 920px;
    margin-inline: auto;
  }
  .search__field {
    flex: 1;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: text;
    transition: background .15s;
    display: flex; flex-direction: column; gap: 2px;
    min-width: 0;
    position: relative;
    margin:0;
  }
  .search__field:hover { background: oklch(96% 0.005 250); }
  .search__field + .search__field::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 12px; bottom: 12px;
    width: 1px;
    background: var(--border);
  }
  .search__field:hover + .search__field::before,
  .search__field:has(input:focus) + .search__field::before { background: transparent; }
  .search__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--fg);
  }
  .search__input {
    border: 0; padding: 0;
    background: transparent;
    font: inherit;
    font-size: 14px;
    color: var(--fg);
    width: 100%;
    outline: none;
  }
  .search__input::placeholder { color: var(--muted); }
  /* date input 對齊與外觀微調 */
  .search__input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    color: var(--fg);
    min-height: 20px;
    line-height: 1.2;
  }
  .search__input[type="date"]:not(:focus):invalid,
  .search__input[type="date"]:placeholder-shown {
    color: var(--muted);
  }
  .search__input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: .55;
    cursor: pointer;
  }
  .search__submit {
    flex-shrink: 0;
    background: var(--accent);
    color: white;
    border-radius: 999px;
    padding: 0 22px;
    margin-inline-start: 4px;
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 500;
    transition: filter .15s;
  }
  .search__submit:hover { filter: brightness(.92); }
  .search__submit svg { width: 16px; height: 16px; }

  /* ────── Section spacing ────── */
  .section { padding-block: 88px; }
  .section--tight { padding-block: 64px; }
  .section__head {
    display: flex; justify-content: space-between;
    align-items: end; gap: 24px;
    margin-bottom: 36px;
  }
  .section__title-block { max-width: 640px; }
  .section__sub {
    margin-top: 12px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
  }
  .section__link {
    flex-shrink: 0;
    font-size: 14px; font-weight: 500;
    color: var(--accent);
    display: inline-flex; align-items: center; gap: 4px;
    transition: gap .15s;
  }
  .section__link:hover { gap: 8px; }

  /* ────── 熱門推薦 — editorial split ────── */
  .feat {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
  }
  .feat__main, .feat__side {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    cursor: pointer;
  }
  .feat__main { aspect-ratio: 8 / 7; }
  .feat__side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    aspect-ratio: auto;
  }
  .feat-card {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s;
  }
  .feat-card:hover { transform: translateY(-2px); }
  .feat-card__bg { position: absolute; inset: 0; }
  .feat-card__bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
      transparent 30%, rgb(0 0 0 / 0.55) 100%);
  }
  .feat-card__body {
    position: absolute;
    inset-inline-start: 24px;
    inset-inline-end: 24px;
    bottom: 22px;
    color: white;
  }
  .feat-card__kicker {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.85);
    margin-bottom: 8px;
  }
  .feat-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: white;
  }
  .feat-card--main .feat-card__title { font-size: clamp(28px, 2.6vw, 36px); }
  .feat-card--main .feat-card__kicker { font-size: 12px; }
  .feat-card--main .feat-card__desc {
    margin-top: 8px;
    font-size: 14px;
    color: rgb(255 255 255 / 0.88);
    max-width: 360px;
  }
  .feat-card--side .feat-card__title { font-size: 20px; }
  .feat-card__meta {
    margin-top: 10px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgb(255 255 255 / 0.85);
  }
  .feat-card__meta .dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.55);
    display: inline-block;
    vertical-align: middle;
  }
  .feat-card__price {
    margin-inline-start: auto;
    font-family: var(--font-display);
    font-weight: 600;
    color: white;
    font-size: 15px;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
  }
  .feat-card__price small {
    font-weight: 400;
    font-size: 11px;
    color: rgb(255 255 255 / 0.7);
    margin-inline-end: 2px;
  }
  .feat-card--side .feat-card__meta { font-size: 12px; margin-top: 6px; gap: 8px; }
  .feat-card--side .feat-card__price { font-size: 14px; }

  /* ────── 行程標籤分類 ────── */
  .tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    font-size: 14px;
    color: var(--fg);
    transition: border-color .15s, background .15s, color .15s;
  }
  .tag:hover { border-color: var(--fg); }
  .tag.is-active {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg);
  }
  .tag__icon { font-size: 16px; }
  .tag__count {
    font-size: 12px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
  }
  .tag.is-active .tag__count { color: oklch(70% 0.012 250); }

  /* ────── 熱門行程 grid ────── */
  .tours {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 28px;
  }
  .tour {
    cursor: pointer;
    display: flex; flex-direction: column;
    gap: 6px;
  }
  .tour__media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--border);
    margin-bottom: 4px;
  }
  .tour__bg {
    position: absolute; inset: 0;
    transition: transform .5s cubic-bezier(.2,.7,.3,1);
  }
  .tour:hover .tour__bg { transform: scale(1.04); }
  .tour__badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: rgb(255 255 255 / 0.95);
    color: var(--fg);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    border-radius: 6px;
  }
  .tour__heart {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    width: 32px; height: 32px;
    background: rgb(255 255 255 / 0.85);
    border-radius: 999px;
    display: grid; place-items: center;
    color: var(--fg);
    transition: background .15s, color .15s;
  }
  .tour__heart:hover { background: white; color: var(--accent); }
  .tour__heart svg { width: 16px; height: 16px; }

  .tour__head { display: block; }
  .tour__title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--fg);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
    /* min-height: calc(1.4em * 2); */
  }
  .tour__depart {
    position: absolute;
    bottom: 12px;
    inset-inline-start: 12px;
    display: inline-flex; align-items: center; gap: 4px;
    background: rgb(0 0 0 / 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.02em;
    padding: 5px 9px;
    border-radius: 6px;
  }
  .tour__depart svg { width: 11px; height: 11px; }
  .tour__tags {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 0;
  }
  .tour__tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--muted);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 999px;
    line-height: 1.4;
  }
  .tour__meta {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.45;
  }
  .tour__price {
    font-size: 14px;
    color: #C5353E;
    margin-top: 0;
  }
  .tour__price strong {
    font-size: 16px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    font-family: Arial;
  }
  .tour__price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 13px;
    margin-inline-start: 6px;
    font-variant-numeric: tabular-nums;
  }

  /* ────── 精選商品 ────── */
  .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
  }
  .product {
    cursor: pointer;
    display: flex; flex-direction: column;
    gap: 12px;
  }
  .product__media {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--r);
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    display: grid; place-items: center;
    transition: border-color .15s;
  }
  .product:hover .product__media { border-color: oklch(75% 0.012 250); }
  .product__tint {
    position: absolute; inset: 0;
    opacity: .55;
  }
  .product__glyph {
    position: relative;
    width: 56%; height: 56%;
    display: grid; place-items: center;
    color: var(--fg);
  }
  .product__glyph svg { width: 100%; height: 100%; stroke-width: 1.25; }
  .product__tag {
    position: absolute;
    top: 12px; inset-inline-start: 12px;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted);
    background: rgb(255 255 255 / 0.9);
    border: 1px solid var(--border);
    padding: 4px 8px;
    border-radius: 999px;
  }
  .product__sku {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
  }
  .product__title {
    font-size: 15px;
    font-weight: 500;
    color: var(--fg);
    line-height: 1.35;
    margin-top: 2px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .product__row {
    display: flex; justify-content: space-between;
    align-items: center;
    margin-top: 4px;
  }
  .product__price {
    font-size: 15px;
    font-weight: 600;
    color: var(--fg);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
  }
  .product__cart {
    width: 32px; height: 32px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: grid; place-items: center;
    color: var(--fg);
    transition: background .15s, border-color .15s, color .15s;
  }
  .product__cart:hover {
    background: var(--fg); border-color: var(--fg); color: var(--bg);
  }
  .product__cart svg { width: 14px; height: 14px; }

  .tint-sand   { background: oklch(94% 0.025 75); }
  .tint-sky    { background: oklch(92% 0.03 230); }
  .tint-mist   { background: oklch(93% 0.02 180); }
  .tint-stone  { background: oklch(91% 0.008 80); }
  .tint-rose   { background: oklch(93% 0.025 25); }
  .tint-olive  { background: oklch(92% 0.03 130); }

  /* ────── 精選票券 ────── */
  .tickets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ticket {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    cursor: pointer;
    transition: border-color .15s, transform .25s;
  }
  .ticket:hover { border-color: oklch(75% 0.012 250); }
  .ticket__media {
    position: relative;
    background: var(--border);
  }
  .ticket__bg {
    position: absolute; inset: 0;
  }
  .ticket__city {
    position: absolute;
    top: 12px; inset-inline-start: 12px;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg);
    background: rgb(255 255 255 / 0.92);
    padding: 5px 9px;
    border-radius: 999px;
  }
  .ticket__body {
    padding: 22px 24px;
    display: flex; flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
  }
  .ticket__kicker {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.04em;
  }
  .ticket__title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--fg);
    line-height: 1.35;
    margin-top: 4px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .ticket__meta {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap;
  }
  .ticket__meta svg { width: 12px; height: 12px; }
  .ticket__foot {
    display: flex; justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-top: 8px;
  }
  .ticket__price {
    display: flex; flex-direction: column; gap: 2px;
  }
  .ticket__price-old {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
    font-variant-numeric: tabular-nums;
  }
  .ticket__price-now {
    font-size: 20px;
    font-weight: 600;
    color: var(--fg);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
  }
  .ticket__price-now small {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
    margin-inline-start: 4px;
  }
  .ticket__cta {
    font-size: 13px; font-weight: 500;
    color: var(--accent);
    display: inline-flex; align-items: center; gap: 4px;
    white-space: nowrap;
  }
  .ticket__cta svg { width: 14px; height: 14px; transition: transform .2s; }
  .ticket:hover .ticket__cta svg { transform: translateX(3px); }

  /* ────── CTA strip ────── */
  .cta {
    background: var(--fg);
    color: var(--bg);
    border-radius: var(--r);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
  }
  .cta h2 { color: var(--bg); }
  .cta p {
    margin: 12px 0 0;
    color: oklch(75% 0.012 250);
    max-width: 480px;
  }
  .cta__form {
    display: flex; gap: 8px;
    background: oklch(28% 0.012 250);
    border-radius: 999px;
    padding: 6px;
  }
  .cta__form input {
    flex: 1;
    background: transparent;
    border: 0; outline: 0;
    padding: 10px 18px;
    font: inherit; font-size: 14px;
    color: var(--bg);
    min-width: 0;
  }
  .cta__form input::placeholder { color: oklch(65% 0.012 250); }
  .cta__form button {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px; font-weight: 500;
  }

  /* ────── Footer ────── */
  .footer {
    border-top: 1px solid var(--border);
    padding-block: 56px 40px;
    font-size: 14px;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
  }
  .footer__about p {
    color: var(--muted);
    margin: 12px 0 0;
    max-width: 420px;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer__social {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
  }
  .footer__social-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .footer__social-list {
    display: flex;
    gap: 10px;
  }
  .footer__social-list a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fg);
    background: var(--surface);
    transition: border-color .15s ease, color .15s ease, transform .15s ease;
  }
  .footer__social-list a:hover {
    border-color: var(--fg);
    transform: translateY(-2px);
  }
  .footer__social-list svg { width: 24px; height: 24px; display: block; }
  .footer__bottom {
    display: flex; justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
  }
  .footer__legal { display: flex; gap: 20px; }

  /* ────── Responsive ────── */
  @media (max-width: 1024px) {
    .tours { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__social { align-items: flex-start; }
  }
  @media (max-width: 820px) {
    .nav { display: none; }
    .header__right .btn:not(.btn--primary):not(.header__menu) { display: none; }
    .header__desktop-register { display: none; }
    .header__mobile-login { display: inline-flex; }
    .header__menu { display: flex; }
    .nav__panel { display: none !important; }
    .feat { grid-template-columns: 1fr; }
    .feat__main, .feat__side > * { aspect-ratio: 16/10; }
    .cta {
      grid-template-columns: 1fr;
      padding: 40px 28px;
    }
    .slide__caption {
      inset-inline-start: 24px;
      bottom: 28px;
    }
    .search {
      flex-direction: column;
      border-radius: var(--r);
      padding: 10px;
      gap: 4px;
    }
    .search__field { padding: 12px 14px; border-radius: var(--r-sm); }
    .search__field + .search__field::before { display: none; }
    .search__submit {
      width: 100%;
      justify-content: center;
      padding: 14px;
      margin: 4px 0 0;
      border-radius: var(--r-sm);
    }
    .carousel { aspect-ratio: 4 / 5; }
  }
  @media (max-width: 1024px) {
    .products { grid-template-columns: repeat(3, 1fr); }
    .tickets { grid-template-columns: 1fr; }
  }
  @media (max-width: 820px) {
    .ticket { grid-template-columns: 140px 1fr; }
    .ticket__body { padding: 16px 18px; }
    .ticket__title { font-size: 15px; }
  }
  @media (max-width: 560px) {
    .container { padding-inline: 16px; }
    .section { padding-block: 56px; }
    .section__head { flex-direction: column; align-items: start; }
    .tours { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
    .tour__media { aspect-ratio: 4 / 3; }
    .products { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
    .ticket { grid-template-columns: 110px 1fr; }
    .ticket__body { padding: 14px 16px; }
    .ticket__price-now { font-size: 17px; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 12px; align-items: start; }
    h2 { font-size: 26px; }
  }
