:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #6f716f;
  --line: #e8e9e6;
  --soft: #f5f6f3;
  --green: #1f7a54;
  --green-dark: #13543a;
  --orange: #d86442;
  --orange-dark: #b84b31;
  --yellow: #ffd84e;
  --white: #ffffff;
  --danger: #c94040;
  --shadow: 0 16px 42px rgba(28, 33, 30, 0.1);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --topbar-height: 64px;
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

/* Global tour detail: editorial route and photo-led itinerary. */
.product-course-band {
  padding-top: 96px;
}

.product-course > header {
  max-width: 760px;
}

.product-course > header > p:not(.section-kicker) {
  max-width: 660px;
}

.course-route-overview {
  display: block;
  margin-top: 48px;
  padding: 0;
  border: 1px solid #d9dedb;
  background: #ffffff;
}

.course-route-overview-inner {
  display: block;
}

.course-route-overview-inner > header {
  display: flex;
  align-items: center;
  padding: 18px 24px 16px;
  border-bottom: 0;
}

.course-route-overview-inner > header span {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
}

.course-route-track {
  display: flex;
  margin: 0;
  padding: 0 10px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-color: #cbd2ce transparent;
  scrollbar-width: thin;
  list-style: none;
}

.course-route-track li {
  position: relative;
  min-width: 150px;
  flex: 1 0 150px;
}

.course-route-track li:not(:last-child)::after {
  position: absolute;
  top: 35px;
  right: -50%;
  left: 50%;
  height: 1px;
  background: #cbd2ce;
  content: "";
}

.course-route-track button {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-width: 0;
  justify-items: center;
  gap: 6px;
  padding: 22px 8px 20px;
  border: 0;
  background: transparent;
  color: #202421;
  text-align: center;
  cursor: pointer;
}

.course-route-track button > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: #ffffff;
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
}

.course-route-track button > strong {
  max-width: 100%;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.course-route-track button > time {
  color: #737b76;
  font-size: 10px;
  font-weight: 700;
}

.course-route-track button:hover > span,
.course-route-track button:focus-visible > span {
  background: var(--green);
  color: #ffffff;
}

.journey-flow-grid {
  display: block;
  margin-top: 78px;
  border: 0;
}

.journey-flow-stop {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding: 0 0 82px;
  border: 0;
  scroll-margin-top: calc(var(--topbar-height) + 82px);
}

.journey-flow-stop + .journey-flow-stop {
  padding-top: 82px;
  border-top: 1px solid #e0e4e1;
}

.journey-flow-stop.is-reverse {
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 1.4fr);
}

.journey-flow-stop.is-reverse .journey-stop-media {
  grid-column: 2;
}

.journey-flow-stop.is-reverse .journey-stop-copy {
  grid-row: 1;
  grid-column: 1;
}

.journey-stop-media,
.journey-stop-copy {
  min-width: 0;
}

.journey-flow-stop figure {
  margin: 0;
  overflow: visible;
  background: transparent;
}

.journey-flow-stop figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  background: var(--soft);
}

.journey-stop-copy > header {
  display: flex;
  margin-bottom: 16px;
}

.journey-flow-stop .journey-stop-copy h3,
.journey-flow-stop figure + h3 {
  margin: 0;
  font-size: clamp(28px, 3.1vw, 42px);
  font-weight: 760;
  line-height: 1.2;
}

.journey-flow-stop .journey-stop-copy > p {
  margin: 20px 0 0;
  color: #4f5752;
  font-size: 15px;
  line-height: 1.85;
}

.journey-stop-meta {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding-top: 0;
  border-top: 0;
}

.journey-flow-stop .journey-stop-meta address {
  margin: 0;
  padding: 0;
  color: #68716c;
  font-size: 11px;
}

.journey-flow-stop .journey-stop-meta a {
  margin-top: 0;
  font-size: 11px;
}

.journey-flow-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid #dfe3e0;
  color: #747c77;
  font-size: 11px;
  line-height: 1.6;
}

.journey-flow-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 1px;
}

@media (max-width: 759px) {
  .product-course-band {
    padding-top: 58px;
  }

  .product-course > header > p:not(.section-kicker) {
    font-size: 14px;
    line-height: 1.7;
  }

  .course-route-overview {
    width: calc(100% + 40px);
    margin-top: 32px;
    margin-left: -20px;
    border-right: 0;
    border-left: 0;
  }

  .course-route-overview-inner > header {
    padding: 18px 20px 16px;
  }

  .course-route-track {
    display: flex;
    padding: 0 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .course-route-track::-webkit-scrollbar {
    display: none;
  }

  .course-route-track li {
    width: 112px;
    min-width: 112px;
    flex: 0 0 112px;
    scroll-snap-align: start;
  }

  .course-route-track li:not(:last-child)::after {
    right: -56px;
    left: 56px;
  }

  .course-route-track button {
    padding: 20px 6px 18px;
  }

  .journey-flow-grid {
    margin-top: 48px;
  }

  .journey-flow-stop,
  .journey-flow-stop.is-reverse {
    display: block;
    padding: 0 0 46px;
  }

  .journey-flow-stop + .journey-flow-stop {
    padding-top: 46px;
  }

  .journey-flow-stop.is-reverse .journey-stop-media,
  .journey-flow-stop.is-reverse .journey-stop-copy {
    grid-row: auto;
    grid-column: auto;
  }

  .journey-flow-stop figure img {
    aspect-ratio: 4 / 3;
  }

  .journey-stop-copy {
    padding-top: 22px;
  }

  .journey-flow-stop .journey-stop-copy h3,
  .journey-flow-stop figure + h3 {
    font-size: 28px;
  }

  .journey-flow-stop .journey-stop-copy > p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.75;
  }

  .journey-stop-meta {
    margin-top: 22px;
    padding-top: 14px;
  }

  .journey-flow-note {
    padding-top: 16px;
  }
}

/* Home product carousel */
.product-carousel-controls {
  display: flex;
  align-items: center;
}

.product-carousel-controls {
  gap: 8px;
}

.product-carousel-button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #d8dcd8;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  place-items: center;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.product-carousel-button:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.product-carousel-button:focus-visible {
  outline: 3px solid rgba(31, 122, 84, 0.26);
  outline-offset: 2px;
}

.product-carousel-button:disabled {
  opacity: 0.3;
  cursor: default;
}

.product-carousel-button svg {
  width: 17px;
  height: 17px;
}

.travel-grid.is-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 14px;
  scroll-padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.travel-grid.is-carousel::-webkit-scrollbar {
  display: none;
}

.travel-grid.is-carousel .travel-card,
.travel-grid.is-carousel .travel-card:first-child {
  display: flex;
  width: clamp(320px, 34vw, 430px);
  min-width: 0;
  flex: 0 0 clamp(320px, 34vw, 430px);
  flex-direction: column;
  grid-column: auto;
  grid-template-columns: none;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.travel-grid.is-carousel .travel-card:first-child .travel-image,
.travel-grid.is-carousel .travel-card:not(:first-child) .travel-image,
.travel-grid.is-carousel .travel-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
}

.travel-grid.is-carousel .travel-card:first-child .travel-body,
.travel-grid.is-carousel .travel-body {
  display: flex;
  min-height: 262px;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
}

.travel-grid.is-carousel .travel-card:first-child .travel-body h3,
.travel-grid.is-carousel .travel-body h3 {
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.35;
}

.travel-grid.is-carousel .travel-body > p,
.travel-grid.is-carousel .travel-card:first-child .travel-body > p {
  margin-top: 11px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.65;
}

.travel-grid.is-carousel .card-meta {
  margin-top: auto;
}

.travel-grid.is-carousel .travel-card-link {
  display: inline-flex;
}

@media (max-width: 759px) {
  html,
  body,
  #app {
    max-width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: none;
  }

  body {
    touch-action: pan-y;
  }

  #travel-products .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-carousel-button {
    width: 40px;
    height: 40px;
  }

  .travel-grid.is-carousel {
    box-sizing: border-box;
    width: 100vw;
    margin-left: calc((100vw - 100%) / -2);
    gap: 12px;
    padding: 0 14px 12px;
    scroll-padding: 14px;
  }

  .travel-grid.is-carousel .travel-card,
.travel-grid.is-carousel .travel-card:first-child {
    width: min(82vw, 330px);
    flex-basis: min(82vw, 330px);
  }

  .travel-grid.is-carousel .travel-card:first-child .travel-image,
.travel-grid.is-carousel .travel-card:not(:first-child) .travel-image,
.travel-grid.is-carousel .travel-image {
    aspect-ratio: 1.2 / 1;
  }

  .travel-grid.is-carousel .travel-card:first-child .travel-body,
.travel-grid.is-carousel .travel-body {
    min-height: 246px;
    padding: 21px;
  }
}

/* Editorial journey flow, member reviews, and shared travel gallery. */
.journey-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid #9caaa1;
  border-left: 1px solid #d3dbd6;
}

.journey-flow-stop {
  display: flex;
  min-width: 0;
  min-height: 274px;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid #d3dbd6;
  border-bottom: 1px solid #d3dbd6;
}

.journey-flow-stop header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.journey-flow-stop header span {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
}

.journey-flow-stop time {
  color: #5e6b63;
  font-size: 11px;
  font-weight: 750;
}

.journey-flow-stop h3 {
  margin: 35px 0 0;
  font-size: 22px;
  line-height: 1.35;
  word-break: keep-all;
}

.journey-flow-stop p {
  margin: 13px 0 0;
  color: #556159;
  font-size: 13px;
  line-height: 1.75;
  word-break: keep-all;
}

.journey-flow-stop address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: auto 0 0;
  padding-top: 24px;
  color: #738078;
  font-size: 10px;
  font-style: normal;
  line-height: 1.55;
}

.journey-flow-stop address svg,
.journey-flow-stop a svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.journey-flow-stop a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.product-reviews {
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
  scroll-margin-top: calc(var(--topbar-height) + 72px);
  padding: 118px 0;
}

.product-reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--ink);
}

.product-reviews-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.16;
}

.product-reviews-heading > div:first-child > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.review-score {
  display: grid;
  justify-items: end;
  gap: 9px;
}

.review-score > strong {
  font-size: 46px;
  line-height: 1;
}

.review-score > span {
  color: var(--muted);
  font-size: 11px;
}

.review-stars {
  color: #c77c24;
  letter-spacing: 0;
}

.product-review-list {
  border-bottom: 1px solid var(--line);
}

.product-review-item {
  display: grid;
  gap: 18px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.product-review-item:last-child {
  border-bottom: 0;
}

.product-review-item header,
.product-review-item header > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-review-item header {
  justify-content: space-between;
}

.product-review-item header strong,
.product-review-item time {
  color: var(--muted);
  font-size: 11px;
}

.sample-review-badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 8px;
  border-radius: 4px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
}

.product-review-item > p {
  max-width: 760px;
  margin: 0;
  color: #34383a;
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

.product-review-images {
  display: grid;
  max-width: 820px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-review-image-button {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #eef1ef;
  cursor: zoom-in;
}

.product-review-image-button img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-review-image-button > span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(17, 24, 20, 0.16);
  pointer-events: none;
}

.product-review-image-button > span svg {
  width: 14px;
  height: 14px;
}

.product-review-image-button:hover img,
.product-review-image-button:focus-visible img {
  transform: scale(1.025);
}

.product-review-image-button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.review-empty {
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.review-empty strong {
  font-size: 16px;
}

.review-empty p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.review-submit-button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.account-review-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 26px 40px;
  margin-top: 50px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafbfa;
}

.review-form-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.review-form-heading span,
.review-photo-field > div:first-child > span,
.review-text-field > span,
.review-rating-field legend {
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
}

.review-form-heading h3 {
  margin: 6px 0 0;
  font-size: 23px;
}

.review-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.review-rating-field {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border: 0;
}

.review-rating-options {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 10px;
}

.review-rating-option {
  position: relative;
  display: grid;
  width: 42px;
  height: 44px;
  place-items: center;
  cursor: pointer;
}

.review-rating-option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.review-rating-star {
  color: #d3d8d5;
  font-size: 32px;
  line-height: 1;
  transition: color 150ms ease, transform 150ms ease;
  pointer-events: none;
}

.review-rating-option.is-filled .review-rating-star {
  color: #c77c24;
}

.review-rating-option:hover .review-rating-star {
  transform: translateY(-1px) scale(1.08);
}

.review-rating-option:has(input:focus-visible) {
  border-radius: 5px;
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

.review-rating-value {
  min-width: 34px;
  margin-left: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.review-text-field {
  display: grid;
  gap: 9px;
}

.review-text-field textarea {
  width: 100%;
  min-height: 158px;
  resize: vertical;
  padding: 15px;
  border: 1px solid #ccd3cf;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  line-height: 1.7;
}

.review-photo-field {
  display: grid;
  align-content: start;
  gap: 9px;
}

.review-photo-field > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.review-photo-field small {
  color: var(--muted);
  font-size: 9px;
}

.review-photo-preview {
  display: grid;
  min-height: 102px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  place-items: center;
  padding: 7px;
  border: 1px dashed #bcc6c0;
  border-radius: 6px;
  background: #fff;
}

.review-photo-preview > span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.review-photo-preview figure {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin: 0;
  border-radius: 5px;
}

.review-photo-preview-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.review-photo-preview-open img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-photo-preview figcaption {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: grid;
  min-height: 19px;
  place-items: center;
  padding: 0 6px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 9px;
}

.review-photo-preview figure > button[data-action^="remove-"] {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
}

.review-photo-preview figure > button[data-action^="remove-"] svg {
  width: 13px;
  height: 13px;
}

.review-photo-preview-open:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: -3px;
}

.review-image-viewer-open {
  overflow: hidden;
}

.review-image-viewer {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(18px, 4vw, 48px);
  border: 0;
  background: transparent;
  overflow: hidden;
}

.review-image-viewer[open] {
  display: grid;
  place-items: center;
}

.review-image-viewer::backdrop {
  background: rgba(8, 11, 9, 0.88);
  backdrop-filter: blur(10px);
}

.review-image-viewer-content {
  position: relative;
  display: grid;
  max-width: min(1180px, 100%);
  max-height: 100%;
  justify-items: center;
  gap: 12px;
}

.review-image-viewer-content img {
  display: block;
  width: min(1180px, calc(100vw - 96px));
  max-width: 100%;
  max-height: calc(100dvh - 124px);
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.review-image-viewer-caption {
  display: grid;
  width: min(720px, 100%);
  max-height: min(150px, 22dvh);
  gap: 6px;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.84);
  scrollbar-width: thin;
}

.review-image-viewer-caption strong {
  color: #fff;
  font-size: 11px;
}

.review-image-viewer-caption p {
  max-width: min(720px, 100%);
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  text-align: left;
  word-break: keep-all;
}

.review-image-viewer-content.has-caption img {
  max-height: calc(100dvh - 220px);
}

.review-image-viewer-close {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(16, 20, 18, 0.72);
  color: #fff;
  cursor: pointer;
}

.review-image-viewer-close:hover,
.review-image-viewer-close:focus-visible {
  background: #fff;
  color: var(--ink);
  outline: none;
}

.review-image-viewer-close svg {
  width: 19px;
  height: 19px;
}

.gallery-image-viewer-open {
  overflow: hidden;
}

.gallery-image-viewer {
  box-sizing: border-box;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(18px, 3vw, 36px);
  border: 0;
  background: transparent;
  color: #fff;
  overflow: hidden;
}

.gallery-image-viewer[open] {
  display: grid;
  place-items: center;
}

.gallery-image-viewer::backdrop {
  background: rgba(5, 8, 7, 0.94);
  backdrop-filter: blur(12px);
}

.gallery-image-viewer-content {
  box-sizing: border-box;
  display: grid;
  width: min(1280px, 100%);
  height: 100%;
  min-height: 0;
  grid-template-rows: minmax(48px, auto) minmax(0, 1fr) 62px;
  gap: 16px;
}

.gallery-image-viewer-heading {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.gallery-image-viewer-heading > div {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.gallery-image-viewer-heading span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-image-viewer-heading strong {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-image-viewer-heading output {
  min-width: 56px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.gallery-image-viewer-media {
  display: grid;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  touch-action: pan-y;
}

.gallery-image-viewer-media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.gallery-image-viewer-controls {
  box-sizing: border-box;
  display: grid;
  width: min(680px, 100%);
  height: 62px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(14, 18, 16, 0.82);
  backdrop-filter: blur(14px);
}

.gallery-image-viewer-controls button {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.gallery-image-viewer-controls button + button {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.gallery-image-viewer-controls button:hover,
.gallery-image-viewer-controls button:focus-visible {
  background: #fff;
  color: var(--ink);
  outline: none;
}

.gallery-image-viewer-controls svg {
  width: 17px;
  height: 17px;
}

.review-photo-button {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid #bcc6c0;
  border-radius: 5px;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.review-photo-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.review-photo-button svg,
.review-submit-button svg {
  width: 15px;
}

.review-submit-button {
  grid-column: 1 / -1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.gallery-page {
  min-height: 70vh;
  padding: 96px 0 120px;
}

.gallery-page-intro,
.travel-gallery-grid,
.gallery-empty {
  width: min(calc(100% - 40px), 1240px);
  margin-right: auto;
  margin-left: auto;
}

.gallery-page-intro {
  display: grid;
  max-width: 760px;
  justify-items: center;
  text-align: center;
}

.gallery-page-intro h1 {
  margin: 10px 0 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.08;
}

.gallery-page-intro > p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.travel-gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 64px;
}

.gallery-entry {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #dfe5e1;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.gallery-entry.is-wide {
  grid-column: span 2;
}

.gallery-entry > img,
.gallery-entry-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-entry > img {
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-entry:hover > img {
  transform: scale(1.035);
}

.gallery-entry-shade {
  background: linear-gradient(180deg, transparent 38%, rgba(8, 14, 11, 0.76));
}

.gallery-entry-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 8px;
  padding: 28px;
}

.gallery-entry-copy small {
  font-size: 10px;
  font-weight: 800;
}

.gallery-entry-copy strong {
  font-size: 22px;
  line-height: 1.35;
  word-break: keep-all;
}

.gallery-entry-copy em {
  overflow: hidden;
  font-size: 11px;
  font-style: normal;
  opacity: 0.78;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-empty {
  display: grid;
  min-height: 340px;
  place-items: center;
  align-content: center;
  gap: 10px;
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.gallery-empty svg {
  width: 30px;
  color: var(--green);
}

.gallery-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .journey-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-review-form {
    grid-template-columns: 1fr;
  }

  .review-form-heading,
.review-rating-field,
.review-submit-button {
    grid-column: 1;
  }

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

@media (max-width: 759px) {
  .product-course-band {
    padding: 74px 0;
  }

  .product-course {
    padding: 0 20px;
  }

  .journey-flow-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .journey-flow-stop {
    min-height: 0;
    padding: 24px 20px;
  }

  .journey-flow-stop h3 {
    margin-top: 22px;
    font-size: 19px;
  }

  .journey-flow-stop address {
    margin-top: 4px;
  }

  .product-reviews {
    width: min(calc(100% - 28px), 1120px);
    padding: 76px 0;
  }

  .product-reviews-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .review-score {
    justify-items: start;
  }

  .review-score > strong {
    font-size: 38px;
  }

  .product-review-images {
    gap: 5px;
  }

  .account-review-form {
    position: relative;
    gap: 22px;
    margin-top: 38px;
    padding: 24px 18px;
  }

  .review-form-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding-right: 48px;
  }

  .account-review-close {
    position: absolute;
    top: 18px;
    right: 18px;
  }

  .review-rating-options {
    display: flex;
    gap: 1px;
  }

  .review-rating-option {
    width: 39px;
    height: 42px;
  }

  .review-rating-star {
    font-size: 30px;
  }

  .review-image-viewer {
    padding: 14px;
  }

  .review-image-viewer-content img {
    width: 100%;
    max-height: calc(100dvh - 94px);
  }

  .review-image-viewer-caption {
    width: 100%;
    max-height: min(138px, 23dvh);
    gap: 5px;
  }

  .review-image-viewer-caption strong {
    font-size: 10px;
  }

  .review-image-viewer-caption p {
    font-size: 11px;
  }

  .review-image-viewer-content.has-caption img {
    max-height: calc(100dvh - 210px);
  }

  .review-image-viewer-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .gallery-image-viewer {
    padding: max(12px, env(safe-area-inset-top)) 16px
      max(32px, calc(env(safe-area-inset-bottom) + 12px));
  }

  .gallery-image-viewer-content {
    width: 100%;
    max-height: 100%;
    grid-template-rows: minmax(48px, auto) minmax(0, 1fr) 52px;
    gap: 12px;
  }

  .gallery-image-viewer-heading {
    gap: 14px;
  }

  .gallery-image-viewer-heading strong {
    font-size: 13px;
  }

  .gallery-image-viewer-heading output {
    min-width: 46px;
    font-size: 10px;
  }

  .gallery-image-viewer-media img {
    border-radius: 4px;
  }

  .gallery-image-viewer-controls {
    width: min(100%, 420px);
    height: 52px;
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.12);
  }

  .gallery-image-viewer-controls button {
    gap: 6px;
    min-height: 48px;
    padding: 0 7px;
    font-size: 12px;
  }

  .gallery-image-viewer-controls svg {
    width: 16px;
    height: 16px;
  }

  .review-submit-button {
    width: 100%;
    justify-content: center;
  }

  .gallery-page {
    padding: 72px 0 84px;
  }

  .gallery-page-intro,
.travel-gallery-grid,
.gallery-empty {
    width: min(calc(100% - 28px), 1240px);
  }

  .gallery-page-intro h1 {
    font-size: 44px;
  }

  .travel-gallery-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .gallery-entry,
.gallery-entry.is-wide {
    min-height: 390px;
    grid-column: span 1;
  }

  .gallery-entry-copy {
    padding: 23px;
  }
}

/* Partner logos */
.partner-showcase {
  overflow: hidden;
  padding: 96px 0 100px;
  background: #f6f7f4;
}

.partner-showcase-heading {
  width: min(calc(100% - 40px), 760px);
  margin: 0 auto;
  text-align: center;
}

.partner-showcase-heading .section-kicker {
  margin-bottom: 13px;
  color: var(--green);
  letter-spacing: 0;
}

.partner-showcase-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: 0;
  word-break: keep-all;
}

.partner-showcase-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.partner-logo-marquee {
  width: 100%;
  margin-top: 48px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.partner-logo-track {
  display: flex;
  width: max-content;
  animation: partner-logo-marquee 44s linear infinite;
  will-change: transform;
}

.partner-logo-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.partner-logo-item {
  display: grid;
  width: 200px;
  height: 84px;
  flex: 0 0 200px;
  padding: 18px 24px;
  border: 1px solid #e5e8e3;
  border-radius: 6px;
  background: #ffffff;
  place-items: center;
}

.partner-logo-item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

@keyframes partner-logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 759px) {
  .partner-showcase {
    padding: 66px 0 70px;
  }

  .partner-showcase-heading {
    width: calc(100% - 36px);
  }

  .partner-showcase-heading h2 {
    font-size: 31px;
  }

  .partner-showcase-heading > p:last-child {
    margin-top: 15px;
    font-size: 14px;
  }

  .partner-logo-marquee {
    margin-top: 36px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .partner-logo-track {
    animation-duration: 36s;
  }

  .partner-logo-group {
    gap: 22px;
    padding-right: 22px;
  }

  .partner-logo-item {
    width: 154px;
    height: 72px;
    flex-basis: 154px;
    padding: 15px 20px;
  }

  .partner-logo-item img {
    max-height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-logo-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .partner-logo-marquee::-webkit-scrollbar {
    display: none;
  }

  .partner-logo-track {
    animation: none;
  }

  .partner-logo-group[aria-hidden="true"] {
    display: none;
  }
}

/* Hero copy changes on its own timer, independent from video playback. */
.hero-copy-sequence .journey-caption.caption-final,
.hero-copy-sequence .hero-story-description {
  transition: opacity 280ms ease, filter 280ms ease;
}

.hero-copy-sequence.is-changing .journey-caption.caption-final,
.hero-copy-sequence.is-changing .hero-story-description {
  filter: blur(7px);
  opacity: 0;
}

.home-hero.is-story.hero-layout-editorial .hero-copy-sequence .hero-story-description {
  min-height: 53px;
}

@media (max-width: 759px) {
  .home-hero.is-story.hero-layout-editorial .hero-copy-sequence .journey-caption-stage {
    min-height: 88px;
  }

  .home-hero.is-story.hero-layout-editorial .hero-copy-sequence .hero-story-description {
    min-height: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy-sequence .journey-caption.caption-final,
.hero-copy-sequence .hero-story-description {
    transition: none;
  }
}

* {
}

html {
  background: var(--white);
  color: var(--ink);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background: #f7f8f6;
}

body.has-fixed-action {
  padding-bottom: calc(76px + var(--safe-bottom));
}

body.has-fixed-action .app-shell {
  padding-bottom: calc(88px + var(--safe-bottom));
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.app-shell {
  width: min(100%, 1180px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--white);
}

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  min-height: 72px;
  padding: 8px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.topbar.home {
  grid-template-columns: minmax(0, 1fr) auto;
}

.topbar > .icon-button {
  justify-self: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.brand-mark::after {
  position: absolute;
  right: -2px;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.brand-logo {
  width: auto;
  max-width: 104px;
  height: 38px;
  margin-right: 10px;
  object-fit: contain;
  transform: translateY(2.5px);
}

@media (min-width: 760px) {
  .brand-logo {
    max-width: 148px;
    height: 48px;
    margin-right: 14px;
    transform: translateY(3px);
  }
}

.page-title {
  overflow: hidden;
  margin: 0;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--soft);
  outline: none;
}

.icon-button svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.2;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.content {
  padding: 0 18px 64px;
}

.content.seat-content {
  padding-top: 1px;
  padding-bottom: 18px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  margin: 0 -18px;
  padding: 54px 26px 32px;
  background:
    linear-gradient(180deg, rgba(16, 35, 26, 0.03), rgba(16, 35, 26, 0.68)),
    url("./assets/deept-coastal-coach-hero.webp") center 46% / cover;
  color: var(--white);
}

.hero-copy {
  position: absolute;
  right: 26px;
  bottom: 34px;
  left: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.home-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 8vw, 58px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-hero p {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.section {
  padding-top: 38px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.text-button {
  flex: 0 0 auto;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.travel-grid {
  display: grid;
  gap: 20px;
}

.travel-card {
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 9px 24px rgba(37, 39, 37, 0.06);
  text-align: left;
  cursor: pointer;
}

.travel-card:hover {
  border-color: #cfd5d0;
  transform: translateY(-2px);
}

.travel-card:focus-visible {
  outline: 3px solid rgba(31, 122, 84, 0.26);
  outline-offset: 2px;
}

.travel-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--soft);
}

.travel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.travel-card:hover .travel-image img {
  transform: scale(1.025);
}

.location-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.travel-body {
  padding: 19px 18px 20px;
}

.travel-body h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.4;
}

.travel-body > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.date-line {
  display: block;
  color: #4f514f;
  font-size: 13px;
  font-weight: 750;
}

.seat-left {
  display: block;
  margin-top: 5px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 850;
}

.card-price {
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.notice-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.notice-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 12px 15px;
  border: 0;
  background: var(--white);
  text-align: left;
}

.notice-item span {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.notice-item strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-item svg {
  width: 18px;
  height: 18px;
  color: #9b9d9b;
}

.footer {
  padding: 36px 20px 48px;
  border-top: 1px solid var(--line);
  background: #f0f1ef;
  color: #737573;
  font-size: 12px;
  line-height: 1.8;
}

.footer strong {
  display: block;
  margin-bottom: 7px;
  color: #3b3d3b;
  font-size: 16px;
}

.trip-summary {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  margin: 14px 0 16px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.trip-summary img {
  width: 68px;
  height: 68px;
  border-radius: 5px;
  object-fit: cover;
}

.trip-summary h2 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.35;
}

.trip-summary p {
  margin: 2px 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.seat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.seat-toolbar h2 {
  margin: 0;
  font-size: 18px;
}

.realtime-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 5px;
  background: #eef8f2;
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
}

.realtime-badge::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2aa76f;
  content: "";
}

.seat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
}

.seat-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-box {
  width: 14px;
  height: 14px;
  border: 1.5px solid #c9ccc9;
  border-radius: 3px;
  background: var(--white);
}

.legend-box.selected {
  border-color: var(--orange);
  background: var(--orange);
}

.legend-box.reserved {
  border-color: #c8cac8;
  background: #e6e7e5;
}

.legend-box.held {
  border-color: #c9a568;
  background: #fff5df;
}

.bus-frame {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto 14px;
  padding: 8px 0 12px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.mobile-seat-status {
  display: none;
}

.bus-front {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 46px;
  align-items: end;
  min-height: 46px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dfe3df;
}

.seat-grid {
  --seat-width: 60px;
  --seat-height: 68px;
  --seat-column-gap: 14px;
  display: grid;
  grid-template-columns: repeat(4, var(--seat-width));
  justify-content: center;
  column-gap: var(--seat-column-gap);
  row-gap: 1px;
  align-items: center;
}

.aisle-space {
  display: block;
  height: 100%;
  min-height: var(--seat-height);
}

.seat {
  position: relative;
  display: grid;
  width: var(--seat-width);
  height: var(--seat-height);
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.seat-guide-label {
  position: absolute;
  top: 5px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  min-width: 48px;
  height: 17px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border: 1px solid var(--green);
  border-radius: 7px;
  background: var(--green);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.seat-back {
  position: absolute;
  top: 1px;
  right: 7px;
  bottom: 16px;
  left: 7px;
  display: grid;
  place-items: center;
  border: 2px solid #c4c9c5;
  border-radius: 10px 10px 6px 6px;
  background: #ffffff;
  color: #545754;
  font-size: 16px;
  font-weight: 750;
  transition: 0.16s ease;
}

.seat-cushion {
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 18px;
  border: 2px solid #c4c9c5;
  border-radius: 5px 5px 9px 9px;
  background: var(--white);
  transition: 0.16s ease;
}

.seat-arm {
  position: absolute;
  bottom: 9px;
  z-index: 2;
  width: 8px;
  height: 30px;
  border: 2px solid #c4c9c5;
  border-radius: 7px;
  background: var(--white);
  transition: 0.16s ease;
}

.seat-arm.left {
  left: 1px;
}

.seat-arm.right {
  right: 1px;
}

.seat:hover .seat-back,
.seat:focus-visible .seat-back,
.seat:hover .seat-cushion,
.seat:focus-visible .seat-cushion,
.seat:hover .seat-arm,
.seat:focus-visible .seat-arm {
  border-color: #8e938f;
}

.seat:focus-visible {
  outline: 3px solid rgba(255, 112, 67, 0.24);
  outline-offset: 3px;
  border-radius: 10px;
}

.seat.is-selected .seat-back {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.seat.is-selected .seat-cushion,
.seat.is-selected .seat-arm {
  border-color: var(--orange);
  background: #fff4ef;
}

.seat.is-reserved {
  cursor: not-allowed;
}

.seat.is-reserved .seat-back,
.seat.is-reserved .seat-cushion,
.seat.is-reserved .seat-arm {
  border-color: #c9cbc9;
  background: #e5e6e4;
  color: #969996;
}

.seat.is-reserved .seat-back {
  font-size: 11px;
}

.seat.is-guide .seat-back {
  padding-top: 15px;
  font-size: 15px;
}

.seat.is-guide .seat-back,
.seat.is-guide .seat-cushion,
.seat.is-guide .seat-arm {
  border-color: var(--green);
  background: color-mix(in srgb, var(--green) 12%, white);
  color: var(--green);
}

.seat.is-held {
  cursor: not-allowed;
}

.seat.is-held .seat-back,
.seat.is-held .seat-cushion,
.seat.is-held .seat-arm {
  border-color: #c9a568;
  background: #fff5df;
  color: #7a5a22;
}

.seat.is-held .seat-back {
  font-size: 9px;
}

.rear-seat-row {
  display: grid;
  width: max-content;
  height: var(--seat-height);
  grid-template-columns: repeat(4, var(--seat-width));
  grid-column: 1 / -1;
  column-gap: var(--seat-column-gap);
  justify-self: center;
  margin-top: 4px;
}

.rear-seat-row .seat {
  position: relative;
}

.bus-note {
  margin: 0;
  color: #919491;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.fixed-action {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 -10px 28px rgba(29, 32, 30, 0.08);
}

.fixed-action-inner {
  display: grid;
  width: min(100%, 1180px);
  grid-template-columns: minmax(0, 1fr) minmax(168px, 260px);
  margin: 0 auto;
}

.action-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 8px 16px;
}

.action-summary span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.action-summary strong {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.action-price {
  margin-top: 0 !important;
  font-size: 17px !important;
  font-weight: 900;
  white-space: nowrap;
}

.primary-action {
  width: 100%;
  min-height: 68px;
  padding: 12px 14px calc(12px + var(--safe-bottom));
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.primary-action:hover:not(:disabled) {
  background: #000000;
}

.primary-action:disabled {
  background: #cfd1cf;
  color: #858885;
  cursor: not-allowed;
}

.checkout-layout {
  display: grid;
  gap: 20px;
  padding-top: 22px;
}

.checkout-section {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.checkout-section h2 {
  margin: 0 0 18px;
  font-size: 18px;
}

.order-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
}

.order-row img {
  width: 88px;
  height: 88px;
  border-radius: 6px;
  object-fit: cover;
}

.order-row h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
}

.order-row p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 12px;
}

.checkout-price-breakdown {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-price-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.checkout-price-breakdown dt,
.checkout-price-breakdown dd {
  margin: 0;
}

.checkout-price-breakdown .is-total {
  margin-top: 3px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.field-grid {
  display: grid;
  gap: 15px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #d5d8d5;
  border-radius: 6px;
  background: var(--white);
  outline: none;
}

.field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 122, 84, 0.1);
}

.agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #555855;
  font-size: 13px;
  line-height: 1.5;
}

.agreement input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.checkout-required-agreements {
  display: grid;
  gap: 12px;
}

.checkout-required-agreements .agreement {
  border-radius: 6px;
  outline: 2px solid transparent;
  outline-offset: 5px;
  transition: background-color 180ms ease, outline-color 180ms ease;
}

.checkout-required-agreements .agreement.is-required-highlight {
  background: #f0f9ff;
  outline-color: #73c8f1;
}

.agreement b {
  color: var(--ink);
}

.complete {
  max-width: 620px;
  margin: 0 auto;
  padding: 58px 20px 80px;
  text-align: center;
}

.complete-mark {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.complete-mark svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.6;
}

.complete h1 {
  margin: 0;
  font-size: 28px;
}

.complete > p {
  margin: 13px 0 28px;
  color: var(--muted);
  line-height: 1.65;
}

.reservation-code {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px dashed #b9beb9;
  border-radius: 8px;
  background: var(--soft);
}

.reservation-code span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
}

.reservation-code strong {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  font-size: 24px;
  letter-spacing: 0;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}

@media (max-width: 480px) {
  .reservation-code strong {
    font-size: 19px;
  }
}

.complete-details {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  text-align: left;
}

.detail-row {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  background: var(--white);
  font-size: 13px;
}

.detail-row span {
  color: var(--muted);
}

.detail-row strong {
  text-align: right;
}

.button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.button {
  display: inline-grid;
  min-height: 52px;
  padding: 12px 16px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.danger {
  border-color: #e2bebe;
  color: var(--danger);
}

.lookup-wrap {
  width: min(100%, 620px);
  max-width: 620px;
  margin: 0 auto;
  padding: 28px 0 70px;
  box-sizing: border-box;
}

.lookup-intro {
  margin-bottom: 24px;
  text-align: center;
}

.lookup-intro h1 {
  margin: 0 0 10px;
  font-size: 26px;
}

.lookup-intro p {
  max-width: 440px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lookup-form {
  display: grid;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lookup-form .field,
.lookup-form input,
.lookup-form > .button {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.lookup-feedback {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  padding: 12px 13px;
  border-radius: 6px;
  background: #fff2f2;
  color: #8f2929;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.lookup-feedback svg {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.lookup-form[aria-busy="true"] input {
  background: #f7f8f7;
}

.lookup-result {
  margin-top: 20px;
}

.status-chip {
  display: inline-flex;
  min-height: 27px;
  padding: 5px 9px;
  align-items: center;
  border-radius: 4px;
  background: #eaf6ef;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.status-chip.cancelled {
  background: #f1f1f0;
  color: #858785;
}

.status-chip.pending {
  background: #f8f1df;
  color: #7a5514;
}

.lookup-status-note {
  margin: 16px 0 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.lookup-status-note + .lookup-cancel-button {
  margin-top: 4px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: calc(160px + var(--safe-bottom));
  left: 18px;
  max-width: 440px;
  margin: 0 auto;
  padding: 14px 16px;
  border-radius: 7px;
  background: #232523;
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  animation: toast-in 0.22s ease-out;
}

.toast.error {
  background: #9d3131;
}

.empty-state,
.error-state,
.initial-loading {
  display: grid;
  min-height: 65vh;
  padding: 40px 22px;
  place-items: center;
  align-content: center;
  color: var(--muted);
  text-align: center;
}

.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid #e5e7e5;
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.initial-loading p {
  margin: 0;
  color: #656b68;
  font-size: 12px;
  line-height: 1.6;
}

.initial-loading-brand {
  display: grid;
  width: min(100%, 320px);
  justify-items: center;
  gap: 16px;
}

.initial-loading-logo {
  width: clamp(108px, 11vw, 150px);
  height: auto;
  object-fit: contain;
  animation: loading-logo-in 0.7s ease-out both;
}

.initial-loading-progress {
  position: relative;
  width: 88px;
  height: 1px;
  overflow: hidden;
  background: #dfe3e1;
}

.initial-loading-progress i {
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateX(-100%);
  animation: loading-progress 1.3s ease-in-out infinite;
}

@keyframes loading-logo-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading-progress {
  50% {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@media (min-width: 760px) {
  body {
    padding: 28px 0;
  }

  body.has-fixed-action {
    padding-bottom: 82px;
  }

  body.has-fixed-action .app-shell {
    padding-bottom: 90px;
  }

  .app-shell {
    min-height: calc(100vh - 56px);
    overflow: hidden;
    border: 1px solid #e5e7e4;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(33, 37, 34, 0.09);
  }

  .topbar {
    padding-right: 28px;
    padding-left: 28px;
  }

  .content {
    padding-right: 34px;
    padding-left: 34px;
  }

  .home-hero {
    margin-right: -34px;
    margin-left: -34px;
  }

  .home-hero {
    min-height: 470px;
    padding-right: 52px;
    padding-left: 52px;
  }

  .hero-copy {
    right: 52px;
    bottom: 52px;
    left: 52px;
  }

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

  .travel-card:first-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  }

  .travel-card:first-child .travel-image {
    height: 340px;
  }

  .travel-card:first-child .travel-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
  }

  .travel-card:first-child .travel-body h3 {
    font-size: 25px;
  }

  .travel-card:not(:first-child) .travel-image {
    height: 260px;
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: start;
  }

  .checkout-layout .checkout-section:first-child {
    grid-column: 1 / -1;
  }

  .fixed-action {
    right: max(0px, calc((100vw - 1180px) / 2));
    left: max(0px, calc((100vw - 1180px) / 2));
  }

  .fixed-action-inner {
    width: 100%;
  }
}

@media (min-width: 1040px) {
  .content.seat-content {
    display: grid;
    width: min(100%, 980px);
    grid-template-columns: minmax(320px, 360px) 430px;
    justify-content: center;
    gap: 56px;
    margin-right: auto;
    margin-left: auto;
    align-items: start;
    padding-top: 22px;
  }

  .seat-side-info {
    position: sticky;
    top: 100px;
  }

  .trip-summary {
    grid-template-columns: 80px minmax(0, 1fr);
    margin-top: 0;
  }

  .trip-summary img {
    width: 80px;
    height: 80px;
  }

  .trip-summary h2 {
    margin-top: 0;
    font-size: 15px;
  }

  .bus-frame {
    margin-top: 0;
  }

  .seat-grid {
    --seat-width: 68px;
    --seat-height: 78px;
    --seat-column-gap: 14px;
    row-gap: 8px;
  }

  .aisle-space {
    min-height: var(--seat-height);
  }

  .seat {
    width: var(--seat-width);
    height: var(--seat-height);
  }

  .seat-back {
    right: 8px;
    bottom: 18px;
    left: 8px;
    border-radius: 12px 12px 7px 7px;
    font-size: 17px;
  }

  .seat-cushion {
    right: 11px;
    left: 11px;
    height: 21px;
  }

  .seat-arm {
    bottom: 10px;
    width: 9px;
    height: 34px;
  }

  .rear-seat-row {
    margin-top: 6px;
  }
}

@media (max-width: 390px) {
  .content {
    padding-right: 14px;
    padding-left: 14px;
  }

  .home-hero {
    margin-right: -14px;
    margin-left: -14px;
  }

  .bus-frame {
    padding-right: 0;
    padding-left: 0;
  }

  .seat-back {
    font-size: 16px;
  }

  .action-summary {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 759px) {
  .content.seat-content {
    padding-top: 0;
  }

  .seat-side-info {
    display: none;
  }

  .seat-map-section {
    padding-top: 10px;
  }

  .mobile-seat-status {
    display: grid;
    width: min(100%, 330px);
    gap: 8px;
    margin: 0 auto 10px;
    color: #747874;
    font-size: 10px;
  }

  .mobile-seat-status > div:first-child {
    display: flex;
    min-height: 22px;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-seat-status .seat-legend {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 5px;
    margin: 0;
    color: #676b67;
    font-size: 9px;
  }

  .mobile-seat-status .seat-legend span {
    gap: 4px;
    white-space: nowrap;
  }

  .mobile-seat-status .legend-box {
    width: 11px;
    height: 11px;
  }

  .mobile-seat-status strong {
    color: var(--green);
    font-size: 11px;
  }

  .bus-frame {
    margin-bottom: 6px;
  }

  .action-summary {
    gap: 6px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .action-summary span {
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .action-price {
    font-size: 15px !important;
  }
}

/* Seat selection uses a compact stacked confirmation bar. */
body.has-seat-fixed-action {
  padding-bottom: calc(104px + var(--safe-bottom));
}

body.has-seat-fixed-action .app-shell {
  padding-bottom: calc(104px + var(--safe-bottom));
}

.seat-fixed-action .fixed-action-inner {
  grid-template-columns: minmax(0, 1fr);
}

.seat-fixed-action .action-summary {
  min-height: 48px;
  padding: 6px 20px;
}

.seat-fixed-action .primary-action {
  min-height: 48px;
  padding: 10px 20px calc(10px + var(--safe-bottom));
  font-size: 13px;
}

@media (min-width: 760px) {
  body.has-seat-fixed-action {
    padding-bottom: 104px;
  }

  body.has-seat-fixed-action .app-shell {
    padding-bottom: 104px;
  }
}

/* Premium travel storefront and Korean typography */
body,
button,
a,
p,
h1,
h2,
h3,
h4,
span,
strong,
small,
li,
summary {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.topbar.home {
  top: 0;
}

.content-feature {
  position: relative;
  padding-bottom: 30px;
}

.content-feature::before {
  position: absolute;
  z-index: -1;
  top: 56px;
  right: calc((100vw - 100%) / -2);
  bottom: -38px;
  left: calc((100vw - 100%) / -2);
  background: #f6f7f7;
  content: "";
}

.footer {
  color: rgba(255, 255, 255, 0.62);
  background: #151719;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(130px, 0.65fr));
  gap: 52px;
}

.footer-nav > strong {
  display: block;
  margin: 0 0 15px;
  color: #ffffff;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav > strong {
  font-size: 12px;
}

.footer-nav button,
.footer-nav a,
.footer-nav span {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer-nav button:hover,
.footer-nav a:hover {
  color: #ffffff;
}

.footer-business {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-business p {
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.65;
}

.product-policy-panel {
  display: flex;
  width: min(calc(100% - 40px), 1040px);
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin: 44px auto 20px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}

.product-policy-panel span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.product-policy-panel h2 {
  margin: 8px 0;
  font-size: 22px;
}

.product-policy-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.product-policy-panel .product-service-period {
  margin-top: 14px;
  color: var(--ink);
  line-height: 1.65;
}

.product-policy-panel .product-service-period strong {
  font-size: 11px;
}

.product-policy-panel > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.product-policy-panel button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid #d5d5d8;
  border-radius: 6px;
  background: #ffffff;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.product-policy-panel button svg {
  width: 15px;
}

.checkout-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.checkout-policy-links button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #99999e;
  background: transparent;
  color: #59595e;
  font-size: 11px;
  cursor: pointer;
}

.policy-page {
  width: min(calc(100% - 48px), 1120px);
  min-height: 65vh;
  margin: 0 auto;
  padding: 72px 0 100px;
}

.policy-page > header {
  max-width: 780px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--ink);
}

.policy-page h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 740;
  letter-spacing: 0;
}

.policy-page > header > p:not(.section-kicker) {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 72px;
  align-items: start;
}

.policy-layout.no-index {
  grid-template-columns: minmax(0, 760px);
  justify-content: end;
}

.policy-index {
  position: sticky;
  top: 92px;
  padding: 44px 0;
}

.policy-index > strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 13px;
}

.policy-index > div {
  display: grid;
  gap: 2px;
}

.policy-index button {
  display: block;
  width: 100%;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: #68686d;
  font-family: inherit;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
  text-decoration: none;
  word-break: keep-all;
  cursor: pointer;
}

.policy-index button:hover,
.policy-index button:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-body {
  min-width: 0;
  padding: 44px 0;
  color: #38383c;
  font-size: 14px;
  line-height: 1.85;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.policy-body h2 {
  margin: 48px 0 16px;
  padding-top: 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.45;
  scroll-margin-top: 100px;
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body p {
  margin: 0 0 8px;
}

.policy-body .policy-label {
  margin: 20px 0 8px;
  color: var(--ink);
  font-weight: 700;
}

.policy-body .policy-spacer {
  display: block;
  height: 10px;
}

@media (max-width: 820px) {
  .policy-page {
    width: min(calc(100% - 36px), 680px);
    padding: 48px 0 72px;
  }

  .policy-page > header {
    padding-bottom: 28px;
  }

  .policy-layout {
    display: block;
  }

  .policy-index {
    position: relative;
    top: auto;
    padding: 24px 0 20px;
    border-bottom: 1px solid var(--line);
  }

  .policy-index > strong {
    margin-bottom: 12px;
  }

  .policy-index > div {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .policy-index > div::-webkit-scrollbar {
    display: none;
  }

  .policy-index button {
    flex: 0 0 auto;
    width: auto;
    max-width: 220px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: #45454a;
    font-size: 12px;
  }

  .policy-body {
    padding-top: 32px;
    font-size: 13px;
    line-height: 1.82;
  }

  .policy-body h2 {
    margin-top: 40px;
    font-size: 18px;
  }
}

.company-information {
  display: grid;
  padding: 28px 0;
}

.company-information > div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
}

.company-information span {
  color: var(--muted);
  font-size: 12px;
}

.company-information strong {
  font-size: 13px;
  text-align: right;
}

.search-popover {
  position: fixed;
  z-index: 130;
  max-width: calc(100vw - 24px);
  overflow-x: hidden;
  overflow: hidden;
  box-sizing: border-box;
  overscroll-behavior: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 23, 19, 0.16);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.search-popover.is-open {
  opacity: 1;
  transform: translateY(0);
}

.search-popover-inner {
  display: grid;
  max-height: inherit;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  min-width: 0;
  overscroll-behavior: contain;
  padding: 22px;
}

.search-popover header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.search-popover header span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.search-popover header h2 {
  margin: 7px 0 0;
  font-size: 22px;
}

.search-field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 0 15px;
  border: 1px solid #cfcfd3;
  border-radius: 7px;
}

.search-field svg {
  width: 20px;
  color: #77777c;
}

.search-field input {
  width: 100%;
  height: 54px;
  border: 0;
  outline: 0;
}

.search-results {
  display: grid;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  margin-top: 14px;
  border-top: 1px solid var(--ink);
}

.search-results > button {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 14px;
  min-height: 100px;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.search-results img {
  width: 82px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

.search-results span {
  display: grid;
  gap: 4px;
}

.search-results small {
  color: var(--green);
  font-size: 10px;
  font-weight: 750;
}

.search-results strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.search-results em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.search-empty {
  padding: 56px 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 759px) {
  html.has-mobile-search,
  body.has-mobile-search {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  .search-popover {
    left: 12px !important;
    right: 12px;
    width: auto !important;
    max-width: none;
    box-shadow: 0 18px 56px rgba(17, 23, 35, 0.2);
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }

  .footer-nav:last-child {
    grid-column: 1 / -1;
  }

  .product-policy-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-policy-panel > div:last-child {
    justify-content: flex-start;
  }

  .company-information > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .company-information strong {
    text-align: left;
  }

  .search-popover-inner {
    height: 100%;
    padding: 18px;
  }

  .search-results {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .search-results > button {
    grid-template-columns: 68px minmax(0, 1fr) 18px;
    min-height: 88px;
  }

  .search-results img {
    width: 68px;
    height: 60px;
  }
}


/* Production storefront */
:root {
  --ink: #111111;
  --muted: #6e6e73;
  --line: #e5e5e7;
  --soft: #f5f5f7;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

body {
  background: var(--white);
}

.app-shell {
  width: 100%;
  max-width: none;
}

.topbar {
  min-height: 64px;
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
}

.topbar.home {
  grid-template-columns: minmax(0, 1fr) auto;
}

.brand {
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  border-radius: 8px;
}

.brand-mark::after {
  display: none;
}

.header-actions {
  justify-content: flex-end;
}

.home-content {
  max-width: none;
  padding: 0;
}

.home-hero {
  min-height: min(690px, calc(100vh - 64px));
  margin: 0;
  padding: 64px max(24px, calc((100vw - 1180px) / 2));
  background-position: center;
}

.hero-copy {
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: clamp(48px, 9vh, 96px);
  left: max(24px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0;
}

.eyebrow::before {
  display: none;
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 760;
  line-height: 1.08;
}

.home-hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-button svg,
.text-button svg,
.content-card small svg {
  width: 16px;
  height: 16px;
}

.home-content > .section {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
}

.section-kicker,
.travel-kicker {
  display: block;
  margin: 0 0 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.home-content > .section {
  padding-top: 108px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(29px, 4vw, 44px);
  font-weight: 760;
}

.section-heading > div > p:not(.section-kicker) {
  margin-top: 10px;
  font-size: 15px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
}

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

.travel-card,
.travel-card:first-child {
  display: block;
  grid-column: auto;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: none;
}

.travel-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.travel-card:first-child .travel-image,
.travel-card:not(:first-child) .travel-image,
.travel-image {
  height: clamp(250px, 34vw, 390px);
}

.travel-card:first-child .travel-body,
.travel-body {
  display: block;
  padding: 26px;
}

.travel-card:first-child .travel-body h3,
.travel-body h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 760;
}

.travel-body > p {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 14px;
}

.location-tag {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.card-meta {
  border-color: #dddddf;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.content-card-grid.count-1 {
  grid-template-columns: minmax(0, 760px);
}

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

.content-card {
  display: grid;
  min-height: 330px;
  align-content: end;
  overflow: hidden;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  text-align: left;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.content-card:hover {
  background: #eef3f0;
  transform: translateY(-2px);
}

.content-card > img {
  width: calc(100% + 48px);
  height: 190px;
  margin: -24px -24px 24px;
  object-fit: cover;
}

.content-card-icon,
.guide-article-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
}

.content-card > span:not(.content-card-icon) {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.content-card > strong {
  margin-top: 9px;
  font-size: 20px;
  line-height: 1.35;
}

.content-card > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-card > small {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 750;
}

.service-guide {
  padding-bottom: 110px;
}

.notice-list {
  border: 0;
  border-top: 1px solid var(--ink);
  border-radius: 0;
}

.notice-item {
  min-height: 78px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}

.footer {
  margin-top: 90px;
  padding: 50px max(20px, calc((100vw - 1180px) / 2));
  border: 0;
  background: var(--soft);
}

.page-intro {
  max-width: 780px;
  padding: 70px 0 42px;
}

.page-intro h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 760;
  line-height: 1.1;
}

.page-intro > p:not(.section-kicker) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.schedule-page,
.guide-page {
  box-sizing: border-box;
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
}

.schedule-page .page-intro {
  max-width: 820px;
  padding-bottom: 34px;
}

.departure-booking > span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
}

.departure-booking > span.sold-out {
  color: var(--muted);
}

.departure-booking button {
  min-height: 38px;
  padding: 8px 13px;
  border: 0;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.departure-booking button:disabled {
  background: #d8d8da;
  cursor: not-allowed;
}

.inline-empty {
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

/* Monthly departure calendar */
.schedule-page .page-intro {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.schedule-page .page-intro > p:not(.section-kicker) {
  margin-right: auto;
  margin-left: auto;
}

.schedule-category-tabs {
  position: sticky;
  z-index: 20;
  top: var(--topbar-height, 68px);
  display: flex;
  width: min(100%, 1040px);
  gap: 8px;
  margin: 0 auto 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  box-sizing: border-box;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  scrollbar-width: none;
  touch-action: pan-x;
  backdrop-filter: blur(14px);
}

.schedule-category-tabs::-webkit-scrollbar {
  display: none;
}

.schedule-category-tab {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.schedule-category-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.schedule-calendar-shell {
  width: 100%;
  margin: 0 auto;
  border-top: 0;
}

.schedule-calendar-toolbar {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  min-height: 112px;
  gap: 18px;
  padding: 18px 0;
}

.schedule-calendar-toolbar > div {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  text-align: center;
}

.schedule-calendar-toolbar > div > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.schedule-calendar-toolbar h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.schedule-calendar-toolbar > div > button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.schedule-calendar-arrow {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.schedule-calendar-arrow:hover,
.schedule-calendar-arrow:focus-visible {
  border-color: var(--ink);
  background: var(--soft);
}

.schedule-calendar-arrow:disabled {
  color: #b9b9bd;
  cursor: not-allowed;
  opacity: 0.55;
}

.schedule-calendar-arrow svg {
  width: 19px;
  height: 19px;
}

.schedule-calendar-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0 0 18px;
}

.schedule-calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.schedule-calendar-legend span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9b9b9f;
  content: "";
}

.schedule-calendar-legend .is-available::before {
  background: #23795a;
}

.schedule-calendar-legend .is-low::before {
  background: #d8782c;
}

.schedule-calendar-legend .is-sold-out::before {
  background: #949498;
}

.schedule-calendar-legend .is-past::before {
  background: #d4d4d7;
}

.schedule-calendar-weekdays,
.schedule-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.schedule-calendar-weekdays {
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fafafa;
}

.schedule-calendar-weekdays span {
  padding: 11px 8px;
  color: #626267;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.schedule-calendar-weekdays .is-sunday,
.schedule-calendar-day.is-sunday .schedule-calendar-date time {
  color: #b64d45;
}

.schedule-calendar-weekdays .is-saturday,
.schedule-calendar-day.is-saturday .schedule-calendar-date time {
  color: #31718c;
}

.schedule-calendar-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.schedule-calendar-day {
  position: relative;
  min-width: 0;
  min-height: 148px;
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.schedule-calendar-day.is-empty {
  background: #fafafa;
}

.schedule-calendar-day.is-selected {
  z-index: 1;
  background: #f7fbf9;
  box-shadow: inset 0 0 0 2px var(--green);
}

.schedule-calendar-day.is-past-day:not(.is-selected) {
  background: #fafafa;
}

.schedule-calendar-date {
  display: flex;
  width: 100%;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 0 1px 6px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.schedule-calendar-date time {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.schedule-calendar-day.is-today .schedule-calendar-date time {
  background: var(--ink);
  color: var(--white);
}

.schedule-calendar-date span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.schedule-calendar-trips {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.schedule-calendar-trip {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 2px;
  padding: 7px 8px;
  overflow: hidden;
  border: 0;
  border-left: 3px solid #23795a;
  border-radius: 4px;
  background: #eef7f2;
  color: #174e3b;
  text-align: left;
  cursor: pointer;
}

.schedule-calendar-trip strong,
.schedule-calendar-trip small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-calendar-trip strong {
  font-size: 11px;
  line-height: 1.25;
}

.schedule-calendar-trip small {
  font-size: 9px;
  line-height: 1.35;
}

.schedule-calendar-trip.is-low {
  border-left-color: #d8782c;
  background: #fff3e8;
  color: #874516;
}

.schedule-calendar-trip.is-sold-out {
  border-left-color: #949498;
  background: #f0f0f1;
  color: #646469;
}

.schedule-calendar-trip.is-past {
  border-left-color: #d4d4d7;
  background: #f5f5f6;
  color: #96969a;
}

.schedule-calendar-more {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.schedule-selected-day {
  width: min(100%, 1040px);
  margin: 38px auto 0;
  scroll-margin-top: calc(var(--topbar-height) + 1px);
  border-top: 1px solid var(--ink);
}

.schedule-selected-day > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--line);
}

.schedule-selected-day > header > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.schedule-selected-day > header span,
.schedule-selected-day > header p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.schedule-selected-day > header h2 {
  margin: 0;
  font-size: 24px;
}

.schedule-selected-list {
  display: grid;
}

.schedule-selected-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 124px;
  align-items: center;
  min-height: 104px;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.schedule-selected-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.schedule-selected-copy span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.schedule-selected-copy strong {
  font-size: 17px;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.schedule-selected-copy small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  word-break: keep-all;
}

.schedule-selected-status {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.schedule-selected-status strong {
  font-size: 15px;
}

.schedule-selected-status span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.schedule-selected-row.is-low .schedule-selected-status span {
  color: #b35d1f;
}

.schedule-selected-row.is-sold-out .schedule-selected-status span,
.schedule-selected-row.is-past .schedule-selected-status span {
  color: var(--muted);
}

.schedule-selected-book {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 12px;
  border: 0;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.schedule-selected-book svg {
  width: 14px;
  height: 14px;
}

.schedule-selected-book:disabled {
  background: #d8d8da;
  cursor: not-allowed;
}

.schedule-selected-empty {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 46px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.schedule-selected-empty strong {
  color: var(--ink);
  font-size: 15px;
}

.schedule-selected-empty span {
  font-size: 12px;
}

.product-page {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-bottom: 60px;
}

.product-booking-section,
.product-information {
  width: min(calc(100% - 40px), 1040px);
  margin: 0 auto;
}

.product-booking-section {
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
}

.product-departures {
  display: grid;
  border-top: 1px solid var(--ink);
}

.product-departure {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.product-departure.is-past {
  background: #fafafa;
  color: var(--muted);
}

.product-departure.is-past .departure-booking button {
  min-width: 80px;
}

.departure-date,
.departure-place,
.departure-booking {
  display: grid;
  gap: 7px;
}

.departure-date,
.departure-place {
  min-width: 0;
}

.departure-date strong {
  font-size: 18px;
}

.departure-date span,
.departure-place span {
  color: var(--muted);
  font-size: 11px;
}

.departure-place strong {
  font-size: 14px;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.departure-booking {
  min-width: 88px;
  justify-items: end;
}

.product-departure .departure-booking button {
  width: 80px;
  min-width: 80px;
  padding-right: 8px;
  padding-left: 8px;
  white-space: nowrap;
}

.product-information {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  padding: 68px 0 20px;
}

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

.travel-guide-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.travel-guide-card {
  display: flex;
  height: 100%;
  min-height: 320px;
  flex-direction: column;
  padding: 30px;
  border-radius: 8px;
  background: var(--soft);
}

.travel-guide-card > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 42px;
  color: var(--green);
}

.travel-guide-card > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.travel-guide-card h2 {
  margin: 10px 0;
  font-size: 22px;
  line-height: 1.4;
}

.travel-guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.essential-guide article {
  min-height: 290px;
  padding: 30px;
  scroll-margin-top: 86px;
  border-radius: 8px;
  background: var(--soft);
}

.guide-page-nav {
  position: sticky;
  z-index: 23;
  top: var(--topbar-height);
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(16px);
  scrollbar-width: none;
}

.guide-page-nav::-webkit-scrollbar {
  display: none;
}

.guide-page-nav button {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.guide-page-nav button:hover,
.guide-page-nav button:focus-visible {
  background: var(--soft);
  color: var(--green-dark);
  outline: none;
}

.essential-guide article > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 56px;
  color: var(--green);
}

.essential-guide article > span,
.guide-article > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.essential-guide h2 {
  margin: 10px 0;
  font-size: 22px;
  line-height: 1.4;
}

.essential-guide p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.guide-section {
  padding-top: 86px;
  scroll-margin-top: 116px;
}

.guide-section.is-first {
  padding-top: 54px;
}

.guide-information-articles {
  margin-top: 18px;
}

.guide-empty {
  padding: 34px 4px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.guide-refund-policy {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 28px 4px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.guide-refund-policy > svg {
  width: 24px;
  color: var(--green);
}

.guide-refund-policy > div {
  color: #34343a;
  font-size: 14px;
  line-height: 1.9;
}

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

.guide-article {
  position: relative;
  display: grid;
  min-height: 220px;
  align-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.guide-article > img {
  width: calc(100% + 48px);
  height: 170px;
  margin: -24px -24px 22px;
  object-fit: cover;
}

.guide-article .guide-article-icon {
  margin-bottom: 32px;
  background: var(--soft);
}

.guide-article > strong {
  margin-top: 8px;
  font-size: 19px;
}

.guide-article > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 32px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.guide-article > svg {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 18px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 22px 48px 22px 4px;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  position: absolute;
  top: 21px;
  right: 8px;
  width: 20px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary svg {
  transform: rotate(45deg);
}

.faq-item > div {
  padding: 0 42px 24px 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.support-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 86px;
  padding: 34px;
  border-radius: 8px;
  background: #111111;
  color: var(--white);
}

.support-panel span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
}

.support-panel h2 {
  margin: 8px 0;
  font-size: 26px;
}

.support-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.support-panel > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-panel a,
.support-panel button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.support-panel a svg,
.support-panel button svg {
  width: 16px;
}

.policy-page.is-refund-policy,
.policy-page.is-refund-policy > header,
.policy-page.is-refund-policy .policy-body {
  text-align: left;
}

.policy-page.is-refund-policy > header {
  margin-right: auto;
}

.policy-page.is-refund-policy .policy-layout.no-index {
  justify-content: start;
}

.post-page {
  width: min(calc(100% - 40px), 800px);
  margin: 0 auto;
  padding: 76px 0 100px;
}

.post-page > header {
  padding-bottom: 40px;
}

.post-page > header span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.post-page > header h1 {
  margin: 14px 0;
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 760;
  line-height: 1.18;
}

.post-page > header p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.post-cover {
  width: 100%;
  max-height: 540px;
  border-radius: 8px;
  object-fit: cover;
}

.post-body {
  padding: 52px 0;
  color: #333336;
  font-size: 16px;
  line-height: 2;
}

.payment-information {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  padding: 15px;
  border-radius: 6px;
  background: var(--soft);
  color: #4e4e52;
  font-size: 12px;
  line-height: 1.65;
}

.payment-information svg {
  width: 18px;
  flex: 0 0 auto;
}

.toss-widget-shell {
  margin: 18px -6px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

#toss-payment-methods[aria-busy="true"] {
  min-height: 180px;
  background: linear-gradient(90deg, #f5f6f5 25%, #eceeec 50%, #f5f6f5 75%);
  background-size: 200% 100%;
  animation: toss-widget-loading 1.2s linear infinite;
}

@keyframes toss-widget-loading {
  to { background-position: -200% 0; }
}

.empty-state.compact {
  min-height: 240px;
  border-top: 1px solid var(--line);
}

@media (min-width: 760px) {
  body {
    padding: 0;
  }

  .app-shell {
    min-height: 100vh;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .topbar {
    padding-right: max(28px, calc((100vw - 1180px) / 2));
    padding-left: max(28px, calc((100vw - 1180px) / 2));
  }

  .content:not(.home-content):not(.schedule-page):not(.guide-page) {
    padding-right: 34px;
    padding-left: 34px;
  }

  .fixed-action {
    right: 0;
    left: 0;
  }
}

@media (max-width: 759px) {
  .topbar.home {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .home-hero {
    min-height: 560px;
    padding: 36px 20px;
  }

  .home-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .home-hero p {
    font-size: 14px;
  }

  .hero-copy {
    right: 20px;
    bottom: 40px;
    left: 20px;
  }

  .home-content > .section {
    padding-top: 78px;
  }

.travel-grid,
.content-card-grid,
.essential-guide,
.travel-guide-cards,
.guide-article-grid,
.product-information {
    grid-template-columns: 1fr;
  }

  .travel-guide-card {
    height: auto;
    min-height: 300px;
    padding: 26px;
    border: 1px solid var(--line);
  }

  .travel-guide-card > svg {
    margin-bottom: 34px;
  }

  .travel-card:first-child .travel-image,
.travel-card:not(:first-child) .travel-image,
.travel-image {
    height: 245px;
  }

  .content-card {
    min-height: 290px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading .text-button {
    margin-top: 4px;
  }

  .page-intro {
    padding-top: 48px;
  }

  .page-intro h1 {
    font-size: 42px;
  }

  .page-intro > p:not(.section-kicker) {
    font-size: 15px;
  }

  .schedule-page .page-intro {
    padding-bottom: 28px;
  }

  .schedule-page .page-intro {
    padding-top: 42px;
    text-align: center;
  }

  .content.schedule-page {
    padding-right: 0;
    padding-left: 0;
  }

  .schedule-calendar-toolbar {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    min-height: 94px;
    gap: 6px;
    padding: 13px 0;
  }

  .schedule-calendar-toolbar h2 {
    font-size: 15px;
  }

  .schedule-calendar-toolbar > div > span,
.schedule-calendar-toolbar > div > button {
    font-size: 9px;
  }

  .schedule-calendar-arrow {
    width: 38px;
    height: 38px;
  }

  .schedule-calendar-legend {
    gap: 7px 12px;
    padding-bottom: 14px;
  }

  .schedule-calendar-legend span {
    gap: 5px;
    font-size: 9px;
  }

  .schedule-calendar-legend span::before {
    width: 6px;
    height: 6px;
  }

  .schedule-calendar-weekdays span {
    padding: 8px 2px;
    font-size: 9px;
  }

  .schedule-calendar-day {
    min-height: 64px;
    padding: 4px 3px;
  }

  .schedule-calendar-date {
    justify-content: center;
    min-height: 31px;
    padding: 0 0 3px;
  }

  .schedule-calendar-date time {
    width: 25px;
    height: 25px;
    font-size: 11px;
  }

  .schedule-calendar-date span {
    display: none;
  }

  .schedule-calendar-trips {
    display: flex;
    min-height: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px;
  }

  .schedule-calendar-trip {
    width: 7px;
    height: 7px;
    min-height: 0;
    flex: 0 0 7px;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #23795a;
    pointer-events: none;
  }

  .schedule-calendar-trip.is-low {
    background: #d8782c;
  }

  .schedule-calendar-trip.is-sold-out {
    background: #949498;
  }

  .schedule-calendar-trip.is-past {
    background: #d4d4d7;
  }

  .schedule-calendar-trip strong,
.schedule-calendar-trip small {
    display: none;
  }

  .schedule-calendar-more {
    margin-top: 2px;
    font-size: 7px;
    line-height: 1;
    text-align: center;
  }

  .schedule-selected-day {
    margin-top: 28px;
  }

  .schedule-selected-day > header {
    align-items: center;
    padding: 18px 0 14px;
  }

  .schedule-selected-day > header > div {
    display: grid;
    gap: 3px;
  }

  .schedule-selected-day > header h2 {
    font-size: 20px;
  }

  .schedule-selected-row {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    gap: 12px;
    padding: 17px 0;
  }

  .schedule-selected-copy {
    grid-column: 1 / -1;
    padding: 0;
  }

  .schedule-selected-copy strong {
    font-size: 16px;
  }

  .schedule-selected-status {
    justify-items: start;
    text-align: left;
  }

  .schedule-selected-book {
    min-width: 96px;
    min-height: 38px;
    padding: 8px 10px;
  }

  .product-booking-section {
    padding: 50px 0;
  }

  .product-departure {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 18px 14px;
  }

  .departure-place {
    grid-column: 1;
  }

  .departure-booking {
    grid-row: 1 / 3;
    grid-column: 2;
    min-width: 82px;
  }

  .product-information {
    gap: 38px;
    padding-top: 50px;
  }

  .essential-guide article {
    min-height: 250px;
  }

  .essential-guide article > svg {
    margin-bottom: 36px;
  }

  .support-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-panel > div:last-child {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: 8px;
  }

  .support-panel > div:last-child a {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    justify-content: center;
    padding: 10px clamp(6px, 2.5vw, 12px);
    font-size: clamp(10px, 3vw, 12px);
    white-space: nowrap;
  }

  .support-panel > div:last-child a svg {
    width: 15px;
    min-width: 15px;
  }

  .post-page {
    padding-top: 52px;
  }
}

@media (max-width: 390px) {
  .home-hero {
    margin-right: 0;
    margin-left: 0;
  }

  .home-content > .section,
.schedule-page,
.guide-page,
.product-booking-section,
.product-information,
.post-page {
    width: min(calc(100% - 28px), 1180px);
  }

  .hero-actions {
    display: grid;
  }

}

.product-subnav,
.product-facts,
.product-story,
.product-course,
.product-information-grid,
.product-booking-section,
.product-policy-panel {
  width: min(calc(100% - 40px), 1120px);
  margin-right: auto;
  margin-left: auto;
}

.product-subnav {
  position: sticky;
  z-index: 24;
  top: var(--topbar-height);
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(18px);
  scrollbar-width: none;
}

.product-subnav::-webkit-scrollbar {
  display: none;
}

.product-subnav a,
.product-subnav button {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #4d4d52;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.product-subnav a:hover,
.product-subnav button:hover {
  color: var(--green);
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.product-facts article {
  display: grid;
  min-width: 0;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 2px 12px;
  padding: 2px 24px;
  border-right: 1px solid var(--line);
}

.product-facts article:first-child {
  padding-left: 0;
}

.product-facts article:last-child {
  padding-right: 0;
  border-right: 0;
}

.product-facts svg {
  grid-row: 1 / 3;
  width: 23px;
  height: 23px;
  color: var(--green);
}

.product-facts span {
  color: var(--muted);
  font-size: 10px;
}

.product-facts strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
  padding: 100px 0;
}

.product-story h2,
.product-course h2,
.product-booking-section h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 760;
  line-height: 1.16;
}

.product-story-copy > p {
  margin: 0;
  color: #48484d;
  font-size: 17px;
  line-height: 1.9;
}

.product-highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.product-highlight-list li {
  position: relative;
  min-height: 66px;
  padding: 20px 8px 16px 28px;
  border-bottom: 1px solid var(--line);
  color: #303034;
  font-size: 13px;
  line-height: 1.55;
}

.product-highlight-list li::before {
  position: absolute;
  top: 22px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.product-course {
  padding: 78px 72px 82px;
  border-radius: 8px;
  background: #f2f5f3;
}

.product-course > header {
  max-width: 700px;
}

.product-course > header > p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legacy-itinerary {
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--ink);
}

.legacy-itinerary ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #4d4d52;
  font-size: 13px;
  line-height: 1.7;
}

.product-information-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
  padding: 94px 0 38px;
}

.product-detail-list {
  position: relative;
  min-height: 220px;
  padding: 26px 0 44px 46px;
  border-top: 1px solid var(--ink);
}

.product-detail-list > span {
  position: absolute;
  top: 27px;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #edf4f0;
  color: var(--green);
}

.product-detail-list > span svg {
  width: 15px;
}

.product-detail-list h2 {
  margin: 0 0 18px;
  font-size: 19px;
}

.product-detail-list ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-detail-list > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.product-booking-section {
  scroll-margin-top: 118px;
  padding: 84px 0;
}

.product-policy-panel {
  margin-top: 0;
}

@media (max-width: 759px) {

  .product-subnav {
    top: var(--topbar-height);
    gap: 22px;
  }

  .product-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px 0;
  }

  .product-facts article {
    padding: 16px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-facts article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .product-facts article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .product-facts article:first-child {
    padding-left: 12px;
  }

  .product-facts article:last-child {
    padding-right: 12px;
  }

  .product-story {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 0;
  }

  .product-story-copy > p {
    font-size: 15px;
  }

  .product-highlight-list {
    grid-template-columns: 1fr;
  }

  .product-course {
    width: 100%;
    padding: 62px 20px;
    border-radius: 0;
  }

  .product-information-grid {
    grid-template-columns: 1fr;
    padding-top: 68px;
  }

  .product-detail-list {
    min-height: 0;
  }

  .product-booking-section {
    padding: 68px 0;
  }
}

@media (max-width: 390px) {
  .product-subnav,
.product-facts,
.product-story,
.product-information-grid {
    width: min(calc(100% - 28px), 1120px);
  }
}

.footer {
  background: #151719;
  color: rgba(255, 255, 255, 0.62);
}

.footer-nav button,
.footer-nav a,
.footer-nav span,
.footer-business {
  color: rgba(255, 255, 255, 0.62);
}

.footer-nav > strong {
  color: #ffffff;
}

/* Immersive product story */
.product-page {
  width: 100%;
  max-width: none;
  padding-bottom: 0;
}

.product-hero {
  position: relative;
  min-height: 620px;
  height: min(760px, calc(100vh - 64px));
  overflow: hidden;
  background: #1a211d;
  color: #ffffff;
}

.product-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
}

.product-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 9, 0.72) 0%, rgba(7, 12, 9, 0.24) 58%, rgba(7, 12, 9, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 8, 6, 0.04) 36%, rgba(5, 8, 6, 0.74) 100%);
}

.product-hero-content {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 64px;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 2;
  max-width: 940px;
}

.product-hero-content > p:first-child {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
}

.product-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 760;
  line-height: 1.06;
}

.product-hero-summary {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
}

.product-hero-booking {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 32px;
}

.product-hero-booking > div {
  display: grid;
  gap: 5px;
}

.product-hero-booking span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.product-hero-booking strong {
  font-size: 28px;
}

.product-hero-booking button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  background: #ffffff;
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.product-hero-booking button svg {
  width: 16px;
}

.product-subnav,
.product-facts,
.product-story,
.product-chapters,
.product-information-grid,
.product-booking-section,
.product-policy-panel {
  width: min(calc(100% - 40px), 1180px);
}

.product-subnav {
  top: var(--topbar-height);
  padding: 18px 0;
}

.product-subnav a,
.product-subnav button {
  font-size: 13px;
}

#product-story,
#product-information,
#product-booking {
  scroll-margin-top: calc(var(--topbar-height) + 72px);
}

.product-facts {
  padding: 38px 0;
}

.product-facts span {
  font-size: 11px;
}

.product-facts strong {
  font-size: 14px;
}

.product-story {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 92px;
  padding: 132px 0;
}

.product-story-copy h2,
.product-chapters h2,
.product-transit-story h2,
.product-course h2,
.product-booking-section h2 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 760;
  line-height: 1.13;
}

.product-story-copy > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: #4f4f54;
  font-size: 16px;
  line-height: 1.9;
}

.product-story-media {
  margin: 0;
}

.product-story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-story-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.product-highlight-list {
  grid-template-columns: 1fr;
  margin-top: 38px;
}

.product-highlight-list li {
  min-height: 58px;
  padding-top: 17px;
  padding-bottom: 15px;
}

.product-highlight-list li::before {
  top: 20px;
}

.product-chapters {
  margin-right: auto;
  margin-left: auto;
  padding: 0 0 140px;
}

.product-chapters > header {
  display: grid;
  max-width: 820px;
  justify-items: center;
  margin: 0 auto 56px;
  text-align: center;
}

.product-chapters > header > p:not(.section-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.product-chapters > header .section-kicker {
  text-align: center;
}

.product-chapters > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-chapters article {
  min-width: 0;
}

.product-chapters figure {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.product-chapters img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-chapters article:hover img {
  transform: scale(1.025);
}

.product-chapters article > div {
  padding: 20px 4px 0;
}

.product-chapters article span {
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
}

.product-chapters article h3 {
  margin: 9px 0 0;
  font-size: 21px;
}

.product-chapters article p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product-transit-story {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: #ffffff;
}

.product-transit-story > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.product-transit-story::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 10, 8, 0.72), rgba(6, 10, 8, 0.1) 70%);
  content: "";
}

.product-transit-story > div {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 2;
  max-width: 560px;
  transform: translateY(-50%);
}

.product-transit-story .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.product-transit-story > div > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.product-transit-story strong {
  display: inline-block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.product-course-band {
  scroll-margin-top: calc(var(--topbar-height) + 72px);
  padding: 122px 0;
  background: #ffffff;
}

.product-course {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.product-course > header {
  max-width: 820px;
}

.product-information-grid {
  padding: 122px 0 70px;
}

.product-booking-band {
  background: #ffffff;
}

.product-booking-section {
  padding: 112px 0;
  border-bottom: 0;
}

.product-policy-panel {
  margin-top: 90px;
  margin-bottom: 100px;
}

.footer {
  padding-top: 68px;
  padding-bottom: 48px;
}

.footer-nav button,
.footer-nav a,
.footer-nav span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.7;
}

.footer-nav > strong {
  font-size: 13px;
}

.footer-business,
.footer-business p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.7;
}

.footer-nav button:hover,
.footer-nav a:hover {
  color: #ffffff;
}

@media (max-width: 759px) {
  .product-hero {
    min-height: 610px;
    height: calc(100svh - 64px);
  }

  .product-hero > img {
    object-position: 52% center;
  }

  .product-hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 12, 9, 0.06) 22%, rgba(7, 12, 9, 0.82) 100%);
  }

  .product-hero-content {
    right: 20px;
    bottom: 34px;
    left: 20px;
  }

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

  .product-hero-summary {
    font-size: 14px;
  }

  .product-hero-booking {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .product-hero-booking button {
    width: 100%;
  }

  .product-story {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 88px 0;
  }

  .product-story-copy h2,
.product-chapters h2,
.product-transit-story h2,
.product-course h2,
.product-booking-section h2 {
    font-size: 37px;
  }

  .product-story-media {
    margin-right: -20px;
    margin-left: -20px;
  }

  .product-story-media figcaption {
    padding: 0 20px;
  }

  .product-chapters {
    padding-bottom: 88px;
  }

  .product-chapters > div {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .product-chapters img {
    aspect-ratio: 4 / 3;
  }

  .product-chapters article > div {
    padding-top: 16px;
  }

  .product-transit-story,
.product-transit-story > img {
    min-height: 560px;
    height: 560px;
  }

  .product-transit-story > img {
    object-position: 65% center;
  }

  .product-transit-story::after {
    background: linear-gradient(180deg, rgba(6, 10, 8, 0.12), rgba(6, 10, 8, 0.82));
  }

  .product-transit-story > div {
    top: auto;
    right: 20px;
    bottom: 46px;
    left: 20px;
    transform: none;
  }

  .product-course-band {
    padding: 86px 0;
  }

  .product-course {
    width: min(calc(100% - 40px), 1180px);
    padding: 0;
  }

  .product-information-grid {
    padding: 86px 0 44px;
  }

  .product-booking-section {
    padding: 86px 0;
  }

  .product-policy-panel {
    margin-top: 56px;
    margin-bottom: 72px;
  }

  .footer-inner {
    gap: 38px 24px;
  }

  .footer-nav button,
.footer-nav a,
.footer-nav span {
    font-size: 12px;
  }
}

/* Compact guide information blocks */
.essential-guide {
  gap: 12px;
}

.essential-guide article {
  display: grid;
  min-height: 230px;
  grid-template-columns: 46px minmax(0, 1fr);
  align-content: center;
  gap: 0 18px;
  padding: 34px;
  scroll-margin-top: 140px;
}

.essential-guide article > svg {
  grid-row: 1 / 4;
  grid-column: 1;
  width: 28px;
  height: 28px;
  margin: 2px 0 0;
}

.essential-guide article > span,
.essential-guide article > h2,
.essential-guide article > p {
  grid-column: 2;
}

.essential-guide h2 {
  margin: 8px 0 10px;
}

@media (max-width: 759px) {
  .essential-guide article {
    min-height: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0 13px;
    padding: 26px 22px;
  }

  .essential-guide article > svg {
    width: 24px;
    height: 24px;
    margin-top: 1px;
  }

  .essential-guide h2 {
    margin-top: 7px;
    font-size: 20px;
  }
}

/* Editorial home and customer chat */
.home-hero {
  min-height: min(760px, calc(100svh - 64px));
  background-position: center 54%;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 10, 8, 0.54), rgba(6, 10, 8, 0.06) 68%),
    linear-gradient(180deg, rgba(6, 10, 8, 0.02) 45%, rgba(6, 10, 8, 0.72));
  content: "";
}

.hero-copy {
  z-index: 2;
  max-width: 760px;
}

.home-hero h1 {
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 720;
  line-height: 1.06;
}

.home-hero .hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.75;
}

.home-content > .section#travel-products {
  padding-top: 124px;
}

.travel-grid {
  gap: 20px;
}

.travel-card,
.travel-card:first-child {
  position: relative;
  overflow: hidden;
  background: #f3f4f2;
}

.travel-card:first-child {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.35fr) minmax(350px, 0.65fr);
}

.travel-card:first-child .travel-image {
  height: 540px;
}

.travel-card:first-child .travel-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.travel-card:first-child .travel-body h3 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.2;
}

.travel-card:first-child .travel-body > p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.75;
}

.travel-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 800;
}

.travel-card-link svg {
  width: 16px;
}

.travel-card:not(:first-child) .travel-card-link {
  margin-top: 18px;
}

.home-editorial-story {
  position: relative;
  min-height: 660px;
  margin-top: 128px;
  overflow: hidden;
  color: #ffffff;
}

.home-editorial-story > img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: center;
}

.home-editorial-story::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.74), rgba(8, 12, 10, 0.08) 72%),
    linear-gradient(180deg, transparent 50%, rgba(8, 12, 10, 0.28));
  content: "";
}

.home-editorial-story > div {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 2;
  max-width: 600px;
  transform: translateY(-50%);
}

.home-editorial-story .section-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.home-editorial-story h2 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 720;
  line-height: 1.1;
}

.home-editorial-story > div > p:not(.section-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.75;
}

.home-editorial-story button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.home-editorial-story button svg {
  width: 16px;
}

.travel-chat {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: calc(24px + var(--safe-bottom));
}

body:has(.account-app-shell) .travel-chat {
  display: none;
}

.chat-launcher {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: none;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}

.chat-launcher svg {
  width: 23px;
  height: 23px;
}

.chat-launcher span {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

body.has-fixed-action .travel-chat {
  bottom: calc(172px + var(--safe-bottom));
}

@media (max-width: 980px) {
  .hero-copy {
    max-width: 620px;
  }

  .home-hero h1 {
    font-size: 58px;
  }
}

@media (max-width: 759px) {
  .content-card-grid.count-1,
.content-card-grid.count-2 {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 650px;
    background-position: 58% center;
  }

  .home-hero::after {
    background: linear-gradient(180deg, rgba(6, 10, 8, 0.08) 20%, rgba(6, 10, 8, 0.84) 100%);
  }

  .hero-copy {
    right: 20px;
    bottom: 216px;
    left: 20px;
  }

  .home-hero h1 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .home-hero .hero-copy > p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.65;
  }

  .hero-actions {
    display: flex;
  }

  .hero-button {
    flex: 1 1 145px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .travel-card:first-child {
    display: block;
  }

  .travel-card:first-child .travel-image,
.travel-card:not(:first-child) .travel-image {
    height: 280px;
  }

  .travel-card:first-child .travel-body {
    display: block;
    padding: 26px;
  }

  .travel-card:first-child .travel-body h3 {
    font-size: 28px;
  }

  .home-editorial-story {
    min-height: 610px;
    margin-top: 90px;
  }

  .home-editorial-story > img {
    height: 610px;
    object-position: 62% center;
  }

  .home-editorial-story::after {
    background: linear-gradient(180deg, rgba(8, 12, 10, 0.08), rgba(8, 12, 10, 0.82));
  }

  .home-editorial-story > div {
    top: auto;
    right: 20px;
    bottom: 48px;
    left: 20px;
    transform: none;
  }

  .home-editorial-story h2 {
    font-size: 42px;
  }

  .travel-chat {
    right: 16px;
    bottom: calc(16px + var(--safe-bottom));
  }

  body.has-fixed-action .travel-chat {
    bottom: calc(158px + var(--safe-bottom));
  }
}

/* First-person journey animation */
.home-hero.is-story {
  isolation: isolate;
  overflow: hidden;
  min-height: min(760px, calc(100svh - 64px));
  background: #17221c;
}

.home-hero.is-story::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow:
    inset 0 100px 110px rgba(8, 12, 10, 0.28),
    inset 0 -230px 180px rgba(8, 12, 10, 0.52);
  content: "";
  pointer-events: none;
}

.home-hero.is-story::after {
  z-index: 2;
  background: rgba(7, 11, 9, 0.16);
  pointer-events: none;
}

.home-hero.is-story .hero-story-copy {
  top: 45%;
  right: 50%;
  bottom: auto;
  left: auto;
  z-index: 4;
  width: min(calc(100% - 48px), 940px);
  max-width: none;
  transform: translate(50%, -50%);
  text-align: center;
}

.home-hero.is-story .hero-story-copy .eyebrow {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.journey-caption-stage {
  position: relative;
  width: 100%;
  height: 178px;
  margin: 12px 0 8px;
}

.home-hero.is-story .journey-caption {
  position: absolute;
  inset: 50% 0 auto;
  width: min(100%, 900px);
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(48px, 5.6vw, 78px);
  font-weight: 740;
  line-height: 1.08;
  letter-spacing: 0;
  opacity: 0;
  overflow-wrap: break-word;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.36);
  text-wrap: balance;
  transform: translateY(calc(-50% + 28px));
  word-break: keep-all;
  will-change: opacity, transform, filter;
}

.home-hero.is-story .journey-caption.caption-final {
  animation: none;
  filter: none;
  opacity: 1;
  transform: translateY(-50%);
}

.home-hero.is-story .hero-story-description {
  max-width: 610px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.7;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
  text-wrap: balance;
  word-break: keep-all;
}

.home-hero.is-story .hero-actions {
  justify-content: center;
}

.home-hero.is-story .hero-button:not(.primary) {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(12, 16, 14, 0.26);
  backdrop-filter: blur(12px);
}

@media (max-width: 980px) {
  .home-hero.is-story .hero-story-copy {
    width: min(calc(100% - 40px), 780px);
  }

  .home-hero.is-story .journey-caption {
    font-size: 56px;
  }
}

@media (max-width: 759px) {
  .home-hero.is-story {
    height: clamp(570px, calc(100svh - 128px), 660px);
    min-height: 0;
  }

  .home-hero.is-story::before {
    box-shadow:
      inset 0 72px 80px rgba(8, 12, 10, 0.24),
      inset 0 -260px 170px rgba(8, 12, 10, 0.58);
  }

  .home-hero.is-story .hero-story-copy {
    top: 46px;
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
    transform: none;
  }

  .journey-caption-stage {
    height: 126px;
    margin-top: 7px;
    margin-bottom: 3px;
  }

  .home-hero.is-story .journey-caption {
    font-size: clamp(36px, 9.8vw, 46px);
    line-height: 1.1;
  }

  .home-hero.is-story .hero-story-description {
    max-width: 410px;
    font-size: 12px;
    line-height: 1.6;
  }

  .home-hero.is-story .hero-actions {
    margin-top: 14px;
  }
}

.hero-film {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #17221c;
  object-fit: cover;
  object-position: center;
}

body {
  overflow-x: clip;
}

.home-hero.is-film::after {
  background: rgba(7, 11, 9, 0.28);
}

@media (max-width: 759px) {
  .hero-film {
    object-position: center 42%;
  }
}

@media (min-width: 760px) and (max-width: 900px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .footer-nav:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero.is-film .journey-caption:not(.caption-final) {
    display: none;
  }

  .home-hero.is-film .journey-caption.caption-final {
    opacity: 1;
    filter: none;
    transform: translateY(-50%);
  }
}

/* Full-width sticky product navigation with aligned inner controls. */
.product-subnav {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.product-subnav-inner {
  display: flex;
  width: min(calc(100% - 40px), 1180px);
  gap: 30px;
  margin: 0 auto;
  padding: 18px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-subnav-inner::-webkit-scrollbar {
  display: none;
}

@media (max-width: 759px) {
  .product-subnav-inner {
    width: min(calc(100% - 28px), 1180px);
    gap: 22px;
  }
}

.course-route-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.4fr);
  gap: 36px;
  margin-top: 44px;
  padding: 22px 0;
  border-top: 1px solid #bfc9c2;
  border-bottom: 1px solid #d7ded9;
}

.course-route-overview > div {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.course-route-overview span {
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
}

.course-route-overview strong {
  font-size: 12px;
  line-height: 1.65;
  overflow-wrap: break-word;
  word-break: keep-all;
}

@media (max-width: 759px) {
  .course-route-overview {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
    padding: 18px 0;
  }

  .course-route-overview strong {
    font-size: 11px;
  }
}

/* Structured business footer and stable mobile hero copy. */
.hero-title-mobile {
  display: none;
}

.footer .footer-inner {
  display: block;
}

.footer {
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-directory {
  display: grid;
  grid-template-columns:
    minmax(190px, 1.2fr)
    minmax(180px, 1.1fr)
    minmax(110px, 0.7fr)
    minmax(140px, 0.85fr)
    minmax(90px, 0.45fr);
  gap: 28px;
  padding-top: 20px;
}

.footer .footer-nav {
  min-width: 0;
  gap: 6px;
}

.footer .footer-nav > strong {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 13px;
}

.footer .footer-detail-row {
  display: grid;
  grid-template-columns: minmax(64px, 82px) minmax(0, 1fr);
  align-items: baseline;
  min-width: 0;
  gap: 8px;
}

.footer .footer-detail-row span {
  width: auto;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  cursor: default;
}

.footer .footer-detail-row b,
.footer .footer-detail-row a {
  width: auto;
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.footer .footer-business {
  margin-top: 22px;
  padding-top: 16px;
}

.footer .footer-business p {
  margin: 0;
}

@media (min-width: 1024px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer .footer-inner {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: start;
    gap: clamp(24px, 2.5vw, 36px);
  }

  .footer-directory {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(16px, 1.8vw, 24px);
    padding-top: 0;
  }

  .footer .footer-company {
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 6px;
  }

  .footer .footer-company > strong {
    grid-column: 1 / -1;
  }

  .footer .footer-company .footer-detail-row {
    display: contents;
  }

  .footer .footer-business {
    margin-top: 12px;
    padding-top: 10px;
  }
}

@media (max-width: 980px) {
  .footer-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-company {
    grid-column: span 2;
  }
}

@media (max-width: 759px) {
  .home-hero.is-story .hero-title-desktop {
    display: none;
  }

  .home-hero.is-story .hero-title-mobile {
    display: block;
  }

  .home-hero.is-story .hero-title-mobile > span {
    display: block;
    white-space: nowrap;
  }

  .home-hero.is-story .journey-caption {
    font-size: 34px;
    line-height: 1.08;
  }

  .home-hero.is-story .hero-actions {
    margin-top: 30px;
  }

  .footer {
    padding: 20px;
  }

  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "company company"
      "contact contact"
      "support policies"
      "social policies";
    gap: 12px 20px;
    padding-top: 14px;
  }

  .footer-company {
    grid-area: company;
  }

  .footer-policies {
    grid-area: policies;
  }

  .footer-social {
    grid-area: social;
  }

  .footer .footer-details {
    gap: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer .footer-details > strong {
    margin-bottom: 5px;
  }

  .footer .footer-detail-row {
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    padding: 1px 0;
  }

  .footer .footer-detail-row span {
    padding-top: 1px;
  }

  .footer .footer-detail-row b,
.footer .footer-detail-row a {
    text-align: left;
  }

  .footer .footer-policies,
.footer .footer-social {
    align-self: start;
    gap: 5px;
  }

  .footer .footer-policies button,
.footer .footer-social a,
.footer .footer-social span {
    min-height: 18px;
    line-height: 1.35;
  }

  .footer .footer-business {
    margin-top: 14px;
    padding-top: 10px;
  }

  .footer .footer-business p {
    margin: 0;
    font-size: 9px;
  }
}

@media (max-width: 359px) {
  .home-hero.is-story .journey-caption {
    font-size: 27px;
  }

  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

}

/* The mobile drawer intentionally leaves a narrow view of the current page visible. */
@media (max-width: 759px) {
  .menu-popover {
    width: calc(100vw - 20px) !important;
    padding: 26px 20px;
  }

  .menu-popover-heading {
    padding: 14px 12px 13px;
  }

  .menu-popover-heading strong {
    font-size: 25px;
  }

  .menu-popover-list button {
    min-height: 60px;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 12px;
    font-size: 18px;
  }

  .menu-popover-list svg {
    width: 22px;
    height: 22px;
  }
}

/* Balanced hero rhythm: 18px -> 29px -> 47px (approximately 1.618). */
.home-hero.is-story .hero-story-copy {
  top: 48%;
}

.home-hero.is-story .hero-story-copy .eyebrow {
  margin: 0;
}

.home-hero.is-story .journey-caption-stage {
  margin: 18px 0 0;
}

.home-hero.is-story .hero-story-description {
  margin: 29px auto 0;
}

.home-hero.is-story .hero-actions {
  margin-top: 47px;
}

@media (max-width: 759px) {
  .home-hero.is-story .hero-story-copy {
    top: 117px;
  }

  .home-hero.is-story .journey-caption-stage {
    height: auto;
  }

  .home-hero.is-story .journey-caption.caption-final {
    position: relative;
    inset: auto;
    transform: none;
  }
}

.menu-popover {
  position: fixed;
  z-index: 140;
  top: 0 !important;
  right: 0 !important;
  bottom: 0;
  width: min(360px, 88vw) !important;
  box-sizing: border-box;
  padding: 24px 20px;
  overflow-y: auto;
  border-left: 1px solid rgba(18, 22, 20, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: -20px 0 60px rgba(15, 20, 17, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transform-origin: right center;
  transition:
    opacity 0.18s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.menu-drawer-overlay {
  position: fixed;
  z-index: 139;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.34);
  opacity: 0;
  animation: menu-overlay-in 0.22s ease forwards;
}

@keyframes menu-overlay-in {
  to { opacity: 1; }
}

body.has-menu-drawer {
  overflow: hidden;
  overscroll-behavior: none;
}

.menu-popover-heading {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 12px 12px 11px;
}

.menu-drawer-close {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
}

.menu-popover-heading span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.menu-popover-heading strong {
  font-size: 23px;
}

.menu-popover-list {
  display: grid;
  gap: 2px;
}

.menu-popover-list button {
  display: grid;
  min-height: 54px;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.menu-popover-list button:hover,
.menu-popover-list button:focus-visible {
  background: #f2f5f3;
  outline: none;
}

.menu-popover-list svg {
  width: 20px;
  color: var(--green);
}

/* Optional customer membership */
.topbar:not(.home) {
  grid-template-columns: 48px minmax(0, 1fr) auto;
}

.account-button {
  position: relative;
}

.account-button svg {
  width: 23px;
  height: 23px;
}

.account-page,
.account-page button,
.account-page input,
.checkout-account-note {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.account-page {
  min-height: 68vh;
  padding: 64px max(24px, calc((100vw - 1180px) / 2)) 96px;
  background: var(--soft);
}

.account-page.is-auth-page {
  background: #ffffff;
}

.account-container {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.account-auth-shell {
  width: min(100%, 520px);
  margin: 0 auto;
}

.account-auth-shell > .auth-segments,
.account-auth-shell > .account-form:not(.compact-form),
.account-auth-shell > .account-notice {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
}

.account-container > .auth-segments,
.account-container > .account-form:not(.compact-form),
.account-container > .account-notice,
.account-unconfigured,
.page-loading {
  width: min(100%, 520px);
  margin-right: auto;
  margin-left: auto;
}

.auth-segments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e9ebe8;
}

.auth-segments button {
  min-height: 44px;
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #5f6063;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.auth-segments button.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.07);
}

.account-form {
  display: grid;
  gap: 16px;
}

.account-container > .account-form:not(.compact-form),
.account-auth-shell > .account-form:not(.compact-form) {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.account-form-heading {
  margin-bottom: 6px;
}

.account-form-heading h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
}

.account-form-heading p,
.account-form-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.account-form-note {
  margin: 0;
  text-align: center;
}

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

.account-form .field input,
.checkout-section .field input {
  box-sizing: border-box;
}

.account-form .field input[readonly],
.checkout-section .field input[readonly] {
  border-color: var(--line);
  background: var(--soft);
  color: #606360;
  cursor: not-allowed;
}

.account-form .field.has-validation-error input {
  border-color: #bd372b;
  box-shadow: 0 0 0 3px rgba(189, 55, 43, 0.1);
}

.field-validation-bubble {
  position: relative;
  margin: 2px 0 0;
  padding: 10px 12px;
  border: 1px solid #e6aaa4;
  border-radius: 6px;
  background: #fff6f5;
  color: #9f2f26;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.field-validation-bubble::before,
.field-validation-bubble::after {
  position: absolute;
  left: 16px;
  width: 0;
  height: 0;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  content: "";
}

.field-validation-bubble::before {
  top: -8px;
  border-bottom: 8px solid #e6aaa4;
}

.field-validation-bubble::after {
  top: -6px;
  border-bottom: 7px solid #fff6f5;
}

.signup-email-confirmation {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid #a8c7bc;
  border-radius: 7px;
  background: #f4faf7;
}

.signup-email-confirmation[hidden] {
  display: none;
}

.signup-email-confirmation p,
.signup-email-confirmation strong,
.signup-email-confirmation span {
  margin: 0;
}

.signup-email-confirmation p {
  font-size: 14px;
  font-weight: 800;
}

.signup-email-confirmation strong {
  overflow-wrap: anywhere;
  color: var(--green-dark);
  font-size: 16px;
}

.signup-email-confirmation span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.signup-email-confirmation > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 3px;
}

.signup-email-confirmation .button {
  min-width: 0;
  height: 42px;
  padding: 0 10px;
  font-size: 12px;
}

.account-agreements {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.account-agreements strong {
  color: var(--green-dark);
}

.agreement-links {
  display: flex;
  gap: 14px;
  padding-left: 28px;
}

.agreement-links button,
.forgot-password-link,
.account-back-link,
.resend-confirmation-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.account-submit {
  width: 100%;
  margin-top: 4px;
}

.social-auth {
  display: grid;
  gap: 10px;
}

.social-login-button {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
}

.social-login-button::after {
  width: 28px;
  content: "";
}

.social-login-button.kakao {
  border-color: #f0d900;
  background: #fee500;
  color: rgba(0, 0, 0, 0.85);
}

.social-login-button.naver {
  border-color: #02b351;
  background: #03c75a;
  color: #fff;
}

.social-login-button:hover:not(:disabled) {
  filter: brightness(0.97);
}

.social-login-button:focus-visible {
  outline: 3px solid rgba(23, 107, 85, 0.28);
  outline-offset: 2px;
}

.social-login-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.social-brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
}

.kakao .social-brand-mark {
  background: rgba(0, 0, 0, 0.08);
}

.naver .social-brand-mark {
  background: #fff;
  color: #03c75a;
}

.auth-divider {
  display: grid;
  grid-template-columns: minmax(18px, 1fr) auto minmax(18px, 1fr);
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.auth-divider::before,
.auth-divider::after {
  height: 1px;
  background: var(--line);
  content: "";
}

.forgot-password-link,
.account-back-link,
.resend-confirmation-link {
  justify-self: center;
  min-height: 32px;
  text-decoration: none;
}

.auth-help-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.account-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.account-back-link svg {
  width: 14px;
}

.onboarding-form {
  gap: 17px;
}

.onboarding-heading .account-icon {
  margin-bottom: 15px;
}

.onboarding-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.onboarding-agreements {
  padding: 15px 0 2px;
  border-top: 1px solid var(--line);
}

.onboarding-signout {
  justify-self: center;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.onboarding-signout:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.account-error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.account-notice {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-bottom: 14px;
  padding: 13px 15px;
  border: 1px solid #bfd9cb;
  border-radius: 8px;
  background: #edf7f1;
  color: var(--green-dark);
}

.account-notice.error {
  border-color: #e5c4c4;
  background: #fff2f2;
  color: var(--danger);
}

.account-notice svg {
  width: 20px;
  margin-top: 1px;
}

.account-notice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.account-icon,
.account-avatar {
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
}

.account-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 8px;
}

.account-icon svg {
  width: 26px;
}

.recovery-form .account-form-heading {
  text-align: left;
}

.account-profile-header {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, 920px);
  gap: 18px;
  margin: 0 auto 18px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.account-avatar {
  width: 58px;
  height: 58px;
  border-radius: 8px;
}

.account-avatar svg {
  width: 27px;
}

.account-profile-header > div > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
}

.account-profile-header h1 {
  margin: 3px 0 2px;
  font-size: 25px;
}

.account-profile-header p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
}

.button.compact {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  padding: 8px 13px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
}

.button.compact svg {
  width: 15px;
}

.account-profile-header ~ .account-notice {
  width: min(100%, 920px);
}

.account-section-tabs {
  display: grid;
  box-sizing: border-box;
  width: min(100%, 920px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin: 0 auto 18px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.account-section-tabs button {
  display: inline-flex;
  min-width: 0;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.account-section-tabs button:hover,
.account-section-tabs button:focus-visible {
  background: #f2f5f3;
  color: var(--ink);
  outline: none;
}

.account-section-tabs button:focus-visible {
  box-shadow: inset 0 0 0 2px var(--green);
}

.account-section-tabs button.is-active {
  background: var(--ink);
  color: var(--white);
}

.account-section-tabs svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.account-section-tabs button em {
  display: inline-flex;
  min-width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--green);
  color: var(--white);
  font-size: 9px;
  font-style: normal;
  line-height: 1;
}

.account-section-tabs button.is-active em {
  background: var(--white);
  color: var(--ink);
}

.account-dashboard {
  box-sizing: border-box;
  width: min(100%, 920px);
  margin: 0 auto;
}

.account-section {
  box-sizing: border-box;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.account-section-heading,
.my-reservation-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.account-section-heading {
  margin-bottom: 20px;
}

.account-section-heading h2 {
  margin: 0;
  font-size: 21px;
}

.account-section-heading > span {
  color: var(--muted);
  font-size: 12px;
}

.compact-form {
  gap: 13px;
}

.compact-form .field input {
  height: 46px;
}

.compact-form .button {
  min-height: 46px;
}

.account-preference-section {
  width: 100%;
  margin: 0 auto;
}

.account-preference-section .compact-form > .button {
  width: fit-content;
  min-width: 170px;
  justify-self: end;
}

.account-settings-group + .account-settings-group,
.account-danger-zone {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.account-settings-group .account-section-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.account-danger-zone summary {
  display: grid;
  min-height: 56px;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  color: var(--danger);
  cursor: pointer;
  list-style: none;
}

.account-danger-zone summary::-webkit-details-marker {
  display: none;
}

.account-danger-zone summary > span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid #e6c9c9;
  border-radius: 6px;
  background: #fff7f7;
  place-items: center;
}

.account-danger-zone summary > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.account-danger-zone summary strong {
  font-size: 13px;
}

.account-danger-zone summary small,
.account-danger-zone .account-form > p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.account-danger-zone summary > svg {
  width: 17px;
  transition: transform 180ms ease;
}

.account-danger-zone[open] summary > svg {
  transform: rotate(180deg);
}

.account-danger-zone .account-form {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid #ead1d1;
  border-radius: 7px;
  background: #fffafa;
}

.account-danger-zone .account-form > p {
  margin: 0;
}

.account-section-link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.account-section-link svg {
  width: 15px;
  height: 15px;
}

.account-trip-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.account-trip-overview > div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  text-align: center;
}

.account-trip-overview > div + div {
  border-left: 1px solid var(--line);
}

.account-trip-overview strong {
  font-size: 25px;
  line-height: 1;
}

.account-trip-overview span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.account-mileage-balance {
  display: grid;
  gap: 7px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9f8;
}

.account-mileage-balance > span,
.account-mileage-balance > small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.account-mileage-balance > strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.1;
}

.account-mileage-history h3 {
  margin: 0 0 10px;
  font-size: 14px;
}

.account-mileage-list {
  border-top: 1px solid var(--ink);
}

.account-mileage-item {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}

.account-mileage-item > div {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.account-mileage-item strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-mileage-item span {
  color: var(--muted);
  font-size: 10px;
}

.account-mileage-item em {
  flex: 0 0 auto;
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
}

.account-mileage-item em.is-earned {
  color: var(--green-dark);
}

.account-mileage-item em.is-pending {
  color: #7a6332;
}

.account-mileage-item em.is-reversed {
  color: #9f3333;
}

.account-reservation-filters {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  touch-action: pan-x;
}

.account-reservation-filters::-webkit-scrollbar {
  display: none;
}

.account-reservation-filters button {
  display: inline-flex;
  min-width: max-content;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.account-reservation-filters button em {
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  font-size: 9px;
  font-style: normal;
}

.account-reservation-filters button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.account-reservation-filters button.is-active em {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.my-reservation-list {
  border-top: 1px solid var(--ink);
}

.pending-payment-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.pending-payment-item {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pending-payment-item > img,
.pending-payment-placeholder {
  width: 176px;
  height: 100%;
  min-height: 164px;
  border-radius: 6px;
}

.pending-payment-item > img {
  object-fit: cover;
}

.pending-payment-placeholder {
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--muted);
}

.pending-payment-placeholder svg {
  width: 24px;
}

.pending-payment-content {
  min-width: 0;
}

.pending-payment-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.pending-payment-heading > div {
  min-width: 0;
}

.pending-payment-heading span {
  color: var(--muted);
  font-size: 10px;
}

.pending-payment-heading h3 {
  margin: 5px 0 0;
  font-size: 17px;
  line-height: 1.45;
}

.pending-payment-countdown {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.pending-payment-content dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 12px;
}

.pending-payment-content dl > div {
  display: grid;
  gap: 4px;
}

.pending-payment-content dt {
  color: var(--muted);
  font-size: 9px;
}

.pending-payment-content dd {
  margin: 0;
  overflow-wrap: break-word;
  font-size: 11px;
  font-weight: 750;
}

.pending-payment-content > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.pending-payment-button {
  min-height: 46px;
}

.my-reservation-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.my-reservation-heading > div {
  min-width: 0;
}

.my-reservation-heading > div > span {
  color: var(--muted);
  font-size: 10px;
}

.my-reservation-heading h3 {
  margin: 5px 0 0;
  font-size: 17px;
  line-height: 1.45;
}

.status-chip {
  flex: 0 0 auto;
}

.reservation-summary-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.reservation-summary-list > div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  font-size: 12px;
}

.reservation-summary-list dt {
  color: var(--muted);
}

.reservation-summary-list dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}

.my-reservation-detail {
  margin: 2px 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.my-reservation-detail summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.my-reservation-detail summary::-webkit-details-marker {
  display: none;
}

.my-reservation-detail summary svg {
  width: 15px;
  transition: transform 160ms ease;
}

.my-reservation-detail[open] summary svg {
  transform: rotate(180deg);
}

.my-reservation-detail dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 2px 0 16px;
}

.my-reservation-detail dl > div {
  display: grid;
  gap: 4px;
}

.my-reservation-detail dt {
  color: var(--muted);
  font-size: 9px;
}

.my-reservation-detail dd {
  margin: 0;
  overflow-wrap: break-word;
  font-size: 11px;
  font-weight: 750;
}

.reservation-contact-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 16px;
  padding: 11px 12px;
  border-left: 3px solid var(--green);
  background: var(--soft);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.reservation-contact-note svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--green);
}

.my-reservation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.my-reservation-actions .button,
.lookup-cancel-button,
.lookup-cancel-support .button {
  min-height: 46px;
  touch-action: manipulation;
}

.lookup-cancel-support {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.lookup-cancel-support p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.reservation-cancel-dialog {
  width: min(calc(100% - 32px), 440px);
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.reservation-cancel-dialog::backdrop {
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
}

.reservation-cancel-dialog-content {
  display: grid;
  padding: 28px;
}

.reservation-cancel-dialog-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid #e2bebe;
  border-radius: 7px;
  background: #fff7f7;
  color: var(--danger);
  place-items: center;
}

.reservation-cancel-dialog-icon svg {
  width: 20px;
  height: 20px;
}

.reservation-cancel-dialog h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
}

.reservation-cancel-dialog-content > p:not(.reservation-cancel-dialog-error) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.reservation-cancel-quote {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  border-block: 1px solid var(--line);
}

.reservation-cancel-quote[hidden] {
  display: none;
}

.reservation-cancel-quote > div {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.reservation-cancel-quote > div:last-child {
  border-bottom: 0;
}

.reservation-cancel-quote dt,
.reservation-cancel-quote dd {
  margin: 0;
  font-size: 13px;
}

.reservation-cancel-quote dt {
  color: var(--muted);
}

.reservation-cancel-quote dd {
  font-weight: 850;
}

.reservation-cancel-policy {
  padding-left: 10px;
  border-left: 3px solid var(--green);
  color: var(--ink) !important;
  font-weight: 750;
}

.reservation-cancel-dialog-error {
  margin: 16px 0 0;
  padding: 11px 12px;
  border: 1px solid #e2bebe;
  border-radius: 6px;
  background: #fff7f7;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.55;
}

.reservation-cancel-dialog-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.reservation-cancel-dialog-actions .button {
  width: 100%;
  min-height: 50px;
  touch-action: manipulation;
}

@media (max-width: 520px) {
  .my-reservation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .my-reservation-actions .button,
  .lookup-cancel-button,
  .lookup-cancel-support .button {
    width: 100%;
    min-height: 50px;
  }

  .pending-payment-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
  }

  .pending-payment-item > img,
  .pending-payment-placeholder {
    width: 82px;
    height: 108px;
    min-height: 0;
  }

  .pending-payment-heading {
    display: grid;
    gap: 7px;
  }

  .pending-payment-countdown {
    font-size: 18px;
  }

  .pending-payment-content dl {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 12px;
  }

  .pending-payment-content dl > div {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .pending-payment-button {
    width: 100%;
  }

  .reservation-cancel-dialog-content {
    padding: 24px 20px 20px;
  }
}

.account-section-heading > div > p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.account-review-trip-list {
  border-top: 1px solid var(--ink);
}

.account-review-trip {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.account-review-trip > img,
.account-review-trip-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 6px;
}

.account-review-trip > img {
  object-fit: cover;
}

.account-review-trip-placeholder {
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--muted);
}

.account-review-trip-placeholder svg {
  width: 22px;
}

.account-review-trip > div {
  min-width: 0;
}

.account-review-trip > div > span {
  color: var(--muted);
  font-size: 10px;
}

.account-review-trip h3 {
  margin: 5px 0 0;
  overflow-wrap: break-word;
  font-size: 15px;
  line-height: 1.45;
}

.account-review-complete {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.account-review-complete svg {
  width: 16px;
}

.account-review-trip-actions {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.account-review-complete.is-hidden {
  color: #8a5b20;
}

.account-review-delete {
  min-height: 26px;
  color: #a0443d;
  font-size: 10px;
}

.account-review-form {
  scroll-margin-top: 88px;
}

.account-review-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.account-review-close:hover,
.account-review-close:focus-visible {
  border-color: var(--ink);
  outline: none;
}

.account-review-close svg {
  width: 18px;
}

.guest-reservation-link {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.guest-reservation-link summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 0;
  list-style: none;
  cursor: pointer;
}

.guest-reservation-link summary::-webkit-details-marker {
  display: none;
}

.guest-reservation-link summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.guest-reservation-link-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  background: var(--soft);
  color: var(--green-dark);
}

.guest-reservation-link-icon svg {
  width: 18px;
}

.guest-reservation-link summary > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.guest-reservation-link summary strong {
  font-size: 13px;
}

.guest-reservation-link summary small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.guest-reservation-link summary > svg {
  width: 17px;
  color: var(--muted);
  transition: transform 180ms ease;
}

.guest-reservation-link[open] summary > svg {
  transform: rotate(180deg);
}

.guest-reservation-link .account-form {
  padding: 8px 0 4px 50px;
}

.guest-reservation-link .account-form > .button {
  width: fit-content;
  min-width: 170px;
  justify-self: end;
}

.account-loading,
.account-empty,
.account-inline-error,
.account-unconfigured {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.account-loading {
  min-height: 250px;
  color: var(--muted);
}

.account-loading .spinner {
  width: 28px;
  height: 28px;
}

.account-loading p {
  margin: 14px 0 0;
  font-size: 12px;
}

.page-loading,
.account-unconfigured {
  min-height: 420px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.account-unconfigured h1 {
  margin: 0;
  font-size: 26px;
}

.account-unconfigured p {
  max-width: 390px;
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.account-empty,
.account-inline-error {
  min-height: 320px;
  padding: 28px 12px;
}

.account-empty > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--muted);
}

.account-empty strong {
  font-size: 16px;
}

.account-empty p,
.account-inline-error p {
  max-width: 330px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.checkout-account-note {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 13px;
  border-left: 3px solid var(--orange);
  background: var(--soft);
}

.checkout-account-note.is-member {
  border-left-color: var(--green);
}

.checkout-account-note > svg {
  width: 19px;
  color: var(--green);
}

.checkout-account-note strong,
.checkout-account-note p {
  display: block;
}

.checkout-account-note strong {
  font-size: 12px;
}

.checkout-account-note p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.checkout-account-note button {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 900px) {
  .account-container {
    width: min(100%, 720px);
  }
}

@media (max-width: 759px) {
  .header-actions {
    gap: 0;
  }

  .header-actions .icon-button,
.topbar-actions .icon-button {
    width: 40px;
    height: 40px;
  }

  .menu-popover {
    width: calc(100vw - 20px) !important;
    padding: 26px 20px;
  }

  .menu-popover-heading {
    padding: 14px 12px 13px;
  }

  .menu-popover-heading strong {
    font-size: 25px;
  }

  .menu-popover-list button {
    min-height: 60px;
    font-size: 18px;
  }

  .menu-popover-list svg {
    width: 22px;
  }

  .topbar:not(.home) {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    padding-right: 10px;
    padding-left: 10px;
  }

  .topbar:not(.home) .page-title {
    font-size: 16px;
  }

  .account-page {
    padding: 30px 16px 68px;
  }

  .account-container,
  .account-auth-shell,
  .account-unconfigured,
  .account-container > .account-form:not(.compact-form),
  .account-auth-shell > .account-form:not(.compact-form) {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .account-container > .account-form:not(.compact-form),
  .account-auth-shell > .account-form:not(.compact-form) {
    padding: 24px 20px;
  }

  .account-form-heading h2 {
    font-size: 24px;
  }

  .social-login-button {
    min-height: 50px;
    padding-right: 13px;
    padding-left: 13px;
  }

  .auth-divider {
    gap: 9px;
  }

  .field-pair {
    grid-template-columns: 1fr;
  }

  .account-profile-header {
    grid-template-columns: 48px minmax(0, 1fr) 40px;
    gap: 13px;
    padding: 17px 16px;
  }

  .account-avatar {
    width: 48px;
    height: 48px;
  }

  .account-profile-header h1 {
    font-size: 21px;
  }

  .account-profile-header > .button {
    width: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 6px;
  }

  .account-profile-header > .button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .account-section-tabs {
    gap: 2px;
  }

  .account-section-tabs button {
    min-height: 58px;
    flex-direction: column;
    gap: 4px;
    padding: 7px 3px;
    font-size: 10px;
  }

  .account-section-tabs svg {
    width: 16px;
    height: 16px;
  }

  .account-reservation-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    touch-action: manipulation;
  }

  .account-reservation-filters button {
    min-width: 0;
    justify-content: center;
  }

  .account-section {
    padding: 21px 18px;
  }

  .account-trip-overview > div {
    padding: 15px 8px;
  }

  .account-trip-overview strong {
    font-size: 22px;
  }

  .account-mileage-balance {
    padding: 20px 18px;
  }

  .account-mileage-balance > strong {
    font-size: 27px;
  }

  .account-mileage-item {
    align-items: flex-start;
  }

  .account-mileage-item strong {
    white-space: normal;
  }

  .account-review-trip {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .account-review-trip > img,
.account-review-trip-placeholder {
    width: 58px;
    height: 58px;
  }

  .account-review-trip > .button,
.account-review-complete {
    grid-column: 2;
    justify-self: start;
  }

  .account-review-trip-actions {
    grid-column: 2;
    grid-template-columns: auto auto;
    align-items: center;
    column-gap: 12px;
    justify-items: start;
  }

  .account-review-trip-actions .account-review-complete {
    grid-column: 1 / -1;
  }

  .my-reservation-detail dl {
    grid-template-columns: 1fr;
  }

  .account-review-form {
    margin-top: 30px;
    padding: 22px 16px;
  }

  .account-preference-section .compact-form > .button,
.guest-reservation-link .account-form > .button {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .account-settings-group + .account-settings-group,
  .account-danger-zone {
    margin-top: 24px;
    padding-top: 24px;
  }

  .account-danger-zone .account-form {
    padding: 16px;
  }

  .guest-reservation-link .account-form {
    padding-left: 0;
  }

  .page-loading,
.account-unconfigured {
    min-height: 360px;
    padding: 28px 22px;
  }

  .account-unconfigured h1 {
    font-size: 23px;
  }

  .account-error-actions {
    width: 100%;
  }

  .account-error-actions .button {
    width: 100%;
  }

  .checkout-account-note {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .checkout-account-note button {
    grid-column: 2;
    justify-self: start;
  }
}

/* Home sizing rhythm: preserve the existing sections and align their visual scale. */
.home-content > .section#travel-products {
  padding-top: 112px;
}

.home-content > .section .section-heading {
  margin-bottom: 30px;
}

.home-content > .section .section-heading h2,
.partner-showcase-heading h2 {
  font-size: 42px;
  line-height: 1.2;
}

.home-content > .section .section-heading > div > p:not(.section-kicker),
.partner-showcase-heading > p:last-child {
  font-size: 15px;
  line-height: 1.7;
}

.partner-showcase {
  padding-top: 72px;
  padding-bottom: 76px;
  background: #f2f5f1;
}

.partner-showcase-heading {
  width: min(calc(100% - 48px), 920px);
}

.partner-showcase-heading h2 {
  font-size: 52px;
  font-weight: 690;
}

.partner-showcase-heading > p:last-child {
  max-width: 540px;
  margin: 16px auto 0;
  font-size: 16px;
}

.partner-logo-marquee {
  margin-top: 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.partner-logo-group {
  gap: 24px;
  padding-right: 24px;
}

.partner-logo-item {
  position: relative;
  width: 360px;
  height: 156px;
  flex-basis: 360px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(18, 38, 30, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(19, 38, 31, 0.12);
  isolation: isolate;
}

.partner-logo-item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 20, 17, 0) 58%, rgba(8, 20, 17, 0.16));
  content: "";
  pointer-events: none;
}

.partner-logo-item img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.partner-logo-item:hover img {
  transform: scale(1.035);
}

.partner-logo-item.is-logo {
  padding: 24px 38px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(19, 38, 31, 0.08);
}

.partner-logo-item.is-logo::after {
  display: none;
}

.partner-logo-item.is-logo img {
  object-fit: contain;
}

@media (min-width: 760px) and (max-width: 1023px) {
  .home-content > .section .section-heading h2,
.partner-showcase-heading h2 {
    font-size: 38px;
  }

  .partner-showcase {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .partner-logo-item {
    width: 312px;
    height: 146px;
    flex-basis: 312px;
  }

  .partner-logo-item.is-logo {
    padding: 22px 34px;
  }
}

@media (max-width: 759px) {
  .home-content > .section {
    width: calc(100% - 28px);
  }

  .home-content > .section#travel-products {
    padding-top: 84px;
  }

  .home-content > .section .section-heading {
    margin-bottom: 24px;
  }

  .home-content > .section .section-heading h2,
.partner-showcase-heading h2 {
    font-size: 34px;
  }

  .home-content > .section .section-heading > div > p:not(.section-kicker),
.partner-showcase-heading > p:last-child {
    font-size: 14px;
    line-height: 1.65;
  }

  .partner-showcase {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .partner-showcase-heading {
    width: calc(100% - 28px);
  }

  .partner-logo-marquee {
    margin-top: 28px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .partner-logo-group {
    gap: 16px;
    padding-right: 16px;
  }

  .partner-logo-item {
    width: 272px;
    height: 122px;
    flex-basis: 272px;
    padding: 0;
  }

  .partner-logo-item.is-logo {
    padding: 18px 24px;
  }

  /* Mobile navigation remains readable over every section while scrolling. */
  .topbar,
.topbar.home,
.topbar:not(.home) {
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .partner-logo-track {
    animation-duration: 52s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
}


/* Product category anchor navigation */
.product-discovery {
  position: relative;
  background: #ffffff;
}

.product-intro-section,
.product-category-section {
  width: min(calc(100% - 40px), 1180px);
  margin-right: auto;
  margin-left: auto;
}

.product-intro-section {
  padding-top: 108px;
  padding-bottom: 34px;
}

.product-intro-section .section-heading {
  margin-bottom: 0;
}

.product-category-nav {
  position: sticky;
  z-index: 40;
  top: var(--topbar-height);
  width: 100%;
  overflow: visible;
  padding-top: 1px;
  border-bottom: 1px solid #dedfdd;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
}

.product-category-nav-divider {
  position: absolute;
  z-index: 1;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  background: #d3d8d4;
  pointer-events: none;
}

.product-category-nav-inner {
  display: flex;
  align-items: stretch;
  width: min(calc(100% - 40px), 1180px);
  height: 58px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  touch-action: pan-x;
}

.product-category-nav-inner::-webkit-scrollbar {
  display: none;
}

.product-category-tab {
  position: relative;
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: #777a77;
  font: inherit;
  font-size: 14px;
  font-weight: 680;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease;
}

.product-category-tab::after {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 2px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-category-tab:hover,
.product-category-tab:focus-visible,
.product-category-tab.is-active {
  color: var(--ink);
}

.product-category-tab:focus-visible {
  outline: 2px solid rgba(31, 122, 84, 0.3);
  outline-offset: -4px;
}

.product-category-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-category-sections {
  padding-bottom: 48px;
}

.product-category-section {
  padding-top: 78px;
  scroll-margin-top: 146px;
}

.product-category-section + .product-category-section {
  margin-top: 10px;
  border-top: 1px solid #eceeeb;
}

.product-category-heading h2 {
  font-size: clamp(27px, 3vw, 36px);
}

.product-category-heading .section-kicker {
  color: var(--green);
}

@media (max-width: 759px) {
  .topbar,
.topbar.home,
.topbar:not(.home) {
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .product-intro-section,
.product-category-section {
    width: calc(100% - 28px);
  }

  .product-intro-section {
    padding-top: 78px;
    padding-bottom: 26px;
  }

  .product-intro-section .section-heading {
    gap: 22px;
  }

  .product-category-nav {
    top: var(--topbar-height);
  }

  .product-category-nav-inner {
    box-sizing: border-box;
    width: 100%;
    height: 52px;
    padding: 0 8px;
    scroll-padding: 8px;
  }

  .product-category-tab {
    min-height: 52px;
    flex: 0 0 auto;
    padding: 0 14px;
    font-size: 14px;
  }

  .product-category-tab::after {
    right: 14px;
    left: 14px;
  }

  .product-category-section {
    padding-top: 58px;
    scroll-margin-top: 128px;
  }

  #travel-products .product-category-heading {
    align-items: flex-end;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 24px;
  }

  .product-category-heading h2 {
    font-size: 27px;
  }

  .product-category-heading > div > p:not(.section-kicker) {
    font-size: 13px;
  }
}

/* Benchmark-informed editorial hero. Classic mode keeps the previous layout intact. */
.home-hero.is-story.hero-layout-editorial {
  height: clamp(680px, calc(100svh - 64px), 820px);
  min-height: 680px;
  background: #111713;
}

.home-hero.is-story.hero-layout-editorial::before {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 10, 8, 0.42) 0%, rgba(7, 10, 8, 0.08) 32%, rgba(7, 10, 8, 0.18) 63%, rgba(7, 10, 8, 0.74) 100%),
    linear-gradient(90deg, rgba(7, 10, 8, 0.2), transparent 32%, transparent 68%, rgba(7, 10, 8, 0.2));
  box-shadow: none;
}

.home-hero.is-story.hero-layout-editorial::after {
  z-index: 2;
  background: rgba(6, 9, 7, 0.08);
}

.home-hero.hero-layout-editorial .hero-film {
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.012);
}

.home-hero.is-story.hero-layout-editorial .hero-story-copy {
  top: 44%;
  right: 50%;
  bottom: auto;
  left: auto;
  z-index: 4;
  width: min(calc(100% - 48px), 980px);
  transform: translate(50%, -50%);
  text-align: center;
}

.home-hero.is-story.hero-layout-editorial .hero-story-copy .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero.is-story.hero-layout-editorial .hero-story-copy .eyebrow::before,
.home-hero.is-story.hero-layout-editorial .hero-story-copy .eyebrow::after {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.56);
  content: "";
}

.home-hero.is-story.hero-layout-editorial .journey-caption-stage {
  height: 178px;
  margin: 16px 0 0;
}

.home-hero.is-story.hero-layout-editorial .journey-caption.caption-final {
  max-width: 960px;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 680;
  line-height: 1.06;
  text-shadow: 0 5px 32px rgba(0, 0, 0, 0.38);
}

.home-hero.is-story.hero-layout-editorial .hero-story-description {
  max-width: 580px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.75;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.44);
}

.home-hero.is-story.hero-layout-editorial .hero-actions {
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.home-hero.is-story.hero-layout-editorial .hero-button {
  min-width: 154px;
  min-height: 52px;
  padding: 0 24px;
  border-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  background: rgba(8, 12, 10, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 720;
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-hero.is-story.hero-layout-editorial .hero-button.primary {
  border-color: #ffffff;
  background: #ffffff;
  color: #151916;
}

.home-hero.is-story.hero-layout-editorial .hero-button:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.home-hero.is-story.hero-layout-editorial .hero-button.primary:hover {
  background: #f1f4f1;
  color: #151916;
}

.hero-scroll-cue {
  display: none;
}

.hero-layout-editorial .hero-scroll-cue {
  position: absolute;
  top: auto;
  bottom: 116px;
  left: 50%;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 8px 18px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 38px;
  overflow: hidden;
}

.hero-scroll-line::after {
  display: block;
  width: 1px;
  height: 100%;
  margin: 0 auto;
  background: #ffffff;
  content: "";
  animation: hero-scroll-line 1.9s 0.15s ease-in-out infinite;
}

.hero-scroll-cue:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@keyframes hero-scroll-line {
  0% {
    transform: translateY(-100%);
  }

  25%,
  50%,
  75% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(100%);
  }
}

.hero-layout-editorial .hero-theme-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(9, 13, 10, 0.38);
  color: #ffffff;
  -webkit-backdrop-filter: saturate(120%) blur(20px);
  backdrop-filter: saturate(120%) blur(20px);
}

.hero-theme-rail-inner {
  display: block;
  width: min(calc(100% - 40px), 1180px);
  height: 100%;
  margin: 0 auto;
}

.hero-theme-list {
  display: grid;
  grid-template-columns: none;
  grid-auto-columns: minmax(220px, 1fr);
  grid-auto-flow: column;
  height: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  touch-action: pan-x;
}

.hero-theme-list::-webkit-scrollbar {
  display: none;
}

.hero-theme-link {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0 14px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  scroll-snap-align: start;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.hero-theme-link:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-theme-link::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 2px;
  background: #ffffff;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-theme-link svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.7;
}

.hero-theme-link:hover,
.hero-theme-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-theme-link:hover::after,
.hero-theme-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-theme-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -4px;
}

@media (max-width: 759px) {
  .home-hero.is-story.hero-layout-editorial {
    height: clamp(640px, calc(100svh - 64px), 700px);
    min-height: 640px;
  }

  .home-hero.is-story.hero-layout-editorial::before {
    background:
      linear-gradient(180deg, rgba(7, 10, 8, 0.34) 0%, rgba(7, 10, 8, 0.06) 28%, rgba(7, 10, 8, 0.2) 58%, rgba(7, 10, 8, 0.76) 100%);
  }

  .home-hero.is-story.hero-layout-editorial .hero-story-copy {
    top: 47%;
    right: 18px;
    left: 18px;
    width: auto;
    transform: translateY(-50%);
  }

  .home-hero.is-story.hero-layout-editorial .hero-story-copy .eyebrow {
    gap: 9px;
    font-size: 10px;
  }

  .home-hero.is-story.hero-layout-editorial .hero-story-copy .eyebrow::before,
.home-hero.is-story.hero-layout-editorial .hero-story-copy .eyebrow::after {
    width: 22px;
  }

  .home-hero.is-story.hero-layout-editorial .journey-caption-stage {
    height: auto;
    margin-top: 16px;
  }

  .home-hero.is-story.hero-layout-editorial .journey-caption.caption-final {
    position: relative;
    inset: auto;
    font-size: clamp(31px, 9.2vw, 40px);
    line-height: 1.1;
    transform: none;
  }

  .home-hero.is-story.hero-layout-editorial .hero-story-description {
    max-width: 340px;
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.7;
  }

  .home-hero.is-story.hero-layout-editorial .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 340px);
    gap: 8px;
    margin: 32px auto 0;
  }

  .home-hero.is-story.hero-layout-editorial .hero-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-layout-editorial .hero-scroll-cue {
    bottom: 90px;
    gap: 7px;
    padding: 6px 14px;
    font-size: 11px;
  }

  .hero-scroll-line {
    height: 30px;
  }

  .hero-layout-editorial .hero-theme-rail {
    height: 78px;
  }

  .hero-theme-rail-inner {
    width: 100%;
  }

  .hero-theme-list {
    grid-auto-columns: minmax(min(25vw, 96px), 1fr);
  }

  .hero-theme-link {
    gap: 7px;
    padding: 0 3px;
    font-size: 11px;
  }

  .hero-theme-link::after {
    right: 10px;
    left: 10px;
  }

  .hero-theme-link svg {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 760px) and (max-width: 1023px) {
  .hero-theme-list {
    grid-auto-columns: minmax(180px, 1fr);
  }
}

@media (max-width: 359px) {
  .home-hero.is-story.hero-layout-editorial .journey-caption.caption-final {
    font-size: 29px;
  }

  .hero-theme-link {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line::after {
    animation: none;
    transform: none;
  }

  .home-hero.hero-layout-editorial .hero-film,
.home-hero.is-story.hero-layout-editorial .hero-button,
.hero-theme-link,
.hero-theme-link::after {
    transition: none;
  }
}

/* Storefront home color system. Remove this block to restore the previous palette. */
.home-content {
  --home-ink: #111713;
  --home-muted: #68736d;
  --home-line: #dde4df;
  --home-surface: #ffffff;
  --home-surface-soft: #ffffff;
  --home-ocean: #176b87;
  --home-ocean-deep: #0c2e35;
  --home-brand: var(--green);
  --home-accent: var(--orange);
  background: var(--home-surface);
  color: var(--home-ink);
}

.topbar.home {
  border-bottom-color: #e7ece8;
  background: rgba(255, 255, 255, 0.96);
  color: #111713;
}

.topbar.home .brand,
.topbar.home .icon-button {
  color: #111713;
}

.topbar.home .icon-button:hover,
.topbar.home .icon-button:focus-visible {
  background: #f3f6f3;
  color: var(--green-dark);
}

.home-content .home-hero.is-story.hero-layout-editorial {
  background: var(--home-ocean-deep);
}

.home-content .home-hero.is-story.hero-layout-editorial::before {
  background:
    linear-gradient(180deg, rgba(5, 24, 29, 0.46) 0%, rgba(5, 24, 29, 0.08) 32%, rgba(5, 24, 29, 0.2) 63%, rgba(5, 24, 29, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 24, 29, 0.24), transparent 32%, transparent 68%, rgba(5, 24, 29, 0.24));
}

.home-content .home-hero.is-story.hero-layout-editorial::after {
  background: rgba(4, 28, 34, 0.08);
}

.home-content .home-hero.hero-layout-editorial .hero-film {
  filter: saturate(0.9) contrast(1.03);
}

.home-content .home-hero.is-story.hero-layout-editorial .hero-button {
  background: rgba(12, 46, 53, 0.24);
}

.home-content .home-hero.is-story.hero-layout-editorial .hero-button.primary {
  background: var(--home-surface);
  color: var(--home-ink);
}

.home-content .home-hero.is-story.hero-layout-editorial .hero-button.primary:hover {
  background: var(--home-surface-soft);
  color: var(--home-ink);
}

.home-content .hero-layout-editorial .hero-theme-rail {
  background: rgba(7, 38, 45, 0.72);
}

.home-content .hero-theme-link:hover,
.home-content .hero-theme-link:focus-visible {
  background: rgba(23, 107, 135, 0.24);
}

.home-content .product-discovery,
.home-content .product-category-sections {
  background: var(--home-surface);
}

.home-content .product-category-nav {
  border-bottom-color: var(--home-line);
  background: rgba(255, 255, 255, 0.98);
}

.home-content .product-category-nav-divider {
  background: var(--home-line);
}

.home-content .product-category-tab {
  color: var(--home-muted);
}

.home-content .product-category-tab:hover,
.home-content .product-category-tab:focus-visible,
.home-content .product-category-tab.is-active {
  color: var(--green);
}

.home-content .product-category-tab:focus-visible {
  outline-color: color-mix(in srgb, var(--home-brand) 30%, transparent);
}

.home-content .product-category-tab::after,
.home-content .product-category-heading .section-kicker,
.home-content .section-kicker,
.home-content .travel-kicker {
  color: var(--home-brand);
}

.home-content .product-category-tab::after {
  background: var(--home-brand);
}

.home-content .product-category-section + .product-category-section {
  border-top-color: var(--home-line);
}

.home-content .section-heading > div > p:not(.section-kicker),
.home-content .travel-body > p,
.home-content .content-card > p {
  color: var(--home-muted);
}

.home-content .travel-card,
.home-content .travel-card:first-child,
.home-content .content-card {
  background: var(--home-surface-soft);
  box-shadow: inset 0 0 0 1px var(--home-line);
}

.home-content .travel-card:hover,
.home-content .content-card:hover {
  background: var(--home-surface-soft);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--home-brand) 24%, var(--home-line)),
    0 20px 48px rgba(17, 39, 30, 0.1);
}

.home-content .travel-image,
.home-content .content-card-icon {
  background: var(--home-surface);
}

.home-content .travel-image img,
.home-content .content-card > img,
.home-content .home-editorial-story > img,
.home-content .partner-logo-item.is-photo img {
  filter: saturate(0.9) contrast(1.03);
}

.home-content .location-tag {
  background: rgba(255, 255, 255, 0.92);
  color: var(--home-ink);
}

.home-content .card-meta,
.home-content .notice-item,
.home-content .notice-list {
  border-color: var(--home-line);
}

.home-content .date-line {
  color: var(--home-muted);
}

.home-content .seat-left {
  color: var(--home-accent);
}

.home-content .card-price {
  color: var(--home-ink);
}

.home-content .home-editorial-story::after {
  background:
    linear-gradient(90deg, rgba(6, 35, 41, 0.82), rgba(6, 35, 41, 0.08) 72%),
    linear-gradient(180deg, transparent 48%, rgba(6, 35, 41, 0.34));
}

.home-content .home-editorial-story button {
  border-bottom-color: rgba(255, 255, 255, 0.66);
}

.home-content .partner-showcase {
  background: #ffffff;
}

.home-content .partner-showcase-heading h2 {
  color: var(--home-ink);
}

.home-content .partner-showcase-heading > p:last-child {
  color: var(--home-muted);
}

.home-content .partner-logo-item,
.home-content .partner-logo-item.is-logo {
  border: 0;
  background: #ffffff;
  box-shadow: none;
}

.home-content .content-card > span:not(.content-card-icon),
.home-content .content-card-icon,
.home-content .notice-item span {
  color: var(--home-brand);
}

.home-content .service-guide .notice-list {
  border-top-color: var(--home-ink);
}

.home-content .notice-item {
  background: var(--home-surface);
}

.home-content + .footer {
  background: #111713;
  color: rgba(255, 255, 255, 0.64);
}

.home-content + .footer .footer-nav button,
.home-content + .footer .footer-nav a,
.home-content + .footer .footer-nav span,
.home-content + .footer .footer-business {
  color: rgba(255, 255, 255, 0.64);
}

.home-content + .footer .footer-nav > strong {
  color: #ffffff;
}

@media (max-width: 759px) {
  .topbar.home {
    background: #ffffff;
  }

  .home-content .home-hero.is-story.hero-layout-editorial::before {
    background: linear-gradient(180deg, rgba(5, 24, 29, 0.38) 0%, rgba(5, 24, 29, 0.07) 28%, rgba(5, 24, 29, 0.22) 58%, rgba(5, 24, 29, 0.8) 100%);
  }
}

/* Home page vertical rhythm. Keep section content and card layouts unchanged. */
.product-intro-section {
  padding-top: 88px;
  padding-bottom: 28px;
}

.product-category-sections {
  padding-bottom: 24px;
}

.product-category-section {
  padding-top: 64px;
}

.product-category-section + .product-category-section {
  margin-top: 8px;
}

.home-editorial-story {
  margin-top: 72px;
}

.home-content .partner-showcase {
  padding-top: 56px;
  padding-bottom: 52px;
}

.home-content .partner-logo-marquee {
  margin-top: 30px;
}

.home-content + .footer {
  margin-top: 0;
}

@media (max-width: 759px) {
  .product-intro-section {
    padding-top: 64px;
    padding-bottom: 22px;
  }

  .product-category-sections {
    padding-bottom: 16px;
  }

  .product-category-section {
    padding-top: 48px;
  }

  .product-category-section + .product-category-section {
    margin-top: 8px;
  }

  .home-editorial-story {
    margin-top: 56px;
  }

  .home-content .partner-showcase {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .home-content .partner-logo-marquee {
    margin-top: 24px;
  }
}

/* Compact operational menu, continuous mobile partners, and concise footer. */
.menu-popover-heading {
  gap: 5px;
  padding: 10px 9px 8px;
}

.menu-popover-list button {
  min-height: 44px;
  grid-template-columns: 22px max-content;
  gap: 8px;
  padding: 7px 9px;
}

.menu-popover-list svg {
  width: 18px;
  height: 18px;
}

/* Structured travel drawer */
.menu-popover {
  width: min(410px, calc(100vw - 20px)) !important;
  padding: 22px 24px 18px;
}

.menu-popover-heading {
  gap: 6px;
  padding: 4px 44px 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-popover-heading strong {
  font-size: 22px;
  line-height: 1.35;
  word-break: keep-all;
}

.menu-member-summary {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.menu-member-summary > button {
  display: grid;
  width: 100%;
  min-height: 58px;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.menu-member-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #edf4f0;
  color: var(--green);
}

.menu-member-icon svg {
  width: 19px;
  height: 19px;
}

.menu-member-summary > button > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.menu-member-summary strong {
  font-size: 15px;
}

.menu-member-summary small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-member-summary > button > svg {
  width: 17px;
  color: var(--muted);
}

.menu-popover-groups {
  display: grid;
}

.menu-popover-section {
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--line);
}

.menu-popover-section h2 {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.menu-popover-list {
  gap: 0;
}

.menu-popover-list button {
  min-height: 42px;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  padding: 6px 4px;
  border-radius: 4px;
  font-size: 15px;
}

.menu-popover-list svg {
  width: 17px;
  height: 17px;
}

.menu-featured {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.menu-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.menu-section-heading span {
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
}

.menu-section-heading strong {
  font-size: 12px;
}

.menu-featured-card {
  display: grid;
  width: 100%;
  grid-template-columns: 82px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.menu-featured-card img {
  display: block;
  width: 82px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  background: var(--soft);
}

.menu-featured-card > span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.menu-featured-card small,
.menu-featured-card em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
}

.menu-featured-card strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-featured-card > svg {
  width: 17px;
  color: var(--green);
}

.menu-popover-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding-top: 15px;
}

.menu-popover-social a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.menu-popover-social a:hover,
.menu-popover-social a:focus-visible {
  color: var(--green);
}

.menu-popover-social svg {
  width: 15px;
  height: 15px;
}

/* Search uses the menu's visual language in a task-focused top drawer. */
.search-popover {
  position: fixed;
  z-index: 140;
  top: 0 !important;
  right: 0 !important;
  bottom: auto;
  left: 0 !important;
  width: 100% !important;
  height: min(720px, 78dvh) !important;
  max-width: none;
  max-height: none !important;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(18, 22, 20, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 24px 60px rgba(15, 20, 17, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition:
    opacity 0.18s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.search-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.search-drawer-overlay {
  position: fixed;
  z-index: 139;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.34);
  opacity: 0;
  animation: menu-overlay-in 0.22s ease forwards;
}

html.has-search-drawer,
body.has-search-drawer {
  overflow: hidden;
  overscroll-behavior: none;
}

.search-popover-inner {
  display: grid;
  width: min(calc(100% - 48px), 1080px);
  height: 100%;
  max-height: none;
  grid-template-rows: auto auto auto auto minmax(0, 1fr);
  margin: 0 auto;
  padding: 24px 0 18px;
  overflow: hidden;
}

.search-popover header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 48px 16px 0;
  border-bottom: 1px solid var(--line);
}

.search-popover header span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.search-popover header h2 {
  margin: 6px 0 0;
  font-size: 22px;
  line-height: 1.35;
}

.search-drawer-close {
  top: 0;
}

.search-intro {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  word-break: keep-all;
}

.search-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  padding: 0 15px;
  border: 1px solid #c9cfcb;
  border-radius: 6px;
  background: #fff;
}

.search-field:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(33, 95, 69, 0.08);
}

.search-field input {
  height: 52px;
  padding: 0;
  background: transparent;
  font-size: 15px;
}

.search-field input::-webkit-search-cancel-button {
  display: none;
}

.search-clear {
  display: none;
  width: 28px;
  height: 28px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--muted);
  cursor: pointer;
}

.search-field.has-query .search-clear {
  display: grid;
}

.search-clear svg {
  width: 14px;
  height: 14px;
}

.search-result-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 2px 10px;
}

.search-result-summary strong {
  font-size: 13px;
}

.search-result-summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  min-height: 0;
  margin-top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid var(--line);
  touch-action: pan-y;
}

.search-results > button {
  grid-template-columns: 88px minmax(0, 1fr) 20px;
  min-width: 0;
  min-height: 104px;
  padding: 14px 12px 14px 2px;
  border-bottom: 1px solid var(--line);
}

.search-results > button:nth-child(odd) {
  margin-right: 16px;
}

.search-results > button:nth-child(even) {
  margin-left: 16px;
}

.search-results img {
  width: 88px;
  height: 72px;
  border-radius: 4px;
}

.search-results strong {
  font-size: 15px;
}

.search-empty {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  gap: 8px;
  padding: 54px 20px;
  color: var(--muted);
  text-align: center;
}

.search-empty svg {
  width: 24px;
  height: 24px;
}

.search-empty strong {
  color: var(--ink);
  font-size: 14px;
}

.search-empty span {
  font-size: 12px;
}

@media (max-width: 759px) {
  .menu-popover {
    padding: 20px 18px 16px;
  }

  .menu-popover-heading {
    padding-right: 42px;
    padding-bottom: 15px;
  }

  .menu-popover-heading strong {
    font-size: 22px;
  }

  .menu-popover-section {
    padding-top: 13px;
    padding-bottom: 10px;
  }

  .menu-popover-list button {
    min-height: 41px;
    font-size: 16px;
  }

  .search-popover {
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: min(700px, 86dvh) !important;
    max-width: none;
  }

  .search-popover-inner {
    width: calc(100% - 36px);
    padding: 20px 0 14px;
  }

  .search-popover header {
    padding-right: 44px;
    padding-bottom: 15px;
  }

  .search-intro {
    margin-top: 13px;
    font-size: 12px;
  }

  .search-field {
    margin-top: 11px;
  }

  .search-field input {
    height: 50px;
    font-size: 16px;
  }

  .search-result-summary {
    padding-top: 14px;
  }

  .search-results {
    grid-template-columns: minmax(0, 1fr);
  }

  .search-results > button {
    grid-template-columns: 76px minmax(0, 1fr) 18px;
    min-height: 92px;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 11px 2px;
  }

  .search-results img {
    width: 76px;
    height: 64px;
  }
}

/* Minimal full-screen search inspired by the reference interaction. */
.search-drawer-overlay {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(2px);
}

.search-popover {
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(-18px);
  transition:
    opacity 0.18s ease,
    transform 0.24s ease;
}

.search-popover-inner {
  display: block;
  width: min(calc(100% - 48px), 790px);
  height: auto;
  margin: 0 auto;
  padding: 30px 0 0;
  overflow: visible;
}

.search-field {
  grid-template-columns: 28px minmax(0, 1fr) 30px;
  gap: 8px;
  margin: 0;
  padding: 0 17px;
  border: 1px solid #9c9c9c;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 8px 14px rgba(17, 17, 17, 0.18);
}

.search-field:focus-within {
  border-color: #777;
  box-shadow: 0 8px 14px rgba(17, 17, 17, 0.18);
}

.search-field > svg {
  width: 25px;
  height: 25px;
  color: var(--green);
  stroke-width: 1.8;
}

.search-field input {
  height: 58px;
  font-size: 18px;
}

.search-field input::placeholder {
  color: #646b67;
  opacity: 1;
}

.search-clear {
  background: transparent;
}

.search-results {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-height: min(56dvh, 520px);
  margin-top: 8px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #b8b8b8;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.14);
  clip-path: inset(0 round 6px);
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.search-results[hidden] {
  display: none;
}

.search-results > button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  min-height: 66px;
  margin: 0 !important;
  padding: 12px 17px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  text-align: left;
}

.search-results > button:last-child {
  border-bottom: 0;
}

.search-results > button:hover,
.search-results > button:focus-visible {
  background: #f5f7f6;
}

.search-results > button span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.search-results > button strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-results > button small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-results > button > svg {
  width: 16px;
  color: var(--muted);
}

.search-empty {
  min-height: 116px;
  padding: 24px;
}

@media (max-width: 759px) {
  .search-popover {
    width: 100% !important;
    height: auto !important;
  }

  .search-popover-inner {
    width: calc(100% - 32px);
    padding-top: 18px;
  }

  .search-field {
    grid-template-columns: 25px minmax(0, 1fr) 28px;
    padding: 0 14px;
  }

  .search-field > svg {
    width: 22px;
    height: 22px;
  }

  .search-field input {
    height: 54px;
    font-size: 17px;
  }

  .search-results {
    max-height: calc(100dvh - 98px);
  }

  .search-results > button {
    min-height: 64px;
    padding: 11px 14px;
  }
}

.footer {
  padding: 16px 20px 14px;
}

.footer .footer-inner,
.footer .footer-business {
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
}

.footer .footer-inner {
  display: block;
}

.footer-directory {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(150px, 0.65fr) minmax(90px, 0.35fr);
  gap: clamp(24px, 4vw, 64px);
  padding: 0;
}

.footer .footer-company {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 24px;
}

.footer .footer-company > strong {
  grid-column: 1 / -1;
}

.footer .footer-company .footer-detail-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 7px;
  padding: 0;
}

.footer .footer-nav,
.footer .footer-details,
.footer .footer-business {
  border: 0;
}

.footer .footer-nav {
  gap: 3px;
}

.footer .footer-nav > strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.footer .footer-detail-row span {
  font-size: 9px;
  line-height: 1.4;
}

.footer .footer-detail-row b,
.footer .footer-detail-row a,
.footer .footer-policies button,
.footer .footer-social a,
.footer .footer-social span {
  min-height: 0;
  font-size: 10px;
  line-height: 1.45;
}

.footer .footer-business {
  margin-top: 8px;
  padding-top: 0;
}

.footer .footer-business p {
  font-size: 9px;
  line-height: 1.35;
}

@media (max-width: 759px) {
  .schedule-page .page-intro {
    padding-bottom: 14px;
  }

  .schedule-category-tabs {
    border-top: 0;
  }

  .footer {
    padding: 14px;
  }

  .footer-directory {
    width: 100%;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1.55fr) minmax(104px, 0.45fr);
    grid-template-areas:
      "company policies"
      "company social";
    align-items: start;
    gap: 8px 14px;
    padding: 0;
  }

  .footer .footer-company {
    grid-area: company;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer .footer-policies {
    grid-area: policies;
  }

  .footer .footer-social {
    grid-area: social;
  }

  .footer .footer-details {
    gap: 0;
    padding: 0;
    border: 0;
  }

  .footer .footer-company .footer-detail-row {
    display: block;
    padding: 0;
    line-height: 1.45;
  }

  .footer .footer-company .footer-detail-row span,
  .footer .footer-company .footer-detail-row b,
  .footer .footer-company .footer-detail-row a {
    display: inline;
    width: auto;
    min-width: 0;
    line-height: inherit;
    vertical-align: baseline;
  }

  .footer .footer-company .footer-detail-row span {
    margin-right: 6px;
  }

  .footer .footer-company .footer-detail-row.is-address {
    white-space: nowrap;
  }

  .footer .footer-company .footer-detail-row.is-address b {
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .footer .footer-policies,
  .footer .footer-social {
    gap: 2px;
  }

  .footer .footer-business {
    margin-top: 7px;
    padding: 0;
    border: 0;
  }
}

@media (max-width: 359px) {
  .footer-directory {
    grid-template-columns: 1fr 96px;
    column-gap: 10px;
  }
}

/* Final product-detail overrides: compact rows with title-adjacent icons. */
.product-information-grid {
  gap: 12px 56px;
  padding: 62px 0 34px;
}

.product-detail-list {
  min-height: 0;
  padding: 22px 0;
  border-top: 0;
}

.product-detail-heading {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.product-detail-heading h2 {
  margin: 0;
  text-align: left;
}

.product-detail-heading > span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: #edf4f0;
  color: var(--green);
}

.product-detail-heading > span svg {
  width: 16px;
  height: 16px;
}

.product-detail-list ul,
.product-detail-list > p {
  text-align: left;
}

@media (max-width: 759px) {
  .product-information-grid {
    gap: 6px;
    padding: 48px 0 34px;
  }

  .product-detail-list {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .product-hero {
    height: calc(100svh - var(--topbar-height));
  }

  .product-hero-booking button {
    width: calc(100% - 74px);
  }
}

/* Product-detail mobile flow and seat checkout bar. */
.bus-note {
  display: grid;
  gap: 5px;
}

.rear-seat-discount-note {
  color: #656966;
  font-weight: 650;
}

body.has-seat-fixed-action,
body.has-seat-fixed-action .app-shell {
  padding-bottom: calc(128px + var(--safe-bottom));
}

.seat-fixed-action .action-summary,
.seat-fixed-action .primary-action {
  min-height: 64px;
  box-sizing: border-box;
}

.seat-fixed-action .action-summary {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 10px 18px;
  text-align: center;
}

.seat-fixed-action .action-summary span {
  min-width: 0;
  overflow: hidden;
  color: #222522;
  font-size: 15px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seat-fixed-action .action-summary i {
  width: 1px;
  height: 18px;
  flex: 0 0 1px;
  background: #d7d9d7;
}

.seat-fixed-action .action-price {
  flex: 0 0 auto;
  color: #111;
  font-size: 18px !important;
}

.seat-fixed-action .primary-action,
.seat-fixed-action .primary-action:disabled {
  min-height: 64px;
  padding: 12px 20px calc(12px + var(--safe-bottom));
  background: #000;
  color: #fff;
  font-size: 19px;
}

.seat-fixed-action .primary-action:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

@media (min-width: 760px) {
  body.has-seat-fixed-action,
  body.has-seat-fixed-action .app-shell {
    padding-bottom: 128px;
  }
}

@media (max-width: 759px) {
  .product-page {
    display: flex;
    flex-direction: column;
  }

  .product-page > .product-hero {
    order: 1;
  }

  .product-page > .product-subnav {
    order: 2;
  }

  .product-page > .product-facts {
    order: 3;
  }

  .product-page > .product-course-band {
    order: 4;
  }

  .product-page > .product-information-grid {
    order: 5;
  }

  .product-page > .product-booking-band {
    order: 6;
  }

  .product-page > #product-reviews {
    order: 7;
  }

  .product-story,
  .product-chapters,
  .product-transit-story,
  .product-subnav [data-section="product-story"] {
    display: none;
  }

  .product-hero-content {
    bottom: 64px;
  }

  .product-facts {
    padding: 4px 0 8px;
    border-bottom: 0;
  }

  .product-facts article,
  .product-facts article:nth-child(odd),
  .product-facts article:nth-last-child(-n + 2) {
    padding: 10px 8px;
    border-bottom: 0;
  }

  .product-course-band {
    padding: 20px 0 12px;
  }

  .product-information-grid {
    gap: 4px;
    padding: 10px 0 30px;
  }

  .product-detail-list {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .seat-fixed-action .action-summary {
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .seat-fixed-action .action-summary span {
    font-size: 13px;
  }

  .seat-fixed-action .action-price {
    font-size: 17px !important;
  }
}

/* Course media, compact schedule entry, and balanced checkout confirmation. */
.journey-flow-stop figure {
  aspect-ratio: 4 / 3;
  margin: 18px -12px 0;
  overflow: hidden;
  background: var(--soft);
}

.journey-flow-stop figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-flow-stop figure + h3 {
  margin-top: 22px;
}

.course-route-overview {
  grid-template-columns: minmax(0, 1fr);
}

.course-route-overview span {
  font-size: 14.4px;
}

.course-route-overview strong {
  font-size: 14.4px;
  line-height: 1.7;
}

.product-course-band {
  padding-bottom: 0;
}

.product-course-band + .product-information-grid {
  margin-top: 50px;
  padding-top: 0;
}

.schedule-category-tabs {
  margin-bottom: 10px;
  border-top: 0;
  border-bottom: 0;
}

.schedule-page .page-intro {
  padding-top: 30px;
  padding-bottom: 18px;
}

.schedule-page .page-intro h1 {
  font-size: clamp(34px, 5vw, 52px);
}

.schedule-page .page-intro > p:not(.section-kicker) {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
}

.checkout-fixed-action .fixed-action-inner {
  box-sizing: border-box;
  height: calc(76px + var(--safe-bottom));
  min-height: calc(76px + var(--safe-bottom));
  max-height: calc(76px + var(--safe-bottom));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
}

.checkout-fixed-action {
  height: calc(76px + var(--safe-bottom));
  min-height: calc(76px + var(--safe-bottom));
  max-height: calc(76px + var(--safe-bottom));
  overflow: hidden;
}

.checkout-fixed-seat,
.checkout-fixed-action .primary-action {
  display: flex;
  box-sizing: border-box;
  min-width: 0;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px var(--safe-bottom);
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
}

.checkout-fixed-seat {
  background: #fff;
  color: #111;
}

.checkout-fixed-seat span {
  color: var(--muted);
  font-size: inherit;
  font-weight: 700;
}

.checkout-fixed-seat strong,
.checkout-fixed-action .primary-action strong,
.checkout-fixed-action .primary-action span {
  font-size: inherit;
}

.checkout-fixed-action .primary-action {
  background: #000;
  color: #fff;
}

.checkout-fixed-action .primary-action strong {
  font-weight: 900;
}

@media (max-width: 759px) {
  .product-facts {
    padding: 20px 0 0;
    border-top: 0;
    border-bottom: 0;
  }

  .product-facts article,
  .product-facts article:nth-child(odd),
  .product-facts article:nth-last-child(-n + 2) {
    justify-items: center;
    padding: 12px 8px;
    border-bottom: 0;
    text-align: center;
  }

  .product-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-course-band {
    padding: 50px 0 0;
  }

  .product-course-band + .product-information-grid {
    margin-top: 50px;
    padding-top: 0;
  }

  .journey-flow-grid {
    margin-top: 34px;
  }

  .journey-flow-stop figure {
    margin-right: 0;
    margin-left: 0;
  }

  .course-route-overview {
    gap: 0;
  }

  .course-route-overview span,
  .course-route-overview strong {
    font-size: 14.4px;
  }

  .schedule-page .page-intro {
    padding-top: 14px;
    padding-bottom: 4px;
  }

  .schedule-page .page-intro .section-kicker {
    margin-bottom: 5px;
  }

  .schedule-page .page-intro h1 {
    font-size: 30px;
  }

  .schedule-page .page-intro > p:not(.section-kicker) {
    max-width: 340px;
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.45;
  }

  .schedule-category-tabs {
    margin-bottom: 4px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .schedule-calendar-toolbar {
    min-height: 64px;
    padding: 5px 0;
  }

  .schedule-calendar-legend {
    padding-bottom: 8px;
  }

  .schedule-calendar-weekdays span {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .schedule-calendar-day {
    box-sizing: border-box;
    height: 52px;
    min-height: 52px;
    overflow: hidden;
    padding: 2px;
  }

  .schedule-calendar-date {
    min-height: 25px;
    padding-bottom: 1px;
  }

  .schedule-calendar-date time {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .schedule-calendar-trips {
    min-height: 7px;
    gap: 2px;
  }

  .schedule-calendar-trip {
    width: 6px;
    height: 6px;
    flex-basis: 6px;
  }

  .schedule-calendar-more {
    display: none;
  }

  .checkout-fixed-seat,
  .checkout-fixed-action .primary-action {
    gap: 4px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 16px;
  }

  .checkout-fixed-seat {
    flex-direction: column;
  }

  .checkout-fixed-action .primary-action {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

/* Keep the editorial journey layout authoritative over legacy detail rules. */
.product-course-band {
  padding-top: 96px;
}

.course-route-overview {
  display: block;
  grid-template-columns: none;
  gap: 0;
  margin-top: 48px;
  padding: 0;
  border: 1px solid #d9dedb;
}

.course-route-overview-inner > header {
  padding-bottom: 6px;
}

.course-route-track button {
  padding-top: 10px;
}

.course-route-track li:not(:last-child)::after {
  top: 23px;
}

.journey-flow-grid {
  display: block;
  margin-top: 78px;
  border: 0;
}

.journey-flow-stop {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding: 0 0 82px;
  border: 0;
}

.journey-flow-stop + .journey-flow-stop {
  padding-top: 82px;
  border-top: 1px solid #e0e4e1;
}

.journey-flow-stop.is-reverse {
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 1.4fr);
}

.journey-flow-stop figure {
  margin: 0;
  overflow: visible;
  background: transparent;
}

.journey-flow-stop figure img {
  aspect-ratio: 16 / 10;
  border-radius: 4px;
}

.journey-flow-stop .journey-stop-copy h3 {
  margin: 0;
}

.journey-stop-copy > header {
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.journey-stop-copy > header > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.journey-stop-copy > header > span::after {
  width: 20px;
  height: 1px;
  background: #cfd7d2;
  content: "";
}

.journey-stop-copy > header > time {
  color: #646d68;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

@media (max-width: 759px) {
  .product-course-band {
    padding-top: 58px;
  }

  .course-route-overview {
    width: calc(100% + 40px);
    margin-top: 32px;
    margin-left: -20px;
    padding: 0;
    border-right: 0;
    border-left: 0;
  }

  .journey-flow-grid {
    margin-top: 48px;
  }

  .journey-flow-stop,
  .journey-flow-stop.is-reverse {
    display: block;
    padding: 0 0 46px;
  }

  .journey-flow-stop + .journey-flow-stop {
    padding-top: 46px;
  }

  .journey-flow-stop figure {
    margin: 0;
  }

  .journey-flow-stop figure img {
    aspect-ratio: 4 / 3;
  }

  .journey-stop-copy > header {
    margin-bottom: 9px;
  }
}

/* Home header: transparent over the hero, solid after the hero. */
  .home-content .product-category-nav {
    top: 64px;
  }

  .topbar.home {
    box-sizing: border-box;
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-bottom-color: transparent;
    background: transparent;
    color: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition:
      background-color 240ms ease,
      border-color 240ms ease,
      box-shadow 240ms ease,
      color 240ms ease;
  }

  .topbar.home .brand,
  .topbar.home .icon-button {
    color: inherit;
    transition:
      background-color 180ms ease,
      color 240ms ease;
  }

  .topbar.home .brand-logo {
    filter: brightness(0) invert(1);
    transition: filter 240ms ease;
  }

  .topbar.home .icon-button:hover,
  .topbar.home .icon-button:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
  }

  .topbar.home.is-solid,
  body.has-search-drawer .topbar.home,
  body.has-menu-drawer .topbar.home {
    border-bottom-color: #e7ece8;
    background: rgba(255, 255, 255, 0.97);
    color: #111713;
    box-shadow: 0 1px 0 rgba(17, 23, 19, 0.04);
    -webkit-backdrop-filter: saturate(1.8) blur(20px);
    backdrop-filter: saturate(1.8) blur(20px);
  }

  .topbar.home.is-solid .brand-logo,
  body.has-search-drawer .topbar.home .brand-logo,
  body.has-menu-drawer .topbar.home .brand-logo {
    filter: none;
  }

  .topbar.home.is-solid .icon-button:hover,
  .topbar.home.is-solid .icon-button:focus-visible,
  body.has-search-drawer .topbar.home .icon-button:hover,
  body.has-search-drawer .topbar.home .icon-button:focus-visible,
  body.has-menu-drawer .topbar.home .icon-button:hover,
  body.has-menu-drawer .topbar.home .icon-button:focus-visible {
    background: #f3f6f3;
    color: var(--green-dark);
  }
/* Full-viewport hero composition across desktop and mobile. */
  .home-content .home-hero.is-story.hero-layout-editorial {
    box-sizing: border-box;
    height: 100svh;
    min-height: 100svh;
    max-height: none;
  }

  .home-content .home-hero.is-story.hero-layout-editorial .hero-actions {
    gap: 30px;
  }

  .home-content .hero-layout-editorial .hero-scroll-cue {
    bottom: 0;
    padding: 8px 18px 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
  }

  .home-content .hero-layout-editorial .hero-theme-rail {
    display: none;
  }

/* Keep every customer header aligned to the home header. */
.topbar,
.topbar.home,
.topbar:not(.home) {
  box-sizing: border-box;
  height: 65px;
  min-height: 65px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar:not(.home) {
  grid-template-columns: 48px minmax(0, 1fr) auto;
}

.topbar-actions {
  gap: 4px;
}

@media (max-width: 759px) {
  :root {
    --topbar-height: 58px;
  }

  .topbar,
  .topbar.home,
  .topbar:not(.home) {
    height: 58px;
    min-height: 58px;
  }

  .home-content .product-category-nav {
    top: var(--topbar-height);
  }

  .topbar:not(.home) {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    padding-right: 18px;
    padding-left: 18px;
  }

  .topbar-actions {
    gap: 0;
  }

  .topbar:not(.home) .topbar-actions {
    transform: translateY(-1px);
  }
}

/* Keep the gallery introduction and first complete image inside the mobile fold. */
@media (max-width: 759px) {
  .gallery-page {
    padding-top: 24px;
  }

  .gallery-page-intro h1 {
    margin-top: 6px;
    font-size: 34px;
    line-height: 1.1;
  }

  .gallery-page-intro > p:last-child {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.55;
  }

  .travel-gallery-grid {
    margin-top: 20px;
  }

  .travel-gallery-grid .gallery-entry,
  .travel-gallery-grid .gallery-entry.is-wide {
    height: auto;
    min-height: 0;
    background: transparent;
  }

  .travel-gallery-grid .gallery-entry > img {
    position: relative;
    inset: auto;
    display: block;
    height: auto;
    object-fit: contain;
  }

  .travel-gallery-grid .gallery-entry:hover > img {
    transform: none;
  }
}
