:root {
  --ink: #10241f;
  --forest: #0f4c3a;
  --forest-deep: #07261e;
  --accent: #c45c26;
  --gold: #e8c36a;
  --gold-soft: #f0d9a0;
  --cream: #f4f0e6;
  --sand: #e6dcc8;
  --paper: #fffdf8;
  --muted: #5b6a64;
  --line: #e4ddd0;
  --shadow: 0 18px 40px rgba(15, 76, 58, 0.14);
  --radius: 22px;
  --max: 1180px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --display: "Syne", "Fraunces", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(94, 72, 64, 0.96);
  backdrop-filter: blur(12px);
  color: #fff;
  overflow: visible;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 84px; position: relative; }
.header-tools { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
.lang-switch { position: relative; }
.lang-switch select {
  appearance: none; -webkit-appearance: none;
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.35); border-radius: 8px;
  padding: 8px 26px 8px 10px; font: inherit; font-size: 13px; cursor: pointer;
  min-width: 72px;
}
.lang-switch select option { color: var(--ink); }
.lang-switch::after {
  content: "▾"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  pointer-events: none; font-size: 11px; color: #fff;
}
.screen-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: .04em; flex-shrink: 1; min-width: 0; }
.brand img { height: 52px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; }
.nav { display: flex; gap: 4px; align-items: stretch; margin: 0; padding: 0; align-self: stretch; }
.nav > li { list-style: none; position: relative; display: flex; align-items: center; }
.nav > li.has-mega { position: static; }
.nav > li > a {
  display: block; padding: 14px 10px; font-size: 15px; color: #fff;
  white-space: nowrap; letter-spacing: .04em; text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.nav > li:hover > a, .nav > li:focus-within > a, .nav > li.is-current > a, .nav > li.is-open > a {
  color: #fff; border-bottom-color: var(--gold);
}
.mega-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; margin-left: -6px; margin-right: 4px;
  border: 0; background: transparent; color: #fff; cursor: pointer; padding: 0;
}
.mega-toggle::after { content: "▾"; font-size: 11px; line-height: 1; }
.nav > li.is-open > .mega-toggle::after { content: "▴"; }
.drop, .mega { display: none; }
.nav > li.has-mega:hover > .mega,
.nav > li.has-mega:focus-within > .mega,
.nav > li.is-open > .mega { display: block; }
.mega {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: calc(100% - 6px); width: min(1080px, calc(100vw - 24px));
  padding-top: 18px; background: transparent; z-index: 50;
}
.mega-inner {
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  border-radius: 4px; padding: 18px 20px 20px; box-shadow: var(--shadow);
}
.mega-tabs { display: flex; gap: 10px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.mega-tabs button, .mega-tab-link {
  border: 0; cursor: pointer; font: inherit; padding: 8px 16px; border-radius: 0;
  background: var(--gold); color: var(--ink); font-weight: 600; font-size: 14px;
}
.mega-tabs button.is-active {
  background: var(--accent); color: #fff;
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mega-grid-links { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.mega-card {
  display: grid; grid-template-columns: 140px 1fr; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--line); overflow: hidden; min-height: 112px;
  color: inherit; position: relative;
}
.mega-card img, .brand img { pointer-events: none; user-select: none; -webkit-user-drag: none; }
.mega-hit {
  position: absolute; inset: 0; z-index: 2;
  color: transparent; font-size: 0; overflow: hidden;
}
.mega-card:hover { border-color: var(--gold); background: #fffdf6; }
.mega-card:hover .btn.mega-view { background: var(--forest); }
.mega-card-img img { width: 140px; height: 112px; object-fit: cover; }
.mega-card-body { padding: 10px 14px 12px 0; }
.mega-card-body h3 { margin: 0 0 4px; font-size: 20px; color: var(--forest); }
.mega-card-body p { margin: 0 0 8px; font-size: 13px; color: var(--muted); }
.btn.mega-view {
  background: var(--accent); color: #fff; padding: 7px 14px; font-size: 13px; border-radius: 0;
}
.btn.mega-all { margin-top: 16px; }
.wa-svg { width: 22px; height: 22px; display: block; }
.wa-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: #25d366; color: #fff;
  flex-shrink: 0;
}
.wa-icon:hover, .wa-float:hover { background: #1ebe57; color: #fff; }
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff; border-radius: 50%;
  box-shadow: var(--shadow);
}
.wa-float .wa-svg { width: 30px; height: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; font-weight: 600;
  border: 0; border-radius: 0; padding: 12px 20px; cursor: pointer;
}
.btn:hover { background: var(--forest); color: #fff; }
.btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.btn.ghost:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn.dark { background: var(--forest); color: #fff; }
.hero {
  position: relative;
  min-height: 92vh; display: grid; align-items: end;
  overflow: hidden;
  background: #2c211d;
  color: #fff;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.2s ease;
}
.hero-slide.is-active {
  opacity: 1;
  animation: sejovaKenburns 9s ease-out forwards;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,14,10,.22) 10%, rgba(20,14,10,.78) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 48px 0 88px; max-width: 780px; }
.hero-lead { font-size: 18px; max-width: 56ch; color: #f3eadc; }
.hero-caption {
  margin: 10px 0 0; font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); font-weight: 700;
  min-height: 1.4em;
}
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.hero-proof span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  padding: 7px 12px; border-radius: 999px; font-size: 13px;
}
@keyframes sejovaKenburns {
  from { transform: scale(1.14); }
  to { transform: scale(1.02); }
}
.eyebrow {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(234,176,46,.16);
  flex-shrink: 0;
}
.hero .eyebrow,
.page-hero .eyebrow,
.quote-band .eyebrow,
.dest-card .eyebrow {
  color: var(--gold);
  text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 0 16px rgba(0,0,0,.28);
}
.hero .eyebrow::before,
.page-hero .eyebrow::before,
.quote-band .eyebrow::before {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(234,176,46,.55);
}
.dest-card .eyebrow::before { display: none; }
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; line-height: 1.12; }
.hero h1 { font-size: clamp(42px, 7vw, 84px); margin: 12px 0 18px; }
.hero p { font-size: 18px; max-width: 56ch; color: #f3eadc; }
.hero p.hero-caption {
  margin: 10px 0 0; font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); font-weight: 700;
  min-height: 1.4em; max-width: none;
}
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.section { padding: 80px 0; }
.section.alt { background: var(--paper); }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(32px, 4vw, 52px); margin: 8px 0 12px; }
.grid { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(94, 72, 64, 0.22); }
.card-media { position: relative; overflow: hidden; display: block; }
.card img { width: 100%; height: 210px; object-fit: cover; transition: transform .7s ease; }
.card:hover img { transform: scale(1.08); }
.card-go {
  position: absolute; left: 12px; bottom: 12px; z-index: 1;
  background: var(--gold); color: var(--ink); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 6px 10px;
  opacity: 0; transform: translateY(8px); transition: .3s ease;
}
.card:hover .card-go { opacity: 1; transform: none; }
.card-body { padding: 20px 22px 24px; }
.card h3 { margin: 0 0 8px; font-size: 28px; }
.card-wa { margin: 12px 0 0; display: flex; flex-wrap: wrap; gap: 8px 16px; }
.card-wa a {
  color: #128c7e;
  font-size: 14px;
  font-weight: 600;
}
.card-wa a:hover { color: var(--forest); }
.meta { color: var(--muted); font-size: 14px; }
.chip {
  display: inline-block; background: var(--sand); color: var(--forest);
  border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
.quote-band {
  background: var(--forest); color: #fff; padding: 72px 0;
}
.quote-band .form {
  display: grid; gap: 12px; grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,.06); padding: 24px; border-radius: 18px;
}
.section .form, .mega .form {
  display: grid; gap: 12px; grid-template-columns: 1fr 1fr;
  background: #fff; padding: 24px; border-radius: 18px; border: 1px solid var(--line);
}
.split-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.prose img { border-radius: 14px; margin: 12px 0; }
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 0; font: inherit; background: #fff;
}
.section .form input, .section .form select, .section .form textarea,
.mega .form input, .mega .form select, .mega .form textarea {
  background: var(--cream); border: 1px solid var(--line);
}
.form textarea, .form .full, .form .btn { grid-column: 1 / -1; }
.quote-wa { margin: 8px 0 0; grid-column: 1 / -1; }
.quote-wa a { color: var(--accent); font-size: 14px; font-weight: 600; }
.quote-wa a:hover { color: var(--forest); }
.dest-card { position: relative; min-height: 320px; border-radius: var(--radius); overflow: hidden; color: #fff; }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card span, .dest-card strong, .dest-card em {
  position: relative; z-index: 1; display: block; padding: 0 22px;
}
.dest-card strong { font-family: var(--serif); font-size: 34px; margin-top: 140px; }
.dest-card em { font-style: normal; color: #f3eadc; font-size: 14px; margin: 6px 0 18px; max-width: 28ch; }
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8,16,12,.78));
}
.site-footer { background: var(--forest-deep); color: #efe8d8; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.site-footer a { color: #efe8d8; }
.site-footer a:hover { color: var(--gold); }
.site-footer h3 { color: var(--gold-soft); font-size: 18px; margin-top: 0; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 0 0 8px; }
.footer-contact { display: grid; gap: 6px; }
.footer-news {
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-news h2 { font-size: 28px; margin: 0 0 16px; color: #fff; }
.footer-news-form {
  display: grid; gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
}
.footer-news-form input {
  width: 100%; padding: 12px 14px; border: 0; border-radius: 8px; font: inherit;
}
.footer-bottom-bar {
  margin-top: 36px; background: #2c211d; padding: 22px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 8px; }
.footer-brand p { margin: 0; font-size: 13px; color: #c9c1b2; }
.footer-partners { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.footer-partners a, .footer-partners img { display: inline-flex; }
.footer-partners img {
  height: 40px; width: auto; object-fit: contain;
  background: #fff; padding: 6px 8px; border-radius: 6px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: #fff;
}
.footer-social svg { width: 18px; height: 18px; }
#google_translate_element { display: none !important; }
.goog-te-banner-frame, .goog-te-balloon-frame, #goog-gt-tt, .goog-te-gadget {
  display: none !important; visibility: hidden !important; height: 0 !important;
}
iframe.skiptranslate { display: none !important; }
body { top: 0 !important; }
font, .goog-text-highlight { background: none !important; box-shadow: none !important; }
.site-header font { font-size: inherit !important; }
.mega-panel { display: none; }
.mega-panel.is-active { display: block; }
.mega-quote-intro { margin: 0 0 14px; color: var(--muted); }
.form-compact { background: #fff; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.notice.ok { background: #e4f6ea; color: #14532d; }
.page-hero {
  background: var(--forest) center/cover no-repeat; color: #fff; padding: 90px 0 56px;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); margin: 8px 0; }
.page-wa { margin: 28px 0 0; }
.page-wa .btn { display: inline-flex; }
.prose h2 { font-size: 36px; }
.day {
  background: var(--paper); border-radius: var(--radius); padding: 22px 24px; margin: 16px 0;
  border-left: 4px solid var(--gold);
}
.tour-layout { display: grid; grid-template-columns: 1.6fr .8fr; gap: 32px; }
.side {
  background: var(--forest); color: #fff; border-radius: var(--radius); padding: 24px;
  height: fit-content; position: sticky; top: 96px;
}
.side h2 { margin-top: 0; color: var(--gold-soft); }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-bar a { background: #fff; border-radius: 999px; padding: 8px 14px; font-size: 14px; }
.filter-bar a.is-active { background: var(--forest); color: #fff; }
.notice { background: #fff3cd; color: #5c4813; padding: 10px 14px; border-radius: 10px; font-size: 13px; }
.initiatives { background: var(--paper); }
.initiative-grid { align-items: stretch; }
.initiative-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px 26px;
  color: var(--ink); box-shadow: var(--shadow);
}
a.initiative-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.initiative-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--forest);
}
.initiative-icon svg { width: 32px; height: 32px; }
.initiative-card h3 { margin: 8px 0 0; font-size: 28px; color: var(--forest); }
.initiative-card p { margin: 0; color: var(--muted); }
.initiative-link { margin-top: auto; font-weight: 700; color: var(--accent); letter-spacing: .04em; }
.tour-map-section { padding-top: 48px; }
.tour-map-tools { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.tour-map-tools button {
  border: 1px solid var(--line); background: #fff; color: var(--forest);
  padding: 10px 16px; font-weight: 600; cursor: pointer; font-family: inherit;
}
.tour-map-tools button.is-active {
  background: var(--forest); color: #fff; border-color: var(--forest);
}
.tour-map-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.tour-schematic { background: #fff; min-height: 420px; }
.tour-schematic svg { width: 100%; height: auto; display: block; }
.tour-map { height: 520px; background: #d7c4b4; position: relative; }
.tour-map.is-hidden, .tour-schematic.is-hidden { display: none; }
.tour-map-status {
  display: none; position: absolute; inset: 0; z-index: 800;
  align-items: center; justify-content: center;
  background: rgba(247,234,226,.72); font-weight: 700; color: var(--forest);
}
.tour-map.is-loading .tour-map-status { display: flex; }
.tour-timeline {
  padding: 22px 24px 8px; border-top: 1px solid var(--line); background: #fff;
}
.tour-timeline h3 { margin: 0 0 16px; font-size: 24px; color: var(--forest); }
.tour-timeline ol {
  list-style: none; margin: 0; padding: 4px 0 12px 8px;
  border-left: 2px dashed #e3b4b4;
}
.tour-timeline li {
  position: relative; padding: 0 0 18px 22px; color: var(--ink); line-height: 1.4;
}
.tour-timeline .dot {
  position: absolute; left: -15px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #d0242a; border: 2px solid #fff; box-shadow: 0 0 0 1px #d0242a;
}
.tour-timeline strong { margin-right: 6px; color: var(--forest); }
.tour-timeline .when { color: var(--muted); }
.tour-timeline .how {
  display: inline-block; margin-left: 8px; font-size: 12px; font-style: normal;
  letter-spacing: .04em; text-transform: uppercase; color: var(--accent);
}
.tour-timeline li.is-fly .how { color: #2f5d8a; }
.tour-map-cta { margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.sejova-pin-wrap, .sejova-jeep-wrap { background: none !important; border: 0 !important; }
.sejova-pin {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--forest); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,.35);
  font-size: 12px;
}
.sejova-pin.is-start { background: var(--forest); color: #fff; }
.sejova-pin.is-end { background: var(--accent); color: #fff; }
.sejova-mover {
  transform-origin: 50% 50%;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,.45));
}
.sejova-mover svg { display: block; width: 100%; height: 100%; }
.sejova-cruiser { width: 56px; height: 32px; }
.sejova-plane { width: 48px; height: 48px; }
.affiliates {
  background: linear-gradient(180deg, #fff 0%, #f7eae2 100%);
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
}
.affiliates-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.affiliates h2 {
  margin: 10px 0 28px;
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--forest);
  max-width: 18ch;
}
.affiliate-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 14px 16px;
  width: 100%;
}
.aff {
  flex: 0 1 160px;
  min-height: 96px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: #fff;
  border: 1px solid rgba(94,72,64,.12);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(94,72,64,.08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.aff:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 18px 36px rgba(94,72,64,.14);
  color: inherit;
}
.aff-singita span {
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: .32em;
  font-size: 15px;
  text-transform: uppercase;
  color: #1c1c1c;
}
.aff-elewana span {
  font-family: "Montserrat", "Kanit", sans-serif;
  font-weight: 600;
  letter-spacing: .26em;
  font-size: 13px;
  text-transform: uppercase;
  color: #0e6b73;
}
.aff-tato span {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  letter-spacing: .34em;
  font-size: 22px;
  text-transform: uppercase;
  color: #c45c26;
}
.aff-melia span {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: .02em;
  text-transform: none;
  color: #9b1b30;
}
.aff-karibu { line-height: 1; }
.aff-karibu .k1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .06em;
  color: #2f5d3a;
}
.aff-karibu .k2 {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #6b8f71;
  margin-top: 4px;
}
.aff-legendary span {
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: .18em;
  font-size: 14px;
  text-transform: uppercase;
  color: #8a6a1a;
}
.guides-band {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 52px 0 56px;
}
.guides-head {
  max-width: 720px;
  margin-bottom: 32px;
}
.guides-head h2 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--forest);
}
.guides-head h2 a { color: inherit; }
.guides-head h2 a:hover { color: var(--accent); }
.guides-head p { margin: 0; color: var(--muted); max-width: 62ch; }
.guides-grid,
.guides-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 40px;
}
.guides-page-grid {
  margin-top: 12px;
  padding-top: 8px;
}
.guides-col h3 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  font-size: 18px;
  color: var(--forest);
  border-bottom: 2px solid var(--gold);
}
.guides-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.guides-col li { margin: 0 0 10px; }
.guides-col a {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}
.guides-col a:hover { color: var(--accent); }
.partner-bar {
  margin-top: 40px;
  background: #f4ebe3;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 48px;
}
.partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .96;
}
.partner:hover { opacity: 1; color: inherit; }
.partner img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: none;
  background: transparent;
  padding: 0;
}
.partner-ttb img { height: 72px; max-width: 120px; }
.partner-tato img { height: 76px; max-width: 118px; }
.partner-ag img { height: 46px; max-width: 190px; }
.partner-ta img { height: 36px; max-width: 200px; }
.partner-sg img { height: 36px; max-width: 190px; }
.trust-bar {
  position: relative; z-index: 3;
  margin-top: -42px; padding-bottom: 12px;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.trust-item {
  background: #fff; border-radius: 16px; padding: 18px 18px 16px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.trust-item strong { display: block; font-family: var(--serif); font-size: 20px; color: var(--forest); margin-bottom: 4px; }
.trust-item span { color: var(--muted); font-size: 14px; }
.moments {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 14px;
}
.moment {
  position: relative; overflow: hidden; border-radius: var(--radius); color: #fff;
  box-shadow: var(--shadow); min-height: 220px;
}
.moment.is-wide { grid-row: span 2; min-height: 454px; }
.moment img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s ease;
}
.moment:hover img { transform: scale(1.08); }
.moment::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(20,14,10,.82));
}
.moment-copy {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 18px 20px 20px;
}
.moment-copy strong { display: block; font-family: var(--serif); font-size: 28px; }
.moment-copy em { display: block; font-style: normal; color: #f3eadc; font-size: 14px; margin-top: 4px; }
.why-band { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.why-grid h2 { font-size: clamp(32px, 4vw, 48px); margin: 8px 0 14px; }
.why-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.why-list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 14px; }
.why-list li {
  background: #fff; border-radius: 16px; padding: 16px 18px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.why-list strong { display: block; color: var(--forest); margin-bottom: 4px; }
.quote-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.page-hero .hero-actions { margin-top: 22px; }
.ditin-outline {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: grid; gap: 10px;
}
.ditin-outline li {
  display: grid; grid-template-columns: 110px 1fr; gap: 8px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 16px; align-items: baseline;
}
.ditin-outline strong { color: var(--accent); }
.ditin-outline em { grid-column: 2; color: var(--muted); font-style: normal; font-size: 14px; }
.ditin-page { padding: 28px 0 72px; }
.ditin-tools {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  flex-wrap: wrap; margin-bottom: 18px;
}
.ditin-tools-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.ditin {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.ditin-cover {
  color: #fff; min-height: 280px; padding: 48px 40px 36px;
  background-size: cover; background-position: center; display: flex;
  flex-direction: column; justify-content: flex-end;
}
.ditin-cover h1 { margin: 8px 0 12px; font-size: clamp(32px, 4vw, 56px); }
.ditin-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; color: #f3eadc; }
.ditin-body { padding: 36px 40px 48px; }
.ditin-intro p { font-size: 18px; max-width: 70ch; }
.ditin-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ditin-route ol, .ditin-split ul { margin: 0; padding-left: 18px; }
.ditin-route li { margin: 0 0 8px; }
.ditin-route em { color: var(--accent); font-style: normal; margin-left: 8px; font-size: 13px; }
.ditin-route.tour-map-section { padding: 8px 0 12px; }
.ditin-route.tour-map-section > p { color: var(--muted); max-width: 62ch; }
.ditin-route .tour-map-wrap { box-shadow: none; }
.ditin-route .tour-schematic { min-height: 320px; }
.ditin-route .tour-map { height: 420px; }
.ditin-days { margin-top: 36px; display: grid; gap: 22px; }
.ditin-day {
  display: grid; grid-template-columns: 120px 1fr 220px; gap: 18px;
  border-top: 1px solid var(--line); padding-top: 22px; align-items: start;
}
.ditin-day-num {
  font-family: var(--serif); font-weight: 700; color: var(--accent);
  letter-spacing: .04em;
}
.ditin-day h3 { margin: 0 0 8px; font-size: 24px; color: var(--forest); }
.ditin-day p { margin: 0 0 10px; }
.ditin-elev { font-size: 13px; color: var(--muted); }
.ditin-stay { background: var(--cream); padding: 8px 12px; border-radius: 8px; }
.ditin-day-photo img { width: 100%; height: 150px; object-fit: cover; border-radius: 12px; }
.ditin-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line);
}
.ditin-split h2 { margin-top: 0; }
.ditin-dests { margin-top: 24px; color: var(--muted); }
.ditin-cta { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.ditin-cta .btn { margin-right: 8px; margin-bottom: 8px; }
body.is-digital-itinerary .affiliates,
body.is-digital-itinerary .guides-band { display: none; }
body.is-digital-itinerary .nav,
body.is-digital-itinerary .menu-toggle { display: none; }
@media print {
  .no-print, .site-header, .site-footer, .wa-float, .affiliates, .guides-band,
  #google_translate_element, .partner-bar, .footer-news { display: none !important; }
  body { background: #fff; }
  .ditin { box-shadow: none; border: 0; }
  .ditin-day { break-inside: avoid; grid-template-columns: 110px 1fr; }
  .ditin-day-photo { display: none; }
  .tour-map-tools, .tour-map { display: none !important; }
  .tour-schematic.is-hidden { display: block !important; }
  .ditin-route .tour-map-wrap { break-inside: avoid; }
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide.is-active, .card img, .moment img, .dest-card img, .reveal {
    animation: none !important; transition: none !important; transform: none !important; opacity: 1 !important;
  }
}
.menu-toggle {
  display: none; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.3); border-radius: 8px;
  width: 42px; height: 42px; padding: 0; cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 18px; height: 2px; background: #fff; position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
@media (max-width: 1200px) {
  .nav > li > a { padding: 14px 6px; font-size: 13px; }
  .affiliate-row { gap: 12px; }
}
@media (max-width: 1100px) {
  .nav > li > a { padding: 12px 5px; font-size: 12px; }
}
@media (max-width: 1080px) {
  .cards-3, .cards-4, .tour-layout, .footer-grid, .form, .quote-band .form, .section .form, .mega .form, .quote-band .wrap, .mega-grid, .split-2, .footer-news-form, .footer-bottom, .trust-grid, .moments, .why-grid, .quote-split, .guides-grid, .guides-page-grid, .ditin-day, .ditin-split, .ditin-outline li { grid-template-columns: 1fr !important; }
  .header-inner { flex-wrap: nowrap; min-height: 64px; gap: 8px; }
  .brand { min-width: 0; }
  .brand img { height: 40px; }
  .header-tools { gap: 6px; }
  .lang-switch select { font-size: 12px; padding: 6px 22px 6px 8px; min-width: 64px; }
  .wa-icon { width: 36px; height: 36px; }
  .wa-icon .wa-svg { width: 18px; height: 18px; }
  .footer-social, .footer-brand { justify-content: flex-start; }
  .footer-bottom { flex-wrap: wrap; }
  .partner-logos { gap: 18px 22px; }
  .partner img { height: 40px; }
  .partner-ttb img, .partner-tato img { height: 58px; }
  .nav {
    display: none; position: absolute; left: 50%; top: 100%;
    width: 100vw; transform: translateX(-50%);
    flex-direction: column; align-items: stretch;
    padding: 8px 0 16px; background: #3f2f2a;
    max-height: calc(100vh - 64px); overflow: auto; z-index: 45;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav > li { display: flex; flex-wrap: wrap; align-items: center; }
  .nav > li > a { flex: 1; text-align: left; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.15); text-transform: none; font-size: 16px; }
  .nav > li.has-mega:hover > .mega,
  .nav > li.has-mega:focus-within > .mega { display: none; }
  .nav > li.is-open > .mega { display: block; }
  .mega-toggle { margin: 0 8px 0 0; width: 36px; height: 36px; }
  .drop, .mega {
    position: static; transform: none; width: 100%; display: none;
    margin: 0 0 12px; left: auto; top: auto; padding-top: 0;
  }
  .mega-inner { margin: 0 12px; }
  .mega-card { grid-template-columns: 96px 1fr; }
  .mega-card-img img { width: 96px; height: 96px; }
  .menu-toggle { display: inline-flex; }
  .aff { flex: 1 1 140px; min-width: 42%; }
  .moment.is-wide { grid-row: auto; min-height: 260px; }
  .trust-bar { margin-top: -24px; }
}
@media (max-width: 520px) {
  .wrap { width: min(var(--max), calc(100% - 20px)); }
  .hero h1 { font-size: clamp(32px, 11vw, 48px); }
}
