:root {
  --bg-primary: #f6efe7;
  --bg-secondary: #fbf7f2;
  --surface: #fff9f4;
  --surface-elevated: #fffcf8;
  --surface-warm: #fffdfc;
  --surface-hover: #fff3e8;

  --text-primary: #3e3128;
  --text-secondary: #7a685a;
  --text-muted: #a39284;

  --amber: #d89b4a;
  --amber-hover: #c68633;
  --cinnamon: #a96f4c;
  --cinnamon-dark: #8a5638;

  --border-soft: #eadfd3;
  --border-warm: #ddcdbd;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-card: 18px;
  --radius-pill: 999px;

  --shadow-soft: 0 4px 14px rgba(92, 64, 51, 0.06);
  --shadow-hover: 0 8px 24px rgba(92, 64, 51, 0.12);
  --shadow-nav: 0 -8px 24px rgba(92, 64, 51, 0.1);

  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

body {
  padding-top: 4.4rem !important;
  min-width: 320px;
  margin: 0;
  color: var(--text-primary);
  background: var(--bg-secondary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--cinnamon-dark);
}

a:hover {
  color: var(--amber-hover);
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-container {
  max-width: 1440px;
}

.navbar .site-container {
  position: relative;
  width: 100%;
}

.page-shell {
  padding-bottom: 84px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid rgba(234, 223, 211, 0.9);
  background: rgba(255, 249, 244, 0.88);
  backdrop-filter: blur(14px);
}

.dropdown-menu {
  margin: 0;
  border-color: var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.default-header {
  width: 100%;
  border-bottom: 1px solid rgba(234, 223, 211, 0.9);
  background: rgba(255, 249, 244, 0.9);
  box-shadow: 0 4px 18px rgba(92, 64, 51, 0.08);
  backdrop-filter: blur(14px);
}

.default-header .navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  color: var(--text-secondary) !important;
  font-weight: 500;
  transition:
    color 200ms var(--ease-soft),
    background-color 200ms var(--ease-soft),
    box-shadow 200ms var(--ease-soft),
    transform 200ms var(--ease-soft);
}

.default-header .navbar-nav .nav-link i,
.nav-pick-button i {
  flex: 0 0 auto;
  color: var(--cinnamon);
  font-size: 14px;
}

.default-header .navbar-nav .nav-link:hover,
.default-header .navbar-nav .nav-link:focus,
a:hover,
a:active {
  color: var(--amber-hover) !important;
}

.default-header .navbar-nav .nav-link:hover,
.default-header .navbar-nav .nav-link:focus {
  background: rgba(216, 155, 74, 0.13);
  box-shadow: inset 0 0 0 1px rgba(216, 155, 74, 0.18);
}

.navbar-brand img {
  max-width: 168px;
  height: auto;
  border-radius: 12px;
}

.office_phone {
  color: var(--text-primary) !important;
  font-weight: 700 !important;
}

.office_phone i {
  color: var(--amber-hover) !important;
}

.nav-pick-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  font-weight: 600;
}

.nav-pick-button i {
  color: #fff;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(216, 155, 74, 0.28) !important;
  border-radius: 14px;
  background: rgba(255, 253, 252, 0.72);
  box-shadow: var(--shadow-soft);
}

.menu-toggle:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(216, 155, 74, 0.18);
}

.menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  border-radius: var(--radius-pill);
  background: var(--text-primary);
  transition:
    opacity 180ms var(--ease-soft),
    transform 180ms var(--ease-soft);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  background: var(--amber);
  box-shadow: var(--shadow-soft);
}

.top-nav {
  display: none;
}

.top-nav a {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--text-secondary);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px 0 26px;
  background:
    linear-gradient(180deg, rgba(246, 239, 231, 0.76), rgba(246, 239, 231, 0.98)),
    url("https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border: 1px solid rgba(216, 155, 74, 0.28);
  border-radius: var(--radius-pill);
  color: var(--cinnamon-dark);
  background: rgba(255, 253, 252, 0.74);
  font-size: 14px;
  font-weight: 600;
}

.hero h1 {
  margin: 12px 0 10px;
  color: var(--text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.08;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 17px;
}

.search-panel {
  max-width: 760px;
  padding: 10px;
  border: 1px solid rgba(234, 223, 211, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 248, 0.92);
  box-shadow: var(--shadow-soft);
}

.search-panel .form-control {
  min-height: 48px;
  border-color: transparent;
  border-radius: 12px;
  color: var(--text-primary);
  background: var(--surface-warm);
}

.search-panel .form-control:focus {
  border-color: rgba(216, 155, 74, 0.58);
  box-shadow: 0 0 0 0.2rem rgba(216, 155, 74, 0.16);
}

.section-band {
  padding: 20px 0;
  background: var(--bg-secondary);
}

.section-band--catalog {
  padding-top: 18px;
  padding-bottom: 34px;
  background: var(--bg-primary);
}

.section-title {
  margin-bottom: 14px;
  color: var(--text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.18;
}

.section-subtitle {
  max-width: 680px;
  color: var(--text-secondary);
}

.btn {
  min-height: 44px;
  border-radius: 12px;
  font-weight: 600;
  transition:
    transform 220ms var(--ease-soft),
    box-shadow 220ms var(--ease-soft),
    background-color 220ms var(--ease-soft),
    border-color 220ms var(--ease-soft),
    color 220ms var(--ease-soft);
}

.btn-primary,
.btn-success {
  border-color: var(--amber) !important;
  color: #fff !important;
  background-color: var(--amber) !important;
  box-shadow: 0 6px 18px rgba(216, 155, 74, 0.22);
}

.btn-primary:hover,
.btn-primary:active,
.btn-success:hover,
.btn-success:active {
  border-color: var(--amber-hover) !important;
  color: #fff !important;
  background-color: var(--amber-hover) !important;
}

.text-primary,
.text-success {
  color: var(--cinnamon-dark) !important;
}

.badge-primary,
.badge-success,
.green-label {
  border-radius: var(--radius-pill);
  color: var(--cinnamon-dark) !important;
  background: rgba(216, 155, 74, 0.18) !important;
}

.btn-primary-soft {
  border-color: var(--amber);
  color: #fff;
  background: var(--amber);
  box-shadow: 0 6px 18px rgba(216, 155, 74, 0.22);
}

.btn-primary-soft:hover,
.btn-primary-soft:focus {
  border-color: var(--amber-hover);
  color: #fff !important;
  background: var(--amber-hover);
  box-shadow: 0 8px 24px rgba(198, 134, 51, 0.28);
  transform: translateY(-2px);
}

a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active,
a.btn-primary-soft:hover,
a.btn-primary-soft:focus,
a.btn-primary-soft:active {
  color: #fff !important;
}

.btn-secondary-soft {
  border: 1px solid var(--border-warm);
  color: var(--cinnamon-dark);
  background: rgba(255, 253, 252, 0.72);
}

.btn-secondary-soft:hover,
.btn-secondary-soft:focus {
  border-color: var(--amber);
  color: var(--text-primary);
  background: var(--surface-hover);
}

.view-toggle.is-active {
  border-color: rgba(216, 155, 74, 0.58);
  color: var(--text-primary);
  background: rgba(216, 155, 74, 0.18);
  box-shadow: inset 0 0 0 1px rgba(216, 155, 74, 0.18);
}

.chip-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar {
  display: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  background: var(--surface);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.chip input {
  cursor: pointer;
}

.chip.is-active {
  border-color: rgba(216, 155, 74, 0.42);
  color: var(--text-primary);
  background: rgba(216, 155, 74, 0.18);
}

.date-filter[hidden] {
  display: none;
}

.date-filter {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: center;
}

.date-filter__track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.date-filter__track::-webkit-scrollbar {
  display: none;
}

.date-filter__arrow,
.date-filter__day {
  border: 1px solid var(--border-soft);
  color: var(--text-secondary);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.date-filter__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 58px;
  border-radius: 12px;
}

.date-filter__day {
  display: grid;
  flex: 0 0 70px;
  min-height: 58px;
  padding: 7px 8px;
  border-radius: 12px;
  text-align: center;
  line-height: 1;
}

.date-filter__weekday,
.date-filter__month {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.date-filter__number {
  margin: 2px 0;
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 900;
}

.date-filter__arrow:hover,
.date-filter__day:hover,
.date-filter__day.is-active {
  border-color: rgba(216, 155, 74, 0.55);
  color: var(--text-primary);
  background: var(--surface-hover);
}

.date-filter__day.is-active {
  box-shadow: inset 0 0 0 1px rgba(216, 155, 74, 0.55), var(--shadow-soft);
}

.filter-panel {
  padding: 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--surface-elevated);
  box-shadow: var(--shadow-soft);
}

.filter-panel--sticky {
  top: 86px;
}

.exc-gallery {
  max-width: 430px;
  margin-right: auto;
}

.exc-hero-card {
  display: grid;
  gap: 22px;
  padding: 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--surface-elevated);
  box-shadow: var(--shadow-soft);
}

.exc-hero-card__media {
  overflow: hidden;
  max-width: 430px;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.exc-hero-card__content {
  min-width: 0;
  padding: 4px 2px 2px;
}

.exc-title {
  margin: 12px 0 12px;
  color: var(--text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
}

.exc-facts,
.exc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.exc-route {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.exc-route__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text-secondary);
}

.exc-route__item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--cinnamon-dark);
  background: rgba(216, 155, 74, 0.16);
}

.exc-route__item strong,
.exc-route__item span {
  display: block;
}

.exc-route__item strong {
  color: var(--text-primary);
  font-size: 14px;
}

.exc-info-card {
  margin: 24px auto 0;
  padding: 20px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  color: var(--text-primary);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.filter-panel__title {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 900;
}

.filter-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-secondary);
  background: rgba(255, 249, 244, 0.7);
  font-weight: 700;
}

.filter-list a:hover,
.filter-list a.is-active {
  color: var(--text-primary);
  background: var(--surface-hover);
}

.count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  color: var(--cinnamon-dark);
  background: rgba(216, 155, 74, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.tour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms var(--ease-soft),
    box-shadow 220ms var(--ease-soft),
    background-color 220ms var(--ease-soft);
}

.card,
.soft-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card {
  overflow: hidden;
  transition:
    transform 220ms var(--ease-soft),
    box-shadow 220ms var(--ease-soft),
    background-color 220ms var(--ease-soft);
}

.card:hover {
  background: var(--surface-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card-img-top {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-badge-right,
.card-badge-left {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: #fff;
  background: rgba(62, 49, 40, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.card-badge-right {
  right: 12px;
}

.card-badge-left {
  left: 12px;
}

.tour-card:hover {
  background: var(--surface-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.tour-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--border-soft);
}

.tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease-soft);
}

.tour-card:hover .tour-card__media img {
  transform: scale(1.04);
}

.excs_rendered_list .tour-card,
#excs_list .tour-card {
  min-height: 390px;
  isolation: isolate;
  color: #fff;
  background: #3e3128;
}

.excs_rendered_list .tour-card::after,
#excs_list .tour-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(38, 28, 22, 0.34) 0%, rgba(38, 28, 22, 0.16) 28%, rgba(38, 28, 22, 0.72) 62%, rgba(24, 17, 13, 0.96) 100%);
  pointer-events: none;
}

.excs_rendered_list .tour-card__media,
#excs_list .tour-card__media {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  border-radius: inherit;
}

.excs_rendered_list .tour-card__media img,
#excs_list .tour-card__media img {
  width: 100%;
  height: 100%;
}

.excs_rendered_list .tour-card__body,
#excs_list .tour-card__body {
  position: relative;
  z-index: 2;
  justify-content: flex-end;
  min-height: 390px;
  padding: 78px 16px 16px;
}

.excs_rendered_list .tour-card__place,
#excs_list .tour-card__place {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: auto;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: #fff;
  background: rgba(62, 49, 40, 0.58);
  text-transform: none;
  backdrop-filter: blur(8px);
}

.excs_rendered_list .tour-card__title,
#excs_list .tour-card__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-top: auto;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.excs_rendered_list .tour-card__desc,
#excs_list .tour-card__desc {
  color: rgba(255, 255, 255, 0.86);
}

.excs_rendered_list .tour-card__meta,
#excs_list .tour-card__meta {
  color: rgba(255, 255, 255, 0.84);
}

.excs_rendered_list .tour-card .meta-pill,
#excs_list .tour-card .meta-pill {
  color: #fff;
  background: rgba(24, 17, 13, 0.42);
  backdrop-filter: blur(8px);
}

.excs_rendered_list .tour-card .price,
#excs_list .tour-card .price,
.excs_rendered_list .tour-card .price small,
#excs_list .tour-card .price small {
  color: #fff;
}

.excs_rendered_list .tour-card .btn,
#excs_list .tour-card .btn {
  box-shadow: none;
}

.excs_rendered_list .tour-card__badge,
#excs_list .tour-card__badge {
  z-index: 3;
  right: 12px;
  left: auto;
  background: rgba(216, 155, 74, 0.92);
  box-shadow: 0 8px 18px rgba(24, 17, 13, 0.22);
}

.tour-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: #fff;
  background: rgba(62, 49, 40, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.tour-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 14px;
}

.tour-card__place {
  color: var(--cinnamon);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-card__title {
  margin: 6px 0 8px;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.tour-card__desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 0;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 252, 0.78);
}

.chips {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  color: var(--text-secondary);
  background: rgba(255, 253, 252, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.chips-light {
  color: var(--text-secondary);
  background: rgba(255, 253, 252, 0.78);
}

.list-group-item {
  margin-bottom: 8px;
  border-color: var(--border-soft);
  border-radius: 12px !important;
  color: var(--text-secondary);
  background: var(--surface);
  font-weight: 700;
}

.list-group-item:hover,
.list-group-item:focus {
  color: var(--text-primary);
  background: var(--surface-hover);
}

.form-control,
.custom-select {
  min-height: 48px;
  border-color: var(--border-soft);
  border-radius: 12px;
  color: var(--text-primary);
  background-color: var(--surface-warm);
}

.form-control:focus,
.custom-select:focus {
  border-color: rgba(216, 155, 74, 0.58);
  box-shadow: 0 0 0 0.2rem rgba(216, 155, 74, 0.16);
}

.overflowheight {
  display: -webkit-box;
  overflow: hidden;
  max-height: none;
  color: var(--text-secondary);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mobile-assist-card,
.mobile-pay-card {
  margin: 20px 0;
  padding: 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.mobile-assist-card {
  display: grid;
  grid-template-columns: 1fr 76px;
  gap: 12px;
  align-items: center;
}

.mobile-assist-card p {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.mobile-assist-card img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer--dark {
  margin-top: 0;
  padding: 28px 0 22px;
  color: rgba(255, 252, 248, 0.78);
  background:
    linear-gradient(180deg, rgba(62, 49, 40, 0.98), rgba(39, 29, 23, 1));
}

.site-footer--dark a {
  color: rgba(255, 252, 248, 0.82);
}

.site-footer--dark a:hover {
  color: #fff !important;
}

.footer-newsletter {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
  padding: 20px;
  border: 1px solid rgba(234, 223, 211, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 249, 244, 0.08);
}

.footer-newsletter .eyebrow {
  color: #fff;
  background: rgba(216, 155, 74, 0.22);
}

.footer-newsletter h4,
.footer-main h3,
.footer-main h4 {
  color: #fff;
  font-weight: 600;
}

.footer-newsletter h4 {
  margin: 12px 0 8px;
  font-size: 24px;
}

.footer-newsletter p,
.footer-brand p,
.footer-contact p {
  color: rgba(255, 252, 248, 0.72);
}

.footer-newsletter__form {
  display: grid;
  gap: 10px;
  align-content: center;
}

.footer-newsletter__form .form-control {
  border-color: rgba(234, 223, 211, 0.22);
  color: #fff;
  background: rgba(255, 253, 252, 0.1);
}

.footer-newsletter__form .form-control::placeholder {
  color: rgba(255, 252, 248, 0.56);
}

.footer-main {
  display: grid;
  gap: 24px;
}

.footer-brand h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.footer-phone {
  display: block;
  margin: 12px 0 4px;
  color: #fff !important;
  font-size: 20px;
  font-weight: 900;
}

.footer-links ul {
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(234, 223, 211, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 249, 244, 0.08);
}

.social-links a:hover {
  border-color: rgba(216, 155, 74, 0.62);
  background: rgba(216, 155, 74, 0.22);
}

.footer-bottom {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(234, 223, 211, 0.14);
  color: rgba(255, 252, 248, 0.58);
  font-size: 13px;
}

.exc-info {
  color: var(--text-primary);
}

.exc-info img,
.fotorama img {
  border-radius: var(--radius-md);
}

.modal-content {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
}

.flatpickr-day,
.flatpickr-day.nextMonthDay:not(.flatpickr-disabled) {
  border-color: rgba(216, 155, 74, 0.45);
  background: rgba(216, 155, 74, 0.18);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  border-color: var(--amber);
  background: var(--amber);
}

.flatpickr-input[readonly] {
  display: none;
}

.flatpickr-calendar.inline {
  margin: 0 auto;
  border-color: var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.booking-shell {
  margin-right: auto;
  margin-left: auto;
}

.booking-heading {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.booking-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--surface-elevated);
  box-shadow: var(--shadow-soft);
}

.booking-card__calendar,
.booking-card__tickets,
.booking-card__time {
  display: block;
  min-width: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

.booking-card__calendar {
  display: flow-root;
}

.booking-card__time {
  padding-bottom: 0;
  border-bottom: 0;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.booking-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.booking-step--time {
  margin-top: 16px;
}

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

.ticket-grid label {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 800;
}

.ticket-grid .custom-select {
  margin-top: 5px;
}

.time-options {
  display: grid;
  gap: 10px;
}

.time-option {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.time-option__body strong,
.time-option__body span,
.time-option__body small,
.time-option__price strong,
.time-option__price small {
  display: block;
}

.time-option__body strong,
.time-option__price strong {
  color: var(--text-primary);
}

.time-option__body span,
.time-option__body small,
.time-option__price small {
  color: var(--text-secondary);
}

.booking-empty {
  padding: 14px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  background: var(--surface);
}

.booking-summary {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  background: var(--surface);
}

.pick-modal-intro {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  background: var(--surface);
}

.pick-modal-intro strong {
  color: var(--text-primary);
}

.exc-list-group {
  display: grid;
  gap: 12px;
}

.exc-list-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-bottom: 0;
  padding: 10px;
  border: 1px solid var(--border-soft) !important;
  border-radius: var(--radius-card) !important;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms var(--ease-soft),
    box-shadow 220ms var(--ease-soft),
    background-color 220ms var(--ease-soft);
}

.exc-list-item:hover {
  background: var(--surface-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.exc-list-item__image {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 112px;
  border-radius: var(--radius-md);
  background: var(--border-soft);
}

.exc-list-item__image img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
  transition: transform 260ms var(--ease-soft);
}

.exc-list-item:hover .exc-list-item__image img {
  transform: scale(1.04);
}

.exc-list-item__image .tour-card__badge {
  top: 8px;
  right: 8px;
  left: auto;
}

.exc-list-item__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 2px 0;
}

.exc-list-item__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.exc-list-item__title a {
  color: var(--text-primary);
}

.exc-list-item__dates {
  margin-bottom: 0;
}

.exc-list-item .tour-card__meta {
  color: var(--text-muted);
}

.exc-list-item .meta-pill,
.exc-list-item .chips {
  color: var(--text-secondary);
  background: rgba(255, 253, 252, 0.82);
}

.exc-list-item .meta-pill i,
.exc-list-item .chips i {
  color: var(--cinnamon);
}

.exc-list-item__side {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-soft);
}

.exc-list-item__side .btn {
  min-height: 40px;
  white-space: nowrap;
}

.exc-list-empty {
  padding: 16px;
  color: var(--text-secondary);
  text-align: center;
}

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.price {
  display: block;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.price small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.info-strip {
  display: grid;
  gap: 12px;
}

.info-item {
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--surface-elevated);
  box-shadow: var(--shadow-soft);
}

.info-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-primary);
  font-size: 17px;
}

.info-item span {
  color: var(--text-secondary);
  font-size: 14px;
}

.about-text {
  max-width: 860px;
  color: var(--text-secondary);
  font-size: 17px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-managers {
  margin: 0;
}

.about-managers img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.about-managers figcaption {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  text-align: center;
}

.about-registry {
  display: grid;
  gap: 12px;
}

.about-guarantee {
  max-width: 920px;
  color: var(--text-secondary);
}

.about-guarantee p {
  font-size: 17px;
}

.payments-media {
  margin: 0;
}

.payments-media img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.payments-text {
  padding: 20px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  color: var(--text-secondary);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  font-size: 17px;
}

.payments-text p:last-child {
  margin-bottom: 0;
}

.faq-accordion {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-panel {
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--border-soft);
  background: transparent;
  box-shadow: none;
}

.faq-panel:last-child {
  border-bottom: 0;
}

.faq-panel__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.faq-panel__title a {
  position: relative;
  display: block;
  min-height: 54px;
  padding: 15px 18px 15px 58px;
  color: var(--text-primary);
  background: var(--surface-elevated);
  font-weight: 600;
}

.faq-panel__title a:hover,
.faq-panel__title a:focus {
  color: var(--cinnamon-dark) !important;
  background: var(--surface-hover);
}

.faq-panel__title a::before {
  position: absolute;
  top: 11px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--amber);
  content: "-";
  font-weight: 700;
  line-height: 1;
}

.faq-panel__title a.collapsed {
  color: var(--text-secondary);
}

.faq-panel__title a.collapsed::before {
  content: "+";
}

.faq-panel__body {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 20px;
  color: var(--text-secondary);
  background: var(--surface);
  font-size: 16px;
}

.faq-panel__body p:last-child {
  margin-bottom: 0;
}

.img-accordion img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.contacts-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 20px;
  font-weight: 600;
}

.contact-card {
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  color: var(--text-secondary);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.contact-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.contact-card h5 {
  margin-bottom: 10px;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
}

.contact-card p {
  margin-bottom: 6px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contacts-managers {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
}

.contacts-managers img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.contacts-managers figcaption {
  margin-top: 12px;
  color: var(--text-secondary);
}

.bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 8px 8px 10px;
  border-top: 1px solid var(--border-soft);
  border-radius: 20px 20px 0 0;
  background: rgba(255, 252, 248, 0.96);
  box-shadow: var(--shadow-nav);
  backdrop-filter: blur(14px);
}

.bottom-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 900;
}

.bottom-nav a.is-active {
  color: var(--text-primary);
  background: rgba(216, 155, 74, 0.16);
}

@media (min-width: 576px) {
  .info-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 767.98px) {
  body {
    padding-top: 4.9rem !important;
  }

  .default-header {
    padding: 10px 8px !important;
  }

  .navbar-brand img {
    max-width: 148px;
  }

  .default-header .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(234, 223, 211, 0.96);
    border-radius: 18px;
    background: rgba(255, 252, 248, 0.98);
    box-shadow: 0 18px 40px rgba(62, 49, 40, 0.16);
    backdrop-filter: blur(16px);
  }

  .default-header .navbar-nav {
    gap: 6px;
    align-items: stretch !important;
  }

  .default-header .navbar-nav .nav-link {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 11px 12px;
    border-radius: 14px;
    color: var(--text-primary) !important;
    background: rgba(246, 239, 231, 0.68);
    font-weight: 700;
  }

  .default-header .navbar-nav .nav-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--cinnamon-dark);
    background: rgba(216, 155, 74, 0.16);
  }

  .office_phone {
    background: rgba(216, 155, 74, 0.18) !important;
  }

  .nav-pick-button {
    width: 100%;
    min-height: 50px;
    margin-top: 4px;
    border-radius: 14px;
  }
}

@media (min-width: 768px) {
  .default-header .navbar-nav {
    gap: 2px;
  }

  .default-header .navbar-nav .nav-link {
    font-size: 14px;
  }

  .default-header .navbar-nav .nav-link i {
    display: none;
  }

  .office_phone {
    margin-right: 4px;
    border: 1px solid rgba(216, 155, 74, 0.24);
    background: rgba(255, 253, 252, 0.66);
  }

  .office_phone i {
    display: inline-block !important;
  }

  .nav-pick-button {
    box-shadow: 0 8px 22px rgba(216, 155, 74, 0.28);
  }

  .exc-list-item {
    grid-template-columns: 160px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 12px;
  }

  .exc-list-item__image,
  .exc-list-item__image img {
    min-height: 104px;
  }

  .exc-list-item__side {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-end;
    min-width: 132px;
    padding-top: 0;
    border-top: 0;
  }

  .exc-list-item__side .price {
    text-align: right;
  }

  .hero {
    min-height: 260px;
    padding: 32px 0 34px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .section-title {
    font-size: 34px;
  }

  .exc-hero-card {
    grid-template-columns: minmax(280px, 430px) 1fr;
    align-items: start;
    padding: 18px;
  }

  .exc-title {
    font-size: 38px;
  }

  .booking-card {
    padding: 18px;
  }

  .time-option {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .footer-newsletter {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 24px;
  }

  .footer-newsletter__form {
    grid-template-columns: 1fr auto;
  }

  .footer-main {
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, 1fr);
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .about-registry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .page-shell {
    padding-bottom: 0;
  }

  .top-nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-band {
    padding: 26px 0;
  }

  .bottom-nav {
    display: none;
  }
}


