/* =====================================================================
   Perfect Itinerary — Editorial design system
   Ported from the redesign prototype (canonical "Editorial" direction).
   Tokens are global (:root); component classes are hand-written so the
   site stays fully static with no CSS build step.
   ===================================================================== */
:root {
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --display-weight: 700; --display-tracking: -.02em;
  --maxw: 1240px;
  --bg: #ffffff; --surface: #ffffff; --surface-2: #f3f6f5;
  --ink: #0c1613; --ink-soft: #4a5a54; --muted: #7c8a84;
  --line: #e6ece9; --line-strong: #d3ddd8;
  --accent: #0e9f6e; --accent-ink: #ffffff; --accent-ink-2: #0a8c61;
  --verify: #0a8c61;
  --radius: 12px; --radius-lg: 16px; --radius-pill: 10px;
  --btn-shadow: 0 1px 0 rgba(0,0,0,.04); --btn-shadow-hover: 0 8px 20px -10px rgba(14,159,110,.6);
  --card-shadow: 0 1px 3px rgba(12,22,19,.06);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: rgba(0,0,0,.12); }

/* sticky site header (promobar + nav + category submenu stay visible on scroll) */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--surface); }

/* anchor scroll offset — clears the sticky header */
[id] { scroll-margin-top: 150px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

/* shared poster (duotone gradient fallback behind a real photo) */
.poster { position: relative; overflow: hidden; isolation: isolate; aspect-ratio: 4/3;
  border-radius: var(--radius); }
.poster__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.poster__scrim { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.5)); }
.poster__sun { position: absolute; top: 14%; width: 46%; aspect-ratio: 1; transform: translateX(-50%); pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.55), rgba(255,255,255,0) 62%); left: 36%; }
.poster__hills { position: absolute; inset: auto 0 0 0; width: 100%; height: 62%; }
.poster__grain { position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.poster__label { position: absolute; left: 16px; right: 12px; bottom: 14px; z-index: 3; display: flex; flex-direction: column; gap: 2px; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.25); }
.poster__city { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2vw, 24px); line-height: 1.08; }
.poster__sub { font-size: 12px; font-weight: 600; opacity: .9; letter-spacing: .02em; margin-top: 2px; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; border: 0; font-weight: 600; font-family: var(--font-body);
  transition: transform .15s, background .15s, box-shadow .15s, color .15s; }
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: var(--accent-ink); padding: 14px 22px; border-radius: var(--radius-pill); box-shadow: var(--btn-shadow); }
.btn-primary:hover { box-shadow: var(--btn-shadow-hover); }
.btn-ghost { background: transparent; color: var(--ink); padding: 14px 20px; border-radius: var(--radius-pill); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: var(--surface-2); }
.btn--block { width: 100%; justify-content: center; }

/* badges / pills / eyebrow */
.vbadge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .01em; color: var(--verify); }
.vbadge svg { width: 14px; height: 14px; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: var(--radius-pill); white-space: nowrap;
  font-size: 13px; font-weight: 600; background: var(--surface-2); color: var(--ink-soft); border: 1px solid var(--line); }
.pill svg { width: 14px; height: 14px; }
.pill--on { background: var(--accent); color: #fff; border-color: var(--accent); }
.pill--wrap { white-space: normal; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink-2); }

/* nav */
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 22px; }
.nav__links { display: flex; align-items: center; gap: 30px; font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.logo__mark { width: 28px; height: 28px; color: var(--accent); display: inline-flex; }
.logo__mark svg { width: 100%; height: 100%; }
.logo__text { font-family: var(--font-display); font-size: 19px; letter-spacing: -.01em; color: var(--ink); }
.nav__toggle { display: none; align-items: center; background: none; border: 0; color: var(--ink); padding: 6px; margin: 0; }
.nav__toggle svg { width: 26px; height: 26px; }
.nav__mobile { display: none; }
.nav__mobile .wrap { display: grid; padding-top: 4px; padding-bottom: 12px; }
.nav__mobile a { padding: 13px 0; font-weight: 600; font-size: 16px; color: var(--ink-soft); border-top: 1px solid var(--line); }
.nav__mobile a:first-child { border-top: 0; }
.nav__mobile a:hover { color: var(--ink); }
@media (max-width: 760px){
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__mobile.open { display: block; border-bottom: 1px solid var(--line); background: var(--surface); }
}

/* category submenu (city pages) */
.subnav { background: var(--surface); border-bottom: 1px solid var(--line); }
.subnav__row { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0; }
.subnav__row .pill { flex: none; }
@media (max-width: 760px){
  .subnav { position: relative; }
  /* right-edge fade hints there's more to scroll */
  .subnav::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 40px; pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--surface)); }
  .subnav__row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 9px;
    scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
  .subnav__row::-webkit-scrollbar { height: 5px; }
  .subnav__row::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
  .subnav__row::-webkit-scrollbar-track { background: transparent; }
}

/* promo / affiliate top bar (available; not enabled by default) */
.promobar { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  background: #0b0f0e; color: #fff; text-decoration: none; padding: 9px 20px;
  font-size: 13.5px; font-weight: 600; line-height: 1.3; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.09); transition: background .2s var(--ease); }
.promobar:hover { background: #14211c; }
.promobar__tag { display: inline-flex; align-items: center; gap: 8px; }
.promobar__tag strong { font-weight: 800; letter-spacing: -.005em; }
.promobar__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 30%, transparent); flex: none; }
.promobar__city { font-style: normal; color: var(--accent); }
.promobar__tag strong { font-weight: 800; letter-spacing: -.005em; }
.promobar__cta { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 700; white-space: nowrap; }
.promobar__cta svg { width: 15px; height: 15px; }
@media (max-width: 620px){ .promobar__muted { display: none; } .promobar { gap: 10px; } }

/* breadcrumbs (light) */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 18px; }
.crumbs a:hover { color: var(--ink); }
.crumbs__sep { color: var(--line-strong); }
.crumbs__cur { color: var(--ink-soft); }

/* footer (light) */
.foot { border-top: 1px solid var(--line); padding: 56px 0 40px; margin-top: 24px; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot__grid h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; font-weight: 700; }
.foot__grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot__grid a { color: var(--ink-soft); font-size: 14.5px; }
.foot__grid a:hover { color: var(--ink); }
.foot__grid > div { min-width: 0; }
.foot__grid p, .foot__grid a { overflow-wrap: anywhere; }
.foot__disclosure { color: var(--muted); font-size: 12.5px; line-height: 1.55; margin: 44px 0 0; max-width: 88ch; }
.foot__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 18px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.foot__bottom a:hover { color: var(--ink); }
.foot__blurb { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; max-width: 36ch; margin: 16px 0 0; }
.foot__social { display: flex; gap: 14px; margin: 16px 0; }
.foot__social a { color: var(--muted); }
.foot__social a:hover { color: var(--accent); }
.foot__social svg { width: 22px; height: 22px; }
@media (max-width: 760px){ .foot__grid { grid-template-columns: 1fr 1fr; } }

/* section rhythm */
.section { padding: clamp(48px, 6vw, 80px) 0; }
.section--tight { padding: clamp(36px, 4.5vw, 56px) 0; }
.section--alt { background: var(--surface-2); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.section__title { font-family: var(--font-display); font-weight: var(--display-weight); letter-spacing: -.025em;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05; margin: 0; color: var(--ink); }
.section__sub { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin: 12px 0 0; max-width: 52ch; }
.link-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--accent-ink-2); white-space: nowrap; }
.link-more svg { width: 18px; height: 18px; transition: transform .2s; }
.link-more:hover svg { transform: translateX(3px); }

/* destination cards */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); }
@media (max-width: 1040px){ .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .dest-grid { grid-template-columns: 1fr; } }
.dest { display: flex; flex-direction: column; cursor: pointer; }
.dest .poster { aspect-ratio: 4/5; transition: transform .35s var(--ease); }
.dest:hover .poster { transform: translateY(-4px); }
.dest__body { padding: 14px 2px 0; display: flex; flex-direction: column; gap: 7px; }
.dest__row { display: block; }
.dest__city { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 20px; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
.dest__country { float: right; margin-left: 10px; font-size: 13px; color: var(--muted); font-weight: 600; white-space: nowrap; position: relative; top: 4px; }
.dest__blurb { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin: 0; }
.dest__spots { display: inline-flex; align-items: center; gap: 6px; margin-top: 3px; font-size: 12.5px; font-weight: 700; color: var(--accent-ink-2); }
.dest__spots svg { width: 14px; height: 14px; }

/* category cards */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 20px); }
@media (max-width: 880px){ .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .cat-grid { grid-template-columns: 1fr; } }
.cat { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 22px; min-height: 150px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff; cursor: pointer; isolation: isolate; }
.cat__bg { position: absolute; inset: 0; z-index: -1; transition: transform .4s var(--ease); background-size: cover; background-position: center; }
.cat:hover .cat__bg { transform: scale(1.05); }
.cat__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.45)); }
.cat__name { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 21px; }
.cat__desc { font-size: 13.5px; opacity: .92; margin-top: 3px; }
.cat__count { font-size: 12px; font-weight: 700; letter-spacing: .04em; opacity: .85; margin-top: 10px; }

/* steps / trust */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 36px); }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr; } }
.step__n { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--accent-ink-2); letter-spacing: .1em; }
.step__title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 22px; margin: 14px 0 10px; color: var(--ink); }
.step__body { color: var(--ink-soft); line-height: 1.65; font-size: 15px; margin: 0; }

/* stat band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 640px){ .stats { grid-template-columns: 1fr 1fr; gap: 28px 16px; } }
.stat__v { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(30px, 4vw, 46px); line-height: 1; color: var(--ink); letter-spacing: -.01em; }
.stat__l { color: var(--ink-soft); font-size: 14px; margin-top: 8px; font-weight: 500; }

/* search bar */
.searchbar { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line-strong);
  padding: 8px 8px 8px 18px; border-radius: var(--radius-pill); box-shadow: var(--card-shadow); max-width: 560px; }
.searchbar svg { width: 20px; height: 20px; color: var(--muted); flex: none; }
.searchbar input { border: 0; outline: 0; background: transparent; flex: 1; font: inherit; font-size: 16px; color: var(--ink); padding: 8px 0; }
.searchbar input::placeholder { color: var(--muted); }

/* marquee pills */
.marq { display: flex; gap: 12px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marq__track { display: flex; gap: 12px; animation: marq 160s linear infinite; }
.marq:hover .marq__track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marq__track { animation: none; } }

/* facts (hero) */
.facts { display: flex; gap: clamp(20px, 3vw, 36px); margin-top: 26px; flex-wrap: wrap; }
.fact__v { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 26px; color: var(--ink); letter-spacing: var(--display-tracking); line-height: 1; white-space: nowrap; }
.fact__k { font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; margin-top: 5px; }

/* place cards */
.place-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
@media (max-width: 980px){ .place-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .place-grid { grid-template-columns: 1fr; } }
.place { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.place:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(0,0,0,.4); }
.place .poster { border-radius: 0; }
.place .poster__img { transition: transform .6s var(--ease); }
.place:hover .poster__img { transform: scale(1.06); }
.place__body { padding: 15px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.place__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.place__name { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 18px; margin: 0; color: var(--ink); line-height: 1.2; letter-spacing: var(--display-tracking); }
.rating { display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 700; color: var(--ink); background: var(--surface-2); padding: 3px 9px; border-radius: 999px; white-space: nowrap; flex: none; }
.rating svg { width: 12px; height: 12px; color: #f2a73b; }
.place__blurb { color: var(--ink-soft); font-size: 14px; line-height: 1.5; margin: 0; }
.place__meta { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.place__meta svg { width: 13px; height: 13px; flex: none; }
.place__links { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 11px; margin-top: auto; border-top: 1px solid var(--line); flex-wrap: wrap; }
.place__map { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--accent-ink-2); }
.place__map svg { width: 14px; height: 14px; }
.place__cta { display: block; background: var(--surface-2); border-top: 1px solid var(--line); padding: 11px 16px; text-align: center; font-size: 13px; font-weight: 700; color: var(--accent-ink-2); transition: background .15s; }
.place__cta:hover { background: #e7f6f0; }

/* itinerary cards */
.itin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 20px); }
@media (max-width: 760px){ .itin-grid { grid-template-columns: 1fr; } }
.itin { display: flex; align-items: center; gap: 18px; padding: 22px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .2s; }
.itin:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--btn-shadow-hover); }
.itin__n { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 36px; line-height: .85; color: var(--accent); display: flex; flex-direction: column; }
.itin__n span { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.itin__title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 18px; color: var(--ink); }
.itin__detail { font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }
.itin__go { margin-left: auto; color: var(--accent-ink-2); }
.itin__go svg { width: 20px; height: 20px; }

/* motion — subtle, enhancement-only (content visible without JS) */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  html.anim .reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s var(--ease), transform .7s var(--ease); }
  html.anim .reveal.in { opacity: 1; transform: none; }
  html.anim .dest-grid > .reveal:nth-child(2), html.anim .place-grid > .reveal:nth-child(2), html.anim .cat-grid > .reveal:nth-child(2) { transition-delay: .06s; }
  html.anim .dest-grid > .reveal:nth-child(3), html.anim .place-grid > .reveal:nth-child(3), html.anim .cat-grid > .reveal:nth-child(3) { transition-delay: .12s; }
  html.anim .dest-grid > .reveal:nth-child(4), html.anim .place-grid > .reveal:nth-child(4), html.anim .cat-grid > .reveal:nth-child(4) { transition-delay: .18s; }
  html.anim .dest-grid > .reveal:nth-child(5), html.anim .place-grid > .reveal:nth-child(5), html.anim .cat-grid > .reveal:nth-child(5) { transition-delay: .24s; }
  html.anim .dest-grid > .reveal:nth-child(n+6), html.anim .place-grid > .reveal:nth-child(n+6), html.anim .cat-grid > .reveal:nth-child(n+6) { transition-delay: .3s; }
  html.anim .reveal.d2 { transition-delay: .12s; }
  html.anim .reveal.d3 { transition-delay: .22s; }
}

/* =====================================================================
   GAP CSS — replaces Tailwind utilities the templates relied on
   ===================================================================== */

/* generic content panels */
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px); }
.panel--accent { background: var(--surface-2); }
.panel__title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 22px; color: var(--ink); margin: 0 0 14px; letter-spacing: var(--display-tracking); }

/* split hero layout (text column + poster column) */
.hero { padding-block: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
@media (max-width: 860px){ .hero__grid { grid-template-columns: 1fr; } .hero__media { order: -1; } .hero__media .poster { max-height: 280px; aspect-ratio: 16/10; } }
.hero__title { font-family: var(--font-display); font-weight: var(--display-weight); letter-spacing: var(--display-tracking);
  font-size: clamp(40px, 7vw, 84px); line-height: .98; margin: 16px 0 0; color: var(--ink); }
.hero__title em { color: var(--accent-ink-2); font-style: normal; }
.hero__sub { font-size: 17px; font-weight: 600; color: var(--accent-ink-2); margin: 14px 0 0; }
.hero__lede { font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin: 18px 0 0; max-width: 52ch; }
.hero__btns { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero--compact .hero__title { font-size: clamp(36px, 6vw, 64px); }
.hero__poster { aspect-ratio: 3/4; }

/* prose (blog body, long descriptions) */
.prose { color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.prose > * + * { margin-top: 1.25rem; }
.prose h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; font-size: clamp(24px,3vw,32px);
  color: var(--ink); margin: 2.5rem 0 1rem; padding-bottom: .4rem; border-bottom: 1px solid var(--line); }
.prose h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink); margin: 2rem 0 .75rem; }
.prose h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); margin: 1.5rem 0 .5rem; }
.prose p { margin: 0 0 1.25rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem; padding-left: 1.4rem; }
.prose li { margin-bottom: .5rem; }
.prose ul li::marker { color: var(--accent); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--accent-ink-2); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--accent); }
.prose blockquote { border-left: 3px solid var(--accent); padding: .25rem 0 .25rem 1rem; color: var(--ink-soft); font-style: italic; margin: 1.5rem 0; }
.prose code { background: var(--surface-2); padding: .1em .4em; border-radius: 6px; font-family: var(--font-mono); font-size: .9em; color: var(--accent-ink-2); }
.prose pre { background: #0b0f0e; color: #f3f6f5; padding: 1rem 1.2rem; border-radius: var(--radius); overflow-x: auto; font-family: var(--font-mono); }
.prose pre code { background: none; padding: 0; color: inherit; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 15px; }
.prose th, .prose td { padding: .7rem .8rem; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--surface-2); font-weight: 700; color: var(--ink); }

/* line clamp utility */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* forms (contact) */
.form { display: grid; gap: 22px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: .01em; }
.field input, .field textarea { width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 12px 14px; transition: border-color .15s, box-shadow .15s; }
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }
.infocard { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; display: flex; gap: 14px; align-items: flex-start; min-width: 0; }
.infocard > * { min-width: 0; }
.infocard p { overflow-wrap: anywhere; }
.stack-sm, .stack-sm > * { min-width: 0; }
.infocard__icon { width: 44px; height: 44px; border-radius: var(--radius); background: #e7f6f0; color: var(--accent-ink-2); display: flex; align-items: center; justify-content: center; flex: none; }
.infocard__icon svg { width: 22px; height: 22px; }

/* faq accordion (attraction) */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 18px 20px; font-weight: 600; color: var(--ink); background: none; border: 0; }
.faq__q:hover { background: var(--surface-2); }
.faq__q svg { width: 20px; height: 20px; color: var(--muted); transition: transform .3s var(--ease); flex: none; }
.faq__q .rotate-180, .rotate-180 { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a.open { max-height: 800px; }
.faq__a p { padding: 0 20px 18px; margin: 0; color: var(--ink-soft); line-height: 1.6; }

/* checklists / numbered tips */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 10px; color: var(--ink-soft); line-height: 1.55; }
.checklist svg { color: var(--accent); width: 20px; height: 20px; flex: none; margin-top: 1px; }
.numlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: nl; }
.numlist li { display: flex; gap: 12px; color: var(--ink-soft); line-height: 1.55; }
.numbadge { width: 26px; height: 26px; border-radius: 999px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex: none; }

/* quick info bar (attraction) */
.quickinfo { display: flex; flex-wrap: wrap; gap: 20px 28px; align-items: center; }

/* itinerary: timeline, day numbers, place rows, time badges, budget, tip */
.timeline { border-left: 2px solid var(--line-strong); padding-left: 28px; margin-left: 22px; display: grid; gap: 16px; }
.day__head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.day__num { width: 48px; height: 48px; border-radius: 999px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; flex: none; }
.day__theme { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(22px,3vw,28px); color: var(--ink); letter-spacing: var(--display-tracking); margin: 0; }
.iplace { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.iplace:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(0,0,0,.4); }
.iplace__body { padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.iplace__img .poster { aspect-ratio: 16/10; border-radius: 0; }
@media (min-width: 640px){
  .iplace { flex-direction: row; }
  .iplace__img { width: 220px; flex: none; align-self: stretch; }
  .iplace__img .poster { height: 100%; aspect-ratio: auto; }
}
.tbadge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 10px; border-radius: 999px; display: inline-block; }
.tbadge--morning { background: #fdf0d5; color: #9a6b15; }
.tbadge--afternoon { background: #e7f1fb; color: #2563a8; }
.tbadge--evening { background: #efe7fb; color: #6b3fb0; }
.tip { background: var(--surface-2); border-left: 3px solid var(--accent); padding: 9px 13px; border-radius: 8px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.budget { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 640px){ .budget { grid-template-columns: 1fr; } }
.budget__card { text-align: center; padding: 22px; border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--line); }
.budget__k { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 6px; }
.budget__v { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 26px; color: var(--ink); }

/* CTA gradient band */
.cta { position: relative; overflow: hidden; isolation: isolate; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 80px); text-align: center; color: #fff; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 52%, #07231a)); }
.cta h2 { font-family: var(--font-display); font-weight: var(--display-weight); letter-spacing: -.01em; font-size: clamp(30px, 5vw, 56px); line-height: 1.02; margin: 0; }
.cta p { font-size: 18px; line-height: 1.6; margin: 18px auto 0; max-width: 48ch; opacity: .92; }
.cta__btns { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.btn-on-dark { background: #fff; color: #15201b; padding: 15px 26px; border-radius: var(--radius-pill); font-weight: 700; }
.btn-on-dark--ghost { background: rgba(255,255,255,.14); color: #fff; padding: 15px 24px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,.35); }

/* 404 */
.err { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 0; }
.err__code { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(80px, 18vw, 180px); line-height: 1; color: var(--accent); letter-spacing: -.03em; }
@media (prefers-reduced-motion: no-preference){ .err__code { animation: errpulse 2s var(--ease) infinite; } }
@keyframes errpulse { 0%,100%{ opacity: 1 } 50%{ opacity: .55 } }

/* cookie notice */
.cookiebar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 200; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  background: var(--ink); color: #fff; padding: 14px 20px; border-radius: var(--radius); font-size: 14px; line-height: 1.4; box-shadow: 0 18px 40px -16px rgba(0,0,0,.5); max-width: 920px; margin: 0 auto; }
.cookiebar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cookiebar[hidden] { display: none; }
@media (max-width: 560px){ .cookiebar { font-size: 13px; padding: 12px 16px; gap: 12px; } }

/* small helpers */
.muted { color: var(--muted); }
.stack-sm > * + * { margin-top: 10px; }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.cols-2 > * { min-width: 0; }
@media (max-width: 760px){ .cols-2 { grid-template-columns: 1fr; } }
.field input, .field textarea { min-width: 0; }

/* responsive refinements */
@media (max-width: 860px){
  .hero__grid { gap: 28px; }
  .nav { padding-block: 16px; }
  .section__head { margin-bottom: 28px; }
}
@media (max-width: 560px){
  .hero { padding-block: 16px 6px; }
  .facts { gap: 20px; margin-top: 20px; }
  .timeline { margin-left: 6px; padding-left: 16px; gap: 14px; }
  .day__head { gap: 12px; }
  .day__num { width: 40px; height: 40px; font-size: 16px; }
  .panel { padding: 20px; }
  .cta { padding: 36px 22px; }
  .section__head { margin-bottom: 22px; }
  .quickinfo { gap: 12px 18px; }
  .logo__text { font-size: 17px; }
  .nav__cta .btn { padding: 9px 14px; font-size: 14px; }
  .promobar { font-size: 12.5px; padding: 8px 14px; }
}
/* never let a page scroll sideways from an oversized child */
html, body { max-width: 100%; }
img, iframe, .poster { max-width: 100%; }
/* keep marquee links from inheriting underline / show pointer */
.marq__track a.pill { cursor: pointer; }
.marq__track a.pill:hover { border-color: var(--line-strong); color: var(--ink); }
.blog-grid { display: grid; grid-template-columns: 260px 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (max-width: 880px){ .blog-grid { grid-template-columns: 1fr; } .blog-toc .panel { position: static; } }
