@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/NotoSansKR-Bold-subset.woff2") format("woff2");
}
:root {
  --side-padding-s: 50px;
  --side-padding-m: 7vw;
  --side-padding-l: 10vw;
  --side-padding-xl: 24vw;
  --edge: max(var(--side-padding-s), calc((100% - 1465px) / 2));
  --edge-reviews: max(var(--side-padding-s), calc((100% - 1161px) / 2));
}
@media (max-width: 900px) {
  :root {
    --side-padding-s: 30px;
    --side-padding-m: 5vw;
    --side-padding-l: 7vw;
    --side-padding-xl: 10vw;
  }
}
@media (max-width: 700px) {
  :root {
    --side-padding-s: 20px;
    --side-padding-m: 40px;
  }
}

body {
  font-family: "Inter", "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #1b1b1b;
  background-color: #ffffff;
}

/* shared section header */
.section-head {
  text-align: center;
  padding: 0 var(--side-padding-s);
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #000;
}
.section-head h2 .accent {
  color: #2867a6;
}
.section-head p {
  width: 80%;
  max-width: 460px;
  margin: 13px auto 0;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* ----------------------------------------------------------------
   NAV
----------------------------------------------------------------- */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--edge);
  background: #ffffff;
  box-shadow: 0px 0px 7.2px rgba(61, 61, 61, 0.48), inset 0px 0px 35px white, inset 0px 0px 18px #cfcfcf;
  z-index: 50;
}
header.site-header .brand {
  position: relative;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 226px;
  height: 81px;
  background: #f4f4f4;
  box-shadow: 0px 4px 9.8px rgba(0, 0, 0, 0.23);
}
header.site-header .brand .logo-rotator {
  position: relative;
  width: 170px;
  height: 60px;
}
header.site-header .brand .logo-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
header.site-header .brand .logo-rotator img.active {
  opacity: 1;
}
header.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 46px;
}
header.site-header .nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  text-shadow: 0px 0px 10.2px white;
  transition: opacity 0.2s ease-in-out;
}
header.site-header .nav-links a:hover {
  opacity: 0.55;
}
header.site-header .btn-duty-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7fce5a 0%, #54ac32 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-shadow: none !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.55), 0 1px 3px rgba(0, 0, 0, 0.25);
}
header.site-header .btn-duty-free:hover {
  opacity: 0.92;
}
header.site-header .btn-duty-free svg {
  width: 15px;
  height: 16px;
}
header.site-header .btn-duty-free.is-locked {
  opacity: 0.5;
  cursor: default;
}
header.site-header .btn-duty-free.is-locked:hover {
  opacity: 0.5;
}

/* ----------------------------------------------------------------
   HERO / TICKET
----------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  margin-top: 54px;
  padding: 80px 0;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  pointer-events: none;
}
.hero .hero-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* ticket form card */
.ticket-card {
  position: relative;
  margin-left: var(--edge-reviews);
  width: 343px;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, #f4f4f4 0%, #edf9ff 84%);
  border: 1px solid #ebebeb;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), inset 0 0 11px white;
}
.ticket-card .ticket-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 4px 0 18px;
}
.ticket-card .ticket-head .ticket-title {
  width: 206px;
  height: auto;
}
.ticket-card .ticket-head .ticket-arrow {
  width: 50px;
  height: auto;
  margin-top: 6px;
}
.ticket-card .field {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.ticket-card .field > label {
  flex: 0 0 64px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
}
.ticket-card input[type=text],
.ticket-card input[type=date] {
  width: 100%;
  height: 27px;
  padding: 0 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  background: #fff;
  border: 1px solid #c1c1c1;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.15);
}
.ticket-card input[type=text]::placeholder,
.ticket-card input[type=date]::placeholder {
  color: #cfcfcf;
}
.ticket-card input[type=text].invalid,
.ticket-card input[type=date].invalid {
  border-color: #e0584f;
  box-shadow: inset 0 0 4px rgba(224, 88, 79, 0.4);
}
.ticket-card input[type=date] {
  appearance: none;
  -webkit-appearance: none;
  color: #cfcfcf;
  cursor: pointer;
}
.ticket-card input[type=date].filled {
  color: #000;
}
.ticket-card input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}
.ticket-card .field-name input,
.ticket-card .field-departure input {
  flex: 1;
}
.ticket-card .field-departure {
  flex-wrap: wrap;
}
.ticket-card .date-warning {
  flex: 0 0 100%;
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 700;
  color: #e0584f;
}
.ticket-card .select-wrap {
  position: relative;
  flex: 1;
}
.ticket-card .select-wrap select {
  width: 100%;
  height: 27px;
  padding: 0 26px 0 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  background: #fff;
  border: 1px solid #c1c1c1;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.ticket-card .select-wrap select.placeholder {
  color: #cfcfcf;
}
.ticket-card .select-wrap select.invalid {
  border-color: #e0584f;
  box-shadow: inset 0 0 4px rgba(224, 88, 79, 0.4);
}
.ticket-card .select-wrap .caret {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #6f6f6f;
  transform: translateY(-50%);
  pointer-events: none;
}
.ticket-card .date-row {
  flex: 1;
  display: flex;
  gap: 6px;
}
.ticket-card .date-row input {
  width: 0;
  flex: 1;
  text-align: center;
}
.ticket-card .field-type {
  flex-direction: column;
  align-items: stretch;
}
.ticket-card .field-type > label {
  flex: none;
  margin-bottom: 10px;
}
.ticket-card .radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  padding-left: 2px;
}
.ticket-card .radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
}
.ticket-card .radio input {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  margin: 0;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.ticket-card .radio input:checked {
  border-color: #54ac32;
  box-shadow: inset 0 0 0 2.5px #54ac32;
}
.ticket-card .accept {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 4px;
  font-size: 11px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
}
.ticket-card .accept input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 0;
  border: 1px solid #bababa;
  background: #fff;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  position: relative;
}
.ticket-card .accept input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 4px;
  height: 9px;
  border: solid #54ac32;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.ticket-card .btn-buy {
  display: block;
  width: 200px;
  margin: 14px auto 0;
  padding: 13px 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, #ffb84d 0%, #ff8a09 100%);
  border-radius: 7px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 3px 5px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: filter 0.2s ease-in-out;
}
.ticket-card .btn-buy .chev {
  letter-spacing: -1px;
}
.ticket-card .btn-buy .buy-short {
  display: none;
}
.ticket-card .btn-buy:hover {
  filter: brightness(1.05);
}
.ticket-card .ticket-note {
  margin: 9px 0 14px;
  font-size: 9px;
  font-weight: 500;
  text-align: center;
  color: #000;
}
.ticket-card .pay-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.ticket-card .pay-icons img {
  width: auto;
}
.ticket-card .pay-icons img:nth-child(1) {
  height: 56px;
}
.ticket-card .pay-icons img:nth-child(2) {
  height: 30px;
}
.ticket-card .pay-icons img:nth-child(3) {
  height: 48px;
}
.ticket-card .pay-icons img:nth-child(4) {
  height: 21px;
}

/* ----------------------------------------------------------------
   SCHEDULE
----------------------------------------------------------------- */
.section-schedule {
  padding: 70px 0 60px;
}

.schedule-carousel {
  position: relative;
  max-width: 1422px;
  margin: 40px auto 0;
  padding: 0 70px;
}
.schedule-carousel .sched-viewport {
  overflow: hidden;
  padding: 12px;
  margin: -12px;
}
.schedule-carousel .swiper {
  overflow: visible;
}
.schedule-carousel .swiper-slide {
  height: auto;
  display: flex;
}
.schedule-carousel .sched-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.2s ease-in-out;
}
.schedule-carousel .sched-arrow svg {
  width: 16px;
  height: 28px;
}
.schedule-carousel .sched-arrow:hover {
  opacity: 0.55;
}
.schedule-carousel .sched-arrow.swiper-button-disabled {
  opacity: 0.2;
  cursor: default;
}
.schedule-carousel .sched-prev {
  left: 16px;
}
.schedule-carousel .sched-next {
  right: 16px;
}

.tour-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f4f4f4;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3), inset 0px -2px 4px rgba(0, 0, 0, 0.1), inset 0 0 5px white;
}
.tour-card .tour-img {
  position: relative;
  aspect-ratio: 333/286;
  overflow: hidden;
}
.tour-card .tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-card .tour-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 11px 16px 0;
}
.tour-card .tour-time {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #2867a6;
}
.tour-card .tour-name {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #272727;
}
.tour-card .tour-name .pin {
  width: 8px;
  height: 12px;
  flex-shrink: 0;
}
.tour-card .tour-desc {
  margin: 9px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  color: #5a5a5a;
  word-break: keep-all;
}
.tour-card .tour-desc .cat {
  display: block;
}
.tour-card .tour-stars {
  width: 80px;
  height: auto;
  margin-top: 14px;
  margin-bottom: 16px;
}
.tour-card .tour-start {
  width: calc(100% + 32px);
  margin: auto -16px 0;
  padding: 14px 0 16px;
  border-top: 1px solid #d9d9d9;
  font-size: 16px;
  font-weight: 600;
  color: #2867a6;
  transition: opacity 0.2s ease-in-out;
}
.tour-card .tour-start:hover {
  opacity: 0.6;
}
.tour-card.is-locked {
  position: relative;
}
.tour-card.is-locked::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.49);
  pointer-events: none;
}
.tour-card.is-locked::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 333/286;
  z-index: 2;
  background: url("/assets/home/2_Schedule/Lock.svg") center/auto 30px no-repeat;
  filter: drop-shadow(0 0 3.4px rgba(0, 0, 0, 0.23));
  pointer-events: none;
}
.tour-card.is-locked .tour-start {
  cursor: default;
}
.tour-card.is-locked .tour-start:hover {
  opacity: 1;
}

/* ----------------------------------------------------------------
   PROMO BANNER
----------------------------------------------------------------- */
.section-promo {
  padding: 16px var(--side-padding-s) 24px;
}

.promo-banner {
  position: relative;
  max-width: 1465px;
  height: 67px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: linear-gradient(180deg, #f4f4f4 45%, #edf9ff 100%);
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.05), inset 0 0 4px rgba(255, 255, 255, 0.25);
}
.promo-banner .promo-text {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a77;
  text-align: center;
}
.promo-banner .promo-text a,
.promo-banner .promo-text .promo-url {
  font-weight: 900;
  color: #000;
  text-decoration: underline;
}
.promo-banner .promo-text strong {
  font-weight: 800;
}
.promo-banner .promo-right {
  position: absolute;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.promo-banner .promo-bag {
  width: auto;
  height: 72px;
}
.promo-banner .promo-shop {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a77;
  white-space: nowrap;
  transition: opacity 0.2s ease-in-out;
}
.promo-banner .promo-shop:hover {
  opacity: 0.6;
}
.promo-banner .promo-shop.is-locked {
  cursor: default;
}
.promo-banner .promo-shop.is-locked:hover {
  opacity: 1;
}

/* ----------------------------------------------------------------
   TOUR GUIDES
----------------------------------------------------------------- */
.section-guides {
  padding: 60px var(--side-padding-s) 0;
}

.guides-display {
  width: 756px;
  max-width: 100%;
  margin: 40px auto 40px;
  padding: 8px 7px;
  background: #fff;
  border: 1px solid #d4d4d4;
}
.guides-display .display-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 742/492;
  border: 1px solid #efefef;
  overflow: hidden;
}
.guides-display .display-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.guides-display .display-inner img.active {
  opacity: 1;
}

.guides-shelf {
  position: relative;
  max-width: 1324px;
  margin: -6px auto 0;
}
.guides-shelf .shelf-bg {
  display: block;
  width: 100%;
}
.guides-shelf .thumbs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 39%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(7px, 1.8vw, 26px);
  padding: 0 clamp(12px, 4vw, 64px);
}
.guides-shelf .guide-thumb {
  flex: 1 1 0;
  min-width: 0;
  max-width: 154px;
  padding: 3px;
  background: #fff;
  box-shadow: 0 0 0 0.5px #d4d4d4, 0 2px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: max-width 0.3s ease-in-out, flex-grow 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.guides-shelf .guide-thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.guides-shelf .guide-thumb.active {
  flex-grow: 1.235;
  max-width: 190px;
  padding: 4px;
}
.guides-shelf .guide-thumb:not(.active):hover {
  transform: translateY(-3px);
}

/* ----------------------------------------------------------------
   MAP
----------------------------------------------------------------- */
.section-map {
  padding: 60px var(--side-padding-s) 80px;
}

.map-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  max-width: 1160px;
  margin: 40px auto 0;
}

.map-panel {
  flex: 1 1 554px;
  max-width: 554px;
}
.map-panel .panel-head {
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  color: #040404;
  background: linear-gradient(180deg, #fbfbfb 0%, #ededed 100%);
  border: 1px solid #ebebeb;
}
.map-panel .loc-list {
  border: 1px solid #ebebeb;
  border-top: 0;
}
.map-panel .loc-row {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 75px;
  padding: 0 20px;
  border-bottom: 1px solid #ebebeb;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
}
.map-panel .loc-row:last-child {
  border-bottom: 0;
}
.map-panel .loc-row:nth-child(odd) {
  background: #f4f4f4;
}
.map-panel .loc-row:nth-child(even) {
  background: #fff;
}
.map-panel .loc-row.highlight {
  background: #e7f1fb;
}
@media (hover: hover) and (pointer: fine) {
  .map-panel .loc-row:hover {
    background: #e7f1fb;
  }
}
.map-panel .loc-pin {
  flex: 0 0 auto;
  width: 26px;
  height: auto;
}
.map-panel .loc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.map-panel .loc-name {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  word-break: keep-all;
}
.map-panel .loc-name .loc-sub {
  display: block;
}
.map-panel .loc-meta {
  font-size: 13px;
  font-weight: 500;
  color: #000;
}
.map-panel .loc-weather {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
}
.map-panel .loc-weather img {
  width: 17px;
  height: 17px;
}
.map-panel .tour-now {
  flex: 0 0 auto;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #ffb84d 0%, #ff8a09 100%);
  border-radius: 6px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 2px 3px rgba(0, 0, 0, 0.2);
  transition: filter 0.2s ease-in-out;
}
.map-panel .tour-now:hover {
  filter: brightness(1.05);
}
.map-panel .tour-now.is-locked {
  opacity: 0.5;
  cursor: default;
}
.map-panel .tour-now.is-locked:hover {
  filter: none;
}

.map-img {
  position: relative;
  flex: 1 1 584px;
  max-width: 584px;
}
.map-img .island {
  display: block;
  width: 100%;
}
.map-img .map-pin {
  position: absolute;
  display: block;
  box-sizing: content-box;
  width: 26px;
  padding: 12px;
  margin: -12px;
  cursor: pointer;
}
.map-img .map-pin img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
.map-img .map-pin.floating img {
  animation: pin-float 0.8s ease-in-out infinite;
}

@keyframes pin-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* ----------------------------------------------------------------
   PARTNERS
----------------------------------------------------------------- */
.section-partners {
  padding: 70px 0 100px;
}

.marquee {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 197px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff 15%, rgba(255, 255, 255, 0));
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff 15%, rgba(255, 255, 255, 0));
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}
.marquee-set img {
  flex: 0 0 auto;
  width: auto;
  object-fit: contain;
}
.marquee-set img:nth-child(1) {
  height: 49px;
}
.marquee-set img:nth-child(2) {
  height: 76px;
}
.marquee-set img:nth-child(3) {
  height: 84px;
}
.marquee-set img:nth-child(4) {
  height: 41px;
}
.marquee-set img:nth-child(5) {
  height: 79px;
}
.marquee-set img:nth-child(6) {
  height: 60px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
/* ----------------------------------------------------------------
   REVIEWS
----------------------------------------------------------------- */
.section-reviews {
  padding: 60px var(--side-padding-s) 60px;
}

.reviews-inner {
  max-width: 1161px;
  margin: 0 auto;
}

.reviews-summary {
  background: #f4f4f4;
  border: 1px solid #e7ebea;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), inset 0 0 10px white;
}
.reviews-summary .rs-head {
  position: relative;
  display: flex;
  align-items: center;
  height: 47px;
  padding: 0 20px 0 95px;
  border-bottom: 1px solid #e7ebea;
}
.reviews-summary .review-icon {
  position: absolute;
  left: 11px;
  top: -28px;
  width: 74px;
  height: 74px;
}
.reviews-summary .rs-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #000;
}
.reviews-summary .rs-rating {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
}
.reviews-summary .rs-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #000;
}
.reviews-summary .rs-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-summary .rs-score {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #000;
}
.reviews-summary .rs-stars {
  width: 118px;
  height: auto;
}
.reviews-summary .rs-count {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #939393;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 13px;
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 192px;
  padding: 20px;
  background: #f4f4f4;
  border: 1px solid #e7ebea;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), inset 0 0 15px white;
}
.review-card .rc-stars {
  width: 118px;
  height: auto;
}
.review-card .rc-text {
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #000;
}
.review-card .rc-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.review-card .rc-avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d9d9d9;
  overflow: hidden;
}
.review-card .rc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-card .rc-meta {
  display: flex;
  flex-direction: column;
}
.review-card .rc-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #000;
}
.review-card .rc-time {
  font-size: 12px;
  font-weight: 300;
  color: #000;
}

/* ----------------------------------------------------------------
   PHOTOS
----------------------------------------------------------------- */
.section-photos {
  padding: 60px 0 80px;
  overflow-x: hidden;
}

.photos-inner {
  position: relative;
  width: 100%;
  max-width: 1250px;
  aspect-ratio: 1250/411;
  margin: 0 auto;
}

.photos-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  max-width: 80%;
  height: auto;
  z-index: 10;
}

.polaroid {
  position: absolute;
  margin: 0;
  padding: 0px 0px 9px;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%) rotate(var(--r, 0deg));
}
.polaroid img {
  display: block;
  width: 100%;
  height: auto;
}
.polaroid.p1 {
  left: 8.5%;
  top: 34.7%;
  width: 14.24%;
  --r: -10.89deg;
  z-index: 6;
}
.polaroid.p2 {
  left: 18.2%;
  top: 54.6%;
  width: 14.16%;
  --r: 7.81deg;
  z-index: 7;
}
.polaroid.p3 {
  left: 39.4%;
  top: 56%;
  width: 17.04%;
  --r: -4.32deg;
  z-index: 4;
}
.polaroid.p4 {
  left: 48.1%;
  top: 80%;
  width: 10.64%;
  --r: 6.15deg;
  z-index: 5;
}
.polaroid.p5 {
  left: 66%;
  top: 59.9%;
  width: 18.24%;
  --r: 1.95deg;
  z-index: 3;
}
.polaroid.p6 {
  left: 84.4%;
  top: 64.6%;
  width: 10.32%;
  --r: -12.2deg;
  z-index: 2;
}
.polaroid.p7 {
  left: 91.4%;
  top: 36.7%;
  width: 16.24%;
  --r: -3.54deg;
  z-index: 1;
}

/* ----------------------------------------------------------------
   FOOTER
----------------------------------------------------------------- */
footer.site-footer {
  margin-top: 22px;
  padding: 46px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f4f4f4;
  border-radius: 60px 60px 0 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}
footer.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
}
footer.site-footer .footer-links a {
  font-size: 15px;
  font-weight: 700;
  color: #342677;
  text-decoration: underline;
  transition: opacity 0.2s ease-in-out;
}
footer.site-footer .footer-links a:hover {
  opacity: 0.6;
}
footer.site-footer .footer-links .fl-locked {
  font-size: 15px;
  font-weight: 700;
  color: #9a9a9a;
  text-decoration: underline;
  cursor: default;
}
footer.site-footer .footer-copy {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 400;
  color: #342677;
}

/* ----------------------------------------------------------------
   RESPONSIVE (light, desktop-first)
----------------------------------------------------------------- */
/* ---------- TABLET (<= 1080px) ---------- */
@media (max-width: 1080px) {
  header.site-header .brand {
    width: 188px;
    height: 81px;
  }
  header.site-header .brand .logo-rotator {
    width: 152px;
    height: 45px;
  }
  header.site-header .nav-links {
    gap: 18px;
  }
  header.site-header .nav-links a {
    font-size: 13px;
  }
  .hero {
    padding: 70px 0;
  }
  .promo-banner .promo-long {
    display: none;
  }
  .promo-banner .promo-text {
    font-size: 14px;
    padding-right: 150px;
  }
  .map-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .map-img {
    order: -1;
    flex: 1 1 auto;
    max-width: 100%;
    margin: 0 auto;
  }
  .map-panel {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .map-panel .loc-row {
    height: auto;
    min-height: 0;
    padding: 12px 20px;
  }
  .reviews-summary .review-icon {
    width: 61px;
    height: 61px;
    top: -20px;
  }
  .reviews-summary .rs-head {
    padding-left: 80px;
  }
}
/* ---------- hide the text nav links below 768 (keep Duty Free) ---------- */
@media (max-width: 768px) {
  header.site-header .nav-links a:not(.btn-duty-free) {
    display: none;
  }
}
/* ---------- MOBILE (<= 600px) ---------- */
@media (max-width: 600px) {
  header.site-header {
    height: 40px;
  }
  header.site-header .brand {
    width: 105px;
    height: 50px;
  }
  header.site-header .brand .logo-rotator {
    width: 90px;
    height: 35px;
  }
  header.site-header .btn-duty-free {
    padding: 6px 12px;
    font-size: 11px;
    gap: 4px;
  }
  header.site-header .btn-duty-free svg {
    width: 13px;
    height: 14px;
  }
  .section-head h2 {
    font-size: 15px;
  }
  .section-head p {
    font-size: 10px;
    margin-top: 6px;
  }
  .tour-card.is-locked::after {
    background-size: auto 22px;
  }
  .tour-card .tour-time,
  .tour-card .tour-name {
    font-size: 10px;
  }
  .tour-card .tour-desc {
    font-size: 9px;
    line-height: 1.15;
  }
  .tour-card .tour-name {
    align-items: baseline;
  }
  .tour-card .tour-name .pin {
    width: 6px;
    height: 9px;
  }
  .tour-card .tour-stars {
    width: 44px;
  }
  .tour-card .tour-start {
    font-size: 10px;
    padding: 10px 0 12px;
  }
  .tour-card .tour-body {
    padding: 9px 10px 0;
  }
  .hero {
    margin-top: 40px;
    padding: 0;
  }
  .hero .hero-bg {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 402/311;
  }
  .hero .hero-inner {
    height: auto;
    padding: 0 var(--side-padding-s);
  }
  .ticket-card {
    position: static;
    margin: 22px auto 0;
    width: 100%;
    max-width: 349px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }
  .ticket-card .ticket-head {
    margin: 0 0 9px;
  }
  .ticket-card .ticket-head .ticket-title {
    width: 166px;
  }
  .ticket-card .ticket-head .ticket-arrow {
    width: 42px;
    margin-top: 5px;
  }
  .ticket-card .field {
    display: block;
    margin-bottom: 9px;
  }
  .ticket-card .field-name > label,
  .ticket-card .field-from > label,
  .ticket-card .field-departure > label {
    display: none;
  }
  .ticket-card input[type=text],
  .ticket-card input[type=date],
  .ticket-card .select-wrap select {
    height: 34px;
    font-size: 16px;
    text-align: left;
    border-radius: 4px;
  }
  .ticket-card .select-wrap .caret {
    right: 12px;
  }
  .ticket-card .field-type {
    margin-top: 20px;
  }
  .ticket-card .field-type > label {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .ticket-card .radio-grid {
    gap: 11px 16px;
  }
  .ticket-card .radio {
    gap: 6px;
    font-size: 12px;
  }
  .ticket-card .accept {
    font-size: 10px;
    margin: 24px 0 0;
  }
  .ticket-card .btn-buy {
    width: 100%;
    margin-top: 12px;
    padding: 12px 0;
    font-size: 12px;
  }
  .ticket-card .btn-buy .buy-full {
    display: none;
  }
  .ticket-card .btn-buy .buy-short {
    display: inline;
  }
  .ticket-card .ticket-note {
    margin: 12px 0 12px;
    font-size: 10px;
  }
  .ticket-card .pay-icons {
    gap: 18px;
  }
  .ticket-card .pay-icons img:nth-child(1) {
    height: 46px;
  }
  .ticket-card .pay-icons img:nth-child(2) {
    height: 25px;
  }
  .ticket-card .pay-icons img:nth-child(3) {
    height: 40px;
  }
  .ticket-card .pay-icons img:nth-child(4) {
    height: 17px;
  }
  .guides-display {
    margin-top: 20px;
  }
  .guides-shelf .thumbs {
    gap: clamp(5px, 2vw, 12px);
    padding: 0 14px;
  }
  .guides-shelf .guide-thumb {
    padding: 2px;
  }
  .guides-shelf .guide-thumb.active {
    padding: 3px;
  }
  .map-wrap {
    margin-top: 20px;
  }
  .map-panel .panel-head {
    height: 24px;
    padding-left: 12px;
    font-size: 10px;
  }
  .map-panel .loc-row {
    gap: 12px;
    padding: 10px 14px;
  }
  .map-panel .loc-pin {
    width: 18px;
  }
  .map-panel .loc-name,
  .map-panel .loc-meta,
  .map-panel .loc-weather {
    font-size: 10px;
  }
  .map-panel .loc-weather img {
    width: 11px;
    height: 11px;
  }
  .map-panel .tour-now {
    padding: 6px 14px;
    font-size: 10px;
  }
  .map-img .map-pin {
    width: 17px;
  }
  .reviews-summary .review-icon {
    width: 39px;
    height: 39px;
    top: -10px;
    left: 14px;
  }
  .reviews-summary .rs-head {
    height: 40px;
    padding-left: 56px;
  }
  .reviews-summary .rs-title {
    font-size: 11px;
  }
  .reviews-summary .rs-rating {
    padding: 10px 16px;
  }
  .reviews-summary .rs-label,
  .reviews-summary .rs-score,
  .reviews-summary .rs-count {
    font-size: 10px;
  }
  .reviews-summary .rs-stars {
    width: 62px;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .review-card {
    height: auto;
    min-height: 0;
    padding: 12px;
  }
  .review-card .rc-stars {
    width: 66px;
  }
  .review-card .rc-text {
    font-size: 10px;
    margin-top: 10px;
  }
  .review-card .rc-user {
    margin-top: 20px;
  }
  .review-card .rc-avatar {
    width: 28px;
    height: 28px;
  }
  .review-card .rc-name {
    font-size: 9px;
  }
  .review-card .rc-time {
    font-size: 8px;
  }
  .marquee {
    margin-top: 18px;
  }
  .marquee::before, .marquee::after {
    width: 85px;
  }
  .marquee-set {
    gap: 30px;
    padding-right: 30px;
  }
  .marquee-set img:nth-child(1) {
    height: 21px;
  }
  .marquee-set img:nth-child(2) {
    height: 33px;
  }
  .marquee-set img:nth-child(3) {
    height: 36px;
  }
  .marquee-set img:nth-child(4) {
    height: 18px;
  }
  .marquee-set img:nth-child(5) {
    height: 34px;
  }
  .marquee-set img:nth-child(6) {
    height: 26px;
  }
  .promo-banner {
    gap: 10px;
  }
  .promo-banner .promo-text {
    font-size: 9px;
    padding-right: 0;
  }
  .promo-banner .promo-right {
    position: static;
    gap: 8px;
  }
  .promo-banner .promo-bag {
    height: 48px;
  }
  .promo-banner .promo-shop {
    font-size: 9px;
  }
  .photos-inner {
    width: 100%;
    height: auto;
    aspect-ratio: 431/191;
    transform: none;
    margin-bottom: 0;
  }
  .photos-title {
    width: 170px;
    max-width: 60%;
  }
  .polaroid {
    padding: 0px 0px 5px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  }
  .polaroid.p1 {
    left: 9.9%;
    top: 45%;
    width: 19.7%;
  }
  .polaroid.p2 {
    left: 23.6%;
    top: 55%;
    width: 18.8%;
  }
  .polaroid.p3 {
    left: 41.6%;
    top: 66.5%;
    width: 20.6%;
  }
  .polaroid.p4 {
    left: 52.8%;
    top: 83.2%;
    width: 13.3%;
  }
  .polaroid.p5 {
    left: 66.5%;
    top: 55.2%;
    width: 23.5%;
  }
  .polaroid.p6 {
    left: 82.4%;
    top: 67.5%;
    width: 14.1%;
  }
  .polaroid.p7 {
    left: 90.3%;
    top: 41.3%;
    width: 19.4%;
  }
  footer.site-footer {
    margin-top: 0;
    padding: 46px 50px 30px;
  }
  footer.site-footer .footer-links {
    gap: 16px 18px;
  }
  footer.site-footer .footer-links a,
  footer.site-footer .footer-links .fl-locked {
    font-size: 12px;
  }
  footer.site-footer .footer-copy {
    font-size: 8px;
  }
  .schedule-carousel {
    margin-top: 12px;
    padding: 0 23px;
  }
  .schedule-carousel .sched-viewport {
    margin: 0 -9px;
    padding: 6px 9px;
  }
  .schedule-carousel .sched-arrow {
    width: 18px;
    height: 26px;
  }
  .schedule-carousel .sched-arrow svg {
    width: 11px;
    height: 19px;
  }
  .schedule-carousel .sched-prev {
    left: 2px;
  }
  .schedule-carousel .sched-next {
    right: 2px;
  }
  .section-schedule {
    padding: 50px 0 10px;
  }
  .section-promo {
    padding: 40px var(--side-padding-s) 30px;
  }
  .section-guides {
    padding: 20px var(--side-padding-s) 12px;
  }
  .section-map {
    padding: 25px var(--side-padding-s) 18px;
  }
  .section-partners {
    padding: 25px 0 36px;
  }
  .section-reviews {
    padding: 17px var(--side-padding-s) 24px;
  }
  .section-photos {
    padding: 30px 0 50px;
  }
}
/* ---------- SMALL MOBILE (<= 370px) ---------- */
@media (max-width: 370px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=page_index.css.map */
