* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #333;
  background: #fff;
  font-family: Oxygen, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

button {
  font: inherit;
}

.layout-content {
  overflow: hidden;
}

.container {
  width: 1170px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: #bf904a;
  background: #fff;
}

.header-spacer {
  height: 140px;
}

.header-inner {
  display: flex;
  min-height: 95px;
  align-items: center;
  justify-content: space-between;
  line-height: 95px;
}

.logo {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.logo img {
  width: auto;
  max-width: 300px;
  max-height: 95px;
}

.main-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 30px;
  min-height: 95px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #bf904a;
  opacity: .8;
  transition: opacity .2s ease;
}

.main-nav a:hover,
.main-nav a.is-current {
  opacity: 1;
}

.main-nav a.is-current::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 30px;
  height: 5px;
  background: #dd9a35;
  content: "";
  transform: translateX(-50%);
}

.page-content {
  margin-bottom: 42px;
}

.local-hero-carousel {
  position: relative;
  width: 100%;
  max-width: 1903px;
  margin: 0 auto 28px;
  overflow: hidden;
  aspect-ratio: 1903 / 550;
  background: #f6f1e8;
  box-shadow: 0 18px 45px rgba(36, 31, 22, .10);
}

.local-hero-track,
.local-hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
}

.local-hero-slide {
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .65s ease, transform .9s ease;
  pointer-events: none;
  background: #f6f1e8;
}

.local-hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.local-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.local-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .32);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.local-hero-arrow:hover {
  background: rgba(0, 0, 0, .54);
  transform: scale(1.06);
}

.local-hero-prev {
  left: 22px;
}

.local-hero-next {
  right: 22px;
}

.local-hero-arrow::before {
  position: absolute;
  top: 14px;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  content: "";
}

.local-hero-prev::before {
  left: 17px;
  transform: rotate(-45deg);
}

.local-hero-next::before {
  right: 17px;
  transform: rotate(135deg);
}

.local-hero-dots {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.local-hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  box-shadow: 0 1px 6px rgba(0, 0, 0, .25);
  cursor: pointer;
}

.local-hero-dot.is-active {
  background: #fff;
}

.tm-hero-intro {
  max-width: 900px;
  margin: 40px auto 60px;
  text-align: center;
}

.tm-hero-intro p {
  margin: 0;
}

.tm-hero-subtitle {
  display: block;
  margin-bottom: 15px;
  color: #f2c14e;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.tm-hero-desc {
  margin-bottom: 35px !important;
  padding: 0 20px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.tm-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tm-hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 41px;
  padding: 10px 22px;
  border: 1px solid #f2c14e;
  border-radius: 30px;
  color: #0b132b;
  background: #fffdf5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .03);
  font-size: 14px;
  font-weight: 700;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.tm-hero-tag:hover {
  border-color: #722f37;
  box-shadow: 0 6px 15px rgba(0, 0, 0, .06);
  transform: translateY(-3px);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.tour-grid-lower {
  margin-top: 42px;
}

.tour-column h2 {
  margin: 0 0 21px;
  color: #333;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.tour-panel {
  margin-bottom: 22px;
}

.tour-panel-head {
  height: 50px;
  border-radius: 5px 5px 0 0;
  background: #dd9a35;
}

.tour-panel-body {
  padding: 30px;
  background: #fff;
}

.tour-item {
  display: flex;
  width: 100%;
  min-height: 150px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 3px;
  color: #333;
  background: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, .09);
}

.tour-item:last-child {
  margin-bottom: 0;
}

.tour-item-image {
  display: block;
  flex: 0 0 35%;
  min-height: 150px;
  overflow: hidden;
  background: #eaeaea;
}

.tour-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s ease, transform .35s ease;
}

.tour-item:hover .tour-item-image img {
  opacity: .8;
  transform: scale(1.03);
}

.tour-item-title {
  display: block;
  flex: 1 1 auto;
  padding: 30px;
  color: #333;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  word-break: break-word;
  transition: color .2s ease;
}

.tour-item:hover .tour-item-title {
  color: rgba(51, 51, 51, .8);
}

.tm-banner-card {
  max-width: 1050px;
  margin: 52px auto 50px;
  text-align: center;
}

.tm-banner-title {
  margin: 0 0 25px;
  color: #0b132b;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
}

.tm-banner-wrapper {
  display: block;
  overflow: hidden;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.tm-banner-wrapper:hover {
  border-color: #f2c14e;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
  transform: translateY(-5px);
}

.tm-banner-wrapper img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}

.tm-banner-wrapper:hover img {
  transform: scale(1.02);
}

.section-separator {
  display: flex;
  align-items: center;
  margin: 0 0 38px;
}

.section-separator::before,
.section-separator::after {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background: #ebebeb;
  content: "";
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px;
  margin-bottom: 42px;
}

.service-card {
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-align: center;
  transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  border-color: #f2c14e;
  background: #fffdf5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .03);
  transform: translateY(-5px);
}

.service-icon {
  display: block;
  margin-bottom: 15px;
  color: #f2c14e;
  font-size: 36px;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(242, 193, 78, .3);
}

.service-card h3 {
  margin: 0 0 12px;
  color: #0b132b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.service-card p {
  max-width: 300px;
  margin: 0 auto;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  color: #666b72;
  background: #fff;
}

.footer-bottom {
  position: relative;
  min-height: 34px;
  padding: 10px 0;
}

.footer-bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #666b72;
  opacity: .3;
  content: "";
}

.footer-arrow-top {
  position: absolute;
  top: -25px;
  left: 50%;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: rgba(102, 107, 114, .45);
  background: #fff;
  font-size: 28px;
  line-height: 1;
  transform: translateX(-50%);
}

.footer-arrow-top::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(102, 107, 114, .3);
  border-radius: 100%;
  content: "";
}

.footer-arrow-top:hover {
  color: #5e5e5e;
}

.site-meta-bar {
  position: relative;
  width: 100%;
  margin: 36px auto 0;
  padding: 24px 16px 26px;
  clear: both;
  border-top: 1px solid rgba(11, 19, 43, .08);
  text-align: center;
  background: #fffdf9;
}

.site-meta-name {
  margin: 0 0 10px;
  color: #0b132b;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.site-meta-email {
  margin: 0 0 16px;
  color: #5b6770;
  font-size: 15px;
  line-height: 1.8;
}

.site-meta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px;
}

.site-meta-link {
  padding: 10px 18px;
  border: 1px solid rgba(11, 19, 43, .12);
  border-radius: 999px;
  color: #0b132b;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.site-meta-link:hover {
  border-color: #d4af37;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .07);
  transform: translateY(-2px);
}

.site-meta-copy {
  margin: 0;
  color: #7a858d;
  font-size: 13px;
  line-height: 1.7;
}

.about-modal,
.site-meta-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(11, 19, 43, .62);
}

.about-modal.is-open,
.site-meta-modal.is-open {
  display: flex;
}

.about-modal__dialog,
.site-meta-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: 85vh;
  overflow: auto;
  padding: 38px 34px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.site-meta-modal__dialog {
  width: min(680px, 100%);
  padding: 32px 28px 24px;
  border-radius: 22px;
}

.about-modal__close,
.site-meta-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #0b132b;
  background: rgba(11, 19, 43, .08);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.about-modal__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #d4af37;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.about-modal__title,
.site-meta-modal__title {
  margin: 0 0 14px;
  color: #0b132b;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
}

.about-modal__title {
  font-size: 36px;
}

.about-modal__lead,
.about-modal__text,
.site-meta-modal__body,
.site-meta-modal__body p {
  color: #4c5961;
  font-size: 15px;
  line-height: 1.9;
}

.about-modal__lead {
  margin: 0 0 14px;
  color: #24313a;
  font-weight: 700;
}

.about-modal__text,
.site-meta-modal__body p {
  margin: 0 0 12px;
}

.about-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.about-modal__card {
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 16px;
  background: rgba(255, 255, 255, .76);
}

.about-modal__card strong {
  display: block;
  margin-bottom: 8px;
  color: #0b132b;
  font-size: 15px;
}

.about-modal__card span {
  color: #5b6770;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1199px) {
  .container {
    width: 970px;
  }
}

@media (max-width: 991px) {
  .container {
    width: 750px;
  }

  .tour-item-title {
    font-size: 17px;
  }

  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .container {
    width: auto;
  }

  .site-header {
    position: static;
  }

  .header-spacer {
    display: none;
  }

  .header-inner {
    min-height: 95px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 12px;
    line-height: 1;
    text-align: center;
  }

  .logo img {
    max-height: 82px;
  }

  .main-nav {
    min-height: 0;
    justify-content: center;
    gap: 24px;
    line-height: 36px;
  }

  .main-nav a {
    min-height: 36px;
  }

  .local-hero-carousel {
    margin-bottom: 18px;
  }

  .local-hero-arrow {
    width: 34px;
    height: 34px;
    margin-top: -17px;
  }

  .local-hero-prev {
    left: 10px;
  }

  .local-hero-next {
    right: 10px;
  }

  .local-hero-arrow::before {
    top: 11px;
    width: 11px;
    height: 11px;
    border-width: 2px;
  }

  .local-hero-prev::before {
    left: 13px;
  }

  .local-hero-next::before {
    right: 13px;
  }

  .local-hero-dots {
    bottom: 9px;
  }

  .local-hero-dot {
    width: 8px;
    height: 8px;
  }

  .tm-hero-intro {
    margin: 34px auto 46px;
  }

  .tm-hero-subtitle {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .tm-hero-desc {
    font-size: 15px;
  }

  .tm-hero-tags {
    gap: 12px;
  }

  .tm-hero-tag {
    padding: 8px 16px;
    font-size: 13px;
  }

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

  .tour-grid-lower {
    margin-top: 30px;
  }

  .tour-panel-body {
    padding: 30px;
  }

  .tour-item {
    display: block;
  }

  .tour-item-image {
    width: 100%;
    min-height: 0;
  }

  .tour-item-image img {
    height: auto;
  }

  .tour-item-title {
    padding: 30px;
    font-size: 18px;
  }

  .tm-banner-title {
    font-size: 20px;
    line-height: 1.45;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .site-meta-bar {
    padding: 16px 12px 18px;
  }

  .site-meta-name {
    font-size: 20px;
  }

  .site-meta-links {
    gap: 8px;
  }

  .site-meta-link {
    width: calc(50% - 4px);
    padding: 10px 12px;
    font-size: 13px;
  }

  .about-modal__dialog {
    padding: 28px 20px 22px;
  }

  .about-modal__title {
    font-size: 28px;
  }

  .about-modal__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 392px) {
  .logo img {
    max-width: 220px;
  }
}
