@font-face {
  font-family: "Shuxing PingFang SC";
  src: url("../fonts/PingFangSC-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
}

@font-face {
  font-family: "Shuxing PingFang SC";
  src: url("../fonts/PingFangSC-Semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
}

:root {
  --sx-ink: #17211d;
  --sx-ink-soft: #34443d;
  --sx-green: #184f3a;
  --sx-green-deep: #0d3828;
  --sx-sage: #dce7df;
  --sx-paper: #f5f7f5;
  --sx-white: #ffffff;
  --sx-orange: #e45b2a;
  --sx-orange-dark: #bd4218;
  --sx-blue: #176aa6;
  --sx-line: #dce2de;
  --sx-muted: #68746f;
  --sx-sans: "Shuxing PingFang SC", "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
  --sx-serif: "Shuxing PingFang SC", "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
  --sx-shadow: 0 18px 48px rgba(23, 33, 29, 0.1);
  --sx-container: 1240px;
  --sx-header-height: 76px;
  --sx-admin-offset: 0px;
}

* { box-sizing: border-box; letter-spacing: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sx-white);
  color: var(--sx-ink);
  font-family: var(--sx-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
body.admin-bar { --sx-admin-offset: 32px; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { max-width: 100%; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
h1, h2, h3, h4, p, dd, li, a, span, strong { overflow-wrap: break-word; }
button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(228, 91, 42, 0.4);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.sx-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--sx-ink);
  color: #fff;
  transform: translateY(-150%);
}
.sx-skip-link:focus { transform: none; }
.sx-container { width: min(calc(100% - 48px), var(--sx-container)); margin-inline: auto; }
.sx-icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }

/* Header */
.sx-header {
  position: sticky;
  z-index: 100;
  top: var(--sx-admin-offset);
  height: var(--sx-header-height);
  border-bottom: 1px solid var(--sx-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}
.sx-header__inner { display: flex; height: 100%; align-items: center; gap: 28px; }
.sx-brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; }
.sx-brand__mark { display: block; width: 52px; height: auto; flex: 0 0 auto; object-fit: contain; }
.sx-brand__text { display: grid; line-height: 1.05; }
.sx-brand__text strong { font-size: 20px; font-weight: 700; }
.sx-brand__text small { margin-top: 5px; color: var(--sx-muted); font-size: 8px; text-transform: uppercase; }
.sx-nav { margin-left: auto; }
.sx-nav__list { display: flex; align-items: center; gap: 32px; margin: 0; padding: 0; list-style: none; }
.sx-nav__list a { position: relative; display: block; padding-block: 8px; color: var(--sx-ink-soft); font-size: 14px; font-weight: 600; }
.sx-nav__list a::after { position: absolute; right: 100%; bottom: 2px; left: 0; height: 2px; background: var(--sx-orange); content: ""; transition: right 180ms ease; }
.sx-nav__list a:hover::after, .sx-nav__list a[aria-current="page"]::after { right: 0; }
.sx-nav__account { display: inline-flex; align-items: center; gap: 6px; padding: 7px 0; color: var(--sx-ink-soft); font-size: 14px; font-weight: 650; }
.sx-nav__account .sx-icon { width: 18px; height: 18px; }
.sx-nav__account:hover { color: var(--sx-blue); }
.sx-header__cta, .sx-contact-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border-radius: 5px;
  background: var(--sx-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}
.sx-header__cta:hover, .sx-contact-button:hover { background: #0f588d; transform: translateY(-1px); }
.sx-nav-toggle { display: none; width: 44px; height: 44px; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.sx-nav-toggle > span:not(.screen-reader-text) { display: grid; place-items: center; }
.sx-nav-toggle__close { display: none !important; }
.sx-nav-toggle[aria-expanded="true"] .sx-nav-toggle__open { display: none; }
.sx-nav-toggle[aria-expanded="true"] .sx-nav-toggle__close { display: grid !important; }

/* Shared type and controls */
.sx-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.sx-button:hover { transform: translateY(-2px); }
.sx-button--primary { background: var(--sx-orange); color: #fff; }
.sx-button--primary:hover { background: var(--sx-orange-dark); }
.sx-button--light { border-color: #fff; background: #fff; color: var(--sx-ink); }
.sx-button--light:hover { background: var(--sx-paper); }
.sx-text-link, .sx-journey-card__footer strong { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 750; }

/* Homepage */
.sx-home-hero {
  position: relative;
  display: grid;
  height: min(720px, calc(100svh - 112px));
  min-height: 560px;
  overflow: hidden;
  background: url("../images/journey-landscape.svg") center 58% / cover no-repeat;
  color: #fff;
}
.sx-home-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 43, 31, 0.93), rgba(8, 43, 31, 0.62) 48%, rgba(8, 43, 31, 0.12)); content: ""; }
.sx-home-hero__texture { position: absolute; inset: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
.sx-home-hero__content { position: relative; z-index: 1; align-self: center; padding-bottom: 24px; }
.sx-home-hero h1 { max-width: 780px; margin: 20px 0 22px; font-size: 72px; font-weight: 750; line-height: 1.08; }
.sx-home-hero__lead { max-width: 650px; margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 18px; line-height: 1.9; }
.sx-home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.sx-home-hero__route { position: absolute; z-index: 1; right: max(24px, calc((100vw - var(--sx-container)) / 2)); bottom: 36px; display: flex; width: min(390px, 35vw); align-items: center; gap: 13px; color: rgba(255, 255, 255, 0.72); font-size: 10px; }
.sx-home-hero__route i { height: 1px; flex: 1; background: currentColor; }

.sx-home-intro { padding: 104px 0; background: #fff; }
.sx-home-intro__grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 90px; align-items: end; }
.sx-home-intro h2 { margin: 14px 0 0; font-size: 46px; font-weight: 720; line-height: 1.3; }
.sx-home-intro__copy > p { max-width: 650px; margin: 0; color: var(--sx-muted); font-size: 20px; line-height: 1.9; }
.sx-home-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 42px 0 0; border-top: 1px solid var(--sx-line); }
.sx-home-stats > div { padding: 22px 12px 0 0; }
.sx-home-stats dt { color: var(--sx-green); font-size: 32px; font-weight: 750; }
.sx-home-stats dd { margin: 4px 0 0; color: var(--sx-muted); font-size: 12px; }

.sx-home-journeys { padding: 100px 0 112px; background: var(--sx-paper); }
.sx-home-section-title { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.sx-home-section-title h2 { margin: 12px 0 0; font-size: 46px; font-weight: 740; line-height: 1.25; }
.sx-home-section-title > div > p:last-child { margin: 14px 0 0; color: var(--sx-muted); }
.sx-journey-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 24px; }
.sx-journey-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--sx-line); border-radius: 6px; background: #fff; transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.sx-journey-card:hover { border-color: #bdc9c1; box-shadow: var(--sx-shadow); transform: translateY(-4px); }
.sx-journey-card__image { position: relative; aspect-ratio: 1.38; overflow: hidden; border-radius: 5px 5px 0 0; background: var(--sx-sage); }
.sx-journey-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.sx-journey-card:hover .sx-journey-card__image img { transform: scale(1.035); }
.sx-journey-card__image > span { position: absolute; top: 14px; left: 14px; padding: 6px 9px; border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 999px; background: rgba(255, 255, 255, 0.9); color: var(--sx-ink); font-size: 10px; font-weight: 750; backdrop-filter: blur(8px); }
.sx-journey-card__body { display: flex; min-width: 0; flex: 1; flex-direction: column; padding: 22px; }
.sx-journey-card h2, .sx-journey-card h3 { margin: 0 0 10px; font-size: 25px; font-weight: 720; line-height: 1.38; }
.sx-journey-card__body > p { margin: 0 0 24px; color: var(--sx-muted); font-size: 14px; line-height: 1.75; }
.sx-journey-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--sx-line); color: var(--sx-muted); font-size: 11px; }
.sx-journey-card__footer strong { flex: 0 0 auto; color: var(--sx-green); }

.sx-home-service { padding: 100px 0; background: #fff; }
.sx-home-service header { display: grid; grid-template-columns: 0.6fr 1.4fr; align-items: end; margin-bottom: 48px; }
.sx-home-service h2 { max-width: 700px; margin: 0; font-size: 40px; font-weight: 730; }
.sx-home-service__list { border-top: 1px solid var(--sx-line); }
.sx-home-service__list article { display: grid; grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1fr); gap: 28px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--sx-line); }
.sx-home-service__list h3 { margin: 0; font-size: 21px; }
.sx-home-service__list p { max-width: 660px; margin: 0; color: var(--sx-muted); }

.sx-home-contact { padding: 84px 0; background: var(--sx-green-deep); color: #fff; }
.sx-home-contact__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.sx-home-contact h2 { margin: 10px 0 8px; font-size: 40px; }
.sx-home-contact p:last-child { max-width: 700px; margin: 0; color: rgba(255, 255, 255, 0.68); }
.sx-home-contact .sx-button { flex: 0 0 auto; }

/* Archive */
.sx-page-shell { min-height: 70vh; padding: 80px 0 120px; background: #fff; }
.sx-page-heading { margin-bottom: 42px; }
.sx-page-heading h1 { margin: 12px 0 0; font-size: 56px; font-weight: 750; line-height: 1.2; }
.sx-page-heading > p:last-child { max-width: 680px; margin: 16px 0 0; color: var(--sx-muted); font-size: 18px; }
.sx-error-page { display: grid; min-height: 70vh; padding: 80px 0 120px; background: var(--sx-paper); place-items: center; }
.sx-error-page__inner { text-align: center; }
.sx-error-page__code { margin: 0 0 12px; color: var(--sx-green); font-size: 96px; font-weight: 750; line-height: 1; }
.sx-error-page h1 { margin: 0; font-size: 40px; font-weight: 750; line-height: 1.3; }
.sx-error-page__inner > p:not(.sx-error-page__code) { max-width: 560px; margin: 18px auto 0; color: var(--sx-muted); font-size: 16px; }
.sx-error-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.sx-error-page__secondary { border-color: var(--sx-green); background: transparent; color: var(--sx-green); }
.sx-error-page__secondary:hover { background: var(--sx-green); color: #fff; }
.sx-catalog-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 34px; align-items: start; }
.sx-catalog-results { min-width: 0; }
.sx-product-filters { position: sticky; top: calc(var(--sx-header-height) + var(--sx-admin-offset) + 20px); display: grid; gap: 18px; padding: 20px; border: 1px solid var(--sx-line); border-radius: 6px; background: #fff; }
.sx-product-filters > header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--sx-line); }
.sx-product-filters > header strong { font-size: 18px; }
.sx-product-filters > header a { color: var(--sx-muted); font-size: 11px; text-decoration: underline; }
.sx-product-filters label { display: grid; min-width: 0; gap: 4px; }
.sx-product-filters label > span { margin-bottom: 4px; color: var(--sx-ink); font-size: 12px; font-weight: 700; }
.sx-product-filters input, .sx-product-filters select { width: 100%; height: 42px; border: 1px solid #cfd8d2; border-radius: 4px; background: #fff; color: var(--sx-ink); font-size: 13px; }
.sx-product-filters input { padding: 0 12px 0 38px; }
.sx-product-filters select { padding: 0 28px 0 10px; }
.sx-filter-search { position: relative; align-self: end; }
.sx-filter-search .sx-icon { position: absolute; z-index: 1; top: 50%; left: 12px; color: var(--sx-muted); transform: translateY(-50%); }
.sx-product-filters__actions { display: flex; align-items: center; gap: 12px; }
.sx-product-filters__actions .sx-button { width: 100%; min-height: 42px; padding-inline: 15px; }
.sx-product-filters__actions > a { color: var(--sx-muted); font-size: 12px; text-decoration: underline; }
.sx-results-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 0 22px; padding: 13px 16px; border: 1px solid #cfe3d8; border-radius: 6px; background: #edf7f1; }
.sx-results-heading > div { display: grid; gap: 2px; }
.sx-results-heading strong { font-size: 18px; }
.sx-results-heading span { color: var(--sx-muted); font-size: 12px; }
.sx-results-heading > a { flex: 0 0 auto; padding: 8px 12px; border-radius: 999px; background: var(--sx-green); color: #fff; font-size: 11px; font-weight: 700; }
.sx-archive-journeys .sx-journey-grid { margin-top: 0; }
.navigation.pagination { margin-top: 52px; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }
.page-numbers { display: grid; min-width: 40px; height: 40px; padding-inline: 10px; border: 1px solid var(--sx-line); border-radius: 4px; place-items: center; font-size: 12px; }
.page-numbers.current, .page-numbers:hover { border-color: var(--sx-green); background: var(--sx-green); color: #fff; }

/* Product gallery and first screen */
.sx-product-showcase { padding: 26px 0 84px; background: #fff; }
.sx-trip-hero__breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; color: var(--sx-muted); font-size: 12px; }
.sx-trip-hero__breadcrumb a:hover { color: var(--sx-orange); }
.sx-showcase-toolbar { display: flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.sx-showcase-toolbar > div:first-child { display: grid; min-width: 0; gap: 2px; }
.sx-showcase-code { color: var(--sx-ink); font-size: 11px; font-weight: 750; }
.sx-showcase-route { color: var(--sx-muted); font-size: 11px; }
.sx-showcase-toolbar__actions { display: flex; flex: 0 0 auto; align-items: center; gap: 14px; }
.sx-product-switcher { position: relative; }
.sx-product-switcher summary { min-height: 38px; padding: 10px 13px; border: 1px solid var(--sx-line); border-radius: 4px; background: #fff; color: var(--sx-ink); font-size: 11px; font-weight: 700; line-height: 1; list-style: none; cursor: pointer; }
.sx-product-switcher summary::-webkit-details-marker { display: none; }
.sx-product-switcher summary::after { display: inline-block; margin-left: 8px; content: "⌄"; transition: transform 160ms ease; }
.sx-product-switcher[open] summary { border-color: var(--sx-green); color: var(--sx-green); }
.sx-product-switcher[open] summary::after { transform: rotate(180deg); }
.sx-product-switcher__menu { position: absolute; z-index: 40; top: calc(100% + 8px); right: 0; display: grid; width: min(360px, calc(100vw - 32px)); max-height: 420px; padding: 7px; overflow-y: auto; border: 1px solid var(--sx-line); border-radius: 6px; background: #fff; box-shadow: var(--sx-shadow); }
.sx-product-switcher__menu a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 12px; border-radius: 4px; color: var(--sx-ink-soft); font-size: 12px; line-height: 1.5; }
.sx-product-switcher__menu a:hover { background: var(--sx-paper); color: var(--sx-green); }
.sx-product-switcher__menu a[aria-current="page"] { background: #eaf2ed; color: var(--sx-green); font-weight: 700; }
.sx-product-switcher__menu small { flex: 0 0 auto; color: var(--sx-muted); font-size: 9px; }
.sx-product-switcher__menu .sx-product-switcher__all { margin-bottom: 4px; border-bottom: 1px solid var(--sx-line); border-radius: 4px 4px 0 0; color: var(--sx-orange); font-weight: 700; }
.sx-currency { color: var(--sx-muted); font-size: 11px; font-weight: 700; }

.sx-product-gallery { min-width: 0; }
.sx-showcase-media { display: grid; height: 560px; grid-template-columns: minmax(0, 1.9fr) minmax(250px, 1fr); grid-template-rows: minmax(0, 1fr); gap: 8px; overflow: hidden; }
.sx-product-gallery__main { position: relative; min-width: 0; min-height: 0; margin: 0; overflow: hidden; border-radius: 5px 0 0 5px; background: var(--sx-paper); }
.sx-product-gallery__main img, .sx-showcase-media__side img { width: 100%; height: 100%; object-fit: cover; }
.sx-product-gallery__main img { transition: opacity 160ms ease; }
.sx-product-gallery__main.is-changing img { opacity: 0.25; }
.sx-gallery-count { position: absolute; right: 14px; bottom: 14px; padding: 6px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.9); color: var(--sx-ink); font-size: 10px; font-weight: 700; backdrop-filter: blur(8px); }
.sx-showcase-media__side { display: grid; min-width: 0; min-height: 0; grid-template-rows: minmax(0, 1fr) minmax(0, 1fr); gap: 8px; overflow: hidden; }
.sx-showcase-media__side button { min-width: 0; min-height: 0; padding: 0; overflow: hidden; border: 0; background: var(--sx-paper); cursor: pointer; }
.sx-showcase-media__side button:first-child { border-radius: 0 5px 0 0; }
.sx-showcase-media__side button:last-child { border-radius: 0 0 5px 0; }
.sx-showcase-media__side img { transition: transform 280ms ease, filter 180ms ease; }
.sx-showcase-media__side button:hover img { filter: brightness(1.04); transform: scale(1.025); }

/* Keep the established brand system while removing decorative UI effects. */
.sx-header,
.sx-journey-card__image > span,
.sx-gallery-count {
  backdrop-filter: none;
}

.sx-header__cta:hover,
.sx-contact-button:hover,
.sx-button:hover,
.sx-journey-card:hover,
.sx-showcase-media__side button:hover img {
  transform: none;
}

.sx-journey-card:hover {
  box-shadow: none;
}

.sx-journey-card__image img,
.sx-showcase-media__side img {
  transition-duration: 180ms;
}

.sx-journey-card__image > span,
.sx-gallery-count,
.sx-results-heading > a {
  border-radius: 4px;
}

.sx-showcase-thumbs { display: none; gap: 8px; margin-top: 8px; overflow-x: auto; scrollbar-width: thin; }
.sx-showcase-thumbs.has-many { display: flex; }
.sx-showcase-thumbs button { width: 90px; height: 62px; flex: 0 0 auto; padding: 2px; overflow: hidden; border: 2px solid transparent; border-radius: 4px; background: transparent; cursor: pointer; }
.sx-showcase-thumbs button.is-active { border-color: var(--sx-orange); }
.sx-showcase-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.sx-showcase-details { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr); gap: 64px; align-items: start; margin-top: 42px; }
.sx-showcase-product { min-width: 0; }
.sx-product-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.sx-product-tags span { padding: 5px 9px; border-radius: 999px; background: #eaf2ed; color: var(--sx-green); font-size: 10px; font-weight: 750; }
.sx-showcase-product__line { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; color: var(--sx-muted); font-size: 16px; font-weight: 650; }
.sx-showcase-product h1 { max-width: 760px; margin: 8px 0 16px; color: #111; font-size: clamp(38px, 3.1vw, 48px); font-weight: 780; line-height: 1.16; }
.sx-showcase-product__subtitle { max-width: 720px; margin: 0; color: var(--sx-ink-soft); font-size: 17px; font-weight: 600; line-height: 1.8; }
.sx-showcase-points { display: grid; gap: 10px; margin: 24px 0 0; padding: 20px 0; border-block: 1px solid var(--sx-line); list-style: none; }
.sx-showcase-points li { display: flex; align-items: flex-start; gap: 10px; color: var(--sx-ink-soft); font-size: 13px; }
.sx-showcase-points .sx-icon { width: 16px; margin-top: 3px; color: var(--sx-orange); }
.sx-showcase-facts { display: grid; gap: 8px; margin: 20px 0 0; }
.sx-showcase-facts > div { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 12px; font-size: 13px; }
.sx-showcase-facts dt { color: var(--sx-muted); }
.sx-showcase-facts dd { margin: 0; color: var(--sx-ink); font-weight: 650; }
.sx-inline-fact-list { display: grid; gap: 3px; margin: 0; padding: 0; list-style: none; }
.sx-inline-fact-list li { min-width: 0; }
.sx-showcase-rating { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 24px; border-top: 1px solid var(--sx-line); }
.sx-showcase-rating > div { display: grid; gap: 1px; padding: 17px 16px 0 0; }
.sx-showcase-rating strong { color: var(--sx-orange-dark); font-size: 20px; }
.sx-showcase-rating span { color: var(--sx-muted); font-size: 10px; }

.sx-showcase-departures { overflow: hidden; border: 1px solid var(--sx-line); border-radius: 6px; background: #fff; box-shadow: var(--sx-shadow); }
.sx-showcase-calendar { border: 0; background: transparent; box-shadow: none; }
.sx-showcase-calendar .sx-departure-calendar { border-color: #e4e7e5; border-radius: 3px; box-shadow: 0 16px 38px rgba(14, 35, 28, 0.08); }
.sx-showcase-calendar .sx-calendar-header { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.sx-showcase-calendar .sx-calendar-tabs { display: flex; gap: 0; padding: 12px 16px 0; overflow-x: auto; border-bottom: 1px solid #e8ece9; scrollbar-width: none; }
.sx-showcase-calendar .sx-calendar-tabs::-webkit-scrollbar { display: none; }
.sx-showcase-calendar .sx-calendar-tabs button { min-width: 116px; min-height: 58px; flex: 1 0 116px; justify-items: center; padding: 8px 9px 10px; border: 0; border-bottom: 2px solid transparent; border-radius: 0; background: transparent; color: #69766f; text-align: center; }
.sx-showcase-calendar .sx-calendar-tabs button:hover { border-bottom-color: #8eb8d7; color: #216d9f; }
.sx-showcase-calendar .sx-calendar-tabs button[aria-selected="true"] { border-color: #2b82bd; background: transparent; color: #216d9f; }
.sx-showcase-calendar .sx-calendar-tabs button strong { font-size: 14px; }
.sx-showcase-calendar .sx-calendar-tabs button small { color: #9aa39f; font-size: 10px; opacity: 1; }
.sx-showcase-calendar .sx-calendar-panel { padding: 0 14px 14px; border-top: 0; }
.sx-calendar-month-title { margin: 18px 0 10px; color: var(--sx-ink); font-size: 15px; font-weight: 750; text-align: center; }
.sx-showcase-calendar .sx-calendar-grid th { height: 36px; border: 0; background: #fff; color: #596760; font-size: 11px; }
.sx-showcase-calendar .sx-calendar-grid td,
.sx-showcase-calendar .sx-calendar-grid td.is-outside,
.sx-showcase-calendar .sx-calendar-grid td.has-departure { border: 0; background: #fff; box-shadow: none; }
.sx-showcase-calendar .sx-calendar-day { display: flex; min-height: 72px; align-items: center; flex-direction: column; padding: 8px 2px 5px; }
.sx-showcase-calendar .sx-calendar-day > time { width: auto; height: auto; color: #aeb7b2; font-size: 13px; }
.sx-showcase-calendar .sx-calendar-grid td.has-departure .sx-calendar-day > time { border-radius: 0; background: transparent; color: #17669a; font-size: 16px; font-weight: 800; }
.sx-showcase-calendar .sx-calendar-fare { margin-top: 3px; padding-top: 0; border: 0; text-align: center; }
.sx-showcase-calendar .sx-calendar-fare dl { display: grid; gap: 1px; }
.sx-showcase-calendar .sx-calendar-fare dl > div { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.sx-showcase-calendar .sx-calendar-fare dt { display: inline; color: #69766f; font-size: 9px; }
.sx-showcase-calendar .sx-calendar-fare dd > span { display: none; }
.sx-showcase-calendar .sx-calendar-fare dd { color: #185c87; font-size: 10px; font-weight: 700; line-height: 1.2; }
.sx-showcase-calendar .sx-calendar-fare .sx-availability { display: block; justify-self: auto; margin-top: 2px; padding: 0; overflow: visible; border: 0; border-radius: 0; background: transparent; color: #2a8a55; font-size: 10px; line-height: 1.2; text-overflow: clip; }
.sx-showcase-calendar .sx-calendar-label-full,
.sx-showcase-calendar .sx-calendar-status-full { display: none; }
.sx-showcase-calendar .sx-calendar-label-short,
.sx-showcase-calendar .sx-calendar-status-short { display: inline; }
.sx-showcase-calendar .sx-calendar-legend { display: none; }
#dates > .sx-departure-calendar { display: none; }
.sx-departures-note { display: flex; align-items: center; gap: 8px; padding: 11px 16px; background: #edf4ef; color: var(--sx-green); font-size: 11px; font-weight: 650; }
.sx-departures-note .sx-icon { width: 16px; }
.sx-showcase-departures__heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; padding: 19px 18px 12px; }
.sx-showcase-departures__heading > div > span { color: var(--sx-muted); font-size: 8px; font-weight: 750; }
.sx-showcase-departures__heading h2 { margin: 3px 0 0; font-size: 23px; line-height: 1.25; }
.sx-showcase-departures__heading > small { color: var(--sx-muted); font-size: 9px; }
.sx-departure-list { display: grid; padding: 0 10px; }
.sx-home-departure { display: grid; grid-template-columns: 1.25fr 0.9fr 0.9fr auto; align-items: center; gap: 10px; min-height: 72px; padding: 11px 8px; border-top: 1px solid var(--sx-line); }
.sx-home-departure:nth-child(even) { background: #fafbfa; }
.sx-home-departure time, .sx-home-departure > div { display: grid; gap: 1px; }
.sx-home-departure time strong { font-size: 16px; }
.sx-home-departure time span, .sx-home-departure small { color: var(--sx-muted); font-size: 9px; }
.sx-home-departure > div strong { font-size: 12px; }
.sx-availability { justify-self: end; padding: 4px 7px; border: 1px solid #bdd8c8; border-radius: 999px; background: #eef7f1; color: var(--sx-green); font-size: 9px; font-weight: 750; white-space: nowrap; }
.sx-availability.is-low, .sx-availability.is-waitlist { border-color: #f1cdbf; background: #fff2ed; color: var(--sx-orange-dark); }
.sx-availability.is-full, .sx-availability.is-closed { border-color: #d7dbd8; background: #f1f3f2; color: var(--sx-muted); }
.sx-showcase-departures__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 10px 18px 0; padding-top: 13px; border-top: 1px solid var(--sx-line); color: var(--sx-muted); font-size: 10px; }
.sx-showcase-departures__footer strong { color: var(--sx-ink); font-size: 12px; }
.sx-orange-button { display: flex; min-height: 45px; align-items: center; justify-content: center; gap: 9px; margin: 15px 18px 18px; border-radius: 4px; background: var(--sx-orange); color: #fff; font-size: 12px; font-weight: 750; }
.sx-orange-button:hover { background: var(--sx-orange-dark); }

/* Product content */
.sx-trip { background: var(--sx-paper); }
.sx-trip-nav { position: sticky; z-index: 80; top: calc(var(--sx-header-height) + var(--sx-admin-offset)); border-block: 1px solid var(--sx-line); background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(14px); }
.sx-trip-nav__inner { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 28px; }
.sx-trip-nav nav { display: flex; gap: 28px; overflow-x: auto; scrollbar-width: none; }
.sx-trip-nav nav::-webkit-scrollbar { display: none; }
.sx-trip-nav nav a { flex: 0 0 auto; color: var(--sx-muted); font-size: 12px; font-weight: 650; }
.sx-trip-nav nav a:hover, .sx-trip-nav nav a.is-active { color: var(--sx-orange-dark); }
.sx-trip-nav__dates { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 7px; color: var(--sx-green); font-size: 12px; font-weight: 750; }
.sx-trip-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 72px; align-items: start; padding-top: 78px; padding-bottom: 120px; }
.sx-trip-content { min-width: 0; }
.sx-section { padding: 0 0 100px; scroll-margin-top: 155px; }
.sx-section + .sx-section { padding-top: 8px; border-top: 1px solid var(--sx-line); }
.sx-section-heading { display: grid; grid-template-columns: 58px minmax(0, 1fr); margin-bottom: 36px; padding-top: 52px; }
.sx-overview .sx-section-heading { padding-top: 0; }
.sx-section-heading p { margin: 0 0 3px; color: var(--sx-muted); font-size: 9px; font-weight: 750; text-transform: uppercase; }
.sx-section-heading h2 { margin: 0; font-size: 38px; font-weight: 730; line-height: 1.3; }
.sx-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--sx-line); border-left: 1px solid var(--sx-line); background: #fff; }
.sx-facts > div { display: grid; min-width: 0; min-height: 102px; grid-template-columns: 40px minmax(0, 1fr); padding: 18px 20px; border-right: 1px solid var(--sx-line); border-bottom: 1px solid var(--sx-line); }
.sx-facts .sx-icon { grid-row: 1 / 3; align-self: center; width: 23px; height: 23px; color: var(--sx-orange); }
.sx-facts span { align-self: end; color: var(--sx-muted); font-size: 10px; }
.sx-facts strong { font-size: 15px; font-weight: 700; }
.sx-selling-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 30px; }
.sx-selling-point { min-height: 150px; padding: 22px; border: 1px solid var(--sx-line); border-radius: 5px; background: #fff; }
.sx-selling-point:nth-child(2) { background: #edf4ef; }
.sx-selling-point:nth-child(3) { border-color: var(--sx-green); background: var(--sx-green); color: #fff; }
.sx-selling-point p { margin: 27px 0 0; font-size: 17px; font-weight: 620; line-height: 1.65; }
.sx-prose { margin-top: 34px; color: var(--sx-ink-soft); font-size: 16px; line-height: 2; }
.sx-prose > :first-child { margin-top: 0; }
.sx-prose > :last-child { margin-bottom: 0; }
.sx-prose img { margin-block: 26px; border-radius: 5px; }

.sx-itinerary-days { position: relative; }
.sx-itinerary-days::before { position: absolute; top: 42px; bottom: 24px; left: 31px; width: 1px; background: #cbd5cf; content: ""; }
.sx-itinerary-day { position: relative; display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 0 22px; padding-bottom: 48px; }
.sx-itinerary-day > header { display: contents; }
.sx-itinerary-day > header > div:first-child { position: relative; z-index: 1; display: grid; width: 64px; height: 64px; border: 1px solid var(--sx-green); border-radius: 50%; background: var(--sx-paper); text-align: center; place-content: center; }
.sx-itinerary-day > header > div:first-child span { font-size: 7px; font-weight: 750; }
.sx-itinerary-day > header > div:first-child strong { margin-top: -2px; font-size: 21px; line-height: 1; }
.sx-itinerary-day > header > div:nth-child(2) { align-self: center; min-width: 0; }
.sx-itinerary-day > header small { color: var(--sx-muted); font-size: 9px; }
.sx-itinerary-day > header h3 { margin: 1px 0 0; font-size: 23px; font-weight: 700; }
.sx-itinerary-day__cards { grid-column: 2; display: grid; gap: 9px; margin-top: 18px; }
.sx-itinerary-card { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 13px; padding: 17px; border: 1px solid var(--sx-line); border-radius: 5px; background: #fff; font-family: var(--sx-sans); }
.sx-itinerary-card__icon { display: grid; width: 40px; height: 40px; border-radius: 50%; background: var(--sx-sage); color: var(--sx-green); place-items: center; }
.sx-itinerary-card__icon .sx-icon { width: 19px; height: 19px; }
.sx-itinerary-card__body { min-width: 0; }
.sx-itinerary-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--sx-muted); font-size: 9px; font-weight: 750; }
.sx-itinerary-card__meta time { color: var(--sx-muted); }
.sx-itinerary-card h4 { margin: 4px 0 3px; font-size: 17px; font-weight: 700; }
.sx-itinerary-card p { margin: 0; color: var(--sx-muted); font-size: 12px; line-height: 1.75; }
.sx-itinerary-route { display: grid; grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr); gap: 10px; align-items: center; margin-top: 11px; padding: 11px 12px; background: var(--sx-paper); }
.sx-itinerary-route > div { display: grid; min-width: 0; gap: 2px; }
.sx-itinerary-route > div:last-child { text-align: right; }
.sx-itinerary-route span { color: var(--sx-muted); font-size: 8px; }
.sx-itinerary-route strong { min-width: 0; font-size: 11px; font-weight: 680; }
.sx-itinerary-route .sx-icon { width: 17px; color: var(--sx-orange); }
.sx-itinerary-entries { margin-top: 10px; border-top: 1px solid var(--sx-line); }
.sx-itinerary-entry { padding: 13px 0 2px; }
.sx-itinerary-entry + .sx-itinerary-entry { margin-top: 9px; border-top: 1px solid var(--sx-line); }
.sx-itinerary-entry > header, .sx-place-entry__body > header { display: flex; min-width: 0; align-items: flex-start; gap: 9px; }
.sx-itinerary-entry header > div, .sx-place-entry__body { min-width: 0; }
.sx-itinerary-entry header > div { display: grid; gap: 1px; }
.sx-itinerary-entry header small { color: var(--sx-muted); font-size: 8px; font-weight: 700; }
.sx-itinerary-entry header strong { font-size: 13px; line-height: 1.45; }
.sx-itinerary-entry > p, .sx-place-entry__body > p { margin-top: 8px; }
.sx-itinerary-entry__facts, .sx-place-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.sx-itinerary-entry__facts span, .sx-place-tags span { padding: 3px 7px; border-radius: 999px; background: #edf4ef; color: var(--sx-green); font-size: 8px; font-weight: 620; }
.sx-place-entry + .sx-place-entry { margin-top: 0; border-top: 0; }
.sx-place-entry.has-image { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 13px; }
.sx-place-entry figure { aspect-ratio: 1.25; min-width: 0; margin: 0; overflow: hidden; border-radius: 4px; background: var(--sx-paper); }
.sx-place-entry figure img { width: 100%; height: 100%; object-fit: cover; }
.sx-place-entry address { display: flex; align-items: flex-start; gap: 5px; margin-top: 7px; color: var(--sx-muted); font-size: 9px; font-style: normal; }
.sx-place-entry address .sx-icon { width: 12px; margin-top: 2px; color: var(--sx-orange); }
.sx-place-tags span { background: var(--sx-paper); color: var(--sx-muted); }
.sx-itinerary-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.sx-itinerary-card__tags span { padding: 3px 7px; border-radius: 999px; background: var(--sx-paper); color: var(--sx-muted); font-size: 9px; }
.sx-itinerary-card--flight .sx-itinerary-card__icon { background: #dce9ef; }
.sx-itinerary-card--meal .sx-itinerary-card__icon { background: #f7e7dc; }
.sx-itinerary-card--hotel .sx-itinerary-card__icon { background: #e9e1ef; }

.sx-departure-calendar { overflow: hidden; border: 1px solid var(--sx-line); border-radius: 5px; background: #fff; }
.sx-calendar-header { display: flex; min-width: 0; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 22px 24px 18px; }
.sx-calendar-header p { margin: 0 0 2px; color: var(--sx-muted); font-size: 8px; font-weight: 750; }
.sx-calendar-header h3 { margin: 0; font-size: 23px; font-weight: 720; line-height: 1.3; }
.sx-calendar-header > span { flex: 0 0 auto; color: var(--sx-muted); font-size: 9px; }
.sx-calendar-tabs { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 6px; padding: 0 12px 12px; }
.sx-calendar-tabs button { display: grid; min-width: 0; min-height: 58px; gap: 1px; padding: 9px 12px; border: 1px solid var(--sx-line); border-radius: 4px; background: #f7f9f7; color: var(--sx-muted); cursor: pointer; text-align: left; }
.sx-calendar-tabs button:hover { border-color: #a9beb1; color: var(--sx-green); }
.sx-calendar-tabs button[aria-selected="true"] { border-color: var(--sx-green); background: var(--sx-green); color: #fff; }
.sx-calendar-tabs button strong { font-size: 13px; font-weight: 720; }
.sx-calendar-tabs button small { color: inherit; font-size: 8px; opacity: 0.76; }
.sx-calendar-panel { border-top: 1px solid var(--sx-line); outline-offset: -3px; }
.sx-calendar-panel[hidden] { display: none; }
.sx-calendar-grid { width: 100%; table-layout: fixed; border-spacing: 0; border-collapse: separate; }
.sx-calendar-grid th { height: 34px; padding: 5px 2px; border-right: 1px solid var(--sx-line); border-bottom: 1px solid var(--sx-line); background: #edf3ef; color: var(--sx-muted); font-size: 9px; font-weight: 700; text-align: center; }
.sx-calendar-grid th:last-child { border-right: 0; }
.sx-calendar-grid abbr { text-decoration: none; }
.sx-calendar-grid td { width: 14.285%; padding: 0; border-right: 1px solid var(--sx-line); border-bottom: 1px solid var(--sx-line); background: #fafbfa; vertical-align: top; }
.sx-calendar-grid tr:last-child td { border-bottom: 0; }
.sx-calendar-grid td:last-child { border-right: 0; }
.sx-calendar-grid td.is-outside { background: #f1f4f2; }
.sx-calendar-grid td.has-departure { background: #fff; box-shadow: inset 0 3px 0 var(--sx-orange); }
.sx-calendar-day { min-width: 0; min-height: 68px; padding: 8px; }
.sx-calendar-day > time { display: grid; width: 25px; height: 25px; color: var(--sx-muted); font-size: 11px; font-weight: 700; line-height: 1; place-items: center; }
.sx-calendar-grid td.has-departure .sx-calendar-day > time { border-radius: 50%; background: var(--sx-green); color: #fff; }
.sx-calendar-fare { min-width: 0; margin-top: 8px; padding-top: 7px; border-top: 1px solid var(--sx-line); }
.sx-calendar-fare + .sx-calendar-fare { margin-top: 10px; }
.sx-calendar-fare dl { display: grid; gap: 5px; margin: 0; }
.sx-calendar-fare dl > div { display: grid; min-width: 0; gap: 1px; }
.sx-calendar-fare dt { color: var(--sx-muted); font-size: 8px; line-height: 1.25; }
.sx-calendar-fare dd { min-width: 0; margin: 0; color: var(--sx-ink); font-size: 11px; font-variant-numeric: tabular-nums; font-weight: 720; line-height: 1.3; white-space: nowrap; }
.sx-calendar-fare dd strong { font: inherit; }
.sx-calendar-fare dd > span { margin-right: 1px; font-size: 0.76em; }
.sx-calendar-fare .sx-availability { display: inline-flex; max-width: 100%; justify-self: start; margin-top: 7px; overflow: hidden; text-overflow: ellipsis; }
.sx-calendar-label-short, .sx-calendar-status-short { display: none; }
.sx-calendar-legend { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 13px 18px; border-top: 1px solid var(--sx-line); background: #f8faf8; color: var(--sx-muted); font-size: 9px; }
.sx-calendar-legend > span { display: inline-flex; align-items: center; gap: 7px; }
.sx-calendar-legend .sx-availability { display: inline-flex; justify-self: auto; font-style: normal; }
.sx-departure-details { margin-top: 14px; border: 1px solid var(--sx-line); border-radius: 5px; background: #fff; }
.sx-departure-details > summary { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 18px; cursor: pointer; list-style: none; font-size: 14px; font-weight: 700; }
.sx-departure-details > summary::-webkit-details-marker { display: none; }
.sx-departure-details > summary > span { display: flex; align-items: center; gap: 9px; }
.sx-departure-details > summary small { color: var(--sx-muted); font-size: 9px; font-weight: 600; }
.sx-departure-details > summary .sx-icon { transition: transform 180ms ease; }
.sx-departure-details[open] > summary .sx-icon { transform: rotate(90deg); }
.sx-departure-details .sx-departures { border: 0; border-top: 1px solid var(--sx-line); border-radius: 0; }

.sx-departures { display: grid; border: 1px solid var(--sx-line); border-radius: 5px; background: #fff; }
.sx-departures__labels { display: grid; grid-template-columns: 1.25fr 0.8fr 0.8fr auto; gap: 18px; padding: 11px 18px; border-bottom: 1px solid var(--sx-line); background: #eef3f0; color: var(--sx-muted); font-size: 9px; font-weight: 700; }
.sx-departures__labels span:last-child { text-align: right; }
.sx-departure { display: grid; grid-template-columns: 1.25fr 0.8fr 0.8fr auto; min-height: 84px; align-items: center; gap: 18px; padding: 14px 18px; border-bottom: 1px solid var(--sx-line); }
.sx-departure:last-child { border-bottom: 0; }
.sx-departure time, .sx-departure > div { display: grid; }
.sx-departure time strong { font-size: 16px; }
.sx-departure time span, .sx-departure > div span { color: var(--sx-muted); font-size: 9px; }
.sx-departure > div strong { font-size: 14px; }
.sx-departure .sx-availability { font-style: normal; }
.sx-section-note { margin: 12px 0 0; color: var(--sx-muted); font-size: 10px; }

.sx-terms { border-top: 1px solid var(--sx-line); }
.sx-terms details { border-bottom: 1px solid var(--sx-line); }
.sx-terms summary { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 700; }
.sx-terms summary::-webkit-details-marker { display: none; }
.sx-terms summary span { display: flex; align-items: center; gap: 10px; }
.sx-terms summary small { color: var(--sx-muted); font-size: 9px; font-weight: 600; }
.sx-terms summary .sx-icon { transition: transform 180ms ease; }
.sx-terms details[open] summary .sx-icon { transform: rotate(90deg); }
.sx-terms ul { display: grid; gap: 10px; margin: -1px 0 24px; padding: 0; list-style: none; }
.sx-terms li { display: flex; align-items: flex-start; gap: 10px; color: var(--sx-ink-soft); font-size: 13px; }
.sx-terms li .sx-icon { width: 15px; height: 15px; margin-top: 4px; color: var(--sx-orange); }

.sx-review-summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px; border: 1px solid #cddcd3; border-radius: 5px; background: #eaf2ed; }
.sx-review-summary > div { display: flex; align-items: end; gap: 12px; }
.sx-review-summary > div > strong { font-size: 52px; font-weight: 740; line-height: 0.9; }
.sx-review-summary > div > span { display: flex; align-items: center; gap: 4px; color: var(--sx-muted); font-size: 11px; }
.sx-review-summary .sx-icon { fill: var(--sx-orange); color: var(--sx-orange); }
.sx-review-summary dl { display: flex; gap: 36px; margin: 0; }
.sx-review-summary dl div { display: grid; text-align: right; }
.sx-review-summary dt { font-size: 20px; font-weight: 750; }
.sx-review-summary dd { margin: 0; color: var(--sx-muted); font-size: 9px; }
.sx-review-list { display: grid; margin-top: 16px; border-top: 1px solid var(--sx-line); }
.sx-review { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; padding: 22px 2px; border-bottom: 1px solid var(--sx-line); }
.sx-review__avatar { display: grid; width: 42px; height: 42px; border-radius: 50%; background: var(--sx-green); color: #fff; font-size: 13px; font-weight: 750; place-items: center; }
.sx-review__body { min-width: 0; }
.sx-review__body header { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.sx-review__body header strong { font-size: 13px; }
.sx-review__body time { flex: 0 0 auto; color: var(--sx-muted); font-size: 10px; }
.sx-review__content { margin-top: 7px; color: var(--sx-muted); font-size: 13px; line-height: 1.8; }
.sx-review__content p { margin: 0; }
.sx-review-empty { margin: 16px 0 0; padding: 20px 0; border-top: 1px solid var(--sx-line); color: var(--sx-muted); }

.sx-product-summary { position: sticky; top: calc(var(--sx-header-height) + var(--sx-admin-offset) + 86px); padding: 25px; border: 1px solid var(--sx-line); border-radius: 6px; background: #fff; box-shadow: var(--sx-shadow); }
.sx-product-summary__eyebrow { padding-bottom: 16px; border-bottom: 1px solid var(--sx-line); color: var(--sx-muted); font-size: 9px; font-weight: 700; }
.sx-product-summary__price { display: flex; flex-wrap: wrap; align-items: baseline; margin: 20px 0; }
.sx-product-summary__price > span { width: 100%; color: var(--sx-muted); font-size: 10px; }
.sx-product-summary__price strong { color: var(--sx-orange-dark); font-size: 28px; }
.sx-product-summary__price small { margin-left: 4px; color: var(--sx-muted); font-size: 10px; }
.sx-product-summary__date { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 4px; background: var(--sx-paper); }
.sx-product-summary__date .sx-icon { color: var(--sx-orange); }
.sx-product-summary__date div { display: grid; }
.sx-product-summary__date span { color: var(--sx-muted); font-size: 8px; }
.sx-product-summary__date strong { font-size: 11px; }
.sx-product-summary ul { display: grid; gap: 8px; margin: 20px 0; padding: 0; list-style: none; color: var(--sx-muted); font-size: 11px; }
.sx-product-summary li { display: flex; align-items: center; gap: 7px; }
.sx-product-summary li .sx-icon { width: 14px; color: var(--sx-orange); }
.sx-product-summary .sx-button { width: 100%; margin-top: 5px; }
.sx-product-summary__foot { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--sx-line); color: var(--sx-muted); font-size: 9px; }
.sx-product-summary__foot strong { color: var(--sx-ink); }

/* Generic content and footer */
.sx-empty-public { display: grid; grid-column: 1 / -1; gap: 5px; padding: 32px; border: 1px dashed #aebcb4; border-radius: 5px; background: #f2f6f3; color: var(--sx-muted); text-align: center; }
.sx-empty-public strong { color: var(--sx-ink); }
.sx-empty-public a { margin-top: 8px; color: var(--sx-orange-dark); font-weight: 700; }
.sx-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sx-post-card { overflow: hidden; border: 1px solid var(--sx-line); border-radius: 5px; background: #fff; }
.sx-post-card img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.sx-post-card div { padding: 22px; }
.sx-post-card h2 { font-size: 22px; }
.sx-post-card p { color: var(--sx-muted); font-size: 13px; }

.sx-footer { min-height: 0; padding: 92px 0 28px; background: #151515; color: #fff; }
.sx-footer > .sx-container { width: min(calc(100% - 144px), 1296px); }
.sx-footer__grid { display: grid; grid-template-columns: 1.35fr 0.9fr 0.65fr; gap: 80px; }
.sx-brand--light { color: #fff; }
.sx-brand--light .sx-brand__text small { color: rgba(255, 255, 255, 0.55); }
.sx-footer .sx-brand__mark { width: 58px; }
.sx-footer .sx-brand__text strong { color: #fff; font-size: 22px; }
.sx-footer__grid > div:first-child p { max-width: 390px; margin: 27px 0 0; color: #d1d1d1; font-size: 14px; line-height: 1.9; }
.sx-footer__label { display: block; margin-bottom: 16px; color: #9f9f9f; font-size: 10px; text-transform: uppercase; }
.sx-footer__contact { display: block; max-width: 100%; color: #fff; font-size: 20px; font-weight: 650; overflow-wrap: anywhere; }
.sx-footer__nav { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; color: #d1d1d1; font-size: 13px; }
.sx-footer__contact:hover, .sx-footer__nav a:hover { color: #ff5a1f; }
.sx-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 72px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.16); color: #8d8d8d; font-size: 10px; }
.sx-footer__filing { color: inherit; }
.sx-footer__filing:hover { color: #fff; }
.sx-reveal { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .sx-header__cta { display: none; }
  .sx-nav__list { gap: 24px; }
  .sx-journey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sx-showcase-media { height: 500px; }
  .sx-showcase-details { grid-template-columns: minmax(0, 1fr) minmax(370px, 0.9fr); gap: 40px; }
  .sx-trip-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 42px; }
  .sx-catalog-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 24px; }
}

@media (max-width: 900px) {
  .sx-container { width: min(calc(100% - 36px), var(--sx-container)); }
  .sx-nav-toggle { display: inline-grid; margin-left: auto; place-items: center; }
  .sx-nav {
    position: fixed;
    top: calc(var(--sx-header-height) + var(--sx-admin-offset));
    right: 16px;
    left: 16px;
    display: none;
    margin: 0;
    padding: 22px;
    border: 1px solid var(--sx-line);
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--sx-shadow);
  }
  .sx-nav.is-open { display: block; }
  .sx-nav__list { align-items: stretch; flex-direction: column; gap: 8px; }
  .sx-nav__list a { padding: 9px 2px; }
  .sx-nav__account { min-height: 44px; padding: 9px 2px; border-top: 1px solid var(--sx-line); }
  body.sx-nav-open { overflow: hidden; }
  .sx-home-hero h1 { font-size: 56px; }
  .sx-home-intro__grid { grid-template-columns: 1fr; gap: 36px; }
  .sx-home-service header { grid-template-columns: 1fr; gap: 12px; }
  .sx-showcase-media { height: 450px; grid-template-columns: minmax(0, 1.65fr) minmax(220px, 1fr); }
  .sx-showcase-details { grid-template-columns: 1fr; }
  .sx-showcase-calendar { display: none; }
  #dates > .sx-departure-calendar { display: block; }
  .sx-catalog-layout { grid-template-columns: 1fr; }
  .sx-product-filters { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sx-product-filters > header,
  .sx-product-filters__actions { grid-column: 1 / -1; }
  .sx-trip-layout { grid-template-columns: 1fr; padding-top: 62px; }
  .sx-product-summary { position: relative; top: auto; }
  .sx-selling-points { grid-template-columns: 1fr; }
  .sx-selling-point { min-height: 120px; }
  .sx-selling-point p { margin-top: 18px; }
  .sx-post-grid { grid-template-columns: repeat(2, 1fr); }
  .sx-footer__grid { grid-template-columns: 1fr 1fr; gap: 54px; }
  .sx-footer__grid nav { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  body.admin-bar { --sx-admin-offset: 46px; }
}

@media (max-width: 700px) {
  .sx-container { width: min(calc(100% - 28px), var(--sx-container)); }
  .sx-brand__text strong { font-size: 18px; }
  .sx-home-hero { height: calc(100svh - 106px); min-height: 540px; }
  .sx-home-hero::before { background: linear-gradient(90deg, rgba(8, 43, 31, 0.91), rgba(8, 43, 31, 0.54)); }
  .sx-home-hero h1 { font-size: 42px; }
  .sx-home-hero__lead { font-size: 15px; line-height: 1.8; }
  .sx-home-hero__actions { margin-top: 26px; }
  .sx-home-hero__route { right: 14px; bottom: 22px; width: 70vw; }
  .sx-home-intro, .sx-home-journeys, .sx-home-service { padding: 72px 0; }
  .sx-home-intro h2, .sx-home-section-title h2, .sx-home-service h2, .sx-home-contact h2 { font-size: 32px; }
  .sx-home-intro__copy > p { font-size: 17px; }
  .sx-home-stats { gap: 12px; }
  .sx-home-stats dt { font-size: 26px; }
  .sx-home-section-title { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .sx-journey-grid { grid-template-columns: 1fr; }
  .sx-home-service__list article { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .sx-home-service__list p { grid-column: auto; }
  .sx-home-contact { padding: 64px 0; }
  .sx-home-contact__inner { align-items: flex-start; flex-direction: column; gap: 28px; }
  .sx-page-shell { padding: 60px 0 90px; }
  .sx-page-heading h1 { font-size: 42px; }
  .sx-error-page { min-height: 62vh; padding: 64px 0 90px; }
  .sx-error-page__code { font-size: 72px; }
  .sx-error-page h1 { font-size: 32px; }
  .sx-product-filters { grid-template-columns: 1fr; padding: 13px; }
  .sx-product-filters > header,
  .sx-product-filters__actions { grid-column: auto; }
  .sx-product-filters__actions { justify-content: space-between; }
  .sx-results-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .sx-product-showcase { padding-top: 14px; }
  .sx-showcase-toolbar { flex-wrap: wrap; align-items: flex-start; }
  .sx-showcase-route { display: none; }
  .sx-showcase-toolbar__actions { width: 100%; justify-content: space-between; gap: 8px; }
  .sx-product-switcher__menu { right: auto; left: 0; }
  .sx-currency { max-width: 74px; line-height: 1.3; text-align: right; }
  .sx-contact-button { min-height: 38px; padding-inline: 12px; font-size: 11px; }
  .sx-showcase-media { display: block; height: auto; }
  .sx-product-gallery__main { aspect-ratio: 1.18; border-radius: 5px; }
  .sx-showcase-media__side { display: none; }
  .sx-showcase-thumbs, .sx-showcase-thumbs.has-many { display: flex; }
  .sx-showcase-thumbs button { width: 76px; height: 54px; }
  .sx-showcase-details { gap: 34px; margin-top: 30px; }
  .sx-showcase-product h1 { font-size: 35px; }
  .sx-showcase-product__subtitle { font-size: 15px; }
  .sx-showcase-rating { gap: 8px; }
  .sx-showcase-rating > div { padding-right: 4px; }
  .sx-home-departure { grid-template-columns: 1fr 1fr; gap: 9px 12px; padding: 12px 8px; }
  .sx-home-departure time { grid-column: 1 / -1; grid-template-columns: auto 1fr; align-items: baseline; gap: 8px; }
  .sx-home-departure .sx-availability { grid-column: 1 / -1; grid-row: 3; justify-self: start; }
  .sx-trip-nav__inner { min-height: 56px; }
  .sx-trip-nav nav { gap: 20px; }
  .sx-trip-nav__dates { display: none; }
  .sx-trip-layout { gap: 60px; padding-top: 46px; padding-bottom: 90px; }
  .sx-section { padding-bottom: 78px; }
  .sx-section-heading { grid-template-columns: 42px minmax(0, 1fr); margin-bottom: 28px; padding-top: 40px; }
  .sx-section-heading h2 { font-size: 30px; }
  .sx-facts { grid-template-columns: 1fr; }
  .sx-itinerary-days::before { left: 24px; }
  .sx-itinerary-day { grid-template-columns: 49px minmax(0, 1fr); gap: 0 13px; padding-bottom: 40px; }
  .sx-itinerary-day > header > div:first-child { width: 49px; height: 49px; }
  .sx-itinerary-day > header > div:first-child strong { font-size: 17px; }
  .sx-itinerary-day > header h3 { font-size: 18px; }
  .sx-itinerary-card { grid-template-columns: 36px minmax(0, 1fr); padding: 14px; }
  .sx-itinerary-card__icon { width: 34px; height: 34px; }
  .sx-itinerary-card__meta { align-items: flex-start; flex-direction: column; gap: 2px; }
  .sx-itinerary-route { grid-template-columns: 1fr; }
  .sx-itinerary-route > div:last-child { text-align: left; }
  .sx-itinerary-route .sx-icon { transform: rotate(90deg); }
  .sx-place-entry.has-image { grid-template-columns: 1fr; }
  .sx-place-entry figure { aspect-ratio: 1.8; }
  .sx-calendar-header { padding: 18px 16px 14px; }
  .sx-calendar-tabs { padding-inline: 8px; }
  .sx-calendar-day { padding: 6px; }
  .sx-calendar-legend { display: grid; grid-template-columns: 1fr; gap: 7px; }
  .sx-departures__labels { display: none; }
  .sx-departure { grid-template-columns: 1fr 1fr; gap: 12px; min-height: 0; padding: 16px; }
  .sx-departure time { grid-column: 1 / -1; grid-template-columns: auto 1fr; align-items: baseline; gap: 8px; }
  .sx-departure .sx-availability { justify-self: start; }
  .sx-review-summary { align-items: flex-start; flex-direction: column; padding: 22px; }
  .sx-review-summary dl { width: 100%; justify-content: space-between; }
  .sx-review-summary dl div { text-align: left; }
  .sx-review__body header { align-items: flex-start; flex-direction: column; gap: 2px; }
  .sx-post-grid { grid-template-columns: 1fr; }
  .sx-footer { min-height: 560px; padding: 72px 0 28px; }
  .sx-footer > .sx-container { width: calc(100% - 40px); }
  .sx-footer__grid { grid-template-columns: 1fr; gap: 46px; }
  .sx-footer__grid nav { grid-column: auto; }
  .sx-footer__contact { font-size: 18px; }
  .sx-footer__bottom { align-items: flex-start; flex-direction: column; gap: 7px; margin-top: 58px; }
}

@media (max-width: 480px) {
  .sx-error-page__actions { align-items: stretch; flex-direction: column; }
  .sx-error-page__actions .sx-button { width: 100%; }
  .sx-home-hero__actions { align-items: stretch; flex-direction: column; }
  .sx-home-hero__actions .sx-button { width: 100%; }
  .sx-home-stats { grid-template-columns: 1fr 1fr; }
  .sx-home-stats > div:last-child { grid-column: 1 / -1; }
  .sx-showcase-toolbar__actions .sx-currency { display: none; }
  .sx-showcase-facts > div { grid-template-columns: 76px minmax(0, 1fr); }
  .sx-showcase-rating strong { font-size: 17px; }
  .sx-product-summary { padding: 21px; }
  .sx-calendar-header { align-items: flex-start; padding: 15px 12px 12px; }
  .sx-calendar-header h3 { font-size: 20px; }
  .sx-calendar-header > span { max-width: 76px; line-height: 1.35; text-align: right; }
  .sx-calendar-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; padding: 0 6px 8px; }
  .sx-calendar-tabs button { min-height: 48px; padding: 6px 8px; }
  .sx-calendar-tabs button strong { font-size: 11px; }
  .sx-calendar-grid th { height: 28px; padding-inline: 0; font-size: 8px; }
  .sx-calendar-day { min-height: 44px; padding: 4px; }
  .sx-calendar-day > time { width: 20px; height: 20px; font-size: 9px; }
  .sx-calendar-fare { margin-top: 4px; padding-top: 4px; }
  .sx-calendar-fare + .sx-calendar-fare { margin-top: 5px; }
  .sx-calendar-fare dl { gap: 3px; }
  .sx-calendar-fare dt { font-size: 7px; }
  .sx-calendar-fare dd { display: grid; font-size: 9px; line-height: 1.08; white-space: normal; }
  .sx-calendar-fare dd > span { margin: 0; font-size: 7px; }
  .sx-calendar-fare .sx-availability { margin-top: 5px; padding: 2px 3px; font-size: 7px; line-height: 1.25; }
  .sx-calendar-label-full, .sx-calendar-status-full { display: none; }
  .sx-calendar-label-short, .sx-calendar-status-short { display: inline; }
  .sx-calendar-legend { padding: 11px 12px; }
  .sx-departure-details > summary { min-height: 52px; padding-inline: 14px; }
  .sx-review-summary dl { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Product detail reference layout. Archive and homepage selectors remain untouched. */
body.single-itineraries #main-content { padding: 0; }
body.single-itineraries { background: #fff; }

.sx-reference-product {
  --sx-ref-ink: #171916;
  --sx-ref-muted: #686b66;
  --sx-ref-line: #dedfd9;
  --sx-ref-soft: #f3f3ef;
  --sx-ref-accent: #2c7cc2;
  --sx-ref-action: #ff6b16;
  min-width: 0;
  overflow: clip;
  background: #fff;
  color: var(--sx-ref-ink);
  letter-spacing: 0;
}
.sx-reference-product [hidden] { display: none !important; }
.sx-reference-product *, .sx-reference-product *::before, .sx-reference-product *::after { box-sizing: border-box; }
.sx-reference-product button, .sx-reference-product input, .sx-reference-product select, .sx-reference-product textarea { font: inherit; letter-spacing: 0; }
.sx-reference-product button:focus-visible, .sx-reference-product a:focus-visible, .sx-reference-product input:focus-visible, .sx-reference-product select:focus-visible, .sx-reference-product textarea:focus-visible, .sx-reference-product summary:focus-visible { outline: 2px solid var(--sx-ref-accent); outline-offset: 3px; }
.sx-reference-content { width: min(1024px, calc(100% - 48px)); margin-inline: auto; }

.sx-reference-topbar { min-height: 82px; border-bottom: 1px solid #ecece8; background: #fff; }
.sx-reference-topbar > .sx-reference-content { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.sx-reference-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--sx-ref-ink); text-decoration: none; }
.sx-reference-brand img { width: 44px; height: 28px; object-fit: contain; }
.sx-reference-brand > span { display: flex; flex-direction: column; gap: 2px; }
.sx-reference-brand strong { font-size: 18px; font-weight: 730; line-height: 1; }
.sx-reference-brand small { color: #7c7f79; font-size: 7px; text-transform: uppercase; }
.sx-reference-breadcrumb { min-height: 66px; display: flex; align-items: center; gap: 10px; overflow: hidden; color: #888b85; font-size: 10px; white-space: nowrap; }
.sx-reference-breadcrumb a, .sx-reference-breadcrumb span { color: inherit; text-decoration: none; }
.sx-reference-breadcrumb span:last-child { min-width: 0; overflow: hidden; color: #4f524d; text-overflow: ellipsis; }

.sx-reference-stage { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(360px, 1fr); grid-template-rows: 440px auto auto auto; column-gap: 12px; padding-bottom: 76px; }
.sx-reference-gallery-main, .sx-reference-gallery-side { min-width: 0; overflow: hidden; background: #ecece7; }
.sx-reference-gallery-main > button, .sx-reference-gallery-side > button { width: 100%; height: 100%; position: relative; display: block; padding: 0; overflow: hidden; border: 0; background: transparent; cursor: pointer; }
.sx-reference-gallery-main img, .sx-reference-gallery-side img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 350ms ease; }
.sx-reference-gallery-main button:hover img, .sx-reference-gallery-side button:hover img { transform: scale(1.02); }
.sx-reference-gallery-main { position: relative; grid-column: 1; grid-row: 1; }
.sx-reference-gallery-side { grid-column: 2; grid-row: 1; display: grid; grid-template-rows: 1fr 1fr; gap: 10px; background: #fff; }
.sx-reference-gallery-side button span { position: absolute; right: 12px; bottom: 12px; padding: 6px 9px; border: 1px solid rgba(255,255,255,.55); border-radius: 3px; background: rgba(22,24,21,.62); color: #fff; font-size: 9px; }
.sx-reference-mobile-gallery { display: none; }

.sx-reference-product-info { min-width: 0; grid-column: 1; grid-row: 2; padding: 52px 44px 0 0; scroll-margin-top: 70px; }
.sx-reference-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 12px; color: #d1d1d1; font-size: 16px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.sx-reference-meta b { padding: 0; border: 0; color: #666; font-size: 25px; font-weight: 700; line-height: 1.1; text-transform: none; }
.sx-reference-product-info h1 { margin: 0; font-size: 48px; font-weight: 520; line-height: 1.13; overflow-wrap: anywhere; }
.sx-reference-product-info h1 span { display: block; }
.sx-reference-product-info h1 span:first-child { margin-bottom: 5px; color: #646762; font-size: 19px; font-weight: 520; }
.sx-reference-subtitle { max-width: 720px; margin: 20px 0 0; color: #555852; font-size: 15px; line-height: 1.65; }
.sx-reference-service-facts { display: grid; gap: 5px; margin: 25px 0 0; padding: 0; border: 0; }
.sx-reference-service-facts div { min-width: 0; display: flex; align-items: baseline; color: #272727; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 16px; line-height: 22.5px; }
.sx-reference-service-facts dt { flex: 0 0 auto; font-weight: 700; }
.sx-reference-service-facts dd { min-width: 0; margin: 0; font-weight: 400; overflow-wrap: anywhere; }
.sx-reference-rating-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 17px; margin-top: 18px; color: #70736d; font-size: 10px; }
.sx-reference-rating-row strong { color: var(--sx-ref-ink); font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 500; }

.sx-reference-calendar-card { min-width: 0; grid-column: 2; grid-row: 2 / 4; align-self: stretch; display: flex; flex-direction: column; margin-top: 44px; padding: 23px 24px 25px; border: 1px solid #e3e4df; border-radius: 6px; background: #fff; box-shadow: 0 5px 18px rgba(24,30,26,.09); scroll-margin-top: 70px; }
.sx-reference-calendar-card .sx-reference-calendar, .sx-reference-calendar-panel { min-height: 0; flex: 1; display: flex; flex-direction: column; }
.sx-reference-price { min-width: 0; display: flex; align-items: baseline; justify-content: flex-end; gap: 0; margin: 0; color: #111; font-family: Arial, "Helvetica Neue", sans-serif; white-space: nowrap; }
.sx-reference-price .sx-reference-price-currency { color: #111; font-size: 17px; font-weight: 700; line-height: 1; }
.sx-reference-price .sx-reference-price-amount { color: #1f557c; font-size: 34px; font-weight: 750; line-height: 1; }
.sx-reference-price small { margin-left: 6px; color: #111; font-size: 16px; font-weight: 400; line-height: 1; }
.sx-reference-month-tabs { display: flex; gap: 4px; margin-bottom: 10px; overflow-x: auto; scrollbar-width: none; }
.sx-reference-month-tabs::-webkit-scrollbar, .sx-reference-day-tabs::-webkit-scrollbar, .sx-reference-anchor-nav > div::-webkit-scrollbar { display: none; }
.sx-reference-month-tabs button { min-height: 31px; flex: 0 0 auto; padding: 5px 8px; border: 0; border-bottom: 1px solid transparent; background: transparent; color: #7c7f79; font-size: 9px; cursor: pointer; }
.sx-reference-month-tabs button[aria-selected="true"] { border-color: var(--sx-ref-accent); color: var(--sx-ref-ink); font-weight: 700; }
.sx-reference-calendar-weekdays, .sx-reference-calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 3px; }
.sx-reference-calendar-grid { flex: 1; grid-auto-rows: minmax(43px, 1fr); }
.sx-reference-calendar-weekdays { padding-bottom: 4px; color: #999c96; font-size: 8px; text-align: center; }
.sx-reference-calendar-grid > button, .sx-reference-calendar-grid > span { min-width: 0; min-height: 43px; height: 58px; align-self: center; }
.sx-reference-calendar-grid > button { display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 5px 1px 4px; border: 1px solid transparent; border-radius: 3px; background: #f5f5f1; color: var(--sx-ref-ink); cursor: pointer; }
.sx-reference-calendar-grid > button:hover:not(:disabled) { border-color: #acafa8; }
.sx-reference-calendar-grid > button.is-selected { border-color: var(--sx-ref-accent); background: #f3f8fc; }
.sx-reference-calendar-grid > button:disabled { opacity: .48; cursor: not-allowed; }
.sx-reference-calendar-grid > button span, .sx-reference-calendar-day b { font-size: 9px; font-weight: 500; }
.sx-reference-calendar-grid > button b { color: #8b8e88; font-size: 8px; font-weight: 600; line-height: 1.1; white-space: nowrap; }
.sx-reference-calendar-day { display: grid; place-items: start center; padding-top: 6px; color: #a0a29d; }

.sx-reference-guest-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 21px; padding-top: 17px; border-top: 1px solid var(--sx-ref-line); }
.sx-reference-guest-controls > div { display: grid; grid-template-columns: 1fr 27px 22px 27px; align-items: center; gap: 3px; }
.sx-reference-guest-controls span { grid-column: 1 / 5; margin-bottom: 5px; color: #7b7e78; font-size: 9px; }
.sx-reference-guest-controls button, .sx-reference-inquiry-dialog fieldset button { width: 27px; height: 27px; display: grid; place-items: center; padding: 0; border: 1px solid #cfd1cc; border-radius: 50%; background: #fff; color: var(--sx-ref-ink); cursor: pointer; }
.sx-reference-guest-controls button:disabled, .sx-reference-inquiry-dialog fieldset button:disabled { opacity: .35; cursor: not-allowed; }
.sx-reference-guest-controls b { text-align: center; font-size: 11px; }
.sx-reference-total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 21px; padding-top: 17px; border-top: 1px solid var(--sx-ref-line); }
.sx-reference-total span { color: #747771; font-size: 10px; }
.sx-reference-total b { font-size: 17px; }
.sx-reference-book-button, .sx-reference-submit { width: 100%; min-height: 51px; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; padding: 0 18px; border: 0; border-radius: 3px; background: var(--sx-ref-action); color: #fff; font-size: 13px; font-weight: 750; cursor: pointer; transition: background 180ms ease, transform 180ms ease; }
.sx-reference-book-button:hover, .sx-reference-submit:hover { background: #e95c0d; }
.sx-reference-book-button:hover { transform: translateY(-1px); }
.sx-reference-book-button span { font-size: inherit; font-weight: 750; }
.sx-reference-no-departure { padding: 22px 0; border-block: 1px solid var(--sx-ref-line); color: var(--sx-ref-muted); font-size: 11px; }

.sx-reference-floating-booking { width: min(1024px, calc(100% - 36px)); min-height: 116px; position: fixed; bottom: 18px; left: 50%; z-index: 70; display: flex; align-items: center; border: 1px solid rgba(220,222,216,.72); border-radius: 14px; background: rgba(255,255,255,.82); box-shadow: 0 16px 46px rgba(22,28,24,.18); -webkit-backdrop-filter: blur(18px) saturate(125%); backdrop-filter: blur(18px) saturate(125%); opacity: 0; visibility: hidden; transform: translate(-50%, calc(100% + 40px)); transition: transform 420ms cubic-bezier(.22,1,.36,1), opacity 280ms ease, visibility 0s linear 420ms; pointer-events: none; will-change: transform, opacity; }
.sx-reference-floating-booking.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition-delay: 0s; pointer-events: auto; }
.sx-reference-floating-booking > .sx-reference-content { width: 100%; min-height: 116px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(48px, 9vw, 112px); padding: 16px 24px; }
.sx-reference-floating-booking .sx-reference-booking-fields { width: min(392px, 100%); }
.sx-reference-floating-booking .sx-reference-booking-action { width: min(406px, 100%); justify-self: end; }
.sx-reference-floating-button { margin: 0; }

.sx-reference-copy { min-width: 0; grid-column: 1; grid-row: 3; padding: 34px 44px 0 0; }
.sx-reference-description { max-width: 760px; color: #5f625d; font-size: 13px; line-height: 1.85; }
.sx-reference-description p { margin: 0 0 14px; }
.sx-reference-selling-points { margin-top: 36px; }
.sx-reference-selling-points h2 { margin: 0 0 18px; font-size: 19px; font-weight: 650; }
.sx-reference-selling-points p { display: grid; grid-template-columns: 17px minmax(0, 1fr); gap: 10px; margin: 0; padding: 12px 0; border-top: 0; color: #555852; font-size: 12px; line-height: 1.65; }
.sx-reference-selling-points .sx-icon { width: 15px; color: var(--sx-ref-ink); }

.sx-reference-booking { min-width: 0; min-height: 156px; grid-column: 1 / -1; grid-row: 4; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(48px, 9vw, 112px); margin-top: 46px; padding: 24px 28px; border: 0; border-radius: 15px; background: #fff; box-shadow: 0 7px 25px rgba(20,24,21,.2); }
.sx-reference-booking-fields { width: min(392px, 100%); min-width: 0; }
.sx-reference-favorite { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; padding: 0 4px; border: 0; background: transparent; color: #6d6e6d; font-size: 16px; font-weight: 700; cursor: pointer; }
.sx-reference-favorite .sx-icon { width: 28px; height: 28px; color: #111; transition: color 180ms ease, fill 180ms ease, transform 180ms ease; }
.sx-reference-favorite:hover .sx-icon { transform: scale(1.04); }
.sx-reference-favorite.is-active { color: #1f557c; }
.sx-reference-favorite.is-active .sx-icon { color: #1f557c; fill: currentColor; }
.sx-reference-booking-date { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 4px; padding: 0 18px; border: 1px solid transparent; border-radius: 8px; background: #f4f4f4; }
.sx-reference-booking-date strong { min-width: 0; overflow: hidden; color: #111; font-size: 14px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.sx-reference-booking-date .sx-icon { width: 24px; height: 24px; flex: 0 0 auto; color: #111; }
.sx-reference-booking-date--floating { border-color: #111; background: transparent; }
.sx-reference-booking-action { width: min(406px, 100%); min-width: 0; display: grid; justify-self: end; gap: 12px; }
.sx-reference-booking-action .sx-reference-price, .sx-reference-booking-action .sx-reference-book-button { margin: 0; }
.sx-reference-booking-action .sx-reference-book-button { min-height: 54px; border-radius: 8px; font-size: 15px; }

.sx-reference-anchor-nav { position: sticky; top: 0; z-index: 30; border-block: 1px solid var(--sx-ref-line); background: rgba(255,255,255,.97); backdrop-filter: blur(10px); }
.sx-reference-anchor-nav > div { height: 60px; display: flex; align-items: center; gap: 34px; overflow-x: auto; scrollbar-width: none; }
.sx-reference-anchor-nav button { min-height: 60px; position: relative; flex: 0 0 auto; padding: 0 2px; border: 0; background: transparent; color: #767973; font-size: 12px; font-weight: 600; cursor: pointer; }
.sx-reference-anchor-nav button::after, .sx-reference-day-tabs button::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: transparent; }
.sx-reference-anchor-nav button.is-active { color: var(--sx-ref-accent); }
.sx-reference-anchor-nav button.is-active::after, .sx-reference-day-tabs button.is-active::after { background: var(--sx-ref-accent); }
.sx-reference-anchor-nav button.is-active::after { display: none; }

.sx-reference-section { padding-block: 96px; scroll-margin-top: 60px; }
.sx-reference-section h2 { margin: 0; font-size: 38px; font-weight: 520; line-height: 1.18; }
.sx-reference-section > p:not(.sx-reference-kicker), .sx-reference-section > .sx-reference-content > p, .sx-reference-included > .sx-reference-content > p, .sx-reference-notices > p { margin: 13px 0 0; color: var(--sx-ref-muted); font-size: 13px; line-height: 1.75; }
.sx-reference-kicker { margin: 0 0 12px; color: #7b7e78; font-size: 11px; font-weight: 600; }
.sx-reference-day-tabs { display: flex; margin: 46px 0 28px; overflow-x: auto; border-bottom: 1px solid var(--sx-ref-line); scrollbar-width: none; }
.sx-reference-day-tabs button { min-width: 96px; min-height: 49px; position: relative; flex: 0 0 auto; padding: 0 22px; border: 0; background: transparent; color: #858781; font-size: 11px; cursor: pointer; }
.sx-reference-day-tabs button::after { right: 20px; left: 20px; }
.sx-reference-day-tabs button.is-active { color: var(--sx-ref-ink); font-weight: 750; }

.sx-reference-itinerary-layout { display: grid; grid-template-columns: minmax(330px, .92fr) minmax(0, 1.08fr); border-top: 1px solid var(--sx-ref-line); }
.sx-reference-timeline { min-width: 0; position: relative; padding: 40px 6px 38px 46px; border-left: 1px solid var(--sx-ref-line); }
.sx-reference-timeline::before { content: ""; position: absolute; top: 91px; bottom: 72px; left: 67px; width: 1px; background: #d7d8d3; }
.sx-reference-timeline > header { display: grid; gap: 4px; margin: 0 0 31px 68px; }
.sx-reference-timeline > header span { color: #999b96; font-size: 9px; font-weight: 650; }
.sx-reference-timeline > header strong { color: #333731; font-family: var(--sx-sans); font-size: 18px; font-weight: 650; }
.sx-reference-timeline .sx-itinerary-card { position: relative; display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 24px; margin: 0; padding: 0 0 38px; border: 0; border-radius: 0; background: transparent; box-shadow: none; font-family: var(--sx-sans); }
.sx-reference-timeline .sx-itinerary-card__icon { width: 44px; height: 44px; position: relative; z-index: 1; display: grid; place-items: center; margin: 0; border: 1px solid #d4d6d0; border-radius: 50%; background: #fff; color: #353834; }
.sx-reference-timeline .sx-itinerary-card__icon .sx-icon { width: 18px; height: 18px; }
.sx-reference-timeline .sx-itinerary-card--flight .sx-itinerary-card__icon { color: #33789e; }
.sx-reference-timeline .sx-itinerary-card--meal .sx-itinerary-card__icon { color: #b75a2b; }
.sx-reference-timeline .sx-itinerary-card--hotel .sx-itinerary-card__icon { color: #775d84; }
.sx-reference-timeline .sx-itinerary-card--attraction .sx-itinerary-card__icon, .sx-reference-timeline .sx-itinerary-card--free_activity .sx-itinerary-card__icon { color: #4d715e; }
.sx-reference-timeline .sx-itinerary-card__body { min-width: 0; padding-top: 1px; }
.sx-reference-timeline .sx-itinerary-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #858881; font-size: 9px; }
.sx-reference-timeline .sx-itinerary-card__meta time { color: var(--sx-ref-ink); font-size: 11px; font-weight: 700; }
.sx-reference-timeline .sx-itinerary-card h4 { margin: 7px 0 0; font-family: var(--sx-sans); font-size: 17px; font-weight: 650; line-height: 1.4; letter-spacing: 0; overflow-wrap: anywhere; }
.sx-reference-timeline .sx-itinerary-card__body > p, .sx-reference-timeline .sx-itinerary-entry p { margin: 8px 0 0; color: #666963; font-size: 12px; line-height: 1.7; }
.sx-reference-timeline .sx-itinerary-route { display: grid; grid-template-columns: 1fr 20px 1fr; gap: 9px; align-items: center; margin-top: 13px; padding: 11px 0; border-block: 1px solid #e0e1dc; background: transparent; }
.sx-reference-timeline .sx-itinerary-route span, .sx-reference-timeline .sx-itinerary-entry small { display: block; color: #888b85; font-size: 8px; }
.sx-reference-timeline .sx-itinerary-route strong, .sx-reference-timeline .sx-itinerary-entry strong { display: block; margin-top: 3px; font-size: 10px; line-height: 1.5; }
.sx-reference-timeline .sx-itinerary-route .sx-icon { width: 17px; }
.sx-reference-timeline .sx-itinerary-entries { display: grid; gap: 0; margin-top: 13px; border-top: 1px solid #e0e1dc; }
.sx-reference-timeline .sx-itinerary-entry { padding: 13px 0 3px; border: 0; border-radius: 0; }
.sx-reference-timeline .sx-itinerary-entry + .sx-itinerary-entry { margin-top: 0; border-top: 1px solid #ecece8; }
.sx-reference-timeline .sx-itinerary-entry header { display: grid; grid-template-columns: minmax(0, 1fr); }
.sx-reference-timeline .sx-place-entry.has-image { display: block; }
.sx-reference-timeline .sx-place-entry figure { display: none; }
.sx-reference-timeline .sx-itinerary-entry__facts, .sx-reference-timeline .sx-itinerary-card__tags, .sx-reference-timeline .sx-place-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.sx-reference-timeline .sx-itinerary-entry__facts span, .sx-reference-timeline .sx-itinerary-card__tags span, .sx-reference-timeline .sx-place-tags span { padding: 0; border: 0; border-radius: 0; background: transparent; color: #666963; font-size: 8px; }
.sx-reference-timeline .sx-itinerary-entry__facts span + span::before, .sx-reference-timeline .sx-itinerary-card__tags span + span::before, .sx-reference-timeline .sx-place-tags span + span::before { margin-right: 6px; color: #9a9d97; content: "·"; }
.sx-reference-timeline .sx-itinerary-entry__details, .sx-reference-timeline .card-detail-grid { display: grid; margin: 12px 0 0; border-top: 1px solid #e0e1dc; }
.sx-reference-timeline .sx-itinerary-entry__details > div, .sx-reference-timeline .card-detail-grid > div { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 10px; padding: 7px 0; border-bottom: 1px solid #ecece8; }
.sx-reference-timeline .sx-itinerary-entry__details dt, .sx-reference-timeline .card-detail-grid dt { color: #888b85; font-size: 8px; }
.sx-reference-timeline .sx-itinerary-entry__details dd, .sx-reference-timeline .card-detail-grid dd { margin: 0; color: #4d514c; font-size: 9px; font-weight: 600; line-height: 1.55; overflow-wrap: anywhere; }
.sx-reference-timeline address { display: flex; gap: 5px; margin-top: 8px; color: #6c6f69; font-size: 9px; font-style: normal; }
.sx-reference-timeline address .sx-icon { width: 13px; flex: 0 0 auto; }
.sx-reference-next-day { margin: 0 0 0 68px; padding: 10px 0; border: 0; border-bottom: 1px solid #777a75; background: transparent; color: var(--sx-ref-ink); font-size: 11px; cursor: pointer; }
.sx-reference-empty { margin: 0 0 0 64px; color: var(--sx-ref-muted); font-size: 12px; }

.sx-reference-day-story { min-width: 0; position: sticky; top: 92px; align-self: start; padding: 42px 44px 34px 0; }
.sx-reference-day-images { height: 330px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 7px; margin-bottom: 28px; overflow: hidden; }
.sx-reference-day-images img { width: 100%; height: 100%; object-fit: cover; }
.sx-reference-day-images img:first-child { grid-row: 1 / 3; }
.sx-reference-day-images.images-1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.sx-reference-day-images.images-1 img:first-child { grid-row: auto; }
.sx-reference-day-images.images-2 { grid-template-rows: 1fr; }
.sx-reference-day-images.images-2 img:first-child { grid-row: auto; }
.sx-reference-day-story > p { margin: 0 0 8px; color: #777a75; font-size: 9px; font-weight: 600; }
.sx-reference-day-story > h3 { margin: 0; font-family: "Songti SC", SimSun, serif; font-size: 30px; font-weight: 600; line-height: 1.25; letter-spacing: 0; overflow-wrap: anywhere; }
.sx-reference-day-story > h4 { margin: 13px 0 0; color: #6e716b; font-size: 12px; font-weight: 400; line-height: 1.7; }
.sx-reference-day-story > ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; margin: 22px 0 0; padding: 0; border-top: 1px solid #d4d6d0; list-style: none; }
.sx-reference-day-story > ul li { display: grid; min-height: 48px; grid-template-columns: 21px minmax(0, 1fr); align-items: center; gap: 8px; color: #5e615c; border-bottom: 1px solid #dddfda; font-size: 9px; }
.sx-reference-day-story > ul .sx-icon { width: 17px; height: 17px; color: #b65d30; }

.sx-reference-included, .sx-reference-faqs { background: var(--sx-ref-soft); }
.sx-reference-included h3 { margin: 52px 0 17px; font-size: 13px; font-weight: 700; }
.sx-reference-summary-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-block: 1px solid #d7d8d3; }
.sx-reference-summary-grid > div { min-width: 0; min-height: 112px; display: grid; align-content: center; gap: 9px; padding: 16px; border-right: 1px solid #d7d8d3; }
.sx-reference-summary-grid > div:last-child { border-right: 0; }
.sx-reference-summary-grid span { color: #7b7e78; font-size: 9px; }
.sx-reference-summary-grid b { font-size: 13px; line-height: 1.5; overflow-wrap: anywhere; }
.sx-reference-term-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sx-reference-term-grid details, .sx-reference-notice-list details { border: 1px solid #d7d8d3; border-radius: 4px; background: transparent; }
.sx-reference-term-grid summary, .sx-reference-notice-list summary { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: center; padding: 18px; color: var(--sx-ref-ink); font-size: 12px; font-weight: 650; list-style: none; cursor: pointer; }
.sx-reference-term-grid summary::-webkit-details-marker, .sx-reference-notice-list summary::-webkit-details-marker { display: none; }
.sx-reference-term-grid details[open] summary b, .sx-reference-notice-list details[open] summary b { transform: rotate(45deg); }
.sx-reference-term-grid summary b, .sx-reference-notice-list summary b { transition: transform 180ms ease; }
.sx-reference-term-grid ul, .sx-reference-notice-list ul { margin: 0; padding: 0 24px 22px 38px; color: #5f625d; font-size: 12px; line-height: 1.8; }
.sx-reference-term-grid li + li, .sx-reference-notice-list li + li { margin-top: 7px; }
.sx-reference-notice-list { display: grid; gap: 8px; margin-top: 42px; }
.sx-reference-notice-list details { border-width: 0 0 1px; border-radius: 0; }
.sx-reference-notice-list summary { padding: 22px 0; font-size: 15px; }
.sx-reference-notice-list ul { padding: 0 22px 22px 21px; }
.sx-reference-notice-list details > p { margin: 0; padding: 0 0 23px; color: #5e615c; font-size: 12px; line-height: 1.8; }

.sx-reference-footer { padding: 80px 0 66px; background: #202521; color: #fff; }
.sx-reference-footer-greeting { margin: 0 0 56px; font-family: Georgia, "Times New Roman", serif; font-size: 56px; font-style: italic; line-height: 1; }
.sx-reference-office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; padding-block: 34px; border-block: 1px solid rgba(255,255,255,.22); }
.sx-reference-office-grid section { min-width: 0; }
.sx-reference-office-grid span { color: #b8bdb8; font-size: 9px; }
.sx-reference-office-grid h3 { margin: 9px 0 0; color: #fff; font-size: 14px; font-weight: 500; line-height: 1.7; }
.sx-reference-office-grid p { margin: 12px 0 0; color: #9fa59f; font-size: 9px; line-height: 1.7; }
.sx-reference-footer-lower { display: grid; grid-template-columns: 1.7fr .7fr .7fr .7fr; gap: 48px; padding-top: 44px; }
.sx-reference-footer-lower > div, .sx-reference-footer-lower > section { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.sx-reference-brand.is-light { margin-bottom: 10px; color: #fff; }
.sx-reference-brand.is-light small { color: #aeb5af; }
.sx-reference-footer-lower h3 { margin: 0 0 8px; color: #aeb5af; font-size: 9px; font-weight: 600; }
.sx-reference-footer-lower a, .sx-reference-footer-lower span { color: #fff; font-size: 10px; line-height: 1.55; text-decoration: none; overflow-wrap: anywhere; }
.sx-reference-footer-lower a:hover { text-decoration: underline; }
.sx-reference-footer-lower section > img { width: 92px; height: 92px; object-fit: cover; background: #fff; }

.sx-reference-modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 32px; overflow-y: auto; background: rgba(18,20,17,.84); }
.sx-reference-gallery-dialog { width: min(1180px, 100%); min-height: 0; position: relative; display: grid; place-items: center; }
.sx-reference-gallery-dialog > img { max-width: 100%; max-height: calc(100vh - 120px); display: block; object-fit: contain; }
.sx-reference-gallery-dialog > div { display: flex; align-items: center; gap: 14px; margin-top: 15px; color: #fff; font-size: 11px; }
.sx-reference-gallery-dialog > div button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: transparent; color: #fff; font-size: 22px; cursor: pointer; }
.sx-reference-modal-close { width: 40px; height: 40px; position: absolute; z-index: 2; top: 16px; right: 16px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(20,22,19,.5); color: #fff; font-size: 22px; cursor: pointer; }
.sx-reference-inquiry-dialog { width: min(510px, 100%); max-height: calc(100vh - 64px); position: relative; overflow-y: auto; padding: 36px; border-radius: 7px; background: #fff; color: var(--sx-ref-ink); }
.sx-reference-modal-close.is-dark { border-color: #d7d9d3; background: #fff; color: var(--sx-ref-ink); }
.sx-reference-inquiry-dialog h2 { margin: 0; padding-right: 44px; font-size: 29px; font-weight: 550; }
.sx-reference-inquiry-dialog h2 + p, .sx-reference-success p { margin: 9px 0 24px; color: var(--sx-ref-muted); font-size: 12px; line-height: 1.7; }
.sx-reference-inquiry-dialog form { display: grid; gap: 14px; }
.sx-reference-inquiry-dialog form > label { display: grid; gap: 7px; color: #555852; font-size: 11px; font-weight: 650; }
.sx-reference-inquiry-dialog input, .sx-reference-inquiry-dialog select, .sx-reference-inquiry-dialog textarea { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid #ced1cb; border-radius: 3px; background: #fff; color: var(--sx-ref-ink); font-size: 16px; }
.sx-reference-inquiry-dialog textarea { min-height: 104px; resize: vertical; }
.sx-reference-inquiry-dialog fieldset { margin: 0; padding: 13px; border: 1px solid var(--sx-ref-line); border-radius: 3px; }
.sx-reference-inquiry-dialog legend { padding: 0 5px; color: #686b66; font-size: 10px; }
.sx-reference-inquiry-dialog fieldset > div { display: grid; grid-template-columns: 1fr 30px 30px 30px; align-items: center; gap: 6px; padding: 6px 0; font-size: 11px; }
.sx-reference-inquiry-dialog fieldset > div + div { border-top: 1px solid #ecece8; }
.sx-reference-inquiry-dialog fieldset b { text-align: center; }
.sx-reference-inquiry-dialog .sx-reference-consent { display: grid; grid-template-columns: 17px minmax(0, 1fr); align-items: start; gap: 8px; font-weight: 400; line-height: 1.65; }
.sx-reference-consent input { width: 17px; min-height: 17px; margin: 2px 0 0; }
.sx-reference-consent a { color: #176b87; }
.sx-reference-honeypot { position: absolute !important; left: -9999px !important; }
.sx-reference-form-error { margin: 0; color: #a23931; font-size: 11px; }
.sx-reference-submit { justify-content: center; margin-top: 2px; }
.sx-reference-submit:disabled { opacity: .55; cursor: wait; }
.sx-reference-success { padding: 24px 0 5px; text-align: center; }
.sx-reference-success > span { width: 52px; height: 52px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: #e9f3ec; color: #2c6c45; }
.sx-reference-success .sx-icon { width: 25px; }

@media (max-width: 900px) {
  .sx-reference-stage { grid-template-columns: minmax(0, 1.55fr) minmax(260px, 1fr); grid-template-rows: 400px auto auto auto; }
  .sx-reference-gallery-main { grid-column: 1; }
  .sx-reference-gallery-side, .sx-reference-calendar-card { grid-column: 2; }
  .sx-reference-product-info, .sx-reference-copy { grid-column: 1; }
  .sx-reference-booking { grid-column: 1 / -1; }
  .sx-reference-product-info h1 { font-size: 39px; }
  .sx-reference-summary-grid { grid-template-columns: repeat(3, 1fr); }
  .sx-reference-summary-grid > div:nth-child(3n) { border-right: 0; }
  .sx-reference-summary-grid > div:nth-child(n + 4) { border-top: 1px solid #d7d8d3; }
  .sx-reference-footer-lower { grid-template-columns: 1.4fr 1fr 1fr; }
  .sx-reference-footer-lower > section:last-child { grid-column: 2; }
}

@media (max-width: 700px) {
  .sx-reference-content { width: calc(100% - 36px); }
  .sx-reference-topbar, .sx-reference-topbar > .sx-reference-content { min-height: 62px; }
  .sx-reference-brand img { width: 38px; height: 24px; }
  .sx-reference-brand strong { font-size: 16px; }
  .sx-reference-brand small { font-size: 6px; }
  .sx-reference-breadcrumb { display: none; }

  .sx-reference-stage { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto; gap: 0; padding-bottom: 48px; }
  .sx-reference-gallery-main { width: calc(100% + 36px); height: 320px; grid-column: 1; grid-row: auto; margin-left: -18px; }
  .sx-reference-gallery-side { display: none; }
  .sx-reference-mobile-gallery { position: absolute; right: 13px; bottom: 12px; left: 13px; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
  .sx-reference-mobile-gallery button, .sx-reference-mobile-gallery span { pointer-events: auto; border: 1px solid rgba(255,255,255,.55); background: rgba(20,21,19,.56); color: #fff; }
  .sx-reference-mobile-gallery button { width: 35px; height: 35px; display: grid; place-items: center; padding: 0; border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; }
  .sx-reference-mobile-gallery span { padding: 5px 8px; border-radius: 3px; font-size: 9px; }

  .sx-reference-product-info { grid-column: 1; grid-row: auto; padding: 30px 0 0; }
  .sx-reference-meta { gap: 6px; margin-bottom: 13px; font-size: 13px; }
  .sx-reference-meta b { font-size: 22px; }
  .sx-reference-product-info h1 { font-size: 35px; line-height: 1.2; }
  .sx-reference-product-info h1 span:first-child { font-size: 16px; }
  .sx-reference-subtitle { margin-top: 14px; font-size: 14px; }
  .sx-reference-service-facts { display: grid; gap: 5px; margin-top: 22px; padding: 0; border: 0; }
  .sx-reference-service-facts div { font-size: 16px; line-height: 22.5px; }
  .sx-reference-rating-row strong { font-size: 23px; }

  .sx-reference-calendar-card { min-height: 0; grid-column: 1; grid-row: auto; align-self: start; display: block; margin-top: 34px; padding: 23px 20px 22px; }
  .sx-reference-calendar-card .sx-reference-calendar, .sx-reference-calendar-panel { display: block; }
  .sx-reference-calendar-grid { grid-auto-rows: auto; }
  .sx-reference-calendar-grid > button, .sx-reference-calendar-grid > span { height: auto; align-self: stretch; }
  .sx-reference-copy { grid-column: 1; grid-row: auto; padding: 38px 0 0; }
  .sx-reference-booking { min-height: 148px; grid-column: 1; grid-row: auto; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; margin-top: 34px; padding: 14px; }
  .sx-reference-booking-fields { width: 100%; }
  .sx-reference-booking-action { width: 100%; gap: 10px; }
  .sx-reference-favorite { min-height: 40px; gap: 7px; padding: 0 2px; font-size: 14px; }
  .sx-reference-favorite .sx-icon { width: 24px; height: 24px; }
  .sx-reference-booking-date { min-height: 50px; margin-top: 4px; padding: 0 12px; }
  .sx-reference-booking-date strong { font-size: 13px; }
  .sx-reference-booking-date .sx-icon { width: 21px; height: 21px; }
  .sx-reference-price .sx-reference-price-currency { font-size: 15px; }
  .sx-reference-price .sx-reference-price-amount { font-size: 27px; }
  .sx-reference-price small { font-size: 13px; }
  .sx-reference-booking-action .sx-reference-book-button { min-width: 0; min-height: 50px; padding-inline: 10px; font-size: 14px; }

  .sx-reference-floating-booking { width: calc(100% - 24px); min-height: 126px; bottom: max(12px, env(safe-area-inset-bottom)); }
  .sx-reference-floating-booking > .sx-reference-content { min-height: 126px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; padding: 13px 14px; }
  .sx-reference-floating-booking .sx-reference-booking-fields, .sx-reference-floating-booking .sx-reference-booking-action { width: 100%; }

  .sx-reference-anchor-nav > div { width: 100%; height: 54px; gap: 25px; padding-inline: 18px; }
  .sx-reference-anchor-nav button { min-height: 54px; font-size: 11px; }
  .sx-reference-section, .sx-reference-section.sx-reference-content { width: 100%; padding: 66px 18px; }
  .sx-reference-section > .sx-reference-content { width: 100%; }
  .sx-reference-section h2 { font-size: 30px; }
  .sx-reference-itinerary.sx-reference-section { display: grid; grid-template-columns: 64px minmax(0, 1fr); column-gap: 14px; align-items: start; }
  .sx-reference-itinerary > .sx-reference-kicker, .sx-reference-itinerary > h2 { grid-column: 1 / -1; }
  .sx-reference-day-tabs { width: auto; position: sticky; top: 68px; grid-column: 1; grid-row: 3; flex-direction: column; margin: 34px 0 0; padding: 0; overflow: visible; border-right: 1px solid var(--sx-ref-line); border-bottom: 0; }
  .sx-reference-day-tabs button { width: 100%; min-width: 0; min-height: 50px; padding: 0 8px; text-align: left; }
  .sx-reference-day-tabs button::after { width: 2px; height: auto; top: 0; right: -1px; bottom: 0; left: auto; }
  .sx-reference-itinerary > .sx-reference-itinerary-layout { min-width: 0; grid-column: 2; grid-row: 3; margin-top: 34px; }

  .sx-reference-itinerary-layout { grid-template-columns: minmax(0, 1fr); }
	.sx-reference-timeline { padding: 31px 0 30px; border-top: 1px solid var(--sx-ref-line); border-left: 0; }
	.sx-reference-timeline::before { top: 81px; bottom: 67px; left: 16px; }
	.sx-reference-timeline > header { margin: 0 0 27px 48px; }
	.sx-reference-timeline .sx-itinerary-card { grid-template-columns: 33px minmax(0, 1fr); gap: 16px; padding-bottom: 28px; }
  .sx-reference-timeline .sx-itinerary-card__icon { width: 33px; height: 33px; }
  .sx-reference-timeline .sx-itinerary-card__icon .sx-icon { width: 14px; height: 14px; }
  .sx-reference-timeline .sx-itinerary-card h4 { font-size: 14px; }
  .sx-reference-timeline .sx-itinerary-card__body > p, .sx-reference-timeline .sx-itinerary-entry p { font-size: 11px; }
  .sx-reference-next-day { margin-left: 49px; }
	.sx-reference-day-story { position: static; padding: 28px 0; }
  .sx-reference-day-images { height: 248px; margin-bottom: 23px; }
  .sx-reference-day-story > h3 { font-size: 25px; }

  .sx-reference-included, .sx-reference-faqs { padding-inline: 18px; }
  .sx-reference-included h3 { margin-top: 38px; }
  .sx-reference-summary-grid { grid-template-columns: 1fr 1fr; }
  .sx-reference-summary-grid > div, .sx-reference-summary-grid > div:nth-child(3n) { min-height: 98px; border-right: 1px solid #d7d8d3; border-top: 1px solid #d7d8d3; }
  .sx-reference-summary-grid > div:nth-child(-n + 2) { border-top: 0; }
  .sx-reference-summary-grid > div:nth-child(2n) { border-right: 0; }
  .sx-reference-term-grid { grid-template-columns: 1fr; }
  .sx-reference-notice-list { margin-top: 30px; }

  .sx-reference-footer { padding: 58px 18px 45px; }
  .sx-reference-footer .sx-reference-content { width: 100%; }
  .sx-reference-footer-greeting { margin-bottom: 38px; font-size: 43px; }
  .sx-reference-office-grid { grid-template-columns: 1fr; gap: 26px; }
  .sx-reference-footer-lower { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
  .sx-reference-footer-lower > div { grid-column: 1 / 3; }
  .sx-reference-footer-lower > section:last-child { grid-column: auto; }

  .sx-reference-modal { padding: 16px; }
  .sx-reference-inquiry-dialog { max-height: calc(100vh - 32px); padding: 30px 20px; }
  .sx-reference-inquiry-dialog h2 { font-size: 25px; }
}

@media (max-width: 380px) {
  .sx-reference-meta b { font-size: 20px; }
  .sx-reference-product-info h1 { font-size: 31px; }
  .sx-reference-gallery-main { height: 292px; }
  .sx-reference-itinerary.sx-reference-section { grid-template-columns: 52px minmax(0, 1fr); column-gap: 10px; padding-inline: 12px; }
  .sx-reference-day-tabs button { min-height: 48px; padding-inline: 5px; font-size: 10px; }
  .sx-reference-booking, .sx-reference-floating-booking > .sx-reference-content { gap: 9px; padding-inline: 10px; }
  .sx-reference-favorite { font-size: 13px; }
  .sx-reference-booking-date { padding-inline: 9px; }
  .sx-reference-booking-date strong { font-size: 12px; }
  .sx-reference-price .sx-reference-price-currency { font-size: 13px; }
  .sx-reference-price .sx-reference-price-amount { font-size: 22px; }
  .sx-reference-price small { font-size: 11px; }
  .sx-reference-booking-action .sx-reference-book-button { font-size: 13px; }
  .sx-reference-timeline .sx-itinerary-card { grid-template-columns: 31px minmax(0, 1fr); gap: 13px; }
  .sx-reference-timeline .sx-itinerary-card__icon { width: 31px; height: 31px; }
  .sx-reference-timeline::before { left: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .sx-reference-product *, .sx-reference-product *::before, .sx-reference-product *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
