:root {
  --mt-bg: #f5f2ec;
  --mt-surface: #ffffff;
  --mt-soft: #eaf4f8;
  --mt-ink: #2f241b;
  --mt-ink-soft: #5f4b39;
  --mt-brand: #047c9e;
  --mt-brand-strong: #5a3f2b;
  --mt-accent: rgba(248, 152, 32, 0.95);
  --mt-button-bg: rgba(248, 152, 32, 0.95);
  --mt-button-bg-hover: rgba(236, 140, 20, 0.98);
  --mt-line: #dfd4c5;
  --mt-shadow: 0 14px 34px rgba(66, 48, 34, 0.14);
  --mt-radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 8% 5%, rgba(4, 124, 158, 0.1) 0, transparent 33%),
    radial-gradient(circle at 94% 12%, rgba(248, 152, 32, 0.12) 0, transparent 34%),
    var(--mt-bg);
  color: var(--mt-ink);
  font-family: "Outfit", "Segoe UI", sans-serif;
}

.mt-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(90, 63, 43, 0.16);
  backdrop-filter: blur(10px);
}

body.admin-bar .mt-site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .mt-site-header {
    top: 46px;
  }
}

.mt-site-header__inner {
  width: min(1280px, 94vw);
  margin-inline: auto;
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.mt-site-brand {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.mt-site-brand--has-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.mt-site-brand__logo {
  display: block;
  width: auto;
  height: 96px;
  max-width: min(360px, 42vw);
  object-fit: contain;
}

.mt-site-brand__mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  isolation: isolate;
  background: radial-gradient(circle at 30% 30%, #2eabd0, var(--mt-brand-strong));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.mt-site-brand__mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.mt-site-brand__text {
  display: grid;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.mt-site-brand__title {
  display: block;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 2.35vw, 2.65rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--mt-brand-strong);
  line-height: 0.86;
}

.mt-site-brand__sub {
  display: block;
  color: #85767b;
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.mt-global-menu-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--mt-brand-strong);
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mt-global-menu-toggle:hover,
.mt-global-menu-toggle:focus-visible {
  background: #edf6fa;
  color: var(--mt-brand);
}

.mt-menu-toggle-icon {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--mt-brand-strong);
  border-radius: 99px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mt-menu-toggle-icon::before,
.mt-menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--mt-brand-strong);
  border-radius: 99px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.mt-menu-toggle-icon::before {
  top: -7px;
}

.mt-menu-toggle-icon::after {
  top: 7px;
}

.mt-site-header.is-open .mt-menu-toggle-icon {
  background: transparent;
}

.mt-site-header.is-open .mt-menu-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mt-site-header.is-open .mt-menu-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mt-global-nav {
  justify-self: end;
}

.mt-global-nav .mt-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.45vw, 28px);
}

.mt-global-nav .mt-menu > li {
  position: relative;
}

.mt-global-nav a {
  display: inline-flex;
  align-items: center;
  position: relative;
  border-radius: 0;
  color: #000;
  text-decoration: none;
  padding: 10px 3px;
  font-weight: 500;
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  line-height: 1.2;
  transition: color 0.2s ease;
}

.mt-global-nav .mt-menu > li > a::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -13px;
  height: 3px;
  border-radius: 999px;
  background: var(--mt-brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.mt-global-nav .mt-menu > li > a:hover,
.mt-global-nav .mt-menu > li > a.is-active,
.mt-global-nav .mt-menu > li.current-menu-item > a,
.mt-global-nav .mt-menu > li.current-menu-ancestor > a {
  color: var(--mt-brand-strong);
}

.mt-global-nav .mt-menu > li > a:hover::after,
.mt-global-nav .mt-menu > li > a:focus-visible::after {
  transform: scaleX(1);
}

.mt-global-nav .mt-menu > li.mt-menu-item-instagram > a {
  width: 40px;
  height: 40px;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--mt-line);
  padding: 0;
  color: var(--mt-brand-strong);
  background: #fff;
}

.mt-global-nav .mt-menu > li.mt-menu-item-instagram > a::after,
.mt-global-nav .mt-menu > li.mt-menu-item-instagram > a::before {
  display: none;
}

.mt-global-nav .mt-menu > li.mt-menu-item-instagram > a:hover,
.mt-global-nav .mt-menu > li.mt-menu-item-instagram > a:focus-visible {
  background: var(--mt-soft);
  border-color: #c8baaa;
}

.mt-menu-instagram-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.mt-global-nav .menu-item-has-children > a::after {
  width: 6px;
  height: 6px;
  content: "";
  position: static;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 9px;
  border-radius: 0;
  background: transparent;
}

.mt-global-nav .menu-item-has-children > a::before {
  display: none;
}

.mt-global-nav .menu-item-has-children > a:hover::after,
.mt-global-nav .menu-item-has-children.current-menu-item > a::after,
.mt-global-nav .menu-item-has-children.current-menu-ancestor > a::after {
  color: var(--mt-brand-strong);
  transform: rotate(45deg) translateY(-1px);
}

.mt-global-nav .menu-item-has-children > a.is-active::after {
  color: var(--mt-brand-strong);
  transform: rotate(45deg) translateY(-1px);
}

.mt-global-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 9px;
  position: absolute;
  left: -9px;
  top: calc(100% + 16px);
  min-width: 232px;
  display: block;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  border: 1px solid #eadbe0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(57, 18, 33, 0.14);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mt-global-nav .sub-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 28px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid #eadbe0;
  border-left: 1px solid #eadbe0;
  transform: rotate(45deg);
}

.mt-global-nav .sub-menu li {
  margin: 0;
}

.mt-global-nav .sub-menu a {
  width: 100%;
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mt-ink-soft);
}

.mt-global-nav .sub-menu a::after,
.mt-global-nav .sub-menu a::before {
  display: none;
}

.mt-global-nav .sub-menu a:hover,
.mt-global-nav .sub-menu .current-menu-item > a,
.mt-global-nav .sub-menu .current-menu-ancestor > a {
  color: var(--mt-brand-strong);
  background: #f7e6ed;
}

.mt-global-nav .menu-item-has-children:hover > .sub-menu,
.mt-global-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 960px) {
  body {
    padding-top: 78px;
  }

  body.mt-menu-open {
    overflow: hidden;
  }

  .mt-site-header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  body.admin-bar .mt-site-header {
    top: 46px;
  }

  body.admin-bar {
    padding-top: 124px;
  }

  .mt-site-header__inner {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr auto;
    min-height: 78px;
    position: relative;
    padding: 12px 14px;
    gap: 10px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #eadbe0;
    box-shadow: 0 8px 24px rgba(57, 18, 33, 0.12);
    z-index: 2;
  }

  .mt-site-brand {
    max-width: calc(100% - 6px);
    gap: 10px;
  }

  .mt-site-brand--has-logo .mt-site-brand__logo {
    height: clamp(34px, 10vw, 50px);
    max-width: min(240px, 68vw);
  }

  .mt-site-brand__mark {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }

  .mt-site-brand__mark::after {
    inset: 4px;
  }

  .mt-site-brand__text {
    gap: 1px;
  }

  .mt-site-brand__title {
    font-size: clamp(1.5rem, 7.3vw, 2rem);
    line-height: 0.96;
  }

  .mt-site-brand__sub {
    font-size: 0.65rem;
    line-height: 1.05;
    letter-spacing: 0.045em;
  }

  .mt-global-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #f8e8ee);
    border: 1px solid #e8d3db;
    box-shadow: 0 8px 18px rgba(88, 21, 41, 0.14);
  }

  .mt-global-menu-toggle:hover,
  .mt-global-menu-toggle:focus-visible {
    background: linear-gradient(180deg, #fdf8fa, #f3dbe4);
  }

  .mt-global-nav {
    position: fixed;
    top: 78px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    bottom: 0;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.99) !important;
    backdrop-filter: none !important;
    opacity: 0;
    transform: translateY(8px);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 9999;
    overflow-y: auto;
  }

  body.admin-bar .mt-global-nav {
    top: 124px !important;
    bottom: auto;
    height: calc(100dvh - 124px);
    width: 100vw !important;
  }

  .mt-global-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mt-global-nav .mt-menu {
    display: grid;
    gap: 0;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 8px 0 26px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: auto;
  }

  .mt-global-nav .mt-menu > li {
    width: 100% !important;
    border-bottom: 1px solid #ebdfd2 !important;
  }

  .mt-global-nav .mt-menu > li:last-child {
    border-bottom: 0;
  }

  .mt-global-nav a {
    width: 100% !important;
    justify-content: flex-start;
    border-radius: 0 !important;
    padding: 16px 18px !important;
    font-size: 1.03rem;
    font-weight: 600;
    color: #000;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .mt-global-nav .mt-menu > li.mt-menu-item-instagram {
    border-bottom: 0 !important;
    padding: 12px 18px 0;
  }

  .mt-global-nav .mt-menu > li.mt-menu-item-instagram > a {
    width: fit-content !important;
    min-width: 46px;
    height: 46px;
    padding: 0 !important;
    justify-content: center !important;
    border-radius: 999px !important;
    border: 1px solid var(--mt-line) !important;
    background: var(--mt-soft) !important;
  }

  .mt-global-nav .mt-menu > li > a::after {
    display: none;
  }

  .mt-global-nav .menu-item-has-children > a::after {
    display: inline-block;
    margin-left: auto;
    margin-right: 4px;
    transform: rotate(45deg) translateY(-1px);
  }

  .mt-global-nav .mt-menu > li > a:hover,
  .mt-global-nav .mt-menu > li > a:focus-visible,
  .mt-global-nav .mt-menu > li > a.is-active,
  .mt-global-nav .mt-menu > li.current-menu-item > a,
  .mt-global-nav .mt-menu > li.current-menu-ancestor > a {
    color: var(--mt-brand-strong);
    background: var(--mt-soft);
  }

  .mt-global-nav .sub-menu {
    position: static;
    display: grid;
    gap: 6px;
    margin: 0 0 12px;
    border: 0;
    box-shadow: none;
    padding: 2px 0 0 18px;
    min-width: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    border-left: 2px solid rgba(90, 63, 43, 0.16);
    border-radius: 0;
  }

  .mt-global-nav .sub-menu::before {
    display: none;
  }

  .mt-global-nav .sub-menu a {
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 500;
    background: transparent;
    border: 0;
  }
}

.elementor-section.mt-section .elementor-container {
  max-width: 1200px;
}

.mt-header-section {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(90, 63, 43, 0.18);
}

.mt-logo-heading .elementor-heading-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--mt-brand-strong);
}

.mt-top-links .elementor-widget-container {
  text-align: center;
}

.mt-top-links a {
  display: inline-block;
  color: var(--mt-ink);
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mt-top-links a:hover {
  color: var(--mt-brand);
}

.mt-header-cta .elementor-button {
  border-radius: 999px;
  background: var(--mt-button-bg);
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(248, 152, 32, 0.34);
}

.mt-hero-section {
  padding-top: clamp(40px, 8vw, 90px);
  padding-bottom: clamp(34px, 7vw, 70px);
}

.mt-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--mt-brand-strong);
  background: #eaf5f9;
  border-radius: 999px;
  padding: 7px 12px;
}

.mt-hero-title .elementor-heading-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: 0.01em;
}

.mt-hero-text {
  color: var(--mt-ink-soft);
}

.mt-hero-buttons .elementor-button {
  border-radius: 999px;
  font-weight: 600;
  padding: 12px 22px;
}

.mt-hero-buttons .elementor-button-link.elementor-button {
  background: var(--mt-button-bg);
  color: #fff;
}

.mt-hero-image img {
  border-radius: var(--mt-radius);
  box-shadow: var(--mt-shadow);
  min-height: 420px;
  object-fit: cover;
}

.mt-feature-card .elementor-icon-box-wrapper {
  background: var(--mt-surface);
  border: 1px solid var(--mt-line);
  border-radius: var(--mt-radius);
  padding: 22px;
  box-shadow: 0 12px 24px rgba(57, 18, 33, 0.08);
}

.mt-feature-card .elementor-icon {
  background: #f7e8ed;
  border-radius: 10px;
  padding: 10px;
}

.mt-video-section {
  background: #047c9e;
  color: #fff7fa;
}

.mt-video-section .elementor-heading-title,
.mt-video-section .elementor-widget-text-editor {
  color: inherit;
}

.mt-video-shell iframe {
  border-radius: var(--mt-radius);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.mt-tours-section .elementor-heading-title {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.mt-tours-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(14px, 2.2vw, 24px);
}

.mt-tour-card {
  border: 1px solid var(--mt-line);
  border-radius: var(--mt-radius);
  background: var(--mt-surface);
  overflow: hidden;
  align-self: start;
  box-shadow: 0 14px 30px rgba(57, 18, 33, 0.11);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mt-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(57, 18, 33, 0.18);
}

.mt-tour-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  min-height: 0;
  max-height: 360px;
  background: linear-gradient(145deg, #f1e2e7, #ffeec8);
}

.mt-tour-media img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block;
}

/* Tours page only: remove tiny white seams around featured images. */
.page-id-7 .mt-tour-media {
  background: transparent;
}

.page-id-7 .mt-tour-media img {
  inset: -2px;
  width: calc(100% + 4px) !important;
  height: calc(100% + 4px) !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.mt-tour-body {
  padding: 20px;
}

.mt-tour-title {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.05vw, 1.78rem);
  line-height: 1.16;
}

.mt-tour-title a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mt-tour-title a:hover {
  color: var(--mt-brand);
  border-color: rgba(161, 25, 58, 0.42);
}

.mt-tour-meta {
  margin: 0 0 12px;
  color: var(--mt-ink-soft);
  font-size: 0.9rem;
}

/* Hide publish date meta across tour and post views. */
.mt-tour-meta,
.posted-on,
.entry-date,
.post-date,
.wp-block-post-date {
  display: none !important;
}

.mt-tour-content-wrap {
  position: relative;
}

.mt-tour-card.is-collapsed .mt-tour-content-wrap {
  max-height: 240px;
  overflow: hidden;
}

.mt-tour-card.is-collapsed .mt-tour-content-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 78%);
}

.mt-tour-content > *:first-child {
  margin-top: 0;
}

.mt-tour-content > *:last-child {
  margin-bottom: 0;
}

.mt-tour-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.15vw, 1.2rem);
  line-height: 1.24;
  letter-spacing: 0.01em;
}

.mt-tour-content h3 {
  margin: 0 0 12px;
  font-size: clamp(1.12rem, 1.35vw, 1.28rem);
  line-height: 1.22;
}

.mt-tour-toggle,
button.mt-tour-toggle {
  margin-top: 12px;
  border: none !important;
  border-radius: 999px;
  background: var(--mt-button-bg) !important;
  color: #fff !important;
  padding: 9px 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(248, 152, 32, 0.28);
  text-decoration: none !important;
}

.mt-tour-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}

.mt-tour-actions .mt-tour-toggle {
  margin-top: 0;
}

.mt-tour-gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #047c9e;
  color: #fff !important;
  border: 1px solid #047c9e;
  padding: 9px 14px;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(4, 124, 158, 0.24);
  transition: transform 0.18s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.mt-tour-gallery-link:hover,
.mt-tour-gallery-link:focus-visible,
.mt-tour-gallery-link:focus,
.mt-tour-gallery-link:active {
  background: #036783;
  border-color: #036783;
  color: #fff !important;
  transform: translateY(-1px);
}

.mt-tour-card.is-collapsed .mt-tour-gallery-link {
  display: none;
}

.mt-tour-toggle:hover,
.mt-tour-toggle:focus-visible,
.mt-tour-toggle:focus,
.mt-tour-toggle:active,
button.mt-tour-toggle:hover,
button.mt-tour-toggle:focus-visible,
button.mt-tour-toggle:focus,
button.mt-tour-toggle:active {
  background: var(--mt-button-bg-hover) !important;
  color: #fff !important;
  border: none !important;
}

.single-post #site-header {
  display: none !important;
}

.page-id-7 #site-header {
  display: none !important;
}

.single-post .site-main {
  width: min(1100px, 94vw);
  margin: clamp(36px, 4vw, 48px) auto 42px;
}

.single-post .site-main > .page-content {
  margin: 0;
  padding: 0;
}

.single-post .comments-area {
  display: none !important;
}

.mt-single-tour {
  display: grid;
  gap: 24px;
  width: min(1200px, 94vw);
  margin-inline: auto;
}

.mt-single-tour__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  background: #fff;
  border: 1px solid var(--mt-line);
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(57, 18, 33, 0.11);
  overflow: hidden;
}

.mt-single-tour__media {
  aspect-ratio: 5 / 4;
  min-height: 0;
  max-height: 460px;
  background: linear-gradient(145deg, #f2e4e9, #fbefcd);
  overflow: hidden;
}

.mt-single-tour__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mt-single-tour__head {
  padding: clamp(20px, 3vw, 30px) clamp(18px, 3vw, 30px);
  display: grid;
  align-content: center;
  gap: 12px;
}

.mt-single-tour__back {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e8d2da;
  background: #f9edf2;
  color: var(--mt-brand-strong);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.mt-single-tour__head h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.02;
  color: var(--mt-ink);
}

.mt-single-tour__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mt-single-tour__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  background: #047c9e;
  letter-spacing: 0.01em;
}

.mt-single-tour__pill--soft {
  color: var(--mt-brand-strong);
  background: #f7e8ee;
  border: 1px solid #ead6de;
}

.mt-single-tour__gallery {
  background:
    radial-gradient(circle at 6% 0%, rgba(4, 124, 158, 0.07), transparent 26%),
    radial-gradient(circle at 96% 0%, rgba(248, 152, 32, 0.11), transparent 30%),
    #fff;
  border: 1px solid #ddd3c8;
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(44, 33, 23, 0.1);
  padding: clamp(16px, 2.8vw, 28px);
}

.mt-single-tour__gallery-head {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 10px 16px;
}

.mt-single-tour__gallery-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.1;
}

.mt-tour-gallery-head-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.mt-tour-gallery-head-meta p {
  margin: 0;
  color: var(--mt-ink-soft);
  font-size: 0.93rem;
  line-height: 1.45;
}

.mt-tour-gallery-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef6f9;
  border: 1px solid #cfe0e8;
  color: #0d5870;
  font-size: 0.84rem;
  font-weight: 700;
  min-width: 72px;
}

.mt-tour-gallery-shell {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 12px;
}

.mt-tour-gallery-shell::before,
.mt-tour-gallery-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 8px;
  width: 38px;
  pointer-events: none;
  z-index: 1;
}

.mt-tour-gallery-shell::before {
  left: 50px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.mt-tour-gallery-shell::after {
  right: 50px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.mt-tour-gallery-nav {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #d5c8b8;
  background: #f6efe7;
  color: #2f2317;
  font-size: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(35, 28, 22, 0.14);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 2;
  outline: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.mt-tour-gallery-nav:hover,
.mt-tour-gallery-nav:focus,
.mt-tour-gallery-nav:focus-visible,
.mt-tour-gallery-nav:active {
  transform: translateY(-2px);
  background: #047c9e !important;
  border-color: #047c9e !important;
  color: #fff !important;
  box-shadow: 0 14px 20px rgba(35, 28, 22, 0.2) !important;
  outline: none !important;
}

.mt-tour-gallery-nav:disabled {
  opacity: 0.26;
  cursor: not-allowed;
  transform: none;
  box-shadow: none !important;
  background: #f6efe7 !important;
  border-color: #d5c8b8 !important;
  color: #2f2317 !important;
}

.mt-tour-gallery-nav[hidden] {
  visibility: hidden;
}

.mt-tour-gallery-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding-bottom: 0;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mt-tour-gallery-viewport::-webkit-scrollbar {
  display: none;
  width: 0 !important;
  height: 0 !important;
}

.mt-tour-gallery-viewport::-webkit-scrollbar-track,
.mt-tour-gallery-viewport::-webkit-scrollbar-thumb {
  background: transparent;
}

.mt-tour-gallery-viewport:active {
  cursor: grabbing;
}

.mt-tour-gallery-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: max-content;
}

.mt-tour-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #ddcfc1;
  background: linear-gradient(145deg, #e8f2f7, #fff2da);
  box-shadow: 0 12px 22px rgba(35, 28, 22, 0.14);
  scroll-snap-align: start;
  flex: 0 0 clamp(156px, 18vw, 228px);
  aspect-ratio: 3 / 4;
  transform: translateZ(0);
}

.mt-tour-gallery__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, rgba(18, 22, 24, 0), rgba(18, 22, 24, 0.26));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mt-tour-gallery__item:hover::after,
.mt-tour-gallery__item:focus-visible::after {
  opacity: 1;
}

.mt-tour-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.36s ease;
}

.mt-tour-gallery__item:hover img,
.mt-tour-gallery__item:focus-visible img {
  transform: scale(1.06);
}

.mt-tour-gallery__item.is-portrait {
  flex-basis: clamp(156px, 18vw, 228px);
  aspect-ratio: 3 / 4;
}

.mt-tour-gallery__item.is-landscape {
  flex-basis: clamp(244px, 30vw, 356px);
  aspect-ratio: 16 / 11;
}

.mt-tour-gallery__item.is-square {
  flex-basis: clamp(186px, 22vw, 254px);
  aspect-ratio: 1 / 1;
}

.mt-tour-gallery-progress {
  margin-top: 12px;
  height: 7px;
  border-radius: 999px;
  background: #efe7dc;
  overflow: hidden;
}

.mt-tour-gallery-progress__bar {
  display: block;
  width: 12%;
  height: 100%;
  border-radius: inherit;
  background: #047c9e;
  transition: width 0.22s ease;
}

body.mt-lightbox-open {
  overflow: hidden;
}

.mt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  isolation: isolate;
  background: rgba(6, 10, 12, 0.86);
  backdrop-filter: blur(6px);
  display: none;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "chrome chrome chrome"
    "prev stage next"
    ". thumbs .";
  align-items: center;
  gap: clamp(10px, 1.8vw, 18px);
  padding: clamp(12px, 2vw, 22px);
}

.mt-lightbox.is-open {
  display: grid;
}

.mt-lightbox__chrome {
  grid-area: chrome;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  position: relative;
  z-index: 30;
}

.mt-lightbox__counter {
  position: relative;
  z-index: 31;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.23);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.mt-lightbox__stage {
  grid-area: stage;
  margin: 0;
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
  align-self: stretch;
  align-content: center;
  height: calc(100vh - 300px);
  min-height: 220px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  z-index: 1;
}

.mt-lightbox__image {
  display: block;
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(1240px, 90vw);
  max-height: min(68vh, calc(100vh - 300px));
  border-radius: 14px;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.45);
  object-fit: contain;
  cursor: zoom-in;
  transition: max-width 0.25s ease, max-height 0.25s ease;
}

.mt-lightbox__caption {
  display: none;
}

.mt-lightbox__zoom {
  position: relative;
  z-index: 33;
  margin-left: auto;
  min-width: 62px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.mt-lightbox__close {
  position: relative;
  margin-left: 8px;
  z-index: 34;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
}

.mt-lightbox__nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 33;
}

.mt-tour-gallery-nav span,
.mt-lightbox__nav span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  font-size: 1.75rem;
  transform: translateY(0);
}

.mt-lightbox__nav--prev {
  grid-area: prev;
}

.mt-lightbox__nav--next {
  grid-area: next;
}

.mt-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.mt-lightbox__thumbs {
  grid-area: thumbs;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: min(92vw, 1040px);
  padding: 4px 4px 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
  position: relative;
  z-index: 32;
}

.mt-lightbox__thumb {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  width: 74px;
  height: 74px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 auto;
  opacity: 0.76;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.mt-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mt-lightbox__thumb:hover,
.mt-lightbox__thumb:focus-visible,
.mt-lightbox__thumb.is-active {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.58);
}

.mt-lightbox.is-zoomed .mt-lightbox__stage {
  height: calc(100vh - 210px);
  overflow: auto;
  cursor: grab;
  scrollbar-width: none;
}

.mt-lightbox.is-zoomed .mt-lightbox__stage::-webkit-scrollbar {
  display: none;
}

.mt-lightbox.is-zoomed .mt-lightbox__image {
  max-width: min(1680px, 130vw);
  max-height: min(90vh, calc(100vh - 210px));
  cursor: zoom-out;
}

.mt-lightbox.is-zoomed .mt-lightbox__zoom {
  border-color: rgba(4, 124, 158, 0.8) !important;
  background: rgba(4, 124, 158, 0.92) !important;
  color: #fff !important;
}

.mt-lightbox__zoom:active {
  transform: scale(0.98);
}

.mt-lightbox__close,
.mt-lightbox__zoom,
.mt-lightbox__nav,
.mt-lightbox__thumb {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.mt-lightbox__close:hover,
.mt-lightbox__close:focus,
.mt-lightbox__close:focus-visible,
.mt-lightbox__close:active,
.mt-lightbox__zoom:hover,
.mt-lightbox__zoom:focus,
.mt-lightbox__zoom:focus-visible,
.mt-lightbox__zoom:active,
.mt-lightbox__nav:hover,
.mt-lightbox__nav:focus,
.mt-lightbox__nav:focus-visible,
.mt-lightbox__nav:active {
  border-color: rgba(4, 124, 158, 0.8) !important;
  background: rgba(4, 124, 158, 0.92) !important;
  color: #fff !important;
}

.mt-lightbox__close:focus-visible,
.mt-lightbox__zoom:focus-visible,
.mt-lightbox__nav:focus-visible,
.mt-lightbox__thumb:focus-visible {
  box-shadow: 0 0 0 2px rgba(4, 124, 158, 0.9), 0 0 0 5px rgba(4, 124, 158, 0.28);
}

.mt-single-tour__content {
  background: #fff;
  border: 1px solid var(--mt-line);
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(57, 18, 33, 0.08);
  padding: clamp(20px, 3.5vw, 34px);
}

.mt-single-tour__content > *:first-child {
  margin-top: 0;
}

.mt-single-tour__content > *:last-child {
  margin-bottom: 0;
}

.mt-single-tour__content h2,
.mt-single-tour__content h3,
.mt-single-tour__content h4 {
  color: var(--mt-ink);
  margin-top: 1.2em;
}

.mt-tour-plan {
  display: grid;
  gap: 14px;
}

.mt-tour-plan > h2 {
  margin: 0 0 6px;
  font-family: inherit;
  font-size: clamp(0.9rem, 0.95vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mt-ink-soft);
  line-height: 1.25;
}

.mt-single-tour__content .mt-tour-plan > h2 {
  font-size: clamp(0.96rem, 1.05vw, 1.06rem);
}

.mt-tour-card .mt-tour-plan > h2 {
  font-size: clamp(0.86rem, 0.9vw, 0.94rem);
}

.mt-tour-day {
  border: 1px solid var(--mt-line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #fff9fc);
  padding: 14px 16px;
}

.mt-tour-day h3 {
  margin: 0 0 10px;
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  line-height: 1.25;
}

.mt-tour-day ul {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 8px;
}

.mt-tour-day li {
  margin: 0;
}

.mt-tour-day p {
  margin: 10px 0 0;
  color: var(--mt-ink-soft);
}

.mt-single-tour__content ul {
  padding-left: 1.2em;
}

.mt-single-tour__content li {
  margin-bottom: 0.4em;
}

.mt-cta-section {
  background: linear-gradient(145deg, #5a3f2b, #047c9e);
  color: #fff7fa;
}

.mt-cta-section .elementor-heading-title,
.mt-cta-section .elementor-widget-text-editor {
  color: inherit;
}

.mt-cta-section .elementor-button {
  border-radius: 999px;
  background: var(--mt-button-bg);
  color: #fff;
  font-weight: 700;
  border: none;
}

.mt-header-cta .elementor-button:hover,
.mt-header-cta .elementor-button:focus-visible,
.mt-hero-buttons .elementor-button-link.elementor-button:hover,
.mt-hero-buttons .elementor-button-link.elementor-button:focus-visible,
.mt-cta-section .elementor-button:hover,
.mt-cta-section .elementor-button:focus-visible {
  background: var(--mt-button-bg-hover);
  color: #fff;
}

.mt-footer-note {
  opacity: 0.82;
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .mt-top-links .elementor-widget-container {
    text-align: left;
  }

  .mt-top-links a {
    margin: 0 8px 8px 0;
  }

  .mt-tours-grid {
    grid-template-columns: 1fr;
  }

  .mt-single-tour__hero {
    grid-template-columns: 1fr;
  }

  .mt-single-tour__media,
  .mt-single-tour__media img {
    aspect-ratio: 16 / 11;
    min-height: 0;
    max-height: 360px;
  }

  .mt-tour-gallery-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .mt-tour-gallery-shell::before {
    left: 44px;
  }

  .mt-tour-gallery-shell::after {
    right: 44px;
  }

  .mt-tour-gallery__item.is-portrait {
    flex-basis: clamp(146px, 34vw, 190px);
  }

  .mt-tour-gallery__item.is-landscape {
    flex-basis: clamp(220px, 52vw, 310px);
  }

  .mt-tour-gallery__item.is-square {
    flex-basis: clamp(168px, 38vw, 220px);
  }
}

@media (max-width: 767px) {
  .mt-header-section {
    position: relative;
  }

  .mt-hero-image img {
    min-height: 280px;
  }

  .mt-top-links a {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
}

.mt-shell,
.mt-local-features,
.mt-local-video,
.mt-local-tours-intro,
.mt-local-cta,
.mt-local-footer,
.mt-footer-note,
.mt-tours-page {
  width: 100%;
  max-width: 1200px;
  padding-inline: clamp(14px, 2.2vw, 24px);
  margin-inline: auto;
  box-sizing: border-box;
}

.mt-local-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 86px;
}

.mt-local-header {
  display: none !important;
}

.mt-local-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--mt-brand-strong);
}

.mt-local-menu {
  justify-self: end;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  border: 1px solid var(--mt-line);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(57, 18, 33, 0.1);
}

.mt-local-menu a {
  color: var(--mt-ink-soft);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  line-height: 1.2;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mt-local-menu a:hover,
.mt-local-menu a.is-active {
  color: var(--mt-brand-strong);
  background: #edf6fa;
}

.mt-local-header .mt-local-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mt-brand), var(--mt-brand-strong));
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
}

.mt-local-header .mt-local-cta {
  display: none !important;
}

.mt-local-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(22px, 3.2vw, 42px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  margin-top: clamp(12px, 2vw, 20px);
  border: 1px solid #ddd2c4;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 12%, rgba(4, 124, 158, 0.11) 0, transparent 34%),
    radial-gradient(circle at 92% 90%, rgba(248, 152, 32, 0.17) 0, transparent 30%),
    linear-gradient(120deg, #f8fcfd 0%, #fffaf2 100%);
  box-shadow: 0 18px 34px rgba(66, 48, 34, 0.1);
  position: relative;
  overflow: clip;
}

.mt-local-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 124, 158, 0.14), transparent 68%);
  pointer-events: none;
}

.mt-local-hero-text {
  position: relative;
  z-index: 1;
}

.mt-local-hero-text h1 {
  margin: 12px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 3.9vw, 3rem);
  max-width: 16ch;
}

.mt-local-hero-text p {
  color: var(--mt-ink-soft);
  margin: 0;
  max-width: 54ch;
  font-size: clamp(0.96rem, 1.2vw, 1.06rem);
  line-height: 1.58;
}

.mt-local-hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #d9cfc0;
  background: linear-gradient(145deg, #eaf5fa, #fff4dc);
  box-shadow:
    0 22px 34px rgba(66, 48, 34, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.mt-local-hero-media::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto auto;
  width: 86px;
  height: 86px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(1px);
  z-index: 1;
  pointer-events: none;
}

.mt-local-hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(45, 35, 24, 0), rgba(45, 35, 24, 0.22));
  pointer-events: none;
}

.mt-local-hero-media img {
  width: 100%;
  display: block;
  min-height: clamp(340px, 40vw, 540px);
  object-fit: cover;
  border-radius: 26px;
  transform: scale(1.01);
}

.mt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 26px;
}

.mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  border: 0;
  background: var(--mt-button-bg);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(248, 152, 32, 0.3);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.mt-btn:hover {
  transform: translateY(-2px);
  background: var(--mt-button-bg-hover);
}

.mt-btn-primary {
  background: var(--mt-button-bg);
  color: #fff;
  box-shadow: 0 12px 22px rgba(248, 152, 32, 0.32);
}

.mt-btn-secondary {
  color: #fff;
  background: var(--mt-button-bg);
}

.mt-btn-accent {
  background: var(--mt-button-bg);
  color: #fff;
}

.mt-local-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.mt-feature-item {
  background: var(--mt-surface);
  border: 1px solid var(--mt-line);
  border-radius: var(--mt-radius);
  padding: 20px;
  box-shadow: 0 10px 22px rgba(57, 18, 33, 0.09);
}

.mt-feature-item h3 {
  margin: 0 0 7px;
  font-size: clamp(1.12rem, 1.35vw, 1.28rem);
  line-height: 1.25;
}

.mt-feature-item p {
  margin: 0;
  color: var(--mt-ink-soft);
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  line-height: 1.55;
}

.mt-local-video {
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--mt-radius);
  background: #047c9e;
  color: #fff7fa;
}

.mt-local-video h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.9vw, 2.3rem);
  line-height: 1.12;
}

.mt-local-video p {
  margin: 0 0 16px;
  color: rgba(255, 247, 250, 0.87);
  font-size: clamp(0.96rem, 1.05vw, 1.03rem);
  line-height: 1.6;
}

.mt-video-shell {
  border-radius: var(--mt-radius);
  overflow: hidden;
}

.mt-video-shell iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.mt-local-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mt-local-stats div {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 12px;
}

.mt-local-stats strong {
  display: block;
  font-size: clamp(1.15rem, 1.4vw, 1.3rem);
  line-height: 1;
  margin-bottom: 3px;
}

.mt-local-stats span {
  font-size: 0.9rem;
  line-height: 1.35;
}

.mt-local-tours-intro {
  margin-top: clamp(36px, 6vw, 62px);
  margin-bottom: 18px;
}

.mt-local-tours-intro h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  line-height: 1.14;
}

.mt-local-tours-intro p {
  margin: 0;
  color: var(--mt-ink-soft);
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  line-height: 1.58;
}

.mt-local-cta {
  margin-top: clamp(36px, 5vw, 56px);
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--mt-radius);
  background: linear-gradient(145deg, #5a3f2b, #047c9e);
  color: #fff7fa;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.mt-local-cta h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  line-height: 1.12;
}

.mt-local-cta p {
  margin: 0;
  color: rgba(255, 247, 250, 0.84);
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.58;
}

.mt-local-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  color: var(--mt-ink-soft);
}

.mt-local-footer h3 {
  margin: 0 0 6px;
  color: var(--mt-ink);
  font-size: clamp(1.06rem, 1.2vw, 1.2rem);
  line-height: 1.3;
}

.mt-local-footer p {
  margin: 0;
  font-size: clamp(0.92rem, 1.02vw, 0.98rem);
  line-height: 1.56;
}

.mt-footer-note {
  margin-top: 16px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.mt-tours-page {
  padding: 30px 0;
}

.mt-tours-page h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0 0 8px;
}

.mt-tours-page > p {
  margin: 0 0 20px;
  color: var(--mt-ink-soft);
}

@media (max-width: 1024px) {
  .mt-local-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  .mt-local-menu {
    justify-self: start;
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%;
  }

  .mt-local-menu a {
    flex: 0 0 auto;
  }

  .mt-local-hero,
  .mt-local-features,
  .mt-local-stats,
  .mt-local-cta,
  .mt-local-footer {
    grid-template-columns: 1fr;
  }

  .mt-local-hero {
    border-radius: 24px;
    padding: 18px;
    gap: 20px;
  }

  .mt-local-hero-text h1 {
    max-width: none;
  }

  .mt-local-hero-media img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .mt-local-cta .mt-btn-accent,
  .mt-hero-actions .mt-btn {
    width: 100%;
  }

  .mt-tour-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mt-tour-gallery-link,
  .mt-tour-actions .mt-tour-toggle {
    width: 100%;
    text-align: center;
  }

  .mt-tour-media {
    position: relative;
    height: auto;
    min-height: 0;
    max-height: none;
    background: #dfe8ee;
  }

  .mt-tour-media img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-height: none;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .mt-local-hero {
    border-radius: 20px;
    padding: 14px;
    margin-top: 8px;
  }

  .mt-local-hero-text h1 {
    font-size: clamp(1.5rem, 7.6vw, 2.15rem);
    line-height: 1.05;
  }

  .mt-local-hero-text p {
    font-size: 1rem;
  }

  .mt-local-hero-media,
  .mt-local-hero-media img {
    border-radius: 18px;
  }

  .mt-local-hero-media img {
    min-height: 240px;
  }

  .mt-tour-gallery-head-meta {
    width: 100%;
    justify-content: space-between;
  }

  .mt-tour-gallery-head-meta p {
    font-size: 0.88rem;
  }

  .mt-tour-gallery-shell {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .mt-tour-gallery-shell::before {
    left: 36px;
    width: 18px;
  }

  .mt-tour-gallery-shell::after {
    right: 36px;
    width: 18px;
  }

  .mt-tour-gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 0;
  }

  .mt-tour-gallery__item.is-portrait {
    flex-basis: clamp(124px, 44vw, 170px);
  }

  .mt-tour-gallery__item.is-landscape {
    flex-basis: clamp(194px, 66vw, 270px);
  }

  .mt-tour-gallery__item.is-square {
    flex-basis: clamp(146px, 50vw, 194px);
  }

  .mt-lightbox {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
      "chrome"
      "stage"
      "thumbs";
    gap: 10px;
    justify-items: center;
    align-content: center;
  }

  .mt-lightbox__chrome {
    width: 100%;
    z-index: 32;
  }

  .mt-lightbox__close {
    width: 42px;
    height: 42px;
    font-size: 1.45rem;
  }

  .mt-lightbox__zoom {
    min-width: 58px;
    height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .mt-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    z-index: 35;
  }

  .mt-lightbox__nav--prev {
    left: 8px;
  }

  .mt-lightbox__nav--next {
    right: 8px;
  }

  .mt-lightbox__image {
    max-width: 94vw;
    max-height: min(66vh, calc(100vh - 260px));
  }

  .mt-lightbox__stage {
    height: calc(100vh - 260px);
    min-height: 180px;
  }

  .mt-lightbox.is-zoomed .mt-lightbox__stage {
    height: calc(100vh - 210px);
  }

  .mt-lightbox.is-zoomed .mt-lightbox__image {
    max-width: min(1460px, 140vw);
    max-height: min(88vh, calc(100vh - 210px));
  }

  .mt-lightbox__thumb {
    width: 60px;
    height: 60px;
  }

  .mt-lightbox__thumbs {
    max-width: 96vw;
  }

}

/* Universal footer shown across all pages. */
#site-footer,
.site-footer {
  display: none !important;
}

.mt-site-footer {
  margin-top: clamp(36px, 6vw, 64px);
  border-top: 1px solid #d8ccbc;
  background:
    radial-gradient(circle at 8% 20%, rgba(4, 124, 158, 0.08), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(248, 152, 32, 0.11), transparent 36%),
    #f8f4ee;
  color: var(--mt-ink);
}

.mt-site-footer__inner {
  width: min(1200px, 94vw);
  margin-inline: auto;
  padding: clamp(24px, 4vw, 36px) 0 clamp(16px, 3vw, 24px);
}

.mt-site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.mt-site-footer__brand h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  color: var(--mt-brand-strong);
}

.mt-site-footer__brand p {
  margin: 0;
  color: var(--mt-ink-soft);
  line-height: 1.58;
  max-width: 42ch;
}

.mt-site-footer__contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  align-items: start;
}

.mt-site-footer__contact-col {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mt-site-footer__contact-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mt-site-footer__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--mt-brand);
  flex: 0 0 30px;
}

.mt-site-footer__icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.mt-site-footer__contact-col a {
  color: var(--mt-ink);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.mt-site-footer__contact-col a:hover,
.mt-site-footer__contact-col a:focus-visible {
  color: var(--mt-brand);
}

.mt-site-footer__bottom {
  margin-top: clamp(16px, 2.6vw, 24px);
  padding-top: 12px;
  border-top: 1px solid #ddd1c2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  color: var(--mt-ink-soft);
  font-size: 0.92rem;
}

.mt-site-footer__bottom p {
  margin: 0;
}

.mt-site-footer__bottom a {
  color: var(--mt-brand-strong);
  text-decoration: none;
  font-weight: 600;
}

.mt-site-footer__bottom a:hover,
.mt-site-footer__bottom a:focus-visible {
  color: var(--mt-brand);
}

@media (max-width: 900px) {
  .mt-site-footer__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .mt-site-footer__contacts {
    grid-template-columns: 1fr;
  }

  .mt-site-footer__bottom {
    justify-content: flex-start;
    gap: 6px 14px;
  }
}
