/* =========================================================================
   BriefNepal Travel — premium editorial design system for /travel.
   Self-contained look (own fonts, palette, scale) layered over the shared
   header/footer. Mobile-first. Dark mode scoped to body[data-theme="dark"].
   Fonts: Fraunces (display serif) + Plus Jakarta Sans (UI/body).
   ========================================================================= */

body.t-page {
  /* --- premium travel palette (scoped; doesn't touch news/jobs tokens) --- */
  --t-display: "Fraunces", Georgia, "Times New Roman", serif;
  --t-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --t-ink: #16232b;          /* darkest — display headings */
  --t-text: #34454e;         /* body copy */
  --t-muted: #6c7c84;        /* meta / secondary */
  --t-faint: #95a2a8;        /* tertiary */
  --t-line: #e7e1d6;         /* warm hairline borders */
  --t-cream: #f7f3ec;        /* page background */
  --t-cream-2: #efe9df;      /* alt surface */
  --t-surface: #ffffff;
  --t-gold: #b8902f;         /* primary accent — Himalayan gold */
  --t-gold-soft: #f0e6cf;
  --t-teal: #0e5e57;         /* secondary accent — deep forest/teal */
  --t-teal-soft: #e2efea;
  --t-rust: #b5502a;         /* tertiary — temple terracotta */
  --t-r: 16px;               /* card radius */
  --t-r-sm: 10px;
  --t-sh-1: 0 1px 2px rgba(16,24,32,.05), 0 1px 3px rgba(16,24,32,.04);
  --t-sh-2: 0 14px 34px -14px rgba(16,24,32,.28);
  --t-sh-3: 0 24px 60px -18px rgba(16,24,32,.34);

  background: var(--t-cream);
  font-family: var(--t-sans);
  color: var(--t-text);
  -webkit-font-smoothing: antialiased;
}
body.t-page .container { max-width: 1200px; }

.t-hub, .t-detail { display: block; }

/* ============================== HERO ============================== */
.t-hero { color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.t-hero--hub {
  background: linear-gradient(135deg, #16232b, #0e3b46 60%, #0e5e57);
  min-height: 540px; display: flex; align-items: flex-end; padding: 64px 0 52px;
}
.t-hero--guide {
  background: linear-gradient(135deg, #16232b, #0e3b46);
  min-height: 400px; display: flex; align-items: flex-end; padding: 52px 0 40px;
}
.t-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; animation: t-kenburns 26s ease-out both;
}
@keyframes t-kenburns { from { transform: scale(1.1); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .t-hero__bg { animation: none; } }
.t-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.t-hero--hub::after  { background: linear-gradient(180deg, rgba(12,20,28,.22) 0%, rgba(12,20,28,.46) 50%, rgba(12,20,28,.86) 100%); }
.t-hero--guide::after{ background: linear-gradient(180deg, rgba(12,20,28,.28) 0%, rgba(12,20,28,.5) 50%, rgba(12,20,28,.8) 100%); }
.t-hero > .container { position: relative; z-index: 2; width: 100%; }

.t-hero__kicker {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--t-sans);
  font-size: .72rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: #f1d79e; margin-bottom: 16px;
}
.t-hero__kicker::before { content: ""; width: 26px; height: 1px; background: #f1d79e; opacity: .8; }
.t-hero__emoji { display: none; }   /* premium hero leads with type, not emoji */
.t-hero__title {
  font-family: var(--t-display); font-weight: 600; font-optical-sizing: auto;
  font-size: clamp(2.1rem, 5.6vw, 3.9rem); line-height: 1.04; letter-spacing: -.015em;
  margin-bottom: 16px; max-width: 18ch; text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.t-hero--hub .t-hero__title { max-width: 20ch; }
.t-hero__lead {
  font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,.92);
  max-width: 60ch; margin-bottom: 26px; font-weight: 400;
}

/* hero search — premium pill */
.t-search {
  display: flex; gap: 6px; max-width: 580px; background: #fff; padding: 6px;
  border-radius: 999px; box-shadow: 0 18px 40px -16px rgba(0,0,0,.5);
}
.t-search__input {
  flex: 1 1 auto; min-width: 0; border: 0; background: transparent; outline: none;
  padding: 12px 20px; font: inherit; font-size: 1rem; color: var(--t-ink);
}
.t-search .btn, .t-search button {
  white-space: nowrap; border: 0; border-radius: 999px; padding: 12px 26px;
  font-family: var(--t-sans); font-weight: 700; font-size: .95rem; color: #fff;
  background: linear-gradient(135deg, var(--t-gold), #9c7522); cursor: pointer;
}
.t-search button:hover { filter: brightness(1.06); }

.t-hero__trending { margin-top: 20px; font-size: .9rem; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.t-hero__trending-label { color: rgba(255,255,255,.7); font-weight: 600; letter-spacing: .02em; }
.t-hero__trending a {
  color: #fff; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px; padding: 6px 14px; font-size: .84rem; font-weight: 500;
  backdrop-filter: blur(4px); transition: background .18s, border-color .18s;
}
.t-hero__trending a:hover { background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.5); }

/* guide hero extras */
.t-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.t-chip {
  font-size: .8rem; font-weight: 600; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 6px 13px;
  backdrop-filter: blur(4px);
}
.t-crumbs { font-size: .82rem; color: rgba(255,255,255,.85); margin-bottom: 18px; font-weight: 500; }
.t-crumbs a { color: #fff; text-decoration: none; opacity: .9; }
.t-crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ============================== HUB intro ============================== */
.t-intro {
  background: var(--t-surface); border: 1px solid var(--t-line);
  border-radius: var(--t-r); padding: 30px 32px; margin: 36px 0; max-width: 820px;
  box-shadow: var(--t-sh-1);
}
.t-intro h2 { font-family: var(--t-display); font-weight: 600; font-size: 1.7rem; color: var(--t-ink); margin-bottom: 12px; letter-spacing: -.01em; }
.t-intro p { font-size: 1rem; line-height: 1.8; color: var(--t-text); margin-bottom: 12px; }
.t-intro a { color: var(--t-teal); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--t-gold-soft); }
.t-intro a:hover { text-decoration-color: var(--t-teal); }

/* ============================== Blocks / grids ============================== */
.t-block { margin: 56px 0; scroll-margin-top: 80px; }
.t-block__head { margin-bottom: 26px; max-width: 760px; }
.t-block__title {
  font-family: var(--t-display); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  line-height: 1.12; color: var(--t-ink); letter-spacing: -.015em;
  position: relative; padding-bottom: 16px; margin-bottom: 8px;
}
.t-block__title::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--t-gold), var(--t-rust)); border-radius: 3px;
}
.t-block__sub { font-size: 1.02rem; color: var(--t-muted); line-height: 1.6; }

.t-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }

/* ---------- premium destination/pilgrimage card ---------- */
.t-card {
  display: flex; flex-direction: column; background: var(--t-surface);
  border: 1px solid var(--t-line); border-radius: var(--t-r); overflow: hidden;
  box-shadow: var(--t-sh-1); transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--t-sh-3); border-color: transparent; }
.t-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--t-cream-2); }
.t-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1); z-index: 0;
}
.t-card:hover .t-card__img { transform: scale(1.08); }
.t-card__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.34) 100%);
}
.t-card__emoji {
  position: absolute; top: 13px; left: 13px; z-index: 2;
  width: 38px; height: 38px; display: grid; place-items: center; font-size: 1.2rem;
  background: rgba(255,255,255,.94); border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
/* authentic Nepal flag badge */
.t-card__flag img { width: 22px; height: auto; display: block; filter: drop-shadow(0 1px 1px rgba(0,0,0,.25)); }
.t-card__faith {
  position: absolute; top: 14px; right: 14px; z-index: 2; font-size: .64rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; color: #fff;
  background: rgba(16,35,43,.62); padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(3px);
}
.t-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.t-card__name { font-family: var(--t-display); font-weight: 600; font-size: 1.32rem; line-height: 1.2; color: var(--t-ink); letter-spacing: -.01em; }
.t-card__tag { font-size: .94rem; line-height: 1.55; color: var(--t-muted); flex: 1; }
.t-card__meta {
  display: flex; flex-wrap: wrap; gap: 14px; font-size: .78rem; color: var(--t-faint);
  font-weight: 600; padding-top: 12px; margin-top: 4px; border-top: 1px solid var(--t-line);
}
.t-card__more {
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--t-gold); margin-top: 12px; display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.t-card:hover .t-card__more { gap: 11px; }

/* ============================== Map (Leaflet) ============================== */
.t-map { background: var(--t-surface); border: 1px solid var(--t-line); border-radius: var(--t-r); padding: 16px; box-shadow: var(--t-sh-1); position: relative; z-index: 0; }
.t-leaflet { height: 460px; width: 100%; border-radius: var(--t-r-sm); overflow: hidden; border: 1px solid var(--t-line); background: #dfeaf2; z-index: 0; }
.t-leaflet__pin span {
  display: grid; place-items: center; width: 36px; height: 36px; font-size: 1rem;
  background: #fff; border: 2.5px solid var(--t-teal); border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); box-shadow: 0 3px 9px rgba(0,0,0,.4);
}
.t-leaflet__pin span > * { transform: rotate(45deg); }
.t-leaflet__pin--pilgrimage span { border-color: var(--t-rust); }
.t-leaflet__pop strong { display: block; font-family: var(--t-display); font-weight: 600; font-size: 1.05rem; color: var(--t-ink); }
.t-leaflet__pop span { display: block; font-size: .84rem; color: var(--t-muted); margin: 4px 0 8px; }
.t-leaflet__pop a { font-weight: 700; color: var(--t-gold); }
.t-map__list { columns: 2; gap: 18px; font-size: .92rem; margin: 8px 0; }
.t-map__list a { color: var(--t-teal); }
.t-map__note { font-size: .8rem; color: var(--t-faint); margin-top: 12px; }
@media (min-width: 960px) { .t-leaflet { height: 540px; } }

/* ============================== Seasons ============================== */
.t-seasons { display: grid; grid-template-columns: 1fr; gap: 18px; }
.t-season { background: var(--t-surface); border: 1px solid var(--t-line); border-radius: var(--t-r); padding: 24px; box-shadow: var(--t-sh-1); position: relative; overflow: hidden; }
.t-season::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.t-season--spring::before  { background: linear-gradient(90deg,#e36aa0,#f0a9c6); }
.t-season--monsoon::before { background: linear-gradient(90deg,#1d7a46,#5aa02c); }
.t-season--autumn::before  { background: linear-gradient(90deg,#d4702a,#e0a93a); }
.t-season--winter::before  { background: linear-gradient(90deg,#3f8fd0,#8fc4ec); }
.t-season h3 { font-family: var(--t-display); font-weight: 600; font-size: 1.22rem; color: var(--t-ink); margin-bottom: 10px; }
.t-season p { font-size: .94rem; line-height: 1.65; color: var(--t-text); margin-bottom: 8px; }
.t-season__best { font-size: .85rem !important; font-weight: 700 !important; color: var(--t-teal) !important; }

/* ============================== Booking rail ============================== */
.t-booking {
  margin: 56px 0; background: linear-gradient(135deg, var(--t-ink), #0e3b46);
  border-radius: var(--t-r); padding: 36px 32px; color: #fff; box-shadow: var(--t-sh-2);
}
.t-booking__title { font-family: var(--t-display); font-weight: 600; font-size: 1.7rem; margin-bottom: 22px; letter-spacing: -.01em; }
.t-booking__grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.t-booking__card {
  display: flex; flex-direction: column; gap: 6px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--t-r-sm); padding: 20px;
  transition: background .2s, transform .2s;
}
.t-booking__card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.t-booking__icon { font-size: 1.7rem; }
.t-booking__name { font-weight: 700; font-size: 1.02rem; color: #fff; }
.t-booking__desc { font-size: .86rem; color: rgba(255,255,255,.72); flex: 1; line-height: 1.5; }
.t-booking__cta {
  margin-top: 10px; align-self: flex-start; border-radius: 999px !important;
  background: var(--t-gold) !important; border: 0 !important; color: #1c1404 !important;
  font-weight: 700 !important; padding: 9px 20px !important;
}
.t-booking__cta:hover { filter: brightness(1.08); }
.t-booking__note { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 18px; }

/* ============================== DETAIL layout ============================== */
.t-layout { padding-top: 36px; padding-bottom: 16px; }
.t-main { max-width: 760px; margin: 0 auto; }

.t-facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  background: var(--t-surface); border: 1px solid var(--t-line); border-radius: var(--t-r);
  overflow: hidden; margin-bottom: 30px; box-shadow: var(--t-sh-1);
}
.t-fact { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; border-right: 1px solid var(--t-line); border-bottom: 1px solid var(--t-line); }
.t-fact__k { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--t-gold); font-weight: 800; }
.t-fact__v { font-size: .98rem; color: var(--t-ink); font-weight: 600; }

.t-toc { background: var(--t-teal-soft); border: 1px solid var(--t-line); border-radius: var(--t-r); padding: 20px 24px; margin-bottom: 34px; }
.t-toc__label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--t-teal); }
.t-toc ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.t-toc a { font-size: .9rem; color: var(--t-text); font-weight: 500; text-decoration: none; }
.t-toc a:hover { color: var(--t-teal); text-decoration: underline; text-underline-offset: 3px; }

.t-prose { color: var(--t-text); }
.t-sec { margin-bottom: 40px; scroll-margin-top: 80px; }
.t-sec h2 {
  font-family: var(--t-display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 1.95rem);
  line-height: 1.18; color: var(--t-ink); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--t-gold-soft); letter-spacing: -.01em;
}
.t-prose h3 { font-family: var(--t-display); font-weight: 600; font-size: 1.25rem; color: var(--t-ink); margin: 26px 0 10px; }
.t-prose p { font-size: 1.06rem; line-height: 1.85; margin-bottom: 16px; }
.t-prose ul, .t-prose ol { margin: 0 0 16px 1.25em; }
.t-prose li { font-size: 1.06rem; line-height: 1.8; margin-bottom: 9px; }
.t-prose a { color: var(--t-teal); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--t-gold-soft); }
.t-prose a:hover { text-decoration-color: var(--t-teal); }
.t-prose strong { color: var(--t-ink); font-weight: 700; }
.t-prose blockquote { margin: 0 0 18px; padding: 16px 22px; background: var(--t-teal-soft); border-left: 4px solid var(--t-teal); border-radius: var(--t-r-sm); font-size: 1rem; color: var(--t-text); }
.t-prose table { width: 100%; border-collapse: collapse; margin: 0 0 18px; font-size: .94rem; border-radius: var(--t-r-sm); overflow: hidden; box-shadow: var(--t-sh-1); }
.t-prose th, .t-prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--t-line); }
.t-prose th { background: var(--t-ink); color: #fff; font-weight: 700; }
.t-prose tr:last-child td { border-bottom: 0; }

/* attractions */
.t-att { display: flex; flex-direction: column; gap: 22px; }
.t-att__item { display: flex; gap: 18px; }
.t-att__num { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--t-gold), #9c7522); color: #fff; font-family: var(--t-display); font-weight: 700; font-size: 1.05rem; }
.t-att__name { font-family: var(--t-display); font-weight: 600; font-size: 1.25rem; color: var(--t-ink); margin-bottom: 6px; }
.t-att__desc { font-size: 1.02rem; line-height: 1.75; color: var(--t-text); }
.t-att__desc p { margin-bottom: 8px; }
.t-att__desc a { color: var(--t-teal); font-weight: 600; }

/* FAQ */
.t-faq__list { display: flex; flex-direction: column; gap: 12px; }
.t-faq__item { background: var(--t-surface); border: 1px solid var(--t-line); border-radius: var(--t-r-sm); overflow: hidden; box-shadow: var(--t-sh-1); transition: box-shadow .2s; }
.t-faq__item[open] { box-shadow: var(--t-sh-2); }
.t-faq__q { cursor: pointer; padding: 18px 50px 18px 20px; font-weight: 600; font-size: 1.02rem; color: var(--t-ink); position: relative; list-style: none; }
.t-faq__q::-webkit-details-marker { display: none; }
.t-faq__q::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--t-gold); font-weight: 300; }
.t-faq__item[open] .t-faq__q::after { content: "−"; }
.t-faq__a { padding: 0 20px 18px; font-size: .98rem; line-height: 1.75; color: var(--t-text); }
.t-faq__a p { margin-bottom: 8px; }

/* explore more */
.t-mini-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.t-mini { display: flex; gap: 14px; align-items: center; background: var(--t-surface); border: 1px solid var(--t-line); border-radius: var(--t-r-sm); padding: 12px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.t-mini:hover { border-color: transparent; box-shadow: var(--t-sh-2); transform: translateY(-2px); }
.t-mini__emoji { flex: 0 0 auto; width: 64px; height: 64px; border-radius: var(--t-r-sm); display: grid; place-items: center; font-size: 1.5rem; overflow: hidden; position: relative; }
.t-mini__img { width: 100%; height: 100%; object-fit: cover; }
.t-mini__name { display: block; font-family: var(--t-display); font-weight: 600; font-size: 1.02rem; color: var(--t-ink); }
.t-mini__tag { display: block; font-size: .84rem; color: var(--t-muted); line-height: 1.4; margin-top: 2px; }

/* related searches */
.t-related { margin: 44px 0 16px; padding-top: 28px; border-top: 1px solid var(--t-line); }
.t-related__title { font-family: var(--t-display); font-weight: 600; font-size: 1.3rem; color: var(--t-ink); margin-bottom: 16px; }
.t-related__links { display: flex; flex-wrap: wrap; gap: 9px; }
.t-related__links a {
  font-size: .85rem; font-weight: 500; color: var(--t-teal); background: var(--t-surface);
  border: 1px solid var(--t-line); border-radius: 999px; padding: 8px 15px;
  transition: background .18s, border-color .18s, color .18s;
}
.t-related__links a:hover { background: var(--t-teal); border-color: var(--t-teal); color: #fff; }

/* misc */
.empty { padding: 60px 0; font-size: 1.05rem; color: var(--t-muted); text-align: center; }
.empty a { color: var(--t-teal); font-weight: 700; }
.theme-toggle { background: none; border: 0; color: var(--text-soft); font: inherit; font-weight: 600; font-size: .76rem; cursor: pointer; padding: 0; }
.theme-toggle:hover { color: var(--brand); }
.t-noresults { padding: 28px; text-align: center; font-size: 1rem; color: var(--t-muted); grid-column: 1 / -1; background: var(--t-surface); border: 1px dashed var(--t-line); border-radius: var(--t-r); }

/* ============================== Travel logo (banner masthead) ============================== */
/* Tighten the masthead so the logo reads as a prominent banner, not a tiny mark. */
body.t-page .masthead { padding: 10px 0; }
body.t-page .masthead__inner { display: flex; justify-content: center; align-items: center; }
.brand--travel { display: inline-flex; align-items: center; }
.brand--travel .brand__img { height: 100px; width: auto; display: block; }
@media (min-width: 600px) { .brand--travel .brand__img { height: 132px; } }
@media (min-width: 960px) { .brand--travel .brand__img { height: 150px; } }
/* logo art has a white background, so on the dark footer sit it on a white card */
.brand--travel-foot { display: inline-block; background: #fff; border-radius: 12px; padding: 10px 14px; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.brand--travel-foot img { height: 84px; width: auto; display: block; }
/* dark-mode masthead is dark too — give the header logo a white card */
body.t-page[data-theme="dark"] .masthead { background: #fff; }

/* ============================== Photo carousel ============================== */
.t-gallery-wrap { margin: 6px 0 32px; }
.t-gallery-title { font-family: var(--t-display); font-weight: 600; font-size: 1.3rem; color: var(--t-ink); margin-bottom: 14px; }
.t-carousel {
  position: relative; border-radius: var(--t-r); overflow: hidden;
  box-shadow: var(--t-sh-2); background: var(--t-cream-2);
}
.t-carousel__track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); will-change: transform; }
.t-carousel__track.is-dragging { transition: none; }
.t-carousel__slide { min-width: 100%; aspect-ratio: 16 / 10; position: relative; }
.t-carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
.t-carousel__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 12px; color: #fff; font-size: .8rem; background: linear-gradient(180deg, transparent, rgba(8,14,20,.6)); pointer-events: none; }
.t-carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.85); color: var(--t-ink); font-size: 1.6rem; line-height: 1;
  display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0,0,0,.25); transition: background .18s, transform .18s;
}
.t-carousel__btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.t-carousel__prev { left: 12px; }
.t-carousel__next { right: 12px; }
.t-carousel__dots { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.t-carousel__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,.5); transition: background .2s, transform .2s; }
.t-carousel__dot.is-active { background: #fff; transform: scale(1.3); }
@media (min-width: 700px) { .t-carousel__slide { aspect-ratio: 16 / 9; } }
@media (max-width: 560px) { .t-carousel__btn { width: 38px; height: 38px; font-size: 1.3rem; } }

/* lightbox */
.t-lb { position: fixed; inset: 0; z-index: 9999; background: rgba(8,14,20,.94); display: none; align-items: center; justify-content: center; }
.t-lb.is-open { display: flex; }
.t-lb__img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,.6); }
.t-lb__btn {
  position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; display: grid; place-items: center;
  transition: background .18s; backdrop-filter: blur(4px);
}
.t-lb__btn:hover { background: rgba(255,255,255,.26); }
.t-lb__close { top: 20px; right: 20px; }
.t-lb__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.t-lb__next { right: 16px; top: 50%; transform: translateY(-50%); }
.t-lb__count { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: .85rem; letter-spacing: .04em; }
@media (max-width: 560px) { .t-lb__prev { left: 8px; } .t-lb__next { right: 8px; } .t-lb__btn { width: 44px; height: 44px; } }

/* ============================== Planning tools ============================== */
.t-tools__grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.t-tool { background: var(--t-surface); border: 1px solid var(--t-line); border-radius: var(--t-r); padding: 22px; box-shadow: var(--t-sh-1); }
.t-tool__title { font-family: var(--t-display); font-weight: 600; font-size: 1.2rem; color: var(--t-ink); margin-bottom: 16px; }
.t-tool__row { display: flex; gap: 12px; }
.t-tool__f { display: flex; flex-direction: column; gap: 5px; flex: 1; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--t-gold); margin-bottom: 12px; }
.t-tool__full { width: 100%; }
.t-tool__f input, .t-tool__f select {
  border: 1px solid var(--t-line); border-radius: var(--t-r-sm); padding: 11px 12px; font: inherit;
  font-size: 1rem; font-weight: 500; text-transform: none; letter-spacing: normal; color: var(--t-ink);
  background: var(--t-cream); -webkit-appearance: none; appearance: none; width: 100%;
}
.t-tool__f input:focus, .t-tool__f select:focus { outline: none; border-color: var(--t-gold); box-shadow: 0 0 0 3px var(--t-gold-soft); }
.t-tool__check { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--t-text); margin-bottom: 14px; cursor: pointer; }
.t-tool__check input { width: 17px; height: 17px; accent-color: var(--t-gold); }
.t-tool__out { background: linear-gradient(135deg, var(--t-teal-soft), var(--t-gold-soft)); border-radius: var(--t-r-sm); padding: 16px; text-align: center; color: var(--t-ink); }
.t-tool__big { display: block; font-family: var(--t-display); font-weight: 700; font-size: 1.5rem; color: var(--t-teal); }
.t-tool__sub2 { display: block; font-size: .82rem; color: var(--t-muted); margin-top: 4px; }
.t-tool__list { list-style: none; margin: 0 0 10px; padding: 0; text-align: left; }
.t-tool__list li { display: flex; justify-content: space-between; gap: 12px; font-size: .92rem; padding: 6px 0; border-bottom: 1px dashed var(--t-line); color: var(--t-text); }
.t-tool__total { text-align: left; font-size: 1.02rem; color: var(--t-ink); margin-top: 8px; }
.t-tool__total strong { color: var(--t-teal); font-family: var(--t-display); }
.t-tool__hint { text-align: left; font-size: .8rem; color: var(--t-muted); margin-top: 8px; }
.t-tools__note { font-size: .8rem; color: var(--t-faint); margin-top: 14px; }
@media (min-width: 760px) { .t-tools__grid { grid-template-columns: 1fr 1fr; } }

/* ============================== Newsletter / lead ============================== */
.t-news { margin: 44px 0; background: linear-gradient(135deg, var(--t-teal), #0a463f); border-radius: var(--t-r); padding: 32px; color: #fff; box-shadow: var(--t-sh-2); }
.t-news__inner { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center; }
.t-news__title { font-family: var(--t-display); font-weight: 600; font-size: 1.6rem; margin-bottom: 6px; }
.t-news__lede { font-size: .96rem; color: rgba(255,255,255,.85); line-height: 1.55; }
.t-news__form { display: flex; flex-wrap: wrap; gap: 10px; }
.t-news__form input { flex: 1 1 220px; min-width: 0; border: 0; border-radius: 999px; padding: 14px 18px; font: inherit; font-size: 1rem; color: var(--t-ink); }
.t-news__form .btn { border-radius: 999px !important; background: var(--t-gold) !important; border: 0 !important; color: #1c1404 !important; font-weight: 700 !important; padding: 13px 24px !important; white-space: nowrap; }
.t-news__status { flex-basis: 100%; font-size: .86rem; min-height: 1em; color: rgba(255,255,255,.9); }
.t-news__status.is-ok { color: #c9f7d9; }
.t-news__status.is-err { color: #ffd7d0; }
@media (min-width: 760px) { .t-news__inner { grid-template-columns: 1.1fr 1fr; gap: 28px; } }

/* ============================== Editorial trust ============================== */
.t-byline { font-size: .85rem; color: var(--t-muted); margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; }
.t-byline a { color: var(--t-teal); font-weight: 600; }
.t-byline__read { color: var(--t-gold); font-weight: 600; }
.t-edit { display: flex; gap: 16px; align-items: flex-start; background: var(--t-surface); border: 1px solid var(--t-line); border-left: 4px solid var(--t-gold); border-radius: var(--t-r); padding: 20px 22px; margin: 30px 0; box-shadow: var(--t-sh-1); }
.t-edit__logo { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 10px; object-fit: contain; background: #fff; padding: 4px; }
.t-edit__by { font-size: 1rem; color: var(--t-ink); margin-bottom: 4px; }
.t-edit__note { font-size: .9rem; line-height: 1.6; color: var(--t-text); margin-bottom: 6px; }
.t-edit__upd { color: var(--t-gold); font-weight: 600; }
.t-edit__note a, .t-edit__links a { color: var(--t-teal); font-weight: 600; }
.t-edit__links { font-size: .85rem; color: var(--t-muted); }

/* ============================== Currency converter ============================== */
.t-fx__card {
  background: var(--t-surface); border: 1px solid var(--t-line); border-radius: var(--t-r);
  padding: 26px; box-shadow: var(--t-sh-1); max-width: 720px;
}
.t-fx__row { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: end; }
.t-fx__field { display: flex; flex-direction: column; gap: 6px; }
.t-fx__field label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--t-gold); }
.t-fx__amount, .t-fx__select {
  border: 1px solid var(--t-line); border-radius: var(--t-r-sm); padding: 13px 14px;
  font: inherit; font-size: 1.02rem; color: var(--t-ink); background: var(--t-cream);
  width: 100%; -webkit-appearance: none; appearance: none;
}
.t-fx__amount:focus, .t-fx__select:focus { outline: none; border-color: var(--t-gold); box-shadow: 0 0 0 3px var(--t-gold-soft); }
.t-fx__select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b8902f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.t-fx__swap {
  justify-self: start; border: 1px solid var(--t-line); background: var(--t-teal-soft); color: var(--t-teal);
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; transition: background .18s, transform .25s;
}
.t-fx__swap:hover { background: var(--t-teal); color: #fff; transform: rotate(180deg); }
.t-fx__result {
  margin-top: 20px; padding: 20px; text-align: center;
  background: linear-gradient(135deg, var(--t-teal-soft), var(--t-gold-soft));
  border-radius: var(--t-r-sm); font-family: var(--t-display); font-size: clamp(1.2rem, 3.2vw, 1.7rem);
  color: var(--t-ink); font-weight: 600;
}
.t-fx__result strong { color: var(--t-teal); font-weight: 700; }
.t-fx__note { font-size: .8rem; color: var(--t-faint); margin-top: 12px; text-align: center; }
@media (min-width: 620px) {
  .t-fx__row { grid-template-columns: 1.1fr 1fr auto 1fr; }
  .t-fx__swap { justify-self: center; margin-bottom: 1px; }
}

/* ============================== Responsive ============================== */
@media (min-width: 600px) {
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .t-seasons { grid-template-columns: repeat(2, 1fr); }
  .t-booking__grid { grid-template-columns: repeat(2, 1fr); }
  .t-mini-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .t-grid { grid-template-columns: repeat(3, 1fr); }
  .t-booking__grid { grid-template-columns: repeat(5, 1fr); }
  .t-hero__lead { font-size: 1.15rem; }
}

/* ============================== Dark mode ============================== */
body.t-page[data-theme="dark"] {
  --t-ink: #f1ede6; --t-text: #c8cfd3; --t-muted: #93a0a6; --t-faint: #76838a;
  --t-line: #2b343b; --t-cream: #0f161b; --t-cream-2: #1a2229; --t-surface: #182026;
  --t-gold: #d9b25a; --t-gold-soft: #3a3220; --t-teal: #4fb3a5; --t-teal-soft: #14272a;
  background: var(--t-cream);
}
body[data-theme="dark"] .datebar, body[data-theme="dark"] .masthead,
body[data-theme="dark"] .nav, body[data-theme="dark"] .footer { background: #182026; }
body[data-theme="dark"] .brand, body[data-theme="dark"] .brand__name { color: var(--t-ink); }
body.t-page[data-theme="dark"] .t-leaflet { background: #1c2730; }
body.t-page[data-theme="dark"] .t-search { background: #182026; }
body.t-page[data-theme="dark"] .t-search__input { color: var(--t-ink); }
