/* Fable Tours — design system (ported from prototype) */
:root {
    --ink: #0d1b2a;
    --ink-soft: #41576b;
    --ink-faint: #7c8da0;
    --coral: #ff5a5f;
    --coral-deep: #e0484d;
    --amber: #ff9558;
    --teal: #0f9d96;
    --teal-deep: #0a7a74;
    --sand: #f7f4ef;
    --line: rgba(13, 27, 42, 0.10);
    --card: #ffffff;
    --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.06);
    --shadow-md: 0 12px 32px rgba(13, 27, 42, 0.12);
    --shadow-lg: 0 24px 60px rgba(13, 27, 42, 0.20);
    --glass-bg: rgba(255, 255, 255, 0.14);
    --glass-bg-strong: rgba(255, 255, 255, 0.22);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 8px 32px rgba(8, 20, 35, 0.28);
    --radius: 22px;
    --radius-sm: 14px;
    --maxw: 1200px;
    --font-display: "Archivo Black", "Inter", sans-serif;
    --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--sand);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  ::selection { background: var(--coral); color: #fff; }

  .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

  /* ---------- LIQUID GLASS PRIMITIVE ---------- */
  .glass {
    background: var(--glass-bg);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -1px 1px rgba(255,255,255,0.12);
    position: relative;
  }
  .glass::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.10) 100%);
    pointer-events: none;
  }

  /* ---------- NAV (full-width header) ---------- */
  header.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
  }
  .nav.scrolled { box-shadow: 0 6px 24px rgba(13,27,42,0.09); }
  .nav-top-inner { display: flex; align-items: center; gap: 26px; padding: 13px 0; }
  .logo {
    font-family: var(--font-display);
    font-weight: 400; font-size: 23px; letter-spacing: 1.5px;
    color: var(--ink); display: flex; align-items: center;
    flex: 0 0 auto; cursor: pointer;
  }
  .nav-search {
    flex: 1; max-width: 540px; display: flex; align-items: center; gap: 11px;
    padding: 12px 22px; border-radius: 999px; cursor: text; position: relative;
    background: #fff; border: 1px solid var(--line);
    box-shadow: var(--shadow-sm); transition: box-shadow .2s, border-color .2s;
  }
  /* autocomplete dropdown */
  .search-suggest {
    position: absolute; top: calc(100% + 12px); left: -1px; right: -1px; z-index: 90;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(26px) saturate(190%); -webkit-backdrop-filter: blur(26px) saturate(190%);
    border: 1px solid rgba(255,255,255,0.7); border-radius: 18px; padding: 8px;
    box-shadow: 0 22px 54px rgba(13,27,42,0.20), inset 0 1px 0 rgba(255,255,255,0.7);
    opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .search-suggest.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .sg-head { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--ink-faint); padding: 8px 12px 6px; }
  .sg-item { width: 100%; display: flex; align-items: center; gap: 13px; padding: 10px; border-radius: 13px; text-align: left; transition: background .15s; }
  .sg-item:hover { background: rgba(13,27,42,0.05); }
  .sg-item img { width: 54px; height: 44px; border-radius: 10px; object-fit: cover; flex: 0 0 auto; background: #cdd8e3; }
  .sg-txt { flex: 1; min-width: 0; }
  .sg-txt b { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sg-txt small { font-size: 12.5px; color: var(--ink-faint); }
  .sg-txt mark { background: rgba(255,90,95,0.20); color: inherit; border-radius: 3px; padding: 0 1px; }
  .sg-rate { display: flex; align-items: center; gap: 3px; font-size: 13px; font-weight: 600; color: var(--ink-soft); flex: 0 0 auto; }
  .sg-rate .ic { color: var(--amber); }
  .sg-empty { padding: 18px 14px; text-align: center; color: var(--ink-faint); font-size: 14px; }
  .sg-all { width: 100%; text-align: center; padding: 11px; margin-top: 4px; border-top: 1px solid var(--line); color: var(--coral-deep); font-weight: 600; font-size: 14px; }
  .sg-all:hover { color: var(--coral); }
  .nav-search:hover, .nav-search:focus-within { box-shadow: 0 4px 16px rgba(13,27,42,0.10); border-color: var(--ink-faint); }
  .nav-search > svg { color: var(--ink-soft); flex: 0 0 auto; }
  .nav-search input { border: none; outline: none; background: none; flex: 1; font-family: inherit; font-size: 15px; color: var(--ink); }
  .nav-search input::placeholder { color: var(--ink-faint); }
  .nav-right { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; }
  .nav-dest { position: relative; flex: 0 0 auto; }
  .dest-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--ink);
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transition: border-color .2s, box-shadow .2s;
  }
  .dest-btn:hover { border-color: var(--ink-faint); box-shadow: 0 4px 14px rgba(13,27,42,0.10); }
  .dest-btn .pin { color: var(--coral); flex: 0 0 auto; }
  .dest-btn .chev { color: var(--ink-faint); transition: transform .25s; flex: 0 0 auto; }
  .nav-dest.open .dest-btn .chev { transform: rotate(180deg); }
  .dest-menu {
    position: absolute; top: calc(100% + 12px); left: 0; width: 300px; z-index: 70;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(26px) saturate(190%); -webkit-backdrop-filter: blur(26px) saturate(190%);
    border: 1px solid rgba(255,255,255,0.6); border-radius: 18px;
    box-shadow: 0 22px 54px rgba(13,27,42,0.20), inset 0 1px 0 rgba(255,255,255,0.7);
    padding: 10px; opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-dest.open .dest-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .dest-head { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--ink-faint); padding: 8px 12px 8px; }
  .dest-item {
    width: 100%; display: flex; align-items: center; gap: 13px; text-align: left;
    padding: 11px 12px; border-radius: 13px; transition: background .15s;
  }
  .dest-item:hover { background: rgba(13,27,42,0.05); }
  .dest-item.active { background: rgba(15,157,150,0.10); }
  .dest-flag { width: 42px; height: 42px; border-radius: 12px; display:flex; align-items:center; justify-content:center; font-size: 21px; background: var(--sand); flex: 0 0 auto; }
  .dest-item .info { display: flex; flex-direction: column; gap: 1px; }
  .dest-item .info b { font-size: 15px; }
  .dest-item .info small { font-size: 13px; color: var(--ink-faint); }
  .dest-item .check { margin-left: auto; color: var(--teal); flex: 0 0 auto; }
  .dest-soon { text-align: center; font-size: 13px; color: var(--ink-faint); padding: 13px 8px 7px; border-top: 1px solid var(--line); margin: 8px 4px 2px; }
  .nav-link { font-weight: 600; font-size: 15px; color: var(--ink); transition: color .2s; white-space: nowrap; cursor: pointer; }
  .nav-link:hover { color: var(--coral-deep); }
  .nav-cur { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; color: var(--ink); padding-left: 22px; border-left: 1px solid var(--line); cursor: pointer; }
  .nav-book { font-family: var(--font); padding: 12px 26px; border-radius: 999px; font-size: 15px; flex: 0 0 auto; }
  /* secondary category row */
  .nav-sub { border-top: 1px solid var(--line); }
  .nav-sub-inner { display: flex; align-items: center; gap: 30px; padding: 13px 0; overflow-x: auto; scrollbar-width: none; }
  .nav-sub-inner::-webkit-scrollbar { display: none; }
  .subnav-link { font-weight: 600; font-size: 15px; color: var(--ink-soft); white-space: nowrap; position: relative; padding: 2px 0; transition: color .2s; cursor: pointer; }
  .subnav-link:hover { color: var(--ink); }
  .subnav-link.active { color: var(--ink); }
  .subnav-link.active::after { content:""; position:absolute; left:0; right:0; bottom:-13px; height:3px; border-radius:3px 3px 0 0; background: var(--ink); }
  .btn {
    border-radius: 999px; font-weight: 600; font-size: 15px;
    padding: 12px 22px; transition: transform .15s ease, box-shadow .25s ease, background .2s;
    display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  }
  .btn:active { transform: scale(0.97); }
  .btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--coral), var(--coral-deep));
    box-shadow: 0 8px 22px rgba(224,72,77,0.42);
  }
  .btn-primary:hover { box-shadow: 0 12px 28px rgba(224,72,77,0.55); }
  .btn-ghost-glass {
    color: #fff; font-weight: 600;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  }
  .nav.scrolled .btn-ghost-glass { color: var(--ink); background: rgba(13,27,42,0.05); border-color: var(--line); }
  .nav.scrolled .btn-ghost-glass:hover { background: rgba(13,27,42,0.09); }

  /* ---------- HERO (immersive, multi-city) ---------- */
  .hero {
    position: relative; min-height: 100vh; min-height: 100svh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 0 54px; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: -2;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2200&q=80');
    background-size: cover; background-position: center;
    transform: scale(1.04);
    transition: background-image .4s ease, opacity .4s ease;
  }
  .hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(8,14,24,0.58) 0%, rgba(8,14,24,0.12) 28%, rgba(8,14,24,0.34) 60%, rgba(6,11,20,0.90) 100%),
      radial-gradient(120% 70% at 12% 100%, rgba(8,12,22,0.55), transparent 60%);
  }

  /* social + scroll-down rail */
  .hero-rail {
    position: absolute; left: 28px; top: 50%; transform: translateY(-50%); z-index: 6;
    display: flex; flex-direction: column; align-items: center; gap: 17px;
  }
  .hero-rail .soc { color: rgba(255,255,255,0.82); transition: color .2s, transform .2s; }
  .hero-rail .soc:hover { color: #fff; transform: translateY(-2px); }
  .hero-rail .rail-line { width: 1px; height: 44px; background: rgba(255,255,255,0.4); margin-top: 4px; }
  .hero-rail .scrolldown {
    writing-mode: vertical-rl; text-orientation: mixed; letter-spacing: 2.5px; text-transform: uppercase;
    font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); margin-top: 4px;
  }
  .hero-rail .scrolldown::after { content: "↓"; display:block; margin: 10px auto 0; font-size: 14px; animation: bob 1.8s infinite; }
  @keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(5px);} }

  /* content (bottom-left) */
  .hero-content { position: relative; z-index: 2; max-width: 820px; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    color: #fff; font-weight: 600; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase;
    padding: 9px 16px; border-radius: 999px; margin-bottom: 22px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.32);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  }
  .eyebrow .pulse { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,0.7); animation: pulse 2s infinite; }
  @keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(74,222,128,0.6);} 70%{box-shadow:0 0 0 10px rgba(74,222,128,0);} 100%{box-shadow:0 0 0 0 rgba(74,222,128,0);} }
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 600; color: #fff;
    font-size: clamp(38px, 5.6vw, 64px); line-height: 1.06; letter-spacing: -0.5px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  }
  .hero h1 em { font-style: normal; color: #ffd9b0; }
  .hero p.sub {
    color: rgba(255,255,255,0.92); font-size: clamp(16px, 2vw, 20px);
    margin: 20px 0 30px; max-width: 560px; line-height: 1.5;
    text-shadow: 0 2px 14px rgba(0,0,0,0.35);
  }
  .hero-cta { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 38px; }
  .btn-book { font-size: 17px; padding: 16px 30px; border-radius: 999px; }
  .btn-book svg { transition: transform .2s; }
  .btn-book:hover svg { transform: translateX(4px); }

  /* city chooser (driven by the Destinations taxonomy) */
  .hero-cities { margin: 26px 0 30px; }
  .hero-cities .hc-label { display: block; color: rgba(255,255,255,0.72); font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 12px; text-shadow: 0 1px 8px rgba(0,0,0,0.35); }
  .hc-row { display: flex; gap: 13px; flex-wrap: wrap; }
  .hc-btn { display: flex; align-items: center; gap: 12px; cursor: pointer; padding: 12px 20px 12px 15px; border-radius: 15px; text-align: left; font-family: inherit; color: #fff; background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.22); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: transform .2s, border-color .2s, background .2s, box-shadow .2s; }
  .hc-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
  .hc-btn .hc-ic { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; border-radius: 11px; background: rgba(255,255,255,0.14); color: #ffd9b0; }
  .hc-btn .hc-tt b { display: block; font-size: 16px; line-height: 1.15; }
  .hc-btn .hc-tt small { font-size: 12.5px; color: rgba(255,255,255,0.74); }
  .hc-btn.active { background: rgba(255,255,255,0.95); color: #16202e; border-color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.28); }
  .hc-btn.active .hc-ic { background: var(--coral); color: #fff; }
  .hc-btn.active .hc-tt small { color: rgba(22,32,46,0.62); }

  /* trust badges */
  .hero-badges { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .badge-stars { display: flex; align-items: center; gap: 12px; color: #fff; }
  .badge-stars .ta-bubbles { color: #34e0a1; font-size: 18px; letter-spacing: 1px; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
  .badge-stars b { display: block; font-size: 15px; }
  .badge-stars small { font-size: 13px; color: rgba(255,255,255,0.78); }
  .badge-best { display: flex; align-items: center; gap: 12px; padding: 11px 18px; border-radius: 14px; color: #fff; }
  .badge-best .best-ico { font-size: 26px; }
  .badge-best small { display: block; font-size: 10.5px; letter-spacing: 0.6px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
  .badge-best b { font-size: 15px; }

  /* press logos (bottom-right) */
  .hero-press { position: absolute; right: 30px; bottom: 46px; z-index: 3; text-align: right; max-width: 380px; }
  .hero-press .press-label { display: block; color: rgba(255,255,255,0.72); font-size: 12px; letter-spacing: 0.5px; margin-bottom: 11px; }
  .press-logos { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px 18px; align-items: baseline; }
  .press-logos .pl { color: rgba(255,255,255,0.9); font-size: 15px; white-space: nowrap; }
  .press-logos .pl.serif { font-family: var(--font-display); font-weight: 600; }
  .press-logos .pl.bold { font-weight: 800; letter-spacing: -0.3px; }

  /* ---------- SECTION SHELL ---------- */
  section.block { padding: 76px 0; }
  .section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 34px; gap: 20px; flex-wrap: wrap; }
  .section-head h2 {
    font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3.5vw, 40px);
    letter-spacing: -0.2px; line-height: 1.08;
  }
  .section-head p { color: var(--ink-soft); font-size: 16px; margin-top: 8px; max-width: 520px; }
  .link-more { color: var(--coral-deep); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
  .link-more:hover { gap: 10px; }

  /* ---------- CATEGORY PILLS ---------- */
  .cats { display: flex; gap: 12px; overflow-x: auto; padding: 4px 0 10px; scrollbar-width: none; }
  .cats::-webkit-scrollbar { display: none; }
  .cat {
    flex: 0 0 auto; display: flex; align-items: center; gap: 9px;
    padding: 13px 20px; border-radius: 16px; background: #fff;
    border: 1px solid var(--line); font-weight: 600; font-size: 14.5px; color: var(--ink-soft);
    box-shadow: var(--shadow-sm); transition: transform .18s ease, color .2s, border-color .2s, box-shadow .2s;
  }
  .cat:hover { transform: translateY(-3px); color: var(--ink); box-shadow: var(--shadow-md); }
  .cat.active { color: #fff; background: linear-gradient(135deg, var(--ink), #1d3450); border-color: transparent; }
  .cat .ico { font-size: 17px; }

  /* ---------- CARD GRID ---------- */
  .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

  .card {
    background: var(--card); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); cursor: pointer;
    transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s;
    display: flex; flex-direction: column;
  }
  .card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
  .card-media { position: relative; aspect-ratio: 4/3.2; overflow: hidden; background: #dfe6ee; }
  .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
  .card:hover .card-media img { transform: scale(1.07); }
  .card-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    padding: 7px 13px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
    color: #fff;
    background: rgba(15,27,42,0.42);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
  }
  .card-badge.hot { background: linear-gradient(135deg, rgba(255,90,95,0.92), rgba(224,72,77,0.92)); border-color: rgba(255,255,255,0.45); }
  .heart {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.42);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    color: #fff; transition: transform .15s, background .2s;
  }
  .heart:hover { transform: scale(1.12); }
  .heart.liked { color: var(--coral); background: rgba(255,255,255,0.9); }
  .heart svg { width: 19px; height: 19px; }
  .card-body { padding: 16px 17px 18px; display: flex; flex-direction: column; flex: 1; }
  .card-cat { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--teal-deep); }
  .card h3 { font-size: 17px; font-weight: 600; line-height: 1.28; margin: 6px 0 4px; letter-spacing: -0.2px; }
  .card .loc { font-size: 13.5px; color: var(--ink-faint); display: flex; align-items: center; gap: 5px; }
  .card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; }
  .rating { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; }
  .rating .bubbles { color: var(--teal); letter-spacing: -1px; font-size: 13px; }
  .rating .count { color: var(--ink-faint); font-weight: 500; font-size: 13px; }
  .price { text-align: right; }
  .price b { font-size: 18px; font-weight: 700; }
  .price span { display: block; font-size: 12px; color: var(--ink-faint); margin-top: -1px; }

  /* ---------- WHY / TRUST STRIP ---------- */
  .trust { background: linear-gradient(135deg, #0d1b2a, #16314b); color: #fff; border-radius: 32px; padding: 56px 50px; position: relative; overflow: hidden; }
  .trust::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 120% at 90% -10%, rgba(255,120,90,0.30), transparent 50%); }
  .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; position: relative; z-index: 1; }
  .trust-item .ico-c {
    width: 52px; height: 52px; border-radius: 15px; display:flex; align-items:center; justify-content:center;
    font-size: 24px; margin-bottom: 16px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(10px);
  }
  .trust-item h4 { font-family: var(--font-display); font-size: 21px; font-weight: 600; margin-bottom: 7px; }
  .trust-item p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.55; }

  /* ---------- LISTINGS VIEW ---------- */
  .subnav-pad { height: 124px; }
  .listings-head { padding-top: 22px; }
  .filterbar {
    position: sticky; top: 84px; z-index: 40;
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    padding: 14px 16px; border-radius: 20px; margin-bottom: 28px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 10px 30px rgba(13,27,42,0.10);
  }
  .filter-search { flex: 1; min-width: 220px; display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: #fff; border-radius: 13px; border: 1px solid var(--line); }
  .filter-search input { border: none; outline: none; flex: 1; font-family: inherit; font-size: 15px; color: var(--ink); }
  .chip {
    padding: 11px 16px; border-radius: 12px; background: #fff; border: 1px solid var(--line);
    font-weight: 600; font-size: 14px; color: var(--ink-soft); transition: all .18s; white-space: nowrap;
  }
  .chip:hover { border-color: var(--ink-faint); }
  .chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
  .select-wrap { position: relative; }
  select.sort {
    appearance: none; -webkit-appearance: none; padding: 11px 38px 11px 16px;
    border-radius: 12px; background: #fff; border: 1px solid var(--line);
    font-family: inherit; font-weight: 600; font-size: 14px; color: var(--ink-soft); cursor: pointer;
  }
  .select-wrap::after { content: "▾"; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--ink-faint); }
  .results-meta { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; gap: 16px; flex-wrap: wrap; }
  .results-meta h1 { font-family: var(--font-display); font-size: clamp(26px,3.4vw,38px); font-weight: 600; letter-spacing: -0.7px; }
  .results-meta .count-txt { color: var(--ink-soft); font-size: 15px; }

  /* ---------- DETAIL VIEW ---------- */
  .detail-pad { height: 92px; }
  .breadcrumb { color: var(--ink-faint); font-size: 14px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
  .breadcrumb a:hover { color: var(--coral-deep); }
  .detail-title { font-family: var(--font-display); font-size: clamp(30px,4.5vw,48px); font-weight: 600; letter-spacing: -0.3px; line-height: 1.08; max-width: 800px; }
  .detail-meta { display: flex; align-items: center; gap: 18px; margin: 16px 0 26px; flex-wrap: wrap; font-size: 15px; }
  .detail-meta .rating { font-size: 15px; }
  .detail-meta .tag { color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
  .gallery { margin-bottom: 44px; }
  /* mosaic (1 big + 2 stacked) */
  .gmosaic { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 400px; border-radius: 24px; overflow: hidden; }
  .gmosaic button { padding: 0; border: none; cursor: pointer; overflow: hidden; position: relative; background: #cdd8e3; }
  .gmosaic .gm-main { grid-row: 1 / 3; }
  .gmosaic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
  .gmosaic button:hover img { transform: scale(1.05); }
  .gmosaic .img-fallback { background: linear-gradient(135deg, #16314b, #0f9d96); }
  .gmosaic .img-fallback img { opacity: 0; }
  .gm-hot {
    position: absolute; top: 14px; left: 14px; display: flex; align-items: center; gap: 9px;
    background: #e3f8e8; color: #1a7f4b; border-radius: 13px; padding: 9px 13px;
    box-shadow: 0 6px 18px rgba(13,27,42,0.15); border: 1px solid rgba(255,255,255,0.6);
  }
  .gm-hot .ic { color: #1a7f4b; flex: 0 0 auto; }
  .gm-hot .t b { display: block; font-size: 13px; font-weight: 700; line-height: 1.1; }
  .gm-hot .t small { font-size: 12px; color: #2e7d5b; }
  .gm-award {
    position: absolute; bottom: 14px; left: 14px; width: 58px; height: 58px; border-radius: 50%;
    background: linear-gradient(150deg, #0e7a52, #0aa06a); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
    box-shadow: 0 8px 22px rgba(8,40,28,0.4); border: 2px solid rgba(255,255,255,0.7);
  }
  .gm-award .aw-star .ic { color: #ffe08a; display: block; }
  .gm-award b { font-size: 13px; font-weight: 800; letter-spacing: 0.5px; }
  .gm-count {
    position: absolute; bottom: 12px; right: 12px; display: flex; align-items: center; gap: 7px;
    background: rgba(15,27,42,0.72); color: #fff; padding: 7px 13px; border-radius: 999px;
    font-size: 13px; font-weight: 600; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25);
  }
  .gm-count-mobile { display: none; }
  /* lightbox */
  .lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,12,20,0.93); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: none; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 30px; }
  .lightbox.open { display: flex; }
  .lb-row { display: flex; align-items: center; gap: 16px; max-width: 100%; }
  .lb-stage { position: relative; width: min(1040px, 84vw); height: min(640px, 68vh); border-radius: 16px; overflow: hidden; background: #0b1018; }
  .gallery-track { display: flex; height: 100%; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
  .gslide { flex: 0 0 100%; height: 100%; position: relative; }
  .gslide img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .gslide.img-fallback { background: linear-gradient(135deg, #16314b, #0f9d96); }
  .gslide.img-fallback img { opacity: 0; }
  .gnav {
    width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
    background: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.6); box-shadow: 0 8px 22px rgba(0,0,0,0.3);
    color: var(--ink); transition: background .2s, transform .15s;
  }
  .gnav:hover { background: #fff; transform: scale(1.08); }
  .lb-close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.3); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
  .lb-close:hover { background: rgba(255,255,255,0.28); }
  .gcount { position: absolute; bottom: 16px; right: 16px; z-index: 3; padding: 6px 13px; border-radius: 999px; font-size: 13px; font-weight: 600; color: #fff; background: rgba(15,27,42,0.7); border: 1px solid rgba(255,255,255,0.3); }
  .gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; max-width: min(1040px, 84vw); }
  .gallery-thumbs::-webkit-scrollbar { display: none; }
  .gthumb { flex: 0 0 auto; width: 92px; height: 64px; border-radius: 11px; overflow: hidden; border: 2px solid transparent; cursor: pointer; opacity: .55; transition: opacity .2s, border-color .2s; padding: 0; background: #1a2433; }
  .gthumb img { width: 100%; height: 100%; object-fit: cover; }
  .gthumb:hover { opacity: 1; }
  .gthumb.active { opacity: 1; border-color: var(--coral); }
  .detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: start; }
  .detail-section { padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
  .detail-section h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; margin-bottom: 16px; letter-spacing: -0.4px; }
  .detail-section p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.65; }
  .highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .highlight { display: flex; gap: 13px; align-items: flex-start; }
  .highlight .hi-ico { flex: 0 0 40px; height: 40px; border-radius: 12px; background: var(--sand); display:flex; align-items:center; justify-content:center; font-size: 19px; }
  .highlight b { display: block; font-size: 15px; margin-bottom: 2px; }
  .highlight span { font-size: 13.5px; color: var(--ink-faint); line-height: 1.4; }
  .itinerary { position: relative; padding-left: 8px; }
  .step { position: relative; padding: 0 0 26px 36px; border-left: 2px solid var(--line); }
  .step:last-child { border-left-color: transparent; padding-bottom: 0; }
  .step::before { content: ""; position: absolute; left: -8px; top: 2px; width: 15px; height: 15px; border-radius: 50%; background: #fff; border: 3px solid var(--coral); }
  .step b { display:block; font-size: 16px; margin-bottom: 4px; }
  .step span { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
  .step .time { font-size: 12.5px; font-weight: 700; color: var(--teal-deep); text-transform: uppercase; letter-spacing: 0.5px; }
  .included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .inc { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-soft); }
  .inc svg { flex: 0 0 20px; color: var(--teal); }

  /* booking glass card */
  .booking {
    position: sticky; top: 96px;
    border-radius: 26px; padding: 26px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(26px) saturate(190%); -webkit-backdrop-filter: blur(26px) saturate(190%);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 20px 50px rgba(13,27,42,0.16), inset 0 1px 0 rgba(255,255,255,0.8);
  }
  .booking .b-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }
  .booking .b-price b { font-size: 34px; font-family: var(--font-display); font-weight: 600; }
  .booking .b-price span { color: var(--ink-soft); font-size: 15px; }
  .booking .b-rating { font-size: 14px; color: var(--ink-soft); margin-bottom: 4px; display:flex; align-items:center; gap: 6px; }
  .b-facts { list-style: none; margin: 18px 0 20px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
  .b-facts li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; }
  .b-facts li .ic { color: var(--coral); flex: 0 0 auto; }
  .b-facts li span { flex: 1; color: var(--ink-soft); }
  .b-facts li b { color: var(--ink); font-weight: 600; }
  .b-fields { border: 1px solid var(--line); border-radius: 15px; overflow: hidden; margin-bottom: 16px; background: rgba(255,255,255,0.7); }
  .b-field { padding: 12px 16px; }
  .b-field + .b-field { border-top: 1px solid var(--line); }
  .b-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--ink-faint); }
  .b-field input, .b-field select { width: 100%; border: none; outline: none; background: none; font-family: inherit; font-size: 15px; font-weight: 500; color: var(--ink); margin-top: 2px; appearance:none; -webkit-appearance:none; }
  .booking .btn-primary { width: 100%; justify-content: center; padding: 15px; font-size: 16px; margin-bottom: 12px; }
  .booking .b-note { text-align: center; font-size: 13px; color: var(--ink-faint); }
  .b-breakdown { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--ink-soft); }
  .b-breakdown div { display: flex; justify-content: space-between; margin-bottom: 9px; }
  .b-breakdown .total { color: var(--ink); font-weight: 700; font-size: 16px; padding-top: 10px; border-top: 1px solid var(--line); }

  /* reviews */
  .rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .review { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-sm); }
  .rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
  .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--amber)); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:16px; }
  .rev-head b { font-size: 15px; } .rev-head span { font-size: 13px; color: var(--ink-faint); display:block; }
  .review .bubbles { color: var(--teal); font-size: 13px; letter-spacing: -1px; margin-bottom: 8px; }
  .review p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

  /* ---------- FOOTER ---------- */
  footer { background: #0b1623; color: rgba(255,255,255,0.8); padding: 64px 0 32px; margin-top: 40px; }
  .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .foot-brand .logo { color: #fff; margin-bottom: 14px; }
  .foot-brand p { font-size: 14.5px; line-height: 1.6; max-width: 300px; color: rgba(255,255,255,0.6); }
  .foot-col h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.3px; }
  .foot-col a { display: block; font-size: 14px; margin-bottom: 11px; color: rgba(255,255,255,0.62); transition: color .2s; }
  .foot-col a:hover { color: #fff; }
  .foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13.5px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }

  /* ---------- CONTACT ---------- */
  .contact-hero { padding: 8px 0 6px; }
  .eyebrow-dark { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--coral-deep); }
  .contact-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6.5vw, 76px); letter-spacing: -0.5px; line-height: 1.02; margin: 12px 0 14px; }
  .contact-hero p { color: var(--ink-soft); font-size: 18px; max-width: 580px; line-height: 1.55; }
  .contact-grid { display: grid; grid-template-columns: 1.35fr 0.9fr; gap: 38px; align-items: start; margin: 38px 0 84px; }
  .glass-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(24px) saturate(190%); -webkit-backdrop-filter: blur(24px) saturate(190%);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 20px 50px rgba(13,27,42,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
  }
  .contact-form { padding: 32px; border-radius: 24px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field { margin-bottom: 18px; }
  .field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-bottom: 7px; }
  .field input, .field select, .field textarea {
    width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 13px;
    background: #fff; font-family: inherit; font-size: 15px; color: var(--ink); outline: none;
    transition: border-color .2s, box-shadow .2s; appearance: none; -webkit-appearance: none;
  }
  .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237c8da0' stroke-width='3'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
  .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,90,95,0.13); }
  .field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
  .contact-form .btn-primary { width: 100%; justify-content: center; padding: 15px; font-size: 16px; margin-top: 4px; }
  .form-note { font-size: 13px; color: var(--ink-faint); text-align: center; margin-top: 13px; }
  .contact-thanks { text-align: center; padding: 30px 16px; }
  .contact-thanks .ico {
    width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 30px;
    background: linear-gradient(135deg, var(--teal), #34e0a1); color: #fff;
  }
  .contact-thanks h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 8px; }
  .contact-thanks p { color: var(--ink-soft); font-size: 16px; max-width: 380px; margin: 0 auto 22px; line-height: 1.5; }

  .info-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
  .info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
  .info-item:last-child { margin-bottom: 0; }
  .info-ico { width: 44px; height: 44px; border-radius: 13px; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 20px; flex: 0 0 auto; }
  .info-item b { display: block; font-size: 15px; margin-bottom: 3px; }
  .info-item a, .info-item span { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; }
  .info-item a { display: block; }
  .info-item a:hover { color: var(--coral-deep); }
  .info-cta b { font-size: 17px; font-family: var(--font-display); letter-spacing: -0.2px; }
  .info-cta p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin: 9px 0 16px; }
  .btn.sm { padding: 11px 18px; font-size: 14.5px; }
  .info-socials { display: flex; gap: 10px; }
  .info-socials a { width: 40px; height: 40px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; color: var(--ink); transition: background .2s, color .2s, transform .2s; }
  .info-socials a:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

  .contact-faq { max-width: 780px; margin: 18px auto 90px; }
  .contact-faq h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 40px); text-align: center; letter-spacing: -0.3px; }
  .contact-faq .sub { text-align: center; color: var(--ink-soft); font-size: 16px; margin: 10px 0 24px; }

  /* ---------- PRIVATE TOURS ---------- */
  .pcard .card-badge.priv { background: linear-gradient(135deg, #0d1b2a, #16314b); border-color: rgba(255,255,255,0.45); }
  .pcard .pcard-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 8px 0 0; }
  .pcard .card-foot { align-items: flex-end; }
  .pcard .price b { font-size: 17px; }
  .custom-block { background: linear-gradient(135deg, #0d1b2a, #16314b); color: #fff; border-radius: 30px; padding: 50px; position: relative; overflow: hidden; }
  .custom-block::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 110% at 88% -10%, rgba(255,120,90,0.30), transparent 55%); }
  .custom-inner { position: relative; z-index: 1; max-width: 640px; }
  .custom-inner .kicker { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #ffb39c; }
  .custom-inner h2 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.3px; margin: 12px 0 12px; line-height: 1.08; }
  .custom-inner > p { color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.6; margin-bottom: 20px; }
  .custom-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
  .custom-list li { position: relative; padding-left: 26px; font-size: 15px; color: rgba(255,255,255,0.86); line-height: 1.5; }
  .custom-list li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
  .custom-list li b { color: #fff; }

  /* ---------- CAREERS ---------- */
  .btn-ghost { background: #fff; border: 1px solid var(--line); color: var(--ink); box-shadow: var(--shadow-sm); flex: 0 0 auto; }
  .btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
  .careers-hero { padding: 8px 0 6px; max-width: 680px; }
  .careers-hero h1 { font-family: var(--font-display); font-size: clamp(38px, 5.5vw, 64px); line-height: 1.04; letter-spacing: -0.5px; margin: 12px 0 14px; }
  .careers-hero p { color: var(--ink-soft); font-size: 18px; line-height: 1.55; margin-bottom: 24px; }
  .perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .perk { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-sm); }
  .perk .p-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--sand); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--coral); }
  .perk b { display: block; font-size: 16px; margin-bottom: 6px; }
  .perk p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
  .roles { display: flex; flex-direction: column; gap: 14px; }
  .role { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; box-shadow: var(--shadow-sm); flex-wrap: wrap; }
  .role .r-info { flex: 1; min-width: 220px; }
  .role .r-info b { font-size: 19px; font-family: var(--font-display); letter-spacing: -0.2px; }
  .role .r-info p { font-size: 14.5px; color: var(--ink-soft); margin-top: 5px; line-height: 1.5; }
  .r-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 11px; }
  .r-tag { font-size: 12px; font-weight: 600; color: var(--ink-soft); background: var(--sand); padding: 5px 11px; border-radius: 999px; }

  /* ---------- BLOG INDEX ---------- */
  .blog-hero { padding: 10px 0 6px; max-width: 720px; }
  .blog-hero h1 { font-family: var(--font-display); font-size: clamp(38px, 5.5vw, 64px); line-height: 1.04; letter-spacing: -0.5px; }
  .blog-hero p { color: var(--ink-soft); font-size: 18px; line-height: 1.55; margin-top: 14px; }
  .blog-cats { display: flex; gap: 10px; flex-wrap: wrap; margin: 30px 0 34px; }
  .feature { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; border-radius: 26px; overflow: hidden; background: var(--card); box-shadow: var(--shadow-md); cursor: pointer; margin-bottom: 46px; transition: transform .28s, box-shadow .28s; }
  .feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .feature-media { position: relative; min-height: 340px; background: #cdd8e3; }
  .feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .feature-tag { position: absolute; top: 18px; left: 18px; z-index: 2; }
  .feature-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
  .feature-body .kicker { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 14px; }
  .feature-body h2 { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 34px); line-height: 1.12; letter-spacing: -0.3px; }
  .feature-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin: 14px 0 20px; }
  .post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .post { background: var(--card); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; display: flex; flex-direction: column; transition: transform .28s, box-shadow .28s; }
  .post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .post-media { aspect-ratio: 16/10; overflow: hidden; background: #cdd8e3; }
  .post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
  .post:hover .post-media img { transform: scale(1.06); }
  .post-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
  .post-cat { font-size: 11.5px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--teal-deep); }
  .post h3 { font-size: 19px; font-weight: 600; line-height: 1.25; margin: 8px 0 8px; letter-spacing: -0.2px; }
  .post p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
  .post-meta { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 16px; font-size: 13px; color: var(--ink-faint); }
  .post-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-faint); }
  .pill-tag { display: inline-block; padding: 7px 13px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.3px; color: #fff; background: rgba(15,27,42,0.5); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.4); }

  /* ---------- ARTICLE ---------- */
  .article-head { max-width: 800px; margin: 0 auto; text-align: center; }
  .article-kicker { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--coral-deep); }
  .article-head h1 { font-family: var(--font-display); font-size: clamp(32px, 4.6vw, 52px); line-height: 1.08; letter-spacing: -0.4px; margin: 14px 0 18px; }
  .article-byline { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14.5px; color: var(--ink-soft); flex-wrap: wrap; }
  .article-byline .avatar { width: 34px; height: 34px; font-size: 13px; }
  .article-cover { border-radius: 26px; overflow: hidden; margin: 30px 0 40px; max-height: 460px; background: #cdd8e3; }
  .article-cover img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; }
  .article-body { max-width: 740px; margin: 0 auto; }
  .article-body p { font-size: 18px; line-height: 1.7; color: #2c3e50; margin-bottom: 22px; }
  .article-body h2 { font-family: var(--font-display); font-size: 27px; letter-spacing: -0.3px; margin: 38px 0 14px; line-height: 1.2; }
  .article-body h3 { font-size: 20px; font-weight: 700; margin: 26px 0 10px; }
  .article-body ul { margin: 0 0 22px; padding-left: 4px; list-style: none; }
  .article-body li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 17px; line-height: 1.6; color: #2c3e50; }
  .article-body li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
  .article-body li b { color: var(--ink); }
  .article-body a.inline { color: var(--coral-deep); font-weight: 600; border-bottom: 1.5px solid rgba(224,72,77,0.3); }
  .article-body a.inline:hover { border-color: var(--coral-deep); }
  .takeaways { background: var(--sand); border-radius: 18px; padding: 24px 26px; margin: 8px 0 30px; }
  .takeaways b { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
  .tour-cta { display: flex; align-items: center; gap: 20px; background: linear-gradient(135deg, #0d1b2a, #16314b); color: #fff; border-radius: 22px; padding: 26px 30px; margin: 36px 0; flex-wrap: wrap; }
  .tour-cta img { width: 92px; height: 92px; border-radius: 16px; object-fit: cover; flex: 0 0 auto; }
  .tour-cta .cta-txt { flex: 1; min-width: 200px; }
  .tour-cta .cta-txt small { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
  .tour-cta .cta-txt b { display: block; font-family: var(--font-display); font-size: 21px; margin: 5px 0 4px; }
  .tour-cta .cta-txt span { color: rgba(255,255,255,0.78); font-size: 14.5px; }
  .faq { border-top: 1px solid var(--line); margin-top: 16px; }
  .faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
  .faq-item summary { font-size: 17px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: "+"; font-size: 24px; color: var(--ink-faint); font-weight: 400; transition: transform .2s; }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p { margin: 14px 0 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
  .article-foot-cta { text-align: center; padding: 30px 0 0; }

  .ic { display: inline-block; vertical-align: middle; flex: 0 0 auto; }
  .card-badge .ic, .tag .ic { vertical-align: -2px; margin-right: 2px; }
  .tag { display: inline-flex; align-items: center; gap: 5px; }
  .cat .ico .ic { display: block; }

  .hidden { display: none !important; }
  .fade-up { animation: fadeUp .6s cubic-bezier(.2,.7,.2,1) both; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1160px) {
    .hero-press { display: none; }
  }
  @media (max-width: 1040px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
    .detail-layout { grid-template-columns: 1fr; }
    .booking { position: relative; top: 0; max-width: 460px; }
  }
  @media (max-width: 880px) {
    .nav-link, .nav-cur { display: none; }
    .hero-rail { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .perks { grid-template-columns: repeat(2, 1fr); }
    .feature { grid-template-columns: 1fr; }
    .feature-media { min-height: 240px; }
    .feature-body { padding: 28px; }
    .post-grid { grid-template-columns: repeat(2, 1fr); }
    .grid, .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .trust-grid, .foot-grid { grid-template-columns: 1fr 1fr; }
    .gmosaic { height: 300px; }
    .gnav { width: 44px; height: 44px; }
    .highlights, .included-list, .rev-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .wrap { padding: 0 18px; }
    .form-row { grid-template-columns: 1fr; }
    .gmosaic { grid-template-columns: 1fr; grid-template-rows: 1fr; height: 260px; }
    .gmosaic .gm-side { display: none; }
    .gmosaic .gm-main { grid-row: 1 / 2; }
    .gm-count-mobile { display: flex; }
    .lb-row { gap: 8px; }
    .post-grid { grid-template-columns: 1fr; }
    .perks { grid-template-columns: 1fr; }
    .custom-list { grid-template-columns: 1fr; }
    .custom-block { padding: 34px 26px; }
    .grid, .grid.cols-3 { grid-template-columns: 1fr; }
    .hero-stats { gap: 22px; }
    .trust { padding: 40px 26px; }
    .trust-grid, .foot-grid { grid-template-columns: 1fr; }
    .nav-right .btn span.hide-sm { display: none; }
  }

/* ============================================================
   WordPress / theme integration adjustments
   ============================================================ */
body:not(.home) #content { padding-top: calc(86px + env(safe-area-inset-top)); }
@media (max-width: 880px) { body:not(.home) #content { padding-top: calc(74px + env(safe-area-inset-top)); } }
.site-footer { margin-top: 40px; }
.fable-tours-grid { margin-top: 8px; }
.fable-prose p { font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 16px; }
.fable-prose ul { margin: 0 0 18px 1.1em; }
.fable-prose li { margin-bottom: 8px; color: var(--ink-soft); }

/* pagination */
.navigation.pagination, .pagination { display: flex; gap: 8px; justify-content: center; margin: 24px 0 70px; flex-wrap: wrap; }
.pagination .page-numbers { padding: 9px 15px; border-radius: 12px; border: 1px solid var(--line); background: #fff; font-weight: 600; color: var(--ink); }
.pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination a.page-numbers:hover { border-color: var(--ink-faint); }

/* mobile hamburger menu */
.nav-toggle { display: none; }

@media (max-width: 880px) {
  /* Top bar = logo + search + hamburger only. The rest collapses into a panel. */
  .nav-top-inner { gap: 12px; }
  .nav-search { padding: 11px 16px; min-width: 0; }
  .nav-toggle { display: flex; flex-direction: column; gap: 4px; width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-sm); -webkit-tap-highlight-color: transparent; }
  .nav-toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-right { display: none; }
  .nav.open .nav-right {
    display: flex; position: absolute; top: calc(100% + 8px); right: 12px; left: 12px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line); border-radius: 18px; padding: 12px;
    box-shadow: 0 18px 44px rgba(13,27,42,0.16);
    max-height: calc(100svh - 90px); overflow-y: auto;
  }
  .nav.open .nav-link { display: block; padding: 13px 10px; font-size: 16px; border-radius: 10px; }
  .nav.open .nav-link:active { background: rgba(13,27,42,0.05); }
  .nav.open .nav-dest { display: block; width: 100%; order: -1; }
  .nav.open .nav-dest .dest-btn { width: 100%; justify-content: flex-start; padding: 13px 10px; }
  .nav.open .nav-dest .dest-menu { position: static; opacity: 1; transform: none; pointer-events: auto; box-shadow: none; border: none; padding: 4px 0 6px; width: 100%; }
  .nav.open .nav-dest:not(.open) .dest-menu { display: none; }
  .nav.open .nav-book { text-align: center; justify-content: center; margin-top: 6px; padding: 14px; font-size: 16px; }
}

/* ---------- iOS / touch refinements ---------- */
/* Inputs at 16px+ so iOS Safari never zooms on focus. */
@media (max-width: 880px) {
  .nav-search input, #listSearch, #searchInput,
  .b-field input, .b-field select, input[type="text"], input[type="email"],
  input[type="tel"], input[type="search"], textarea, select { font-size: 16px; }
  .hero h1 { font-size: clamp(32px, 8.5vw, 56px); }
  .hero { padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
  /* City chooser: full-width stacked buttons that are easy to tap. */
  .hc-row { flex-direction: column; align-items: stretch; }
  .hc-btn { width: 100%; }
}
/* Respect the notch / home indicator on iOS (0 on non-notched devices). */
header.nav { padding-top: env(safe-area-inset-top); }
.site-footer { padding-bottom: env(safe-area-inset-bottom); }
/* Kill the grey tap flash on interactive elements. */
a, button, .card, .chip, .hc-btn, .dest-item, summary { -webkit-tap-highlight-color: transparent; }
/* Smooth momentum scrolling for horizontal rails. */
.cats, .gallery-thumbs, .nav-sub-inner { -webkit-overflow-scrolling: touch; }
