* { box-sizing: border-box; }
  [hidden] { display: none !important; }
  html, body { margin: 0; padding: 0; background: var(--bg-page); color: var(--fg-1); }
  img { display: block; max-width: 100%; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; }
  a { color: inherit; text-decoration: none; }

  /* ─── Layout ─── */
  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  section { padding: 96px 0; position: relative; }
  section.tight { padding: 64px 0; }

  /* ─── Buttons ─── */
  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: var(--radius-md); border: 1.5px solid transparent; font-weight: 700; font-size: 14px; cursor: pointer; transition: all var(--dur-base) var(--ease-out); line-height: 1; white-space: nowrap; }
  .btn.primary { background: var(--color-forest-500); color: white; box-shadow: var(--shadow-brand); }
  .btn.primary:hover { background: var(--color-forest-600); transform: translateY(-1px); }
  .btn.secondary { background: white; color: var(--fg-1); border-color: var(--color-gray-200); }
  .btn.secondary:hover { border-color: var(--color-forest-500); color: var(--color-forest-700); }
  .btn.ghost { background: transparent; color: var(--fg-1); }
  .btn.ghost:hover { background: var(--color-gray-50); }
  .btn.large { padding: 15px 22px; font-size: 15px; }
  .btn svg { width: 16px; height: 16px; stroke-width: 2; }

  /* ─── Top nav ─── */
  nav.top {
    position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px) saturate(1.1);
    border-bottom: 1px solid var(--color-gray-100);
  }
  nav.top .inner { display: flex; align-items: center; gap: 24px; height: 72px; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .brand .mark { width: 36px; height: 36px; background: var(--color-forest-500); border-radius: var(--radius-md); display: grid; place-items: center; box-shadow: var(--shadow-brand); }
  .brand .mark img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
  .brand .word { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--fg-1); line-height: 1; }
  .brand .word small { display: block; font-family: var(--font-sub); font-weight: 400; font-size: 9px; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--color-forest-500); margin-top: 3px; }

  .nav-links { display: flex; gap: 4px; flex-shrink: 0; }
  .nav-links a { padding: 8px 12px; font-size: 14px; font-weight: 600; color: var(--fg-1); border-radius: var(--radius-sm); transition: all var(--dur-base) var(--ease-out); }
  .nav-links a:hover { background: var(--color-gray-50); color: var(--color-forest-700); text-decoration: none; }
  .nav-links a.has-caret::after { content: ''; display: inline-block; width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-left: 6px; margin-bottom: 2px; opacity: 0.5; }

  .nav-search { flex: 1; max-width: 280px; position: relative; }
  .nav-search input { width: 100%; padding: 10px 14px 10px 38px; border: 1px solid var(--color-gray-200); border-radius: var(--radius-full); font-size: 13px; background: var(--color-gray-50); font-family: var(--font-body); color: var(--fg-1); transition: all var(--dur-base) var(--ease-out); }
  .nav-search input::placeholder { color: var(--fg-3); }
  .nav-search input:focus { outline: none; background: white; border-color: var(--color-forest-300); box-shadow: 0 0 0 3px var(--color-forest-50); }
  .nav-search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--fg-3); }
  .nav-search kbd { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-family: var(--font-mono); font-size: 10px; padding: 2px 6px; border-radius: var(--radius-xs); background: white; border: 1px solid var(--color-gray-200); color: var(--fg-3); }

  .nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
  .lang-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--radius-full); border: 1px solid var(--color-gray-200); font-size: 13px; font-weight: 600; color: var(--fg-2); cursor: pointer; }
  .lang-pill svg { width: 14px; height: 14px; }
  .lang-pill .code { color: var(--color-forest-500); font-family: var(--font-mono); font-size: 11px; padding: 2px 5px; background: var(--color-forest-50); border-radius: var(--radius-xs); }

  /* ─── Hero ─── */
  .hero { position: relative; padding: 0; min-height: 720px; overflow: hidden; isolation: isolate; }
  .hero-bg { position: absolute; inset: 0; z-index: 0; }
  .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
  .hero-bg-overlay { position: absolute; inset: 0; background:
    linear-gradient(180deg, rgba(3,42,32,0.45) 0%, rgba(3,42,32,0.35) 40%, rgba(3,42,32,0.6) 100%),
    radial-gradient(circle at 20% 20%, rgba(3, 60, 46, 0.4) 0%, transparent 50%);
  }
  .hero-inner { position: relative; z-index: 1; padding: 80px 32px 64px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 32px; }
  .hero-copy { max-width: 760px; }
  .hero-copy .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sub); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: white; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 20px; backdrop-filter: blur(8px); }
  .hero-copy .eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--color-lime-300); box-shadow: 0 0 12px var(--color-lime-300); }
  .hero-copy h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.03em; margin: 0 0 16px; color: white; text-wrap: balance; text-shadow: 0 2px 20px rgba(0,0,0,0.25); }
  .hero-copy h1 em { font-style: italic; font-family: var(--font-display); font-weight: 800; color: var(--color-lime-300); }
  .hero-copy .lead { font-size: 17px; color: rgba(255,255,255,0.92); line-height: 1.55; margin: 0; max-width: 580px; margin: 0 auto; }

  /* Filter box */
  .filter-box { background: white; border-radius: var(--radius-xl); box-shadow: 0 20px 50px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08); padding: 8px; width: 100%; max-width: 1040px; text-align: left; }
  .fb-tabs { display: flex; gap: 4px; padding: 12px 14px 0; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--color-gray-100); margin: 0 -6px; padding-left: 20px; padding-right: 20px; }
  .fb-tabs::-webkit-scrollbar { display: none; }
  .fb-tab { display: inline-flex; align-items: center; gap: 8px; padding: 12px 14px 14px; border: 0; background: none; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 700; color: var(--fg-2); position: relative; flex-shrink: 0; transition: color var(--dur-base) var(--ease-out); }
  .fb-tab::after { content: ''; position: absolute; left: 12px; right: 12px; bottom: -1px; height: 3px; border-radius: 2px 2px 0 0; background: transparent; transition: background var(--dur-base) var(--ease-out); }
  .fb-tab:hover { color: var(--fg-1); }
  .fb-tab.active { color: var(--color-forest-600); }
  .fb-tab.active::after { background: var(--color-forest-500); }
  .fb-tab-ic { width: 32px; height: 32px; border-radius: var(--radius-md); display: grid; place-items: center; }
  .fb-tab-ic svg { width: 18px; height: 18px; stroke-width: 1.75; }
  .fb-tab-l { white-space: nowrap; }

  .fb-fields { display: flex; align-items: stretch; gap: 0; padding: 14px 20px 14px; }
  .fb-field { flex: 1; padding: 4px 16px; border-radius: var(--radius-md); cursor: pointer; transition: background var(--dur-base) var(--ease-out); min-width: 0; }
  .fb-field:hover { background: var(--color-gray-50); }
  .fb-field.fb-where { flex: 1.4; }
  .fb-divider { width: 1px; background: var(--color-gray-200); margin: 8px 0; }
  .fb-k { display: flex; align-items: center; gap: 6px; font-family: var(--font-sub); font-size: 10.5px; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--fg-3); margin-bottom: 6px; }
  .fb-k svg { width: 12px; height: 12px; color: var(--color-forest-500); }
  .fb-field input { border: 0; outline: 0; background: transparent; font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--fg-1); width: 100%; padding: 0; }
  .fb-field input::placeholder { color: var(--fg-3); font-weight: 600; }
  .fb-v { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--fg-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .fb-search { background: var(--color-forest-500); color: white; border: 0; border-radius: var(--radius-md); padding: 0 28px; font-family: inherit; font-size: 15px; font-weight: 800; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all var(--dur-base) var(--ease-out); box-shadow: var(--shadow-brand); margin-left: 8px; }
  .fb-search:hover { background: var(--color-forest-600); transform: translateY(-1px); }
  .fb-search svg { width: 18px; height: 18px; stroke-width: 2.4; }

  .fb-extras { display: flex; align-items: center; gap: 24px; padding: 12px 24px; border-top: 1px solid var(--color-gray-100); flex-wrap: wrap; }
  .fb-check { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--fg-2); cursor: pointer; user-select: none; }
  .fb-check input { width: 16px; height: 16px; accent-color: var(--color-forest-500); cursor: pointer; }
  .fb-quote { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--color-forest-600); text-decoration: none; padding: 5px 10px; border-radius: var(--radius-sm); transition: background var(--dur-base) var(--ease-out); }
  .fb-quote:hover { background: var(--color-forest-50); text-decoration: none; }
  .fb-quote svg { width: 14px; height: 14px; }

  .hero-stats { display: flex; gap: 56px; margin-top: 8px; padding-top: 24px; flex-wrap: wrap; justify-content: center; }
  .hero-stats .item { color: white; text-align: center; }
  .hero-stats .item .v { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: white; line-height: 1; }
  .hero-stats .item .k { font-size: 12px; color: rgba(255,255,255,0.78); margin-top: 6px; }

  @media (max-width: 900px) {
    .fb-fields { flex-direction: column; align-items: stretch; }
    .fb-divider { display: none; }
    .fb-field { padding: 10px 14px; border-bottom: 1px solid var(--color-gray-100); border-radius: 0; }
    .fb-search { margin: 12px 0 0; padding: 14px; justify-content: center; }
  }

  /* ─── Logo strip ─── */
  .logos { padding: 32px 0; background: var(--bg-sunken); border-top: 1px solid var(--color-gray-100); border-bottom: 1px solid var(--color-gray-100); }
  .logos .inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; }
  .logos .label { font-family: var(--font-sub); font-size: 11px; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--fg-3); }
  .logos .l { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--color-gray-400); letter-spacing: -0.01em; }

  /* ─── Section heads ─── */
  .sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
  .sec-head .left .eyebrow { font-family: var(--font-sub); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--color-forest-500); margin-bottom: 10px; display: block; }
  .sec-head h2 { font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1.1; letter-spacing: -0.025em; margin: 0 0 12px; text-wrap: balance; }
  .sec-head p { font-size: 16px; color: var(--fg-2); margin: 0; max-width: 560px; }
  .sec-head .right { display: flex; gap: 12px; align-items: center; }
  .link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--color-forest-500); }
  .link-arrow svg { width: 14px; height: 14px; transition: transform var(--dur-base) var(--ease-out); }
  .link-arrow:hover svg { transform: translateX(3px); }

  /* ─── Tour Packages ─── */
  .packages { background: var(--bg-page); }
  .pkg-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
  .pkg-tab { padding: 9px 16px; border-radius: var(--radius-full); border: 1px solid var(--color-gray-200); background: white; font-size: 13px; font-weight: 600; color: var(--fg-2); display: inline-flex; align-items: center; gap: 6px; }
  .pkg-tab.active { background: var(--color-ink); color: white; border-color: var(--color-ink); }
  .pkg-tab .count { font-family: var(--font-mono); font-size: 11px; opacity: 0.6; }
  .pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .pkg-card { background: white; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-1); transition: all var(--dur-base) var(--ease-out); cursor: pointer; border: 1px solid var(--color-gray-100); }
  .pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
  .pkg-card .img { aspect-ratio: 4/3; background: var(--color-gray-100); position: relative; overflow: hidden; }
  .pkg-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
  .pkg-card:hover .img img { transform: scale(1.06); }
  .pkg-card .tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); padding: 4px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; color: var(--color-forest-700); text-transform: uppercase; letter-spacing: 0.05em; }
  .pkg-card .heart { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-radius: 999px; display: grid; place-items: center; cursor: pointer; }
  .pkg-card .heart svg { width: 16px; height: 16px; color: var(--fg-2); }
  .pkg-card .body { padding: 18px 20px 20px; }
  .pkg-card .loc { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--fg-3); margin-bottom: 6px; }
  .pkg-card .loc svg { width: 12px; height: 12px; }
  .pkg-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.25; margin: 0 0 8px; letter-spacing: -0.01em; }
  .pkg-card .meta { display: flex; gap: 16px; font-size: 12px; color: var(--fg-3); margin-bottom: 12px; }
  .pkg-card .meta span { display: inline-flex; align-items: center; gap: 4px; }
  .pkg-card .meta svg { width: 12px; height: 12px; }
  .pkg-card .foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--color-gray-100); }
  .pkg-card .foot .price { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--fg-1); letter-spacing: -0.02em; }
  .pkg-card .foot .price small { font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--fg-3); }
  .pkg-card .foot .rating { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; }
  .pkg-card .foot .rating svg { width: 14px; height: 14px; color: var(--color-amber-500); fill: var(--color-amber-500); }
  .pkg-card .foot .rating small { color: var(--fg-3); font-weight: 400; }

  /* ─── Build Your Trip ─── */
  .builder { background: linear-gradient(180deg, var(--bg-page) 0%, var(--color-forest-50) 100%); border-radius: 0; position: relative; overflow: hidden; }
  .builder::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image:
    radial-gradient(circle at 90% 20%, rgba(111, 176, 42, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(3, 98, 76, 0.06) 0%, transparent 40%);
    pointer-events: none; }
  .builder .inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
  .builder .copy h2 { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1.05; letter-spacing: -0.025em; margin: 16px 0 16px; text-wrap: balance; }
  .builder .copy p { font-size: 17px; color: var(--fg-2); line-height: 1.55; margin: 0 0 28px; max-width: 480px; }
  .builder .steps-mini { display: flex; gap: 18px; margin-bottom: 32px; }
  .builder .steps-mini .s { display: flex; align-items: center; gap: 10px; }
  .builder .steps-mini .n { width: 28px; height: 28px; border-radius: 999px; background: white; border: 1.5px solid var(--color-forest-500); color: var(--color-forest-500); font-weight: 800; font-size: 13px; display: grid; place-items: center; font-family: var(--font-display); }
  .builder .steps-mini .n.done { background: var(--color-forest-500); color: white; border-color: var(--color-forest-500); }
  .builder .steps-mini .n.done::before { content: '✓'; }
  .builder .steps-mini .n.done span { display: none; }
  .builder .steps-mini .l { font-size: 13px; font-weight: 600; color: var(--fg-1); }
  .builder .steps-mini .arrow { color: var(--color-forest-300); }

  /* Trip builder card */
  .trip-builder { background: white; border-radius: var(--radius-2xl); box-shadow: var(--shadow-3); padding: 28px; border: 1px solid var(--color-forest-100); }
  .trip-builder .tb-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
  .trip-builder .tb-head .label { display: flex; align-items: center; gap: 10px; }
  .trip-builder .tb-head .label .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--color-lime-500); box-shadow: 0 0 0 4px var(--color-lime-100); animation: pulse 2s infinite; }
  @keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px var(--color-lime-100); } 50% { box-shadow: 0 0 0 8px var(--color-lime-50); } }
  .trip-builder .tb-head .label .t { font-family: var(--font-sub); font-size: 11px; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--fg-3); font-weight: 500; }
  .trip-builder .tb-head .progress { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); }
  .trip-builder .tb-progress-bar { height: 4px; background: var(--color-gray-100); border-radius: 999px; overflow: hidden; margin-bottom: 24px; }
  .trip-builder .tb-progress-bar > div { width: 65%; height: 100%; background: linear-gradient(90deg, var(--color-forest-500), var(--color-lime-500)); }
  .trip-builder .tb-q { font-family: var(--font-display); font-weight: 800; font-size: 22px; margin: 0 0 18px; letter-spacing: -0.015em; }
  .tb-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 22px; }
  .tb-opt { background: white; border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-lg); padding: 14px; text-align: left; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: all var(--dur-base) var(--ease-out); }
  .tb-opt:hover { border-color: var(--color-forest-300); background: var(--color-forest-50); }
  .tb-opt.selected { border-color: var(--color-forest-500); background: var(--color-forest-50); }
  .tb-opt.selected .checkmark { background: var(--color-forest-500); border-color: var(--color-forest-500); }
  .tb-opt.selected .checkmark::after { content: '✓'; color: white; font-size: 12px; font-weight: 800; }
  .tb-opt .ic { width: 36px; height: 36px; border-radius: var(--radius-md); background: var(--color-forest-50); display: grid; place-items: center; color: var(--color-forest-700); flex-shrink: 0; }
  .tb-opt .ic svg { width: 18px; height: 18px; }
  .tb-opt .l { flex: 1; }
  .tb-opt .l .t { font-family: var(--font-display); font-weight: 700; font-size: 14px; line-height: 1.2; }
  .tb-opt .l .s { font-size: 11px; color: var(--fg-3); margin-top: 2px; }
  .tb-opt .checkmark { width: 20px; height: 20px; border-radius: 999px; border: 1.5px solid var(--color-gray-300); display: grid; place-items: center; flex-shrink: 0; }
  .trip-builder .tb-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--color-gray-100); }
  .trip-builder .tb-foot .back { font-size: 13px; font-weight: 600; color: var(--fg-3); }

  /* ─── Destinations ─── */
  .destinations { background: var(--bg-sunken); }
  .dest-cats { display: flex; gap: 8px; margin-bottom: 32px; overflow-x: auto; padding-bottom: 4px; }
  .dest-cats button { padding: 9px 16px; border-radius: var(--radius-full); background: white; border: 1px solid var(--color-gray-200); font-size: 13px; font-weight: 600; color: var(--fg-2); white-space: nowrap; }
  .dest-cats button.active { background: var(--color-forest-500); color: white; border-color: var(--color-forest-500); }
  .dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .dest-card { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-xl); overflow: hidden; cursor: pointer; transition: transform var(--dur-base) var(--ease-out); }
  .dest-card:hover { transform: translateY(-3px); }
  .dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
  .dest-card:hover img { transform: scale(1.06); }
  .dest-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%); }
  .dest-card .info { position: absolute; left: 16px; right: 16px; bottom: 16px; color: white; z-index: 1; }
  .dest-card .info .cat { font-family: var(--font-sub); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-sub); opacity: 0.85; margin-bottom: 4px; }
  .dest-card .info h4 { font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1.15; margin: 0 0 6px; letter-spacing: -0.015em; }
  .dest-card .info .days { font-size: 12px; opacity: 0.85; display: inline-flex; align-items: center; gap: 4px; }
  .dest-card .info .days svg { width: 12px; height: 12px; }
  .dest-card .rating { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.95); padding: 4px 8px; border-radius: var(--radius-full); display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; z-index: 1; }
  .dest-card .rating svg { width: 12px; height: 12px; color: var(--color-amber-500); fill: var(--color-amber-500); }

  /* ─── Travel services ─── */
  .services { background: var(--bg-page); }
  .svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .svc-card { background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-xl); padding: 24px; transition: all var(--dur-base) var(--ease-out); cursor: pointer; position: relative; overflow: hidden; }
  .svc-card:hover { border-color: var(--color-forest-300); transform: translateY(-2px); box-shadow: var(--shadow-1); }
  .svc-card .ic { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--color-forest-50); color: var(--color-forest-700); display: grid; place-items: center; margin-bottom: 18px; }
  .svc-card.cobalt .ic { background: var(--color-cobalt-50); color: var(--color-cobalt-600); }
  .svc-card.amber .ic { background: var(--color-amber-50); color: var(--color-amber-700); }
  .svc-card.lime .ic { background: var(--color-lime-100); color: var(--color-lime-700); }
  .svc-card .ic svg { width: 24px; height: 24px; stroke-width: 1.75; }
  .svc-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin: 0 0 8px; letter-spacing: -0.01em; }
  .svc-card p { font-size: 13px; color: var(--fg-2); line-height: 1.55; margin: 0 0 16px; }
  .svc-card .more { font-size: 13px; font-weight: 700; color: var(--color-forest-500); display: inline-flex; align-items: center; gap: 4px; }
  .svc-card .more svg { width: 12px; height: 12px; }

  /* ─── Partners ─── */
  .partners { background: var(--bg-sunken); }
  .partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .partner-card { background: white; border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow-1); transition: all var(--dur-base) var(--ease-out); cursor: pointer; border: 1px solid var(--color-gray-100); }
  .partner-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
  .partner-card .head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
  .partner-card .logo { width: 56px; height: 56px; border-radius: var(--radius-md); flex-shrink: 0; display: grid; place-items: center; color: white; font-family: var(--font-display); font-weight: 800; font-size: 22px; }
  .partner-card .info { flex: 1; }
  .partner-card .badges { display: flex; gap: 6px; margin-bottom: 6px; }
  .partner-card .pill { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; }
  .partner-card .pill.featured { background: var(--color-amber-50); color: var(--color-amber-700); }
  .partner-card .pill.featured svg { width: 11px; height: 11px; fill: currentColor; }
  .partner-card .pill.verified { background: var(--color-forest-50); color: var(--color-forest-700); }
  .partner-card .pill.verified svg { width: 11px; height: 11px; }
  .partner-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 19px; margin: 0; letter-spacing: -0.01em; line-height: 1.2; }
  .partner-card .meta { font-size: 13px; color: var(--fg-3); margin-top: 4px; }
  .partner-card p { font-size: 13px; color: var(--fg-2); line-height: 1.55; margin: 0 0 16px; min-height: 60px; }
  .partner-card .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 16px; border-top: 1px solid var(--color-gray-100); }
  .partner-card .stats .item .v { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--fg-1); line-height: 1; letter-spacing: -0.015em; }
  .partner-card .stats .item .k { font-size: 11px; color: var(--fg-3); margin-top: 3px; }

  /* ─── How it works ─── */
  .how { background: var(--bg-page); }
  .how .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
  .how .steps::before { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 2px; background: var(--color-forest-100); z-index: 0; }
  .how .step { position: relative; z-index: 1; }
  .how .step .n { width: 64px; height: 64px; border-radius: 999px; background: white; border: 2px solid var(--color-forest-200); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--color-forest-500); margin-bottom: 20px; box-shadow: 0 0 0 8px var(--bg-page); }
  .how .step .chevs { display: inline-flex; flex-direction: column; gap: 2px; align-items: center; }
  .how .step .chevs svg { width: 14px; height: 4px; }
  .how .step h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 0 0 8px; letter-spacing: -0.01em; }
  .how .step p { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; }

  /* ─── Reviews ─── */
  .reviews { background: var(--color-ink); color: white; }
  .reviews h2 { color: white; }
  .reviews .sec-head .left p { color: rgba(255,255,255,0.7); }
  .reviews .sec-head .left .eyebrow { color: var(--color-lime-300); }
  .rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .rev-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 28px; backdrop-filter: blur(8px); }
  .rev-card .stars { display: inline-flex; gap: 2px; margin-bottom: 18px; }
  .rev-card .stars svg { width: 16px; height: 16px; fill: var(--color-amber-300); }
  .rev-card .q { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.5; color: white; margin: 0 0 24px; text-wrap: pretty; }
  .rev-card .by { display: flex; align-items: center; gap: 12px; }
  .rev-card .by .av { width: 44px; height: 44px; border-radius: 999px; background-size: cover; background-position: center; background-color: var(--color-forest-400); flex-shrink: 0; }
  .rev-card .by .n { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: white; }
  .rev-card .by .r { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
  .rev-card .by .flag { margin-left: auto; font-size: 11px; padding: 4px 8px; background: rgba(255,255,255,0.06); border-radius: var(--radius-full); color: rgba(255,255,255,0.7); }

  /* ─── CTA band ─── */
  .cta-band { padding: 80px 0; background: var(--color-forest-500); color: white; position: relative; overflow: hidden; }
  .cta-band::before { content: ''; position: absolute; right: -120px; top: -120px; width: 480px; height: 480px; border-radius: 999px; background: radial-gradient(circle, var(--color-forest-400) 0%, transparent 70%); opacity: 0.6; }
  .cta-band::after { content: ''; position: absolute; left: -120px; bottom: -120px; width: 360px; height: 360px; border-radius: 999px; background: radial-gradient(circle, var(--color-lime-700) 0%, transparent 70%); opacity: 0.4; }
  .cta-band .inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
  .cta-band h2 { color: white; font-size: clamp(32px, 4vw, 46px); margin: 0 0 16px; line-height: 1.1; text-wrap: balance; }
  .cta-band p { color: rgba(255,255,255,0.85); font-size: 17px; margin: 0 0 28px; max-width: 520px; }
  .cta-band .newsletter { display: flex; gap: 8px; max-width: 460px; background: rgba(255,255,255,0.1); padding: 6px; border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.15); }
  .cta-band .newsletter input { flex: 1; background: transparent; border: 0; outline: 0; padding: 10px 16px; color: white; font-size: 14px; font-family: var(--font-body); }
  .cta-band .newsletter input::placeholder { color: rgba(255,255,255,0.5); }
  .cta-band .newsletter button { background: white; color: var(--color-forest-700); padding: 10px 18px; border-radius: var(--radius-full); font-weight: 700; font-size: 14px; }
  .cta-band .right-art { position: relative; height: 240px; }
  .cta-band .right-art .ring { position: absolute; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 999px; }
  .cta-band .right-art .ring.r1 { width: 240px; height: 240px; top: 0; right: 60px; }
  .cta-band .right-art .ring.r2 { width: 180px; height: 180px; top: 30px; right: 90px; }
  .cta-band .right-art .ring.r3 { width: 120px; height: 120px; top: 60px; right: 120px; }
  .cta-band .right-art .pin { position: absolute; background: white; color: var(--color-forest-600); padding: 8px 14px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; box-shadow: var(--shadow-2); }
  .cta-band .right-art .pin svg { width: 12px; height: 12px; }
  .cta-band .right-art .pin.p1 { top: 16px; right: 24px; }
  .cta-band .right-art .pin.p2 { top: 100px; right: 8px; }
  .cta-band .right-art .pin.p3 { top: 180px; right: 60px; }
  .cta-band .right-art .pin.p4 { top: 130px; right: 240px; }
  .cta-band .right-art .pin.p5 { top: 50px; right: 200px; }

  /* ─── Footer ─── */
  footer { background: var(--color-forest-800); color: rgba(255,255,255,0.7); padding: 64px 0 24px; }
  footer .grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  footer .brand-col .brand .word { color: white; }
  footer .brand-col .brand .word small { color: var(--color-lime-300); }
  footer .brand-col p { font-size: 13px; line-height: 1.6; margin: 16px 0 20px; max-width: 280px; }
  footer .brand-col .socials { display: flex; gap: 8px; }
  footer .brand-col .socials a { width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.06); display: grid; place-items: center; }
  footer .brand-col .socials a:hover { background: rgba(255,255,255,0.12); }
  footer .brand-col .socials svg { width: 16px; height: 16px; color: white; }
  footer .col h6 { color: white; font-family: var(--font-sub); text-transform: uppercase; letter-spacing: var(--tracking-sub); font-size: 11px; margin: 0 0 18px; font-weight: 500; }
  footer .col a { color: rgba(255,255,255,0.6); font-size: 13px; display: block; padding: 5px 0; }
  footer .col a:hover { color: white; text-decoration: none; }
  footer .bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(255,255,255,0.5); }
  footer .bottom .pay { display: flex; gap: 8px; align-items: center; }
  footer .bottom .pay .chip { background: rgba(255,255,255,0.08); padding: 3px 10px; border-radius: var(--radius-full); font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.7); }

  /* responsive */
  @media (max-width: 1400px) {
    .pkg-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 1100px) {
    .pkg-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-grid { grid-template-columns: repeat(3, 1fr); }
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .rev-grid { grid-template-columns: repeat(2, 1fr); }
    .hero .inner { grid-template-columns: 1fr; }
    .hero-art { height: 480px; }
    .builder .inner { grid-template-columns: 1fr; }
    .cta-band .inner { grid-template-columns: 1fr; }
    footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  /* ─── Sidebar layout ─── */
  body { padding-left: 256px; transition: padding-left var(--dur-base) var(--ease-out); }
  body.sb-collapsed { padding-left: 76px; }

  .sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: 256px; background: white; border-right: 1px solid var(--color-gray-100); z-index: 80; display: flex; flex-direction: column; transition: width var(--dur-base) var(--ease-out); }
  body.sb-collapsed .sidebar { width: 76px; }

  .sb-top { display: flex; align-items: center; gap: 10px; padding: 18px 16px; border-bottom: 1px solid var(--color-gray-100); position: relative; min-height: 72px; }
  .sb-top .brand { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
  .sb-top .brand .mark { width: 40px; height: 40px; background: var(--color-forest-500); border-radius: var(--radius-md); display: grid; place-items: center; box-shadow: var(--shadow-brand); flex-shrink: 0; }
  .sb-top .brand .mark img { width: 24px; height: 24px; filter: brightness(0) invert(1); }
  .sb-top .brand .word { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--fg-1); line-height: 1.1; white-space: nowrap; overflow: hidden; }
  .sb-top .brand .word small { display: block; font-family: var(--font-sub); font-weight: 400; font-size: 8.5px; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--color-forest-500); margin-top: 2px; }
  .sb-toggle { position: absolute; right: -14px; top: 28px; width: 28px; height: 28px; border-radius: 999px; background: white; border: 1px solid var(--color-gray-200); box-shadow: var(--shadow-1); display: grid; place-items: center; cursor: pointer; color: var(--fg-2); z-index: 1; transition: all var(--dur-base) var(--ease-out); }
  .sb-toggle:hover { background: var(--color-forest-500); border-color: var(--color-forest-500); color: white; }
  .sb-toggle svg { width: 14px; height: 14px; transition: transform var(--dur-base) var(--ease-out); }
  body.sb-collapsed .sb-toggle svg { transform: rotate(180deg); }
  body.sb-collapsed .sb-top .brand .word { display: none; }

  .sb-scroll { flex: 1; overflow-y: auto; padding: 16px 12px; }
  .sb-scroll::-webkit-scrollbar { width: 6px; }
  .sb-scroll::-webkit-scrollbar-thumb { background: var(--color-gray-200); border-radius: 999px; }

  .sb-section { margin-bottom: 18px; }
  .sb-section .sb-label { font-family: var(--font-sub); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--fg-3); padding: 6px 14px 8px; white-space: nowrap; overflow: hidden; }
  body.sb-collapsed .sb-section .sb-label { opacity: 0; height: 4px; padding: 0; }

  .sb-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: var(--radius-md); color: var(--fg-1); font-weight: 600; font-size: 14px; text-decoration: none; cursor: pointer; transition: all var(--dur-base) var(--ease-out); position: relative; white-space: nowrap; margin-bottom: 2px; }
  .sb-item:hover { background: var(--color-gray-50); color: var(--color-forest-700); text-decoration: none; }
  .sb-item.active { background: var(--color-forest-50); color: var(--color-forest-700); }
  .sb-item.active::before { content: ''; position: absolute; left: -12px; top: 8px; bottom: 8px; width: 3px; background: var(--color-forest-500); border-radius: 0 3px 3px 0; }
  .sb-item .ic { width: 22px; height: 22px; flex-shrink: 0; display: grid; place-items: center; color: var(--fg-2); }
  .sb-item.active .ic { color: var(--color-forest-500); }
  .sb-item:hover .ic { color: var(--color-forest-500); }
  .sb-item .ic svg { width: 20px; height: 20px; stroke-width: 1.75; }
  .sb-item .label { flex: 1; overflow: hidden; text-overflow: ellipsis; }
  .sb-item .pill { font-family: var(--font-mono); font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 999px; background: var(--color-gray-100); color: var(--fg-2); }
  .sb-item.active .pill { background: var(--color-forest-500); color: white; }
  .sb-item .new { font-size: 9.5px; padding: 2px 6px; border-radius: var(--radius-xs); background: var(--color-lime-100); color: var(--color-lime-700); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

  body.sb-collapsed .sb-item { justify-content: center; padding: 11px 0; gap: 0; }
  body.sb-collapsed .sb-item .label,
  body.sb-collapsed .sb-item .pill,
  body.sb-collapsed .sb-item .new { display: none; }
  body.sb-collapsed .sb-item.active::before { left: 0; }

  /* Tooltip when collapsed */
  body.sb-collapsed .sb-item { position: relative; }
  body.sb-collapsed .sb-item::after { content: attr(data-tip); position: absolute; left: 64px; top: 50%; transform: translateY(-50%); background: var(--color-ink); color: white; padding: 6px 10px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--dur-base) var(--ease-out); box-shadow: var(--shadow-2); z-index: 100; }
  body.sb-collapsed .sb-item:hover::after { opacity: 1; }

  /* Sidebar foot */
  .sb-foot { border-top: 1px solid var(--color-gray-100); padding: 14px 12px; }
  .sb-user { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-md); cursor: pointer; transition: background var(--dur-base) var(--ease-out); }
  .sb-user:hover { background: var(--color-gray-50); }
  .sb-user .av { width: 36px; height: 36px; border-radius: 999px; background-size: cover; background-position: center; flex-shrink: 0; border: 2px solid var(--color-gray-100); }
  .sb-user .info { flex: 1; min-width: 0; overflow: hidden; }
  .sb-user .info .n { font-family: var(--font-display); font-weight: 700; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.2; }
  .sb-user .info .s { font-size: 11px; color: var(--fg-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sb-user .more { color: var(--fg-3); flex-shrink: 0; }
  body.sb-collapsed .sb-user { justify-content: center; padding: 8px 0; }
  body.sb-collapsed .sb-user .info,
  body.sb-collapsed .sb-user .more { display: none; }

  /* Topbar (sits above content, sidebar already takes left) */
  .topbar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: blur(12px) saturate(1.1); border-bottom: 1px solid var(--color-gray-100); height: 72px; display: flex; align-items: center; padding: 0 32px; gap: 16px; }
  .topbar .tb-nav { display: flex; align-items: center; gap: 4px; }
  .topbar .tb-nav > .nav-item { position: relative; }
  .topbar .tb-nav a, .topbar .tb-nav .nav-trigger { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: var(--radius-md); font-size: 14px; font-weight: 700; color: var(--fg-1); text-decoration: none; transition: all var(--dur-base) var(--ease-out); white-space: nowrap; cursor: pointer; background: none; border: 0; font-family: inherit; }
  .topbar .tb-nav a:hover, .topbar .tb-nav .nav-trigger:hover { background: var(--color-gray-50); color: var(--color-forest-700); }
  .topbar .tb-nav a.primary { background: var(--color-forest-50); color: var(--color-forest-700); }
  .topbar .tb-nav a.primary:hover { background: var(--color-forest-100); }
  .topbar .tb-nav a svg, .topbar .tb-nav .nav-trigger svg.lead { width: 16px; height: 16px; stroke-width: 1.75; }
  .topbar .tb-nav .caret { width: 10px; height: 10px; opacity: 0.5; transition: transform var(--dur-base) var(--ease-out); }
  .topbar .tb-nav .nav-item.open .caret { transform: rotate(180deg); }
  .topbar .tb-nav .ai-tag { font-family: var(--font-sub); font-size: 9.5px; font-weight: 600; padding: 2px 6px; border-radius: var(--radius-xs); background: var(--color-lime-500); color: white; text-transform: uppercase; letter-spacing: 0.05em; margin-left: 2px; }

  /* Mega-dropdown panel */
  .nav-mega { position: absolute; top: calc(100% + 8px); left: -8px; background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-xl); box-shadow: var(--shadow-3); padding: 18px; min-width: 580px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all var(--dur-base) var(--ease-out); z-index: 60; }
  .nav-item.open .nav-mega { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .nav-mega-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: var(--radius-md); text-decoration: none; transition: background var(--dur-base) var(--ease-out); cursor: pointer; }
  .nav-mega-item:hover { background: var(--color-gray-50); text-decoration: none; }
  .nav-mega-item .nm-ic { width: 38px; height: 38px; border-radius: var(--radius-md); background: var(--color-forest-50); color: var(--color-forest-700); display: grid; place-items: center; flex-shrink: 0; transition: all var(--dur-base) var(--ease-out); }
  .nav-mega-item:hover .nm-ic { background: var(--color-forest-500); color: white; }
  .nav-mega-item.cobalt .nm-ic { background: var(--color-cobalt-50); color: var(--color-cobalt-600); }
  .nav-mega-item.cobalt:hover .nm-ic { background: var(--color-cobalt-500); color: white; }
  .nav-mega-item.amber .nm-ic { background: var(--color-amber-50); color: var(--color-amber-700); }
  .nav-mega-item.amber:hover .nm-ic { background: var(--color-amber-500); color: white; }
  .nav-mega-item.lime .nm-ic { background: var(--color-lime-100); color: var(--color-lime-700); }
  .nav-mega-item.lime:hover .nm-ic { background: var(--color-lime-500); color: white; }
  .nav-mega-item .nm-ic svg { width: 19px; height: 19px; stroke-width: 1.75; }
  .nav-mega-item .nm-text { flex: 1; min-width: 0; }
  .nav-mega-item .nm-t { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--fg-1); line-height: 1.2; margin-bottom: 3px; }
  .nav-mega-item .nm-s { font-size: 11.5px; color: var(--fg-3); line-height: 1.35; }
  .nav-mega-foot { margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--color-gray-100); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .nav-mega-foot .hint { font-size: 12px; color: var(--fg-3); }
  .nav-mega-foot .all { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--color-forest-500); }
  .nav-mega-foot .all svg { width: 13px; height: 13px; }
  .topbar .tb-search { flex: 1; max-width: 720px; position: relative; margin-left: 24px; }
  .topbar .tb-search input { width: 100%; padding: 14px 16px 14px 46px; border: 1px solid var(--color-gray-200); border-radius: var(--radius-full); font-size: 15px; background: var(--color-gray-50); font-family: var(--font-body); color: var(--fg-1); transition: all var(--dur-base) var(--ease-out); }
  .topbar .tb-search input::placeholder { color: var(--fg-3); }
  .topbar .tb-search input:focus { outline: none; background: white; border-color: var(--color-forest-300); box-shadow: 0 0 0 3px var(--color-forest-50); }
  .topbar .tb-search svg.lup { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--fg-3); }
  .topbar .tb-search kbd { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-family: var(--font-mono); font-size: 10px; padding: 2px 6px; border-radius: var(--radius-xs); background: white; border: 1px solid var(--color-gray-200); color: var(--fg-3); }
  .topbar .tb-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
  .topbar .icon-btn { width: 38px; height: 38px; border-radius: 999px; display: grid; place-items: center; color: var(--fg-2); position: relative; transition: all var(--dur-base) var(--ease-out); }
  .topbar .icon-btn:hover { background: var(--color-gray-50); color: var(--fg-1); }
  .topbar .icon-btn svg { width: 18px; height: 18px; stroke-width: 1.75; }
  .topbar .icon-btn .dot { position: absolute; top: 9px; right: 9px; width: 8px; height: 8px; border-radius: 999px; background: var(--color-red-500); border: 2px solid white; }
  .topbar .lang-pill { display: inline-flex; align-items: center; gap: 5px; padding: 8px 12px; border-radius: var(--radius-full); border: 1px solid var(--color-gray-200); font-size: 13px; font-weight: 600; color: var(--fg-2); cursor: pointer; }
  .topbar .lang-pill svg { width: 15px; height: 15px; }
  .topbar .lang-pill .code { color: var(--color-forest-500); font-family: var(--font-mono); font-size: 11px; padding: 2px 5px; background: var(--color-forest-50); border-radius: var(--radius-xs); }

  @media (max-width: 1100px) {
    body { padding-left: 76px; }
    .sidebar { width: 76px; }
    body .sb-top .brand .word { display: none; }
    body .sb-section .sb-label { opacity: 0; height: 4px; padding: 0; }
    body .sb-item { justify-content: center; padding: 11px 0; gap: 0; }
    body .sb-item .label, body .sb-item .pill, body .sb-item .new { display: none; }
    body .sb-user .info, body .sb-user .more { display: none; }
    body .sb-user { justify-content: center; padding: 8px 0; }
  }

/* ─── Page shell helpers ─── */
.page-head { padding: 36px 32px 24px; background: var(--bg-page); border-bottom: 1px solid var(--color-gray-100); }
.page-head .container { max-width: 1280px; margin: 0 auto; padding: 0; }
.page-head .crumbs { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--fg-3); margin-bottom: 10px; }
.page-head .crumbs a { color: var(--fg-2); font-weight: 600; }
.page-head .crumbs .sep { color: var(--color-gray-300); }
.page-head .crumbs .now { color: var(--fg-1); font-weight: 700; }
.page-head h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3vw, 38px); letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 8px; }
.page-head p { font-size: 15px; color: var(--fg-2); margin: 0; max-width: 720px; }

/* ─── Explore tiles (home) ─── */
.explore { background: var(--bg-page); padding: 72px 0; }
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile { position: relative; padding: 28px 22px; border-radius: var(--radius-xl); background: white; border: 1px solid var(--color-gray-100); text-decoration: none; color: var(--fg-1); transition: all var(--dur-base) var(--ease-out); overflow: hidden; min-height: 168px; display: flex; flex-direction: column; justify-content: space-between; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); text-decoration: none; border-color: transparent; }
.tile .t-ic { width: 48px; height: 48px; border-radius: var(--radius-md); display: grid; place-items: center; margin-bottom: 16px; transition: all var(--dur-base) var(--ease-out); }
.tile .t-ic svg { width: 24px; height: 24px; stroke-width: 1.75; }
.tile .t-body h3 { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; line-height: 1.2; margin: 0 0 4px; color: var(--fg-1); }
.tile .t-body p { font-size: 12.5px; color: var(--fg-3); line-height: 1.4; margin: 0; }
.tile .t-arrow { position: absolute; top: 22px; right: 22px; width: 28px; height: 28px; border-radius: 999px; background: var(--color-gray-50); display: grid; place-items: center; color: var(--fg-3); transition: all var(--dur-base) var(--ease-out); }
.tile:hover .t-arrow { background: var(--color-forest-500); color: white; transform: rotate(-45deg); }
.tile .t-arrow svg { width: 14px; height: 14px; stroke-width: 2.2; }
.tile.forest { background: linear-gradient(135deg, var(--color-forest-500), var(--color-forest-700)); color: white; border-color: transparent; }
.tile.forest .t-body h3, .tile.forest .t-body p { color: white; }
.tile.forest .t-body p { color: rgba(255,255,255,0.8); }
.tile.forest .t-ic { background: rgba(255,255,255,0.15); color: white; }
.tile.forest .t-arrow { background: rgba(255,255,255,0.18); color: white; }
.tile.forest:hover .t-arrow { background: white; color: var(--color-forest-700); }
.tile.cobalt { background: linear-gradient(135deg, var(--color-cobalt-500), var(--color-cobalt-700)); color: white; border-color: transparent; }
.tile.cobalt .t-body h3, .tile.cobalt .t-body p { color: white; }
.tile.cobalt .t-body p { color: rgba(255,255,255,0.8); }
.tile.cobalt .t-ic { background: rgba(255,255,255,0.15); color: white; }
.tile.cobalt .t-arrow { background: rgba(255,255,255,0.18); color: white; }
.tile.cobalt:hover .t-arrow { background: white; color: var(--color-cobalt-700); }
.tile .t-ic.tinted-forest { background: var(--color-forest-50); color: var(--color-forest-700); }
.tile .t-ic.tinted-cobalt { background: var(--color-cobalt-50); color: var(--color-cobalt-600); }
.tile .t-ic.tinted-amber { background: var(--color-amber-50); color: var(--color-amber-700); }
.tile .t-ic.tinted-lime { background: var(--color-lime-100); color: var(--color-lime-700); }

/* ─── Tour Packages page ─── */
.pkg-wrap { display: grid; grid-template-columns: 264px 1fr; gap: 32px; padding: 28px 32px 64px; max-width: 1320px; margin: 0 auto; }

/* ─── Filter sidebar hide / unhide ─── */
.f-head-actions { display: flex; align-items: center; gap: 10px; }
.filters-collapse { display: inline-grid; place-items: center; width: 26px; height: 26px; padding: 0; border: 1px solid var(--color-gray-200); border-radius: var(--radius-sm); background: white; color: var(--fg-3); cursor: pointer; transition: all var(--dur-base) var(--ease-out); }
.filters-collapse svg { width: 15px; height: 15px; }
.filters-collapse:hover { border-color: var(--color-forest-400); color: var(--color-forest-600); background: var(--color-forest-50); }
.pkg-wrap > .filters-show { display: none; }
.filters-show { justify-self: start; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid var(--color-gray-200); border-radius: var(--radius-md); background: white; color: var(--fg-1); font-family: var(--font-body); font-size: 13.5px; font-weight: 700; cursor: pointer; box-shadow: var(--shadow-1); transition: all var(--dur-base) var(--ease-out); }
.filters-show svg { width: 16px; height: 16px; color: var(--color-forest-500); }
.filters-show:hover { border-color: var(--color-forest-400); background: var(--color-forest-50); }
.pkg-wrap.filters-collapsed { grid-template-columns: 1fr; }
.pkg-wrap.filters-collapsed > .filters { display: none; }
.pkg-wrap.filters-collapsed > .filters-show { display: inline-flex; }
.filters { background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-xl); padding: 20px; position: sticky; top: 88px; height: fit-content; }
.filters .f-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.filters .f-head h3 { font-family: var(--font-display); font-weight: 800; font-size: 16px; margin: 0; letter-spacing: -0.01em; }
.filters .f-head .reset { font-size: 12px; font-weight: 700; color: var(--color-forest-500); cursor: pointer; }
.filters .f-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--color-gray-100); }
.filters .f-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.filters .f-block h4 { font-family: var(--font-sub); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--fg-3); margin: 0 0 12px; }
.filters .f-check { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13.5px; cursor: pointer; color: var(--fg-1); }
.filters .f-check input { width: 16px; height: 16px; accent-color: var(--color-forest-500); cursor: pointer; }
.filters .f-check .ct { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); }
.filters .f-range { display: flex; flex-direction: column; gap: 10px; }
.filters .f-range .vals { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 12px; color: var(--fg-2); font-weight: 600; }
.filters .f-range input[type=range] { width: 100%; accent-color: var(--color-forest-500); }
.filters .f-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.filters .f-pill { padding: 5px 10px; border-radius: var(--radius-full); border: 1px solid var(--color-gray-200); font-size: 12px; font-weight: 600; color: var(--fg-2); cursor: pointer; background: white; }
.filters .f-pill.on { background: var(--color-forest-500); color: white; border-color: var(--color-forest-500); }

/* ─── Tour language search box ─── */
.filters .lang-box { display: flex; flex-direction: column; gap: 4px; }
.filters .lang-search { position: relative; margin-bottom: 6px; }
.filters .lang-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--fg-3); pointer-events: none; }
.filters .lang-search input { width: 100%; padding: 9px 12px 9px 36px; border: 1px solid var(--color-gray-200); border-radius: var(--radius-md); font-size: 13px; font-family: var(--font-body); background: var(--color-gray-50); color: var(--fg-1); transition: all var(--dur-base) var(--ease-out); }
.filters .lang-search input::placeholder { color: var(--fg-3); }
.filters .lang-search input:focus { outline: none; background: white; border-color: var(--color-forest-300); box-shadow: 0 0 0 3px var(--color-forest-50); }
.filters .lang-list { display: flex; flex-direction: column; max-height: 196px; overflow-y: auto; padding-right: 2px; }
.filters .lang-list::-webkit-scrollbar { width: 6px; }
.filters .lang-list::-webkit-scrollbar-thumb { background: var(--color-gray-200); border-radius: var(--radius-full); }
.filters .lang-empty { font-size: 13px; color: var(--fg-3); padding: 6px 2px; }

.pkg-results .res-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.pkg-results .res-head .left { font-size: 14px; color: var(--fg-2); }
.pkg-results .res-head .left strong { color: var(--fg-1); font-family: var(--font-display); font-weight: 800; font-size: 18px; margin-right: 6px; }
.pkg-results .res-head .right { display: flex; align-items: center; gap: 8px; }
.pkg-results .sort-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; background: white; border: 1px solid var(--color-gray-200); border-radius: var(--radius-md); font-size: 13px; font-weight: 600; cursor: pointer; }
.pkg-results .sort-pill svg { width: 13px; height: 13px; }
.pkg-results .view-toggle { display: inline-flex; border: 1px solid var(--color-gray-200); border-radius: var(--radius-md); overflow: hidden; }
.pkg-results .view-toggle button { padding: 8px 10px; background: white; border: 0; color: var(--fg-3); cursor: pointer; }
.pkg-results .view-toggle button.on { background: var(--color-forest-500); color: white; }
.pkg-results .view-toggle svg { width: 14px; height: 14px; }
.pkg-results .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pkg-results .pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.pkg-results .pagination button { width: 36px; height: 36px; border-radius: var(--radius-md); background: white; border: 1px solid var(--color-gray-200); font-weight: 700; font-size: 13px; cursor: pointer; color: var(--fg-2); }
.pkg-results .pagination button.on { background: var(--color-forest-500); color: white; border-color: var(--color-forest-500); }
.pkg-results .pagination button.nav { width: auto; padding: 0 14px; }
.pkg-results .pagination .dots { color: var(--fg-3); padding: 0 4px; }

.compact-filter { background: var(--bg-page); border-bottom: 1px solid var(--color-gray-100); padding: 16px 32px; }
.compact-filter .filter-box { box-shadow: var(--shadow-1); border: 1px solid var(--color-gray-100); max-width: 1320px; margin: 0 auto; }

.cat-chips { display: flex; gap: 8px; padding: 20px 32px 0; max-width: 1320px; margin: 0 auto; overflow-x: auto; scrollbar-width: none; }
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chip { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; padding: 12px 16px; border-radius: var(--radius-lg); background: white; border: 1px solid var(--color-gray-100); cursor: pointer; transition: all var(--dur-base) var(--ease-out); }
.cat-chip:hover { border-color: var(--color-forest-300); }
.cat-chip.on { background: var(--color-forest-50); border-color: var(--color-forest-500); }
.cat-chip .cc-ic { width: 28px; height: 28px; border-radius: var(--radius-sm); background: var(--color-gray-50); color: var(--fg-2); display: grid; place-items: center; }
.cat-chip.on .cc-ic { background: var(--color-forest-500); color: white; }
.cat-chip .cc-ic svg { width: 16px; height: 16px; stroke-width: 1.75; }
.cat-chip .cc-l { font-size: 13px; font-weight: 700; color: var(--fg-1); }
.cat-chip .cc-ct { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); font-weight: 600; }
.cat-chip.on .cc-ct { color: var(--color-forest-600); }

@media (max-width: 1100px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-wrap { grid-template-columns: 1fr; }
  .filters { position: static; }
  .pkg-results .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .tile-grid { grid-template-columns: 1fr; }
  .pkg-results .grid { grid-template-columns: 1fr; }
}


/* ─── Stay cards (Accommodation) ─── */
.stay-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.stay-card { display: grid; grid-template-columns: 300px 1fr; background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-xl); overflow: hidden; transition: all var(--dur-base) var(--ease-out); cursor: pointer; }
.stay-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.stay-card .s-img { position: relative; overflow: hidden; background: var(--color-gray-100); min-height: 220px; }
.stay-card .s-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.stay-card:hover .s-img img { transform: scale(1.05); }
.stay-card .s-img .s-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); padding: 5px 11px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; color: var(--color-forest-700); text-transform: uppercase; letter-spacing: 0.04em; }
.stay-card .s-img .s-heart { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-radius: 999px; display: grid; place-items: center; }
.stay-card .s-img .s-heart svg { width: 17px; height: 17px; color: var(--fg-2); }
.stay-card .s-img .s-count { position: absolute; bottom: 12px; left: 12px; background: rgba(15,26,23,0.7); backdrop-filter: blur(8px); color: white; padding: 4px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.stay-card .s-img .s-count svg { width: 12px; height: 12px; }
.stay-card .s-body { padding: 20px 22px; display: flex; flex-direction: column; }
.stay-card .s-body .s-type { font-family: var(--font-sub); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--color-forest-500); margin-bottom: 6px; }
.stay-card .s-body h4 { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.015em; line-height: 1.2; margin: 0 0 6px; }
.stay-card .s-body .s-loc { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--fg-3); margin-bottom: 14px; }
.stay-card .s-body .s-loc svg { width: 13px; height: 13px; }
.stay-card .s-amen { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.stay-card .s-amen .am { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--fg-2); font-weight: 600; background: var(--color-gray-50); padding: 5px 10px; border-radius: var(--radius-full); }
.stay-card .s-amen .am svg { width: 13px; height: 13px; color: var(--color-forest-500); }
.stay-card .s-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--color-gray-100); }
.stay-card .s-rating { display: inline-flex; align-items: center; gap: 8px; }
.stay-card .s-rating .badge { background: var(--color-forest-500); color: white; font-family: var(--font-display); font-weight: 800; font-size: 14px; padding: 4px 9px; border-radius: var(--radius-sm); }
.stay-card .s-rating .txt .r { font-size: 13px; font-weight: 700; color: var(--fg-1); line-height: 1.1; }
.stay-card .s-rating .txt .c { font-size: 11px; color: var(--fg-3); }
.stay-card .s-price { text-align: right; }
.stay-card .s-price .from { font-size: 11px; color: var(--fg-3); }
.stay-card .s-price .amt { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--fg-1); letter-spacing: -0.02em; line-height: 1.1; }
.stay-card .s-price .amt small { font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--fg-3); }
@media (max-width: 720px) {
  .stay-card { grid-template-columns: 1fr; }
  .stay-card .s-img { min-height: 180px; }
}


/* ─── Listing cards (service pages) ─── */
.lc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lc { background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-xl); overflow: hidden; transition: all var(--dur-base) var(--ease-out); cursor: pointer; display: flex; flex-direction: column; }
.lc:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.lc .lc-img { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--color-gray-100); }
.lc .lc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.lc:hover .lc-img img { transform: scale(1.06); }
.lc .lc-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); padding: 5px 11px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; color: var(--color-forest-700); text-transform: uppercase; letter-spacing: 0.04em; }
.lc .lc-fav { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-radius: 999px; display: grid; place-items: center; }
.lc .lc-fav svg { width: 16px; height: 16px; color: var(--fg-2); }
.lc .lc-rate { position: absolute; bottom: 12px; left: 12px; background: rgba(15,26,23,0.72); backdrop-filter: blur(8px); color: white; padding: 4px 9px; border-radius: var(--radius-full); display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; }
.lc .lc-rate svg { width: 12px; height: 12px; color: var(--color-amber-300); fill: var(--color-amber-300); }
.lc .lc-rate small { font-weight: 400; opacity: 0.8; }
.lc .lc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.lc .lc-type { font-family: var(--font-sub); font-size: 10.5px; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--color-forest-500); margin-bottom: 5px; }
.lc .lc-body h4 { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; line-height: 1.2; margin: 0 0 5px; }
.lc .lc-loc { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--fg-3); margin-bottom: 12px; }
.lc .lc-loc svg { width: 12px; height: 12px; }
.lc .lc-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.lc .lc-specs .sp { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--fg-2); font-weight: 600; background: var(--color-gray-50); padding: 5px 9px; border-radius: var(--radius-full); }
.lc .lc-specs .sp svg { width: 13px; height: 13px; color: var(--color-forest-500); }
.lc .lc-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--color-gray-100); }
.lc .lc-price .from { font-size: 11px; color: var(--fg-3); }
.lc .lc-price .amt { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--fg-1); letter-spacing: -0.02em; line-height: 1.1; }
.lc .lc-price .amt small { font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--fg-3); }
.lc .lc-cta { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; background: var(--color-forest-500); color: white; border-radius: var(--radius-md); font-size: 13px; font-weight: 700; box-shadow: var(--shadow-brand); transition: background var(--dur-base) var(--ease-out); }
.lc:hover .lc-cta { background: var(--color-forest-600); }
.lc .lc-cta svg { width: 14px; height: 14px; }
@media (max-width: 1100px) { .lc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .lc-grid { grid-template-columns: 1fr; } }


/* ─── Build Your Trip wizard ─── */
.byt-wrap { max-width: 1080px; margin: 0 auto; padding: 32px 32px 72px; }
.byt-steps { display: flex; align-items: center; gap: 0; margin-bottom: 36px; }
.byt-steps .st { display: flex; align-items: center; gap: 12px; flex: 1; }
.byt-steps .st .n { width: 40px; height: 40px; border-radius: 999px; background: white; border: 2px solid var(--color-gray-200); color: var(--fg-3); font-family: var(--font-display); font-weight: 800; font-size: 15px; display: grid; place-items: center; flex-shrink: 0; transition: all var(--dur-base) var(--ease-out); }
.byt-steps .st.done .n { background: var(--color-forest-500); border-color: var(--color-forest-500); color: white; }
.byt-steps .st.active .n { background: white; border-color: var(--color-forest-500); color: var(--color-forest-600); box-shadow: 0 0 0 4px var(--color-forest-50); }
.byt-steps .st .lbl { font-size: 13px; font-weight: 700; color: var(--fg-3); white-space: nowrap; }
.byt-steps .st.done .lbl, .byt-steps .st.active .lbl { color: var(--fg-1); }
.byt-steps .bar { flex: 1; height: 2px; background: var(--color-gray-200); margin: 0 12px; border-radius: 2px; }
.byt-steps .bar.done { background: var(--color-forest-500); }

.byt-card { background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-2xl); box-shadow: var(--shadow-1); padding: 40px; }
.byt-card .q-eyebrow { font-family: var(--font-sub); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--color-forest-500); margin-bottom: 10px; }
.byt-card h2 { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 8px; }
.byt-card .q-sub { font-size: 15px; color: var(--fg-2); margin: 0 0 28px; }
.byt-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px; }
.byt-opt { border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-lg); padding: 20px; cursor: pointer; transition: all var(--dur-base) var(--ease-out); text-align: left; background: white; position: relative; }
.byt-opt:hover { border-color: var(--color-forest-300); background: var(--color-forest-50); }
.byt-opt.sel { border-color: var(--color-forest-500); background: var(--color-forest-50); }
.byt-opt .o-ic { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--color-forest-50); color: var(--color-forest-700); display: grid; place-items: center; margin-bottom: 14px; transition: all var(--dur-base) var(--ease-out); }
.byt-opt.sel .o-ic { background: var(--color-forest-500); color: white; }
.byt-opt .o-ic svg { width: 24px; height: 24px; stroke-width: 1.75; }
.byt-opt .o-t { font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; margin-bottom: 4px; }
.byt-opt .o-s { font-size: 12.5px; color: var(--fg-3); line-height: 1.4; }
.byt-opt .o-check { position: absolute; top: 16px; right: 16px; width: 22px; height: 22px; border-radius: 999px; border: 1.5px solid var(--color-gray-300); display: grid; place-items: center; transition: all var(--dur-base) var(--ease-out); }
.byt-opt.sel .o-check { background: var(--color-forest-500); border-color: var(--color-forest-500); }
.byt-opt.sel .o-check::after { content: '✓'; color: white; font-size: 12px; font-weight: 800; }
.byt-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--color-gray-100); }
.byt-foot .skip { font-size: 14px; font-weight: 600; color: var(--fg-3); }
.byt-side { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.byt-summary { background: var(--color-forest-500); color: white; border-radius: var(--radius-2xl); padding: 28px; position: sticky; top: 88px; }
.byt-summary h3 { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: white; margin: 0 0 4px; }
.byt-summary .sum-sub { font-size: 13px; color: rgba(255,255,255,0.8); margin: 0 0 22px; }
.byt-summary .sum-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.byt-summary .sum-row .si { width: 34px; height: 34px; border-radius: var(--radius-md); background: rgba(255,255,255,0.14); display: grid; place-items: center; flex-shrink: 0; }
.byt-summary .sum-row .si svg { width: 17px; height: 17px; }
.byt-summary .sum-row .sk { font-size: 11px; color: rgba(255,255,255,0.7); }
.byt-summary .sum-row .sv { font-size: 14px; font-weight: 700; color: white; }
.byt-summary .sum-row.empty .sv { color: rgba(255,255,255,0.5); font-weight: 400; font-style: italic; }
.byt-summary .sum-cta { margin-top: 22px; width: 100%; background: white; color: var(--color-forest-700); border-radius: var(--radius-md); padding: 13px; font-weight: 800; font-size: 14px; text-align: center; }
.byt-summary .sum-help { font-size: 12px; color: rgba(255,255,255,0.7); text-align: center; margin-top: 12px; }
@media (max-width: 900px){ .byt-side { grid-template-columns: 1fr; } .byt-opts { grid-template-columns: 1fr; } .byt-summary { position: static; } .byt-steps .st .lbl { display: none; } }

/* ─── Build Your Trip — step 2/3/4 controls ─── */
.bt-field { margin-bottom: 28px; }
.bt-field > .bt-lbl { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; margin-bottom: 6px; }
.bt-field > .bt-lbl svg { width: 19px; height: 19px; stroke-width: 1.85; color: var(--color-forest-600); }
.bt-field > .bt-hint { font-size: 13px; color: var(--fg-3); margin: 0 0 16px; line-height: 1.45; }
.bt-field .req-star { color: var(--color-red-500); }

.bt-rows { display: grid; gap: 14px; }
.bt-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bt-fld label { display: block; font-size: 12px; font-weight: 700; color: var(--fg-2); margin-bottom: 6px; }
.bt-fld input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 14px; color: var(--fg-1); background: white; }
.bt-fld textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 14px; color: var(--fg-1); background: white; resize: vertical; line-height: 1.5; }
.bt-fld input:focus, .bt-fld textarea:focus { outline: none; border-color: var(--color-forest-400); box-shadow: 0 0 0 3px var(--color-forest-50); }
.bt-fld input.err, .bt-fld textarea.err { border-color: var(--color-red-500); box-shadow: 0 0 0 3px var(--color-red-50); }

/* stepper (trip length, adults, children) */
.bt-counter-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-lg); }
.bt-counter-row + .bt-counter-row { margin-top: 12px; }
.bt-counter-row .cr-t { font-weight: 700; font-size: 15px; color: var(--fg-1); }
.bt-counter-row .cr-s { font-size: 12.5px; color: var(--fg-3); margin-top: 2px; }
.bt-counter { display: inline-flex; align-items: center; gap: 4px; border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-full); padding: 4px; flex-shrink: 0; }
.bt-counter button { width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; background: var(--color-forest-50); color: var(--color-forest-700); transition: background var(--dur-fast) var(--ease-out); }
.bt-counter button:hover { background: var(--color-forest-100); }
.bt-counter button:disabled { opacity: 0.4; cursor: not-allowed; background: var(--color-gray-50); color: var(--color-gray-400); }
.bt-counter button svg { width: 17px; height: 17px; stroke-width: 2.4; }
.bt-counter .v { min-width: 46px; text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--fg-1); }

/* budget slider */
.bt-range-wrap { padding: 4px 2px; }
.bt-range-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.bt-range-head .amt { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; color: var(--color-forest-700); }
.bt-range-head .amt small { font-size: 14px; font-weight: 700; color: var(--fg-3); }
.bt-range-head .tier { font-size: 13px; font-weight: 700; color: var(--color-forest-600); background: var(--color-forest-50); padding: 5px 12px; border-radius: var(--radius-full); }
.bt-range { width: 100%; accent-color: var(--color-forest-500); height: 6px; }
.bt-range-scale { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--fg-3); font-weight: 600; margin-top: 8px; }
.bt-est { margin-top: 16px; padding: 14px 16px; background: var(--bg-sunken); border-radius: var(--radius-md); font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }
.bt-est strong { color: var(--fg-1); }

.bt-pickcount { font-size: 13px; font-weight: 700; color: var(--color-forest-600); }

/* ─── Worldwide destination picker (Step 2) ─── */
.dest-search { position: relative; margin-bottom: 16px; }
.dest-search > svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--fg-3); pointer-events: none; }
.dest-search input { width: 100%; padding: 13px 14px 13px 42px; border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 14.5px; color: var(--fg-1); background: white; }
.dest-search input:focus { outline: none; border-color: var(--color-forest-400); box-shadow: 0 0 0 3px var(--color-forest-50); }

.dest-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.dest-chips:empty { display: none; }
.dest-chip { display: inline-flex; align-items: center; gap: 7px; background: var(--color-forest-500); color: white; font-size: 13px; font-weight: 700; padding: 6px 8px 6px 13px; border-radius: var(--radius-full); }
.dest-chip button { width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center; background: rgba(255,255,255,0.22); color: white; transition: background var(--dur-fast) var(--ease-out); }
.dest-chip button:hover { background: rgba(255,255,255,0.38); }
.dest-chip button svg { width: 11px; height: 11px; }

.dest-browse { border: 1px solid var(--color-gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.da-region + .da-region { border-top: 1px solid var(--color-gray-100); }
.da-row { width: 100%; display: flex; align-items: center; gap: 12px; padding: 15px 18px; text-align: left; background: white; transition: background var(--dur-fast) var(--ease-out); }
.da-row:hover { background: var(--color-gray-50); }
.da-row .chev { width: 17px; height: 17px; color: var(--fg-3); transition: transform var(--dur-base) var(--ease-out); flex-shrink: 0; }
.da-row.open .chev { transform: rotate(90deg); }
.da-name { font-family: var(--font-display); font-weight: 800; font-size: 15.5px; letter-spacing: -0.01em; flex: 1; }
.da-count { font-size: 12px; font-weight: 800; color: var(--color-forest-700); background: var(--color-forest-50); min-width: 22px; text-align: center; padding: 2px 8px; border-radius: var(--radius-full); opacity: 0; transition: opacity var(--dur-fast) var(--ease-out); }
.da-count.on { opacity: 1; }

.da-region-body { background: var(--bg-sunken); }
.da-country .da-row { padding-left: 30px; background: transparent; }
.da-country .da-name { font-weight: 700; font-size: 14px; font-family: var(--font-body); letter-spacing: 0; }
.da-country + .da-country { border-top: 1px solid var(--color-gray-100); }
.da-country-body { padding: 2px 18px 16px 48px; }
.da-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.da-city { font-size: 13px; font-weight: 600; color: var(--fg-2); background: white; border: 1.5px solid var(--color-gray-200); padding: 7px 13px; border-radius: var(--radius-full); transition: all var(--dur-fast) var(--ease-out); }
.da-city:hover { border-color: var(--color-forest-300); color: var(--color-forest-700); }
.da-city.sel { background: var(--color-forest-500); border-color: var(--color-forest-500); color: white; }

.dest-results { border: 1px solid var(--color-gray-200); border-radius: var(--radius-lg); overflow: hidden; max-height: 400px; overflow-y: auto; }
.dr-item { width: 100%; display: flex; align-items: center; gap: 12px; padding: 12px 18px; text-align: left; background: white; }
.dr-item + .dr-item { border-top: 1px solid var(--color-gray-100); }
.dr-item:hover { background: var(--color-gray-50); }
.dr-pin { width: 16px; height: 16px; color: var(--fg-3); flex-shrink: 0; }
.dr-city { font-weight: 700; font-size: 14px; color: var(--fg-1); flex: 1; }
.dr-item.sel .dr-city { color: var(--color-forest-700); }
.dr-path { font-size: 12.5px; color: var(--fg-3); }
.dr-check { width: 18px; height: 18px; color: var(--color-forest-500); opacity: 0; flex-shrink: 0; }
.dr-item.sel .dr-check { opacity: 1; }
.dr-empty { padding: 26px 20px; text-align: center; color: var(--fg-3); font-size: 13.5px; }

/* ─── Build Your Trip — step 4 match list ─── */
.match-intro { display: flex; align-items: flex-start; gap: 16px; background: var(--color-forest-50); border: 1px solid var(--color-forest-100); border-radius: var(--radius-xl); padding: 20px 22px; margin-bottom: 26px; }
.match-intro .mi-ic { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--color-forest-500); color: white; display: grid; place-items: center; flex-shrink: 0; }
.match-intro .mi-ic svg { width: 24px; height: 24px; stroke-width: 1.85; }
.match-intro h2 { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.01em; margin: 0 0 4px; }
.match-intro p { font-size: 14px; color: var(--fg-2); line-height: 1.5; margin: 0; }
.match-recap { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.match-recap .chip { background: white; border: 1px solid var(--color-forest-200); color: var(--color-forest-700); font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: var(--radius-full); }
.match-recap .chip.muted { background: transparent; border-color: var(--color-gray-200); color: var(--fg-3); font-weight: 600; }

.match-list { display: flex; flex-direction: column; gap: 16px; }
.match-card { display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-xl); box-shadow: var(--shadow-1); padding: 22px 24px; transition: box-shadow var(--dur-base) var(--ease-out); }
.match-card:hover { box-shadow: var(--shadow-2); }
.match-card.top { border-color: var(--color-forest-300); box-shadow: 0 0 0 1px var(--color-forest-200), var(--shadow-1); }
.mc-av { width: 56px; height: 56px; border-radius: var(--radius-lg); display: grid; place-items: center; color: white; font-family: var(--font-display); font-weight: 800; font-size: 19px; position: relative; }
.mc-av .vchk { position: absolute; bottom: -3px; right: -3px; width: 20px; height: 20px; border-radius: 999px; background: var(--color-forest-500); border: 2.5px solid white; display: grid; place-items: center; }
.mc-av .vchk svg { width: 11px; height: 11px; color: white; stroke-width: 3.5; }
.mc-body { min-width: 0; }
.mc-name { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.mc-name .n { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.mc-name .badge-top { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-forest-700); background: var(--color-lime-100); padding: 3px 9px; border-radius: var(--radius-full); }
.mc-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 6px 0 10px; font-size: 13px; color: var(--fg-2); }
.mc-meta .rt { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; color: var(--fg-1); }
.mc-meta .rt svg { width: 15px; height: 15px; color: var(--color-amber-500); fill: var(--color-amber-500); }
.mc-meta .dot { width: 3px; height: 3px; border-radius: 999px; background: var(--color-gray-300); }
.mc-blurb { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; margin: 0 0 12px; max-width: 52ch; }
.mc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.mc-tags .tag { font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); background: var(--color-gray-100); color: var(--fg-2); }
.mc-tags .tag.hit { background: var(--color-forest-50); color: var(--color-forest-700); }
.mc-rail { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 14px; text-align: right; min-width: 140px; }
.mc-match { display: flex; flex-direction: column; align-items: flex-end; }
.mc-match .pct { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--color-forest-600); line-height: 1; letter-spacing: -0.01em; }
.mc-match .lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--fg-3); margin-top: 3px; }
.mc-price { font-size: 12.5px; color: var(--fg-3); }
.mc-price strong { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--fg-1); display: block; letter-spacing: -0.01em; }
.mc-rail .btn { width: 100%; justify-content: center; }
@media (max-width: 760px){ .match-card { grid-template-columns: 48px 1fr; } .mc-rail { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; text-align: left; border-top: 1px solid var(--color-gray-100); padding-top: 14px; } .mc-match { align-items: flex-start; } }

/* ─── Build Your Trip — concierge fallback (Step 4) ─── */
.match-weak { display: flex; align-items: flex-start; gap: 12px; background: var(--color-amber-50); border: 1px solid var(--color-amber-300); border-radius: var(--radius-lg); padding: 15px 18px; margin-bottom: 22px; font-size: 13.5px; line-height: 1.5; color: var(--color-ink-soft); }
.match-weak svg { width: 20px; height: 20px; color: var(--color-amber-700); flex-shrink: 0; margin-top: 1px; }
.match-weak strong { color: var(--fg-1); }

.concierge { margin-top: 24px; background: var(--color-forest-50); border: 1.5px dashed var(--color-forest-300); border-radius: var(--radius-xl); padding: 26px 28px; transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out); }
.concierge.urgent { border-style: solid; border-color: var(--color-forest-500); box-shadow: var(--shadow-brand); }
.cc-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.cc-ic { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--color-forest-500); color: white; display: grid; place-items: center; flex-shrink: 0; }
.cc-ic svg { width: 23px; height: 23px; stroke-width: 1.85; }
.cc-head h3 { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; margin: 0 0 5px; }
.cc-head p { font-size: 14px; color: var(--fg-2); line-height: 1.5; margin: 0; max-width: 58ch; }
.cc-recap { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--color-forest-100); }
.cc-recap:empty { display: none; }
.cc-recap .chip { background: white; border: 1px solid var(--color-forest-200); color: var(--color-forest-700); font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: var(--radius-full); }
.cc-recap .chip.muted { background: transparent; border-color: var(--color-gray-200); color: var(--fg-3); font-weight: 600; }
.cc-actions { display: flex; align-items: center; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.cc-note { font-size: 12.5px; color: var(--fg-3); }
.cc-success { text-align: center; padding: 14px 0 8px; }
.cc-success .tick { width: 54px; height: 54px; border-radius: 999px; background: var(--color-forest-500); display: grid; place-items: center; margin: 0 auto 16px; }
.cc-success .tick svg { width: 28px; height: 28px; color: white; stroke-width: 3; }
.cc-success h3 { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.01em; margin: 0 0 8px; }
.cc-success p { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0 auto; max-width: 46ch; }
.cc-success .ref { display: inline-block; margin-top: 16px; font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--color-forest-700); background: white; border: 1px solid var(--color-forest-200); padding: 7px 14px; border-radius: var(--radius-full); }

/* ─── Become a Partner ─── */
.cta-hero { background: var(--color-forest-500); color: white; padding: 72px 32px; position: relative; overflow: hidden; }
.cta-hero::before { content:''; position:absolute; right:-120px; top:-120px; width:480px; height:480px; border-radius:999px; background: radial-gradient(circle, var(--color-forest-400) 0%, transparent 70%); opacity:0.6; }
.cta-hero .inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.cta-hero .eyebrow2 { display:inline-flex; align-items:center; gap:8px; font-family: var(--font-sub); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--color-lime-300); margin-bottom: 18px; }
.cta-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px,4.5vw,52px); line-height: 1.04; letter-spacing: -0.03em; margin: 0 0 16px; color: white; text-wrap: balance; }
.cta-hero p { font-size: 17px; color: rgba(255,255,255,0.9); line-height: 1.55; margin: 0 0 28px; max-width: 480px; }
.cta-hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-hero .btn.white { background: white; color: var(--color-forest-700); }
.cta-hero .btn.white:hover { background: var(--color-gray-50); }
.cta-hero .btn.outline { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.signup-card { background: white; border-radius: var(--radius-2xl); box-shadow: var(--shadow-3); padding: 30px; }
.signup-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; margin: 0 0 4px; color: var(--fg-1); }
.signup-card .sc-sub { font-size: 13px; color: var(--fg-3); margin: 0 0 20px; }
.signup-card .fld { margin-bottom: 14px; }
.signup-card .fld label { display: block; font-size: 12px; font-weight: 700; color: var(--fg-2); margin-bottom: 6px; }
.signup-card .fld input, .signup-card .fld select { width: 100%; padding: 11px 14px; border: 1px solid var(--color-gray-200); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 14px; color: var(--fg-1); background: white; }
.signup-card .fld input:focus, .signup-card .fld select:focus { outline: none; border-color: var(--color-forest-300); box-shadow: 0 0 0 3px var(--color-forest-50); }
.signup-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bp-stats { background: var(--bg-sunken); padding: 48px 32px; }
.bp-stats .inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bp-stat { text-align: center; }
.bp-stat .v { font-family: var(--font-display); font-weight: 800; font-size: 38px; color: var(--color-forest-500); letter-spacing: -0.02em; line-height: 1; }
.bp-stat .k { font-size: 13px; color: var(--fg-2); margin-top: 8px; }
.bp-benefits { padding: 72px 32px; }
.bp-benefits .inner { max-width: 1080px; margin: 0 auto; }
.bp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bp-benefit { padding: 28px; border-radius: var(--radius-xl); background: white; border: 1px solid var(--color-gray-100); }
.bp-benefit .b-ic { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--color-forest-50); color: var(--color-forest-700); display: grid; place-items: center; margin-bottom: 18px; }
.bp-benefit .b-ic svg { width: 26px; height: 26px; stroke-width: 1.75; }
.bp-benefit h4 { font-family: var(--font-display); font-weight: 800; font-size: 18px; margin: 0 0 8px; letter-spacing: -0.01em; }
.bp-benefit p { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; }
@media (max-width: 900px){ .cta-hero .inner { grid-template-columns: 1fr; } .bp-stats .inner { grid-template-columns: 1fr 1fr; } .bp-grid { grid-template-columns: 1fr; } }

/* ─── Download App ─── */
.app-hero { padding: 64px 32px; }
.app-hero .inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; }
.app-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px,4.5vw,52px); line-height: 1.04; letter-spacing: -0.03em; margin: 0 0 16px; text-wrap: balance; }
.app-hero h1 em { font-style: normal; color: var(--color-forest-500); }
.app-hero p { font-size: 17px; color: var(--fg-2); line-height: 1.55; margin: 0 0 28px; max-width: 460px; }
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.store-btn { display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px; border-radius: var(--radius-lg); background: var(--color-ink); color: white; transition: transform var(--dur-base) var(--ease-out); }
.store-btn:hover { transform: translateY(-2px); text-decoration: none; }
.store-btn svg { width: 26px; height: 26px; }
.store-btn .sb-t { text-align: left; line-height: 1.1; }
.store-btn .sb-t small { display: block; font-size: 10px; opacity: 0.8; }
.store-btn .sb-t b { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.app-qr { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--bg-sunken); border-radius: var(--radius-lg); width: fit-content; }
.app-qr .qr { width: 84px; height: 84px; border-radius: var(--radius-sm); background: white; padding: 8px; flex-shrink: 0; }
.app-qr .qr svg { width: 100%; height: 100%; }
.app-qr .qr-t .qt { font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.app-qr .qr-t .qs { font-size: 12px; color: var(--fg-3); margin-top: 3px; }
.phone-mock { position: relative; justify-self: center; }
.phone-mock .device { width: 280px; height: 580px; background: var(--color-ink); border-radius: 42px; padding: 12px; box-shadow: var(--shadow-3); }
.phone-mock .screen { width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: var(--color-forest-500); position: relative; }
.phone-mock .screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-mock .notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: var(--color-ink); border-radius: 999px; z-index: 2; }
.app-features { background: var(--bg-sunken); padding: 64px 32px; }
.app-features .inner { max-width: 1080px; margin: 0 auto; }
.af-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.af { text-align: center; padding: 8px; }
.af .af-ic { width: 56px; height: 56px; border-radius: var(--radius-lg); background: white; color: var(--color-forest-600); display: grid; place-items: center; margin: 0 auto 16px; box-shadow: var(--shadow-1); }
.af .af-ic svg { width: 26px; height: 26px; stroke-width: 1.75; }
.af h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 0 0 6px; }
.af p { font-size: 13px; color: var(--fg-2); line-height: 1.5; margin: 0; }
@media (max-width: 900px){ .app-hero .inner { grid-template-columns: 1fr; } .af-grid { grid-template-columns: 1fr 1fr; } }


/* ─── Tour Packages: provider marketplace ─── */
.prov-toggle { display: flex; gap: 6px; padding: 6px; background: var(--color-gray-50); border-radius: var(--radius-lg); margin-bottom: 10px; }
.prov-toggle button { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 14px; border: 0; background: transparent; border-radius: var(--radius-md); font-family: inherit; font-size: 14px; font-weight: 700; color: var(--fg-2); cursor: pointer; transition: all var(--dur-base) var(--ease-out); }
.prov-toggle button:hover { color: var(--fg-1); }
.prov-toggle button.on { background: white; color: var(--color-forest-700); box-shadow: var(--shadow-1); }
.prov-toggle button .pt-ic { display: grid; place-items: center; }
.prov-toggle button .pt-ic svg { width: 18px; height: 18px; stroke-width: 1.75; }
.prov-toggle button .pt-ct { font-family: var(--font-mono); font-size: 11px; opacity: 0.55; font-weight: 600; }
@media (max-width: 700px){ .prov-toggle { flex-direction: column; } }

.prov-explain { max-width: 1320px; margin: 0 auto; padding: 20px 32px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.prov-ex { display: flex; gap: 14px; padding: 18px 20px; border-radius: var(--radius-xl); background: white; border: 1px solid var(--color-gray-100); }
.prov-ex .pe-ic { width: 46px; height: 46px; border-radius: var(--radius-md); display: grid; place-items: center; flex-shrink: 0; }
.prov-ex.op .pe-ic { background: var(--color-forest-50); color: var(--color-forest-700); }
.prov-ex.fr .pe-ic { background: var(--color-cobalt-50); color: var(--color-cobalt-600); }
.prov-ex .pe-ic svg { width: 24px; height: 24px; stroke-width: 1.75; }
.prov-ex .pe-t { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: -0.01em; margin-bottom: 4px; }
.prov-ex p { font-size: 12.5px; color: var(--fg-2); line-height: 1.5; margin: 0; }

.prov-badge { display: inline-flex; align-items: center; gap: 3px; padding: 2px 8px; border-radius: var(--radius-full); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; white-space: nowrap; }
.prov-badge svg { width: 11px; height: 11px; }
.prov-badge.op { background: var(--color-forest-50); color: var(--color-forest-700); }
.prov-badge.fr { background: var(--color-cobalt-50); color: var(--color-cobalt-600); }

.pkg-card .prov { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.pkg-card .prov .pv-av { width: 32px; height: 32px; border-radius: 999px; flex-shrink: 0; background-size: cover; background-position: center; display: grid; place-items: center; color: white; font-family: var(--font-display); font-weight: 800; font-size: 12px; position: relative; }
.pkg-card .prov .pv-av .vchk { position: absolute; bottom: -2px; right: -2px; width: 14px; height: 14px; border-radius: 999px; background: var(--color-forest-500); border: 2px solid white; display: grid; place-items: center; }
.pkg-card .prov .pv-av .vchk svg { width: 8px; height: 8px; color: white; stroke-width: 3.5; }
.pkg-card .prov .pv-meta { display: flex; flex-direction: column; min-width: 0; }
.pkg-card .prov .pv-name { font-size: 13px; font-weight: 700; color: var(--fg-1); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pkg-card .prov .pv-role { font-size: 11px; color: var(--fg-3); line-height: 1.2; }
.pkg-card .prov .prov-badge { margin-left: auto; flex-shrink: 0; }

.pkg-results .pkg-card .foot { border-top: 0; padding-top: 12px; }
.pkg-card .foot .dur { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--fg-3); }
.pkg-card .foot .dur svg { width: 13px; height: 13px; }
.pkg-card .meta2 { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
.pkg-card .meta2 .lang { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--fg-3); }
.pkg-card .meta2 .lang svg { width: 13px; height: 13px; }
.pkg-card .meta2 .rating { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; }
.pkg-card .meta2 .rating svg { width: 14px; height: 14px; color: var(--color-amber-500); fill: var(--color-amber-500); }
.pkg-card .meta2 .rating small { color: var(--fg-3); font-weight: 400; }
.pkg-card .actions { display: flex; gap: 8px; margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--color-gray-100); }
.pkg-card .actions .a-msg { width: 42px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--color-gray-200); border-radius: var(--radius-md); color: var(--fg-2); cursor: pointer; transition: all var(--dur-base) var(--ease-out); }
.pkg-card .actions .a-msg:hover { border-color: var(--color-forest-400); color: var(--color-forest-600); background: var(--color-forest-50); }
.pkg-card .actions .a-msg svg { width: 17px; height: 17px; stroke-width: 1.75; }
.pkg-card .actions .a-quote, .pkg-card .actions .a-book { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 11px 10px; border-radius: var(--radius-md); font-size: 13px; font-weight: 700; cursor: pointer; transition: all var(--dur-base) var(--ease-out); white-space: nowrap; }
.pkg-card .actions .a-quote { background: white; border: 1.5px solid var(--color-gray-200); color: var(--fg-1); }
.pkg-card .actions .a-quote:hover { border-color: var(--color-forest-500); color: var(--color-forest-700); }
.pkg-card .actions .a-book { background: var(--color-forest-500); border: 1.5px solid var(--color-forest-500); color: white; box-shadow: var(--shadow-brand); }
.pkg-card .actions .a-book:hover { background: var(--color-forest-600); border-color: var(--color-forest-600); }

/* Fixed-package providers (no itinerary system → no custom quotes) */
.pkg-card .actions.no-quote .a-book { flex: 1; }
.pkg-fixed-note { display: flex; align-items: center; gap: 6px; margin: 0 0 12px; font-size: 11.5px; line-height: 1.35; color: var(--fg-3); cursor: help; }
.pkg-fixed-note svg { width: 14px; height: 14px; flex-shrink: 0; stroke-width: 1.9; color: var(--color-gray-400); }
.pkg-fixed-note strong { color: var(--fg-2); font-weight: 700; }

/* ─── Free cancellation badge (listing cards) ─── */
.fc-badge { display: flex; align-items: center; gap: 6px; width: fit-content; margin: 2px 0 14px; padding: 5px 10px; border-radius: var(--radius-full); background: var(--color-forest-50); color: var(--color-forest-700); font-size: 12px; font-weight: 700; line-height: 1; letter-spacing: -0.005em; }
.fc-badge svg { width: 13px; height: 13px; stroke-width: 2.1; flex-shrink: 0; color: var(--color-forest-600); }
.pkg-card .price .frm { font-size: 11px; color: var(--fg-3); font-weight: 400; display: block; line-height: 1; margin-bottom: 2px; }


/* ─── Collapsible filter sections (dropdown style) ─── */
.f-block > h4 { cursor: pointer; display: flex; align-items: center; justify-content: space-between; user-select: none; }
.f-block > h4::after { content: ''; width: 8px; height: 8px; border-right: 2px solid var(--fg-3); border-bottom: 2px solid var(--fg-3); transform: rotate(45deg); transition: transform var(--dur-base) var(--ease-out); margin-bottom: 3px; margin-right: 2px; }
.f-block.collapsed > h4 { margin-bottom: 0; padding-bottom: 0; }
.f-block.collapsed > h4::after { transform: rotate(-45deg); margin-bottom: 0; }
.f-block.collapsed > *:not(h4) { display: none; }
.f-block > h4:hover { color: var(--fg-1); }


/* ─── Provider hub cards ─── */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hub-card { background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-xl); overflow: hidden; display: flex; flex-direction: column; transition: all var(--dur-base) var(--ease-out); }
.hub-card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.hub-card .hc-cover { height: 88px; position: relative; overflow: hidden; background: var(--color-gray-100); }
.hub-card .hc-cover img { width: 100%; height: 100%; object-fit: cover; }
.hub-card .hc-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,42,32,0.05), rgba(3,42,32,0.35)); }
.hub-card .hc-badge { position: absolute; top: 12px; right: 12px; z-index: 1; }
.hub-card .hc-head { padding: 0 20px; margin-top: -28px; position: relative; z-index: 1; display: flex; align-items: flex-end; gap: 12px; }
.hub-card .hc-logo { width: 60px; height: 60px; border-radius: var(--radius-lg); border: 3px solid white; flex-shrink: 0; background-size: cover; background-position: center; display: grid; place-items: center; color: white; font-family: var(--font-display); font-weight: 800; font-size: 20px; box-shadow: var(--shadow-1); position: relative; }
.hub-card .hc-logo .vchk { position: absolute; bottom: -2px; right: -2px; width: 18px; height: 18px; border-radius: 999px; background: var(--color-forest-500); border: 2px solid white; display: grid; place-items: center; }
.hub-card .hc-logo .vchk svg { width: 10px; height: 10px; color: white; stroke-width: 3.5; }
.hub-card .hc-rating { margin-bottom: 4px; display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: var(--fg-1); }
.hub-card .hc-rating svg { width: 14px; height: 14px; color: var(--color-amber-500); fill: var(--color-amber-500); }
.hub-card .hc-rating small { color: var(--fg-3); font-weight: 400; }
.hub-card .hc-pkgs { margin-bottom: 4px; display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--fg-1); }
.hub-card .hc-pkgs::before { content: ''; width: 3px; height: 3px; border-radius: 999px; background: var(--color-gray-300); margin-right: 3px; }
.hub-card .hc-pkgs svg { width: 14px; height: 14px; color: var(--color-forest-500); }
.hub-card .hc-pkgs strong { font-weight: 800; }
.hub-card .hc-body { padding: 14px 20px 0; flex: 1; }
.hub-card .hc-name { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; line-height: 1.2; margin: 0 0 4px; }
.hub-card .hc-meta { font-size: 12.5px; color: var(--fg-3); margin-bottom: 12px; display: inline-flex; align-items: center; gap: 6px; }
.hub-card .hc-meta svg { width: 12px; height: 12px; }
.hub-card .hc-desc { font-size: 13px; color: var(--fg-2); line-height: 1.5; margin: 0 0 14px; }
.hub-card .hc-svc-label { font-family: var(--font-sub); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: var(--tracking-sub); color: var(--fg-3); margin-bottom: 8px; }
.hub-card .hc-svcs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.hub-card .hc-svc { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: var(--radius-full); background: var(--color-gray-50); font-size: 11.5px; font-weight: 600; color: var(--fg-1); }
.hub-card .hc-svc svg { width: 12px; height: 12px; color: var(--color-forest-500); stroke-width: 1.9; }
.hub-card .hc-areas { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0; }
.hub-card .hc-cov { margin-bottom: 16px; }
.hub-card .hc-cov .hc-areas { max-height: 62px; overflow: hidden; transition: max-height var(--dur-base) var(--ease-out); }
.hub-card .hc-cov.open .hc-areas { max-height: 360px; }
.hub-card .hc-area-toggle { display: none; align-items: center; gap: 4px; margin-top: 8px; padding: 0; background: none; border: 0; cursor: pointer; font-family: var(--font-body); font-size: 12px; font-weight: 700; color: var(--color-forest-500); }
.hub-card .hc-area-toggle:hover { color: var(--color-forest-600); }
.hub-card .hc-area-toggle .cv { width: 14px; height: 14px; transition: transform var(--dur-base) var(--ease-out); }
.hub-card .hc-cov.open .hc-area-toggle .cv { transform: rotate(180deg); }
.hub-card .hc-cov.has-more .hc-area-toggle { display: inline-flex; }
.hub-card .hc-area { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: var(--radius-full); background: var(--color-forest-50); font-size: 11.5px; font-weight: 600; color: var(--color-forest-700); }
.hub-card .hc-area svg { width: 12px; height: 12px; color: var(--color-forest-500); stroke-width: 1.9; }
.hub-card .hc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px 0; border-top: 1px solid var(--color-gray-100); }
.hub-card .hc-stats .s .v { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--fg-1); line-height: 1; letter-spacing: -0.01em; }
.hub-card .hc-stats .s .k { font-size: 10.5px; color: var(--fg-3); margin-top: 3px; }
.hub-card .hc-foot { display: flex; gap: 8px; padding: 0 20px 20px; }
.hub-card .hc-foot .hc-view { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 11px; border-radius: var(--radius-md); background: var(--color-forest-500); color: white; font-size: 13px; font-weight: 700; box-shadow: var(--shadow-brand); transition: background var(--dur-base) var(--ease-out); }
.hub-card .hc-foot .hc-view:hover { background: var(--color-forest-600); text-decoration: none; }
.hub-card .hc-foot .hc-msg { width: 42px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--color-gray-200); border-radius: var(--radius-md); color: var(--fg-2); transition: all var(--dur-base) var(--ease-out); }
.hub-card .hc-foot .hc-msg:hover { border-color: var(--color-forest-400); color: var(--color-forest-600); background: var(--color-forest-50); }
.hub-card .hc-foot .hc-msg svg { width: 17px; height: 17px; }
@media (max-width: 1100px){ .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px){ .hub-grid { grid-template-columns: 1fr; } }


/* ─── Tour Packages view tabs ─── */
.view-tabs { max-width: 1320px; margin: 0 auto; padding: 14px 32px 0; display: flex; gap: 0; border-bottom: 1px solid var(--color-gray-100); }
.view-tab { padding: 12px 2px 14px; margin-right: 28px; background: none; border: 0; font-family: inherit; font-size: 15px; font-weight: 700; color: var(--fg-3); cursor: pointer; position: relative; display: inline-flex; align-items: center; gap: 8px; transition: color var(--dur-base) var(--ease-out); }
.view-tab:hover { color: var(--fg-1); }
.view-tab .vt-ct { font-family: var(--font-mono); font-size: 11px; opacity: 0.55; font-weight: 600; }
.view-tab svg { width: 17px; height: 17px; stroke-width: 1.75; }
.view-tab.on { color: var(--color-forest-700); }
.view-tab.on::after { content: ''; position: absolute; left: 0; right: 12px; bottom: -1px; height: 3px; background: var(--color-forest-500); border-radius: 2px 2px 0 0; }


/* ═══ Booking & Request-quote pages ═══ */
.co-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 372px; gap: 28px; max-width: 1180px; margin: 0 auto; padding: 28px 32px 72px; align-items: start; }
.co-main { min-width: 0; }
.co-card { background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-xl); padding: 24px; margin-bottom: 18px; box-shadow: var(--shadow-1); }
.co-card > h2 { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; margin: 0 0 3px; display: flex; align-items: center; gap: 11px; }
.co-card > .sub { font-size: 13px; color: var(--fg-3); margin: 0 0 18px; padding-left: 39px; }
.co-card .sec-num { width: 28px; height: 28px; border-radius: 999px; background: var(--color-forest-500); color: white; display: grid; place-items: center; font-weight: 800; font-size: 14px; font-family: var(--font-display); flex-shrink: 0; }

.fld { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.fld:last-child { margin-bottom: 0; }
.fld > label { font-size: 12.5px; font-weight: 700; color: var(--fg-2); }
.fld > label .opt { font-weight: 500; color: var(--fg-3); }
.co-card input[type=text], .co-card input[type=email], .co-card input[type=tel], .co-card input[type=date], .co-card input[type=number], .co-card select, .co-card textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--color-gray-200); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 14px; color: var(--fg-1); background: white; transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.co-card textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.co-card input::placeholder, .co-card textarea::placeholder { color: var(--fg-3); }
.co-card input:focus, .co-card select:focus, .co-card textarea:focus { outline: none; border-color: var(--color-forest-400); box-shadow: 0 0 0 3px var(--color-forest-50); }
.fld .hint { font-size: 11.5px; color: var(--fg-3); }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fld-row.three { grid-template-columns: 1fr 1fr 1fr; }

/* travellers stepper */
.trav-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--color-gray-100); }
.trav-row:first-of-type { padding-top: 0; }
.trav-row:last-of-type { border-bottom: 0; padding-bottom: 0; }
.trav-row .tt { font-weight: 700; font-size: 14px; color: var(--fg-1); }
.trav-row .ts { font-size: 12px; color: var(--fg-3); margin-top: 2px; }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--color-gray-200); border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0; }
.stepper button { width: 40px; height: 42px; border: 0; background: white; color: var(--fg-1); font-size: 20px; line-height: 1; cursor: pointer; transition: background var(--dur-base) var(--ease-out); }
.stepper button:hover { background: var(--color-forest-50); color: var(--color-forest-600); }
.stepper button:disabled { color: var(--color-gray-300); cursor: not-allowed; background: white; }
.stepper .val { min-width: 42px; text-align: center; font-weight: 800; font-family: var(--font-display); font-size: 15px; }

/* selectable chips */
.chip-pick-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-pick { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: var(--radius-full); border: 1px solid var(--color-gray-200); background: white; font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--fg-1); cursor: pointer; transition: all var(--dur-base) var(--ease-out); }
.chip-pick svg { width: 14px; height: 14px; }
.chip-pick:hover { border-color: var(--color-forest-400); color: var(--color-forest-700); }
.chip-pick.on { background: var(--color-forest-500); border-color: var(--color-forest-500); color: white; }

/* radio option cards (date mode, payment) */
.opt-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-md); cursor: pointer; transition: all var(--dur-base) var(--ease-out); }
.opt-card + .opt-card { margin-top: 10px; }
.opt-card:hover { border-color: var(--color-forest-300); }
.opt-card.on { border-color: var(--color-forest-500); background: var(--color-forest-50); }
.opt-card .radio { width: 20px; height: 20px; border-radius: 999px; border: 2px solid var(--color-gray-300); flex-shrink: 0; display: grid; place-items: center; transition: border-color var(--dur-base) var(--ease-out); }
.opt-card.on .radio { border-color: var(--color-forest-500); }
.opt-card.on .radio::after { content: ''; width: 10px; height: 10px; border-radius: 999px; background: var(--color-forest-500); }
.opt-card .oc-text { flex: 1; min-width: 0; }
.opt-card .oc-t { font-weight: 700; font-size: 14px; color: var(--fg-1); display: flex; align-items: center; gap: 8px; }
.opt-card .oc-s { font-size: 12px; color: var(--fg-3); margin-top: 2px; }
.pm-chip { font-family: var(--font-sub); font-weight: 600; font-size: 10px; letter-spacing: var(--tracking-sub); text-transform: uppercase; color: var(--color-forest-700); background: var(--color-forest-100); padding: 3px 8px; border-radius: var(--radius-full); }

/* summary side */
.co-side { position: sticky; top: 88px; }
.sum-card { background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-1); }
.sum-img { position: relative; height: 152px; }
.sum-img img { width: 100%; height: 100%; object-fit: cover; }
.sum-img .tag { position: absolute; top: 12px; left: 12px; background: white; color: var(--fg-1); font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: var(--radius-full); box-shadow: var(--shadow-1); }
.sum-body { padding: 18px; }
.sum-prov { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--color-forest-600); }
.sum-prov svg { width: 14px; height: 14px; color: var(--color-forest-500); fill: var(--color-forest-500); }
.sum-body h3 { font-family: var(--font-display); font-weight: 800; font-size: 16.5px; line-height: 1.25; letter-spacing: -0.01em; margin: 9px 0 12px; }
.sum-meta { display: flex; flex-direction: column; gap: 9px; }
.sum-meta .r { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--fg-2); }
.sum-meta .r svg { width: 15px; height: 15px; color: var(--fg-3); flex-shrink: 0; }
.sum-meta .r .star { color: var(--color-amber-500); fill: var(--color-amber-500); }
.sum-divider { height: 1px; background: var(--color-gray-100); margin: 16px 0; }
.price-row { display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; color: var(--fg-2); margin-bottom: 11px; }
.price-row .v { color: var(--fg-1); font-weight: 600; }
.price-row.total { font-size: 18px; font-weight: 800; color: var(--fg-1); font-family: var(--font-display); margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--color-gray-100); }
.price-row.total .v { font-size: 22px; font-weight: 800; }
.price-row.total small { font-size: 12px; font-weight: 500; color: var(--fg-3); font-family: var(--font-body); }
.sum-cta { width: 100%; justify-content: center; margin-top: 18px; font-size: 15px; padding: 13px; }
.sum-note { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; color: var(--fg-3); margin-top: 13px; line-height: 1.45; }
.sum-note svg { width: 15px; height: 15px; color: var(--color-forest-500); flex-shrink: 0; margin-top: 1px; }
.sum-pay { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--color-gray-100); }
.sum-pay .pc { font-size: 10.5px; font-weight: 700; color: var(--fg-3); border: 1px solid var(--color-gray-200); border-radius: var(--radius-sm); padding: 3px 8px; }

/* what happens next */
.next-steps { display: flex; flex-direction: column; }
.next-step { display: flex; gap: 13px; padding-bottom: 20px; position: relative; }
.next-step:last-child { padding-bottom: 0; }
.next-step:not(:last-child)::before { content: ''; position: absolute; left: 14px; top: 30px; bottom: 2px; width: 2px; background: var(--color-gray-100); }
.next-step .ns-ic { width: 30px; height: 30px; border-radius: 999px; background: var(--color-forest-50); color: var(--color-forest-600); display: grid; place-items: center; flex-shrink: 0; z-index: 1; font-weight: 800; font-family: var(--font-display); font-size: 13px; }
.next-step .ns-t { font-weight: 700; font-size: 14px; color: var(--fg-1); }
.next-step .ns-s { font-size: 12.5px; color: var(--fg-3); margin-top: 3px; line-height: 1.45; }
.side-info { background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-xl); padding: 20px; box-shadow: var(--shadow-1); margin-top: 16px; }
.side-info h4 { font-family: var(--font-display); font-weight: 800; font-size: 15px; margin: 0 0 14px; }

/* success state */
.co-success { background: white; border: 1px solid var(--color-gray-100); border-radius: var(--radius-xl); padding: 52px 40px; text-align: center; box-shadow: var(--shadow-1); max-width: 620px; margin: 0 auto; }
.co-success .ok { width: 66px; height: 66px; border-radius: 999px; background: var(--color-forest-50); display: grid; place-items: center; margin: 0 auto 22px; }
.co-success .ok svg { width: 32px; height: 32px; color: var(--color-forest-500); stroke-width: 2.4; }
.co-success h2 { font-family: var(--font-display); font-weight: 800; font-size: 25px; letter-spacing: -0.01em; margin: 0 0 10px; }
.co-success p { color: var(--fg-2); max-width: 460px; margin: 0 auto; line-height: 1.55; font-size: 14.5px; }
.co-ref { display: inline-flex; align-items: center; gap: 10px; margin: 22px 0; padding: 13px 20px; border: 1px dashed var(--color-forest-300); border-radius: var(--radius-md); background: var(--color-forest-50); }
.co-ref .lab { font-size: 12px; font-weight: 700; color: var(--color-forest-600); text-transform: uppercase; letter-spacing: var(--tracking-sub); font-family: var(--font-sub); }
.co-ref .code { font-family: var(--font-mono); font-weight: 700; font-size: 16px; color: var(--color-forest-700); }
.co-success-actions { display: flex; gap: 10px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .co-wrap { grid-template-columns: 1fr; }
  .co-side { position: static; order: -1; }
}
@media (max-width: 560px) {
  .fld-row, .fld-row.three { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE NAVIGATION SHELL  (off-canvas drawer + compact header)
   Injected elements: .mobile-burger, .mtop-brand, .drawer-close,
   .nav-scrim  — created by assets/site-nav.js
   ════════════════════════════════════════════════════════════ */

/* Hidden on desktop; revealed in the phone breakpoint below. */
.mobile-burger,
.mtop-brand,
.drawer-close { display: none; }

.mobile-burger { width: 42px; height: 42px; border-radius: var(--radius-md); place-items: center; color: var(--fg-1); background: none; border: 0; cursor: pointer; flex-shrink: 0; margin-left: -6px; transition: background var(--dur-base) var(--ease-out); }
.mobile-burger:hover { background: var(--color-gray-50); }
.mobile-burger:active { background: var(--color-gray-100); }
.mobile-burger svg { width: 23px; height: 23px; }

.mtop-brand { align-items: center; gap: 9px; text-decoration: none; min-width: 0; }
.mtop-brand .mtop-mark { width: 34px; height: 34px; border-radius: var(--radius-sm); background: var(--color-forest-500); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-brand); }
.mtop-brand .mtop-mark img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.mtop-brand .mtop-word { font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.02em; color: var(--fg-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.drawer-close { width: 38px; height: 38px; border-radius: 999px; background: var(--color-gray-50); border: 0; cursor: pointer; color: var(--fg-2); place-items: center; flex-shrink: 0; margin-left: auto; transition: all var(--dur-base) var(--ease-out); }
.drawer-close:hover { background: var(--color-gray-100); color: var(--fg-1); }
.drawer-close svg { width: 18px; height: 18px; }

.nav-scrim { display: none; position: fixed; inset: 0; background: rgba(15,26,23,0.46); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base) var(--ease-out); z-index: 75; }

@media (max-width: 860px) {
  /* ── Sidebar → off-canvas drawer ── */
  body { padding-left: 0 !important; }
  body.nav-open { overflow: hidden; }

  .sidebar { width: 290px !important; transform: translateX(-100%); box-shadow: var(--shadow-3); transition: transform var(--dur-enter) var(--ease-out); will-change: transform; }
  body.nav-open .sidebar { transform: translateX(0); }

  /* Always show the drawer fully expanded, even if the desktop
     "collapsed" preference is remembered in localStorage. */
  body .sb-top { padding-right: 14px; }
  body .sb-top .brand .word { display: block !important; }
  body .sb-section .sb-label { opacity: 1 !important; height: auto !important; padding: 6px 14px 8px !important; }
  body .sb-item { justify-content: flex-start !important; padding: 13px 14px !important; gap: 12px !important; }
  body .sb-item .label { display: block !important; }
  body .sb-item .pill,
  body .sb-item .new { display: inline-block !important; }
  body .sb-item.active::before { left: -12px !important; }
  body.sb-collapsed .sb-item::after { display: none !important; }
  body .sb-user { justify-content: flex-start !important; padding: 10px 12px !important; }
  body .sb-user .info { display: block !important; }
  body .sb-user .more { display: inline-flex !important; }

  .sb-toggle { display: none !important; }
  .drawer-close { display: grid; }

  /* ── Compact top header ── */
  .topbar { padding: 0 14px; gap: 10px; height: 64px; }
  .topbar .tb-nav,
  .topbar .tb-search,
  .topbar .lang-pill { display: none !important; }
  .mobile-burger { display: grid; }
  .mtop-brand { display: flex; }
  .topbar .tb-right { gap: 4px; margin-left: auto; }
  .topbar .tb-right .btn.primary { font-size: 0; padding: 10px; gap: 0; }
  .topbar .tb-right .btn.primary svg { width: 19px; height: 19px; margin: 0; }

  .nav-scrim { display: block; }
  body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

  /* ── Roomier touch targets / tighter gutters ── */
  .page-head { padding: 22px 16px 18px; }
  .compact-filter { padding: 14px 16px; }
  .cat-chips { padding: 16px 16px 0; }
  .pkg-wrap { padding: 20px 16px 56px; gap: 20px; }
}

@media (max-width: 560px) {
  .page-head h1 { font-size: clamp(24px, 7vw, 30px); }
  .pkg-results .res-head { flex-wrap: wrap; gap: 10px; }
  .lc-grid { gap: 14px; }
}
