/* 2026 public-site polish layer. Kept isolated from the original Pen-aligned
   stylesheet so the brand composition and functional templates remain easy
   to maintain. */
:root {
  --brand-blue: #075bd8;
  --brand-deep: #082356;
  --brand-cyan: #16a8dd;
  --surface-soft: #f5f9ff;
  --surface-blue: #edf6ff;
  --modern-line: rgba(18, 71, 143, .12);
  --modern-shadow: 0 22px 55px rgba(10, 50, 112, .11);
}

body {
  overflow-x: hidden;
  background: linear-gradient(180deg, #fff 0, #fbfdff 62%, #fff 100%);
  text-rendering: optimizeLegibility;
}

html { scroll-padding-top: 82px; }

::selection { background: #cfe6ff; color: var(--brand-deep); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: height .25s ease, box-shadow .25s ease, background-color .25s ease;
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(7, 66, 154, .08);
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(8, 45, 104, .09);
  background: rgba(255, 255, 255, .9);
}

.header-brand { transition: transform .25s ease; }
.header-brand:hover { transform: translateY(-1px); }

.main-nav { gap: 8px; }
.main-nav a {
  position: relative;
  height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 20px;
  transition: color .2s ease, background-color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-blue);
  transform: translateX(-50%);
  transition: width .2s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--brand-blue); background: #eef5ff; border: 0; }
.main-nav a.active::after { width: 16px; }

.book-now {
  min-height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0865e8, #0749ba);
  box-shadow: 0 10px 24px rgba(7, 79, 196, .24);
  transition: transform .2s ease, box-shadow .2s ease;
}
.book-now:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(7, 79, 196, .3); }

.hero { height: 646px; isolation: isolate; }
.hero-image {
  background-position: center 48%;
  transform: scale(1.015);
  animation: heroSettle 1.2s cubic-bezier(.2,.7,.2,1) both;
}
.hero-overlay {
  background:
    radial-gradient(circle at 25% 46%, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,.17) 42%, transparent 72%),
    linear-gradient(0deg, rgba(4,34,82,.08), transparent 44%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(8,45,96,.14), transparent);
  z-index: -1;
}
.hero-content { padding-top: 120px; }
.hero .eyebrow {
  padding: 9px 14px;
  letter-spacing: 1.55px;
  box-shadow: 0 9px 24px rgba(13, 61, 128, .11);
}
.hero h1 {
  max-width: 670px;
  font-size: clamp(58px, 5.7vw, 78px);
  letter-spacing: -3.5px;
  text-wrap: balance;
  text-shadow: 0 2px 1px rgba(255,255,255,.25);
}
.hero-content > p:not(.eyebrow) { font-size: 16px; line-height: 1.55; }
.hero-actions { gap: 13px; }
.hero .button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.hero .button:hover { transform: translateY(-2px); }
.hero .primary { box-shadow: 0 13px 30px rgba(6, 79, 199, .27); }
.hero .outline { background: rgba(255,255,255,.88); backdrop-filter: blur(10px); }

.hero-trust {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: max-content;
  margin-top: 28px;
  padding: 12px 4px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 14px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 14px 32px rgba(15, 55, 108, .1);
  backdrop-filter: blur(12px);
}
.hero-trust span { min-width: 116px; padding: 0 17px; border-right: 1px solid rgba(18,60,120,.13); }
.hero-trust span:last-child { border: 0; }
.hero-trust b,
.hero-trust small { display: block; }
.hero-trust b { color: #0756d8; font: 800 17px/1 Outfit, sans-serif; }
.hero-trust small { margin-top: 5px; color: #53647f; font-size: 9px; font-weight: 600; }

.search-card {
  margin-top: -44px;
  padding: 13px 16px;
  border: 1px solid rgba(20, 85, 168, .1);
  border-radius: 18px;
  box-shadow: 0 25px 65px rgba(9, 52, 117, .15);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
}
.search-card label {
  min-height: 54px;
  border-radius: 10px;
  transition: background-color .2s ease, box-shadow .2s ease;
}
.search-card label:focus-within { background: #f4f8ff; box-shadow: inset 0 0 0 1px #d8e7fc; }
.search-card button {
  min-height: 48px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0966ea, #0749ba);
  transition: transform .2s ease, box-shadow .2s ease;
}
.search-card button:hover { transform: translateY(-2px); box-shadow: 0 13px 26px rgba(7, 80, 202, .26); }

.section { padding-top: 82px; }
.section-heading { margin-bottom: 24px; }
.section-kicker {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font: 800 9px/1 Outfit, sans-serif;
  letter-spacing: 1.7px;
}
.section-heading h2 { font-size: clamp(27px, 2.45vw, 34px); letter-spacing: -1.15px; }
.section-heading > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 20px;
  transition: background-color .2s ease, transform .2s ease;
}
.section-heading > a:hover { background: #eef5ff; transform: translateX(2px); }

.destination-grid { gap: 20px; }
.destination-card,
.tour-card {
  position: relative;
  border-color: var(--modern-line);
  border-radius: 19px;
  box-shadow: 0 10px 30px rgba(13, 52, 105, .07);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.destination-card:hover,
.tour-card:hover {
  transform: translateY(-7px);
  border-color: rgba(7, 86, 216, .22);
  box-shadow: 0 25px 48px rgba(11, 55, 119, .14);
}
.card-image { position: relative; overflow: hidden; background: #e9f1fa; }
.card-image::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(0deg, rgba(6,31,76,.35), transparent);
  pointer-events: none;
  opacity: .65;
}
.card-image img { transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.destination-card:hover .card-image img,
.tour-card:hover .card-image img { transform: scale(1.055); filter: saturate(1.08); }
.card-arrow {
  position: absolute;
  z-index: 2;
  right: 13px;
  top: 13px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(7,49,110,.26);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: opacity .25s ease, transform .25s ease, background-color .25s ease;
}
.destination-card:hover .card-arrow,
.tour-card:hover .card-arrow { opacity: 1; transform: translate(0,0); }

.destination-card { height: 328px; }
.destination-card .card-image { height: 190px; }
.destination-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.destination-icon {
  width: 48px;
  height: 48px;
  margin-top: -24px;
  box-shadow: 0 7px 18px rgba(15,55,113,.2);
}
.destination-card h3 { margin-top: 2px; font: 800 16px/1.2 Outfit, sans-serif; }
.destination-card p { min-height: 31px; margin-top: 5px; padding: 0 8px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 800;
  opacity: .76;
}
.card-link span { transition: transform .2s ease; }
.destination-card:hover .card-link span { transform: translateX(3px); }

.tour-grid { gap: 20px; }
.tour-card .card-image { height: 178px; }
.tour-card .card-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.tour-badge {
  position: absolute;
  z-index: 2;
  left: 13px;
  top: 13px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 20px;
  color: #fff;
  background: rgba(4,43,102,.38);
  backdrop-filter: blur(8px);
  font: 800 8px/1 Outfit, sans-serif;
  letter-spacing: 1px;
}
.tour-info { padding: 16px 16px 15px; }
.tour-info h3 { font: 800 17px/1.2 Outfit, sans-serif; }
.tour-route { min-height: 32px; margin: 7px 0 0; line-height: 1.45; }
.tour-meta { display: flex; gap: 7px; align-items: center; margin: 10px 0 13px; }
.tour-meta > span { color: var(--brand-blue); }
.tour-bottom { padding-top: 12px; border-top: 1px solid #edf2f8; }
.rating small { color: #8c6c2f; font-weight: 500; }

.benefits {
  margin-top: 82px;
  padding: 34px 26px 31px;
  border: 1px solid rgba(29, 104, 190, .08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(65,163,232,.11), transparent 23%),
    linear-gradient(110deg,#eef7ff,#fbfdff 64%,#f0f7ff);
  box-shadow: inset 0 1px #fff, 0 18px 45px rgba(10,57,120,.06);
}
.benefit-grid { gap: 12px; }
.benefit-grid article {
  min-height: 84px;
  padding: 15px 13px;
  border: 1px solid rgba(25,79,148,.06);
  border-radius: 14px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.benefit-grid article:hover { transform: translateY(-3px); box-shadow: 0 13px 24px rgba(11,55,117,.09); }
.benefit-grid b {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: currentColor;
}
.benefit-grid b::after { background: #fff; width: 21px; height: 21px; }
.benefit-grid h3 { font-size: 11.5px; }

.story-card {
  position: relative;
  min-height: 184px;
  padding: 22px;
  overflow: hidden;
  border-color: var(--modern-line);
  border-radius: 19px;
  box-shadow: 0 10px 28px rgba(11,52,108,.05);
  background: linear-gradient(145deg, #fff, #fbfdff);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.story-card.is-active { border-color: rgba(7,86,216,.24); box-shadow: 0 18px 38px rgba(11,52,108,.1); }
.story-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 100px;
  height: 100px;
  border: 18px solid rgba(7, 86, 216, .045);
  border-radius: 50%;
}
.quote-mark {
  position: absolute;
  right: 19px;
  top: 5px;
  color: #e7f1ff;
  font: 800 58px/1 Georgia, serif;
}
.traveler { position: relative; z-index: 1; }
.traveler img { width: 48px; height: 48px; padding: 2px; border: 2px solid #e6effb; }
.story-card > p { position: relative; z-index: 1; margin-top: 17px; font-size: 12.5px; }
.verified { position: relative; z-index: 1; display: block; margin-top: 13px; color: #2a9669; font-size: 9px; font-weight: 700; }
.story-dots button { width: 6px; transition: width .2s ease; }
.story-dots .active { width: 22px; border-radius: 4px; }

.gallery { padding-bottom: 74px; }
.gallery-grid { gap: 13px; }
.gallery-grid img {
  height: 158px;
  border-radius: 13px;
  box-shadow: 0 9px 25px rgba(9,47,101,.09);
  transition: transform .3s ease, filter .3s ease;
}
.gallery-grid img:hover { transform: translateY(-4px) scale(1.012); filter: saturate(1.08); }

dialog {
  border: 1px solid rgba(33, 92, 165, .12);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 24, 70, .34);
}
dialog::backdrop { background: rgba(4,21,52,.66); backdrop-filter: blur(5px); }
dialog input,
dialog select,
dialog textarea { min-height: 44px; border-radius: 10px; transition: border-color .2s ease, box-shadow .2s ease; }
dialog input:focus,
dialog select:focus,
dialog textarea:focus { border-color: #75aaf0; box-shadow: 0 0 0 4px #eaf3ff; outline: 0; }

.back-to-top {
  position: fixed;
  z-index: 35;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #0867e9, #0645ad);
  box-shadow: 0 14px 28px rgba(5,62,155,.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal-ready { opacity: 0; transform: translateY(24px); }
.reveal-ready.is-revealed { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }

/* Detail pages */
.detail-hero { height: 620px; min-height: 580px; border-radius: 0 0 30px 30px; }
.detail-hero > img { animation: detailHeroSettle 1.25s cubic-bezier(.2,.7,.2,1) both; }
.detail-hero-shade {
  background:
    linear-gradient(90deg, rgba(4,25,67,.9) 0%, rgba(6,38,91,.64) 42%, rgba(9,43,92,.08) 78%),
    linear-gradient(0deg, rgba(4,29,78,.56), transparent 54%);
}
.detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  margin-left: -13px;
  border-radius: 20px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(9px);
}
.detail-hero h1 { text-wrap: balance; text-shadow: 0 4px 28px rgba(0,23,66,.28); }
.detail-primary { border-radius: 12px; transition: transform .2s ease, box-shadow .2s ease; }
.detail-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(3,22,70,.28); }
.hero-facts {
  width: min(760px,100%);
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
  background: rgba(6,35,83,.24);
  backdrop-filter: blur(10px);
}
.hero-facts span:first-child { padding-left: 0; }
.detail-overview { gap: 82px; }
.overview-card {
  border-radius: 22px;
  background: linear-gradient(145deg, #f0f7ff, #f9fcff);
  box-shadow: 0 18px 45px rgba(10,56,120,.08);
}
.highlight-grid article { border-radius: 19px; transition: transform .23s ease, box-shadow .23s ease; }
.highlight-grid article:hover { transform: translateY(-5px); box-shadow: 0 20px 38px rgba(10,52,109,.11); }
.highlight-grid span { border-radius: 13px; }
.detail-gallery-grid img { border-radius: 17px; transition: transform .35s ease, filter .35s ease; }
.detail-gallery-grid img:hover { transform: scale(1.018); filter: saturate(1.08); }
.detail-inquiry form { border: 1px solid rgba(255,255,255,.5); border-radius: 21px; }
.detail-inquiry input:focus,
.detail-inquiry select:focus,
.detail-inquiry textarea:focus { border-color: #73a9ef; box-shadow: 0 0 0 4px #e9f3ff; outline: 0; }
.related-card { border-radius: 19px; }

@keyframes heroSettle { from { opacity: .72; transform: scale(1.065); } to { opacity: 1; transform: scale(1.015); } }
@keyframes detailHeroSettle { from { transform: scale(1.05); } to { transform: scale(1); } }

@media (max-width: 1050px) {
  .main-nav a { padding: 0 9px; }
  .hero { height: 630px; }
  .destination-grid { gap: 14px; }
  .destination-card { height: 322px; }
  .benefit-grid article { align-items: flex-start; }
}

@media (max-width: 680px) {
  .site-header { position: sticky; }
  .book-now { display: none !important; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef5ff;
  }
  .menu-toggle span { width: 20px; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    top: 64px;
    padding: 10px 16px 18px;
    border-top: 1px solid #edf2f8;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 35px rgba(8,45,104,.12);
  }
  .main-nav a { height: 42px; padding: 0 13px; border: 0; border-radius: 10px; }
  .main-nav a::after { display: none; }
  .hero { height: 620px; }
  .hero-image { background-position: 60% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(255,255,255,.63), rgba(255,255,255,.24) 72%, transparent); }
  .hero-content { padding-top: 78px; }
  .hero h1 { font-size: 52px; letter-spacing: -2.3px; }
  .hero-content > p:not(.eyebrow) { max-width: 335px; font-size: 13.5px; }
  .hero .button { min-height: 45px; padding: 0 16px; font-size: 12px; }
  .hero-trust { width: 100%; margin-top: 25px; padding: 11px 0; }
  .hero-trust span { min-width: 0; flex: 1; padding: 0 10px; }
  .hero-trust b { font-size: 14px; }
  .hero-trust small { font-size: 8px; }
  .search-card { margin-top: -34px; border-radius: 16px; }
  .section { padding-top: 62px; }
  .section-heading { align-items: flex-end; }
  .section-heading h2 { font-size: 25px; }
  .section-heading > a { padding: 0 4px; }
  .destination-grid { grid-template-columns: 1fr 1fr; }
  .destination-card { height: 288px; border-radius: 16px; }
  .destination-card .card-image { height: 152px; }
  .destination-card:last-child { height: 158px; }
  .destination-card:last-child .card-image { grid-row: 1 / 5; height: 158px; }
  .destination-card:last-child .destination-icon { margin: 8px 12px 0; }
  .destination-card:last-child h3,
  .destination-card:last-child p { margin-left: 12px; margin-right: 10px; padding: 0; }
  .destination-card:last-child .card-link { display: none; }
  .destination-icon { width: 43px; height: 43px; }
  .destination-card h3 { font-size: 14px; }
  .card-link { font-size: 9px; }
  .tour-card { grid-template-columns: 40% 60%; min-height: 190px; border-radius: 16px; }
  .tour-card .card-image { height: 100%; }
  .tour-badge { display: none; }
  .tour-info { display: flex; flex-direction: column; padding: 14px; }
  .tour-info h3 { font-size: 15px; }
  .tour-route { min-height: 0; }
  .tour-bottom { margin-top: auto; display: block; }
  .tour-bottom > span:last-child { display: block; margin-top: 5px; }
  .benefits { margin-top: 62px; border-radius: 19px; }
  .benefit-grid b { width: 34px; height: 34px; flex-basis: 34px; }
  .story-card { min-height: 195px; padding: 19px; }
  .gallery-grid img { height: 105px; }
  .back-to-top { display: none; }
  .detail-hero { height: 650px; min-height: 0; border-radius: 0 0 22px 22px; }
  .detail-hero h1 { font-size: 49px; }
  .hero-facts { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-ready { opacity: 1; transform: none; }
}

/* Shared departure/return calendar in the homepage inquiry dialog. */
#inquiry-dialog {
  max-height: calc(100dvh - 16px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

#inquiry-dialog .date-range-picker {
  position: relative;
  margin: 5px 0;
}

#inquiry-dialog .date-range-picker.is-open { z-index: 5; }

#inquiry-dialog .date-field {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  margin: 0;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #718098;
  text-align: left;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

#inquiry-dialog .date-field:hover { border-color: #a9c8ef; background: #fbfdff; }
#inquiry-dialog .date-field.is-active,
#inquiry-dialog .date-field:focus-visible {
  border-color: #4e91e8;
  outline: 0;
  box-shadow: 0 0 0 4px #e7f1ff;
}

#inquiry-dialog .date-field > span { min-width: 0; }
#inquiry-dialog .date-field small,
#inquiry-dialog .date-field strong { display: block; letter-spacing: 0; }
#inquiry-dialog .date-field small {
  margin-bottom: 3px;
  color: #74829a;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
#inquiry-dialog .date-field strong {
  overflow: hidden;
  color: #8a95a7;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#inquiry-dialog .date-field.has-value strong { color: var(--ink); font-weight: 700; }

#inquiry-dialog .date-field-icon {
  position: relative;
  width: 18px;
  height: 17px;
  flex: 0 0 18px;
  border: 2px solid currentColor;
  border-radius: 4px;
}
#inquiry-dialog .date-field-icon::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -2px;
  right: -2px;
  border-top: 2px solid currentColor;
}
#inquiry-dialog .date-field-icon::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 3px;
  width: 2px;
  height: 4px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 7px 0 currentColor;
}

#inquiry-dialog .date-range-calendar {
  position: absolute;
  top: calc(100% - 14px);
  left: 0;
  right: 0;
  z-index: 20;
  padding: 7px 10px;
  border: 1px solid #dce8f7;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(4, 31, 76, .22);
}
#inquiry-dialog .date-range-calendar[hidden] { display: none; }

#inquiry-dialog .date-calendar-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
#inquiry-dialog .date-calendar-header strong {
  color: var(--ink);
  font: 700 14px/1.2 Outfit, "DM Sans", sans-serif;
  text-align: center;
}
#inquiry-dialog .date-calendar-header button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #f1f6fd;
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
}
#inquiry-dialog .date-calendar-header button:hover:not(:disabled) { background: #e5f0ff; }
#inquiry-dialog .date-calendar-header button:disabled { cursor: not-allowed; opacity: .38; }
#inquiry-dialog .date-calendar-header button:focus-visible,
#inquiry-dialog .date-calendar-day:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid #9fc9ff;
  outline-offset: 1px;
}

#inquiry-dialog .date-calendar-weekdays,
#inquiry-dialog .date-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
#inquiry-dialog .date-calendar-weekdays { margin-bottom: 2px; }
#inquiry-dialog .date-calendar-weekdays span {
  height: 20px;
  color: #8490a3;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}
#inquiry-dialog .date-calendar-grid { gap: 2px; }
#inquiry-dialog .date-calendar-blank,
#inquiry-dialog .date-calendar-day { height: 44px; min-width: 0; }
#inquiry-dialog .date-calendar-day {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #263958;
  font-size: 12px;
  font-weight: 600;
  box-shadow: none;
}
#inquiry-dialog .date-calendar-day:hover:not(:disabled) { background: #edf5ff; color: var(--blue); }
#inquiry-dialog .date-calendar-day.is-in-range { border-radius: 5px; background: #e4f0ff; color: #174f9f; }
#inquiry-dialog .date-calendar-day.is-departure,
#inquiry-dialog .date-calendar-day.is-return {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 13px rgba(7, 86, 216, .25);
}
#inquiry-dialog .date-calendar-day.is-today:not(.is-departure):not(.is-return) { box-shadow: inset 0 0 0 1px #82b4f4; }
#inquiry-dialog .date-calendar-day:disabled { cursor: not-allowed; color: #c2cad5; background: #fff; }

#inquiry-dialog .date-picker-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Accessible custom traveler selector in the homepage inquiry dialog. */
#inquiry-dialog .traveler-select {
  position: relative;
  margin: 5px 0;
}

#inquiry-dialog .traveler-select.is-open { z-index: 6; }

#inquiry-dialog .traveler-select > select {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

#inquiry-dialog .traveler-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

#inquiry-dialog .traveler-select-trigger:hover { border-color: #a9c8ef; background: #fbfdff; }
#inquiry-dialog .traveler-select.is-open .traveler-select-trigger,
#inquiry-dialog .traveler-select-trigger:focus-visible {
  border-color: #4e91e8;
  outline: 0;
  box-shadow: 0 0 0 4px #e7f1ff;
}

#inquiry-dialog .traveler-select-trigger span,
#inquiry-dialog .traveler-select-trigger small,
#inquiry-dialog .traveler-select-trigger strong { display: block; letter-spacing: 0; }
#inquiry-dialog .traveler-select-trigger small {
  margin-bottom: 4px;
  color: #53647e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
#inquiry-dialog .traveler-select-trigger strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

#inquiry-dialog .traveler-select-chevron {
  width: 9px;
  height: 9px;
  margin: -4px 3px 0 0;
  flex: 0 0 9px;
  border-right: 2px solid #66758d;
  border-bottom: 2px solid #66758d;
  transform: rotate(45deg);
  transition: transform .2s ease, margin .2s ease;
}
#inquiry-dialog .traveler-select.is-open .traveler-select-chevron {
  margin-top: 5px;
  transform: rotate(225deg);
}

#inquiry-dialog .traveler-select-menu {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 3px;
  max-height: var(--traveler-menu-max-height, none);
  padding: 6px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #b8c9df transparent;
  scrollbar-width: thin;
  border: 1px solid #dce8f7;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(4, 31, 76, .22);
  animation: travelerMenuIn .18s cubic-bezier(.2, .7, .2, 1) both;
}
#inquiry-dialog .traveler-select-menu[hidden] { display: none; }
#inquiry-dialog .traveler-select.opens-up .traveler-select-menu {
  top: auto;
  bottom: calc(100% + 7px);
}

#inquiry-dialog .traveler-select-menu button {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 52px;
  padding: 6px 10px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #263958;
  text-align: left;
  box-shadow: none;
  transition: background-color .16s ease, color .16s ease;
}
#inquiry-dialog .traveler-select-menu button:hover { background: #f4f8fe; }
#inquiry-dialog .traveler-select-menu button:focus-visible {
  outline: 3px solid #9fc9ff;
  outline-offset: -1px;
}
#inquiry-dialog .traveler-select-menu button.is-selected { background: #edf5ff; color: #124f9f; }

#inquiry-dialog .traveler-option-count {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef3f9;
  color: #53647e;
  font-size: 12px;
  font-weight: 800;
}
#inquiry-dialog .traveler-select-menu button.is-selected .traveler-option-count {
  background: var(--blue);
  color: #fff;
}
#inquiry-dialog .traveler-select-menu strong,
#inquiry-dialog .traveler-select-menu small { display: block; letter-spacing: 0; }
#inquiry-dialog .traveler-select-menu strong { font-size: 13px; line-height: 1.2; }
#inquiry-dialog .traveler-select-menu small { margin-top: 3px; color: #53647e; font-size: 11px; line-height: 1.2; }

#inquiry-dialog .traveler-option-check {
  width: 8px;
  height: 14px;
  justify-self: center;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  opacity: 0;
  transform: rotate(45deg) translate(-2px, -2px);
}
#inquiry-dialog .traveler-select-menu button.is-selected .traveler-option-check { opacity: 1; }

#inquiry-dialog .button:disabled {
  cursor: wait;
  opacity: .65;
}

#inquiry-dialog .inquiry-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 5px;
}
#inquiry-dialog .inquiry-options label {
  display: grid;
  min-width: 0;
  color: #53617a;
  font-size: 10px;
  font-weight: 700;
}
#inquiry-dialog .inquiry-options select,
#inquiry-dialog .inquiry-options input {
  min-height: 44px;
  margin-bottom: 0;
}
#inquiry-dialog .inquiry-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 44px;
  margin-top: 7px;
  color: #66738a;
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}
#inquiry-dialog .inquiry-consent a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#inquiry-dialog .inquiry-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

@keyframes travelerMenuIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  #inquiry-dialog {
    width: calc(100% - 8px);
    max-width: calc(100% - 8px);
    padding: 18px 10px;
  }
  #inquiry-dialog .date-range-calendar { padding: 7px; }
  #inquiry-dialog .date-calendar-grid { gap: 1px; }
  #inquiry-dialog .date-field { padding-inline: 10px; }
  #inquiry-dialog .date-field strong { font-size: 12px; }
  #inquiry-dialog .inquiry-options { grid-template-columns: 1fr; }
}

/* Five-step travel inquiry planner. */
#inquiry-dialog.trip-planner-dialog {
  width: min(780px, calc(100% - 28px));
  max-width: 780px;
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

#inquiry-dialog.trip-planner-dialog::backdrop { background: rgba(7, 25, 62, .7); }
#inquiry-dialog.trip-planner-dialog .dialog-close {
  top: 16px;
  right: 18px;
  z-index: 40;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  color: #5c6a80;
  font-size: 28px;
  line-height: 1;
}
#inquiry-dialog.trip-planner-dialog .dialog-close:hover { background: #eef3f9; color: #1d2f4d; }
#inquiry-dialog.trip-planner-dialog .dialog-close:focus-visible { outline: 3px solid #93bfff; outline-offset: 2px; }

#booking-form {
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 24px);
  min-height: min(650px, calc(100dvh - 24px));
}

.planner-header { padding: 26px 78px 18px 32px; }
.planner-header .dialog-kicker { margin: 0; letter-spacing: 0; }
.planner-header h2 { margin: 6px 0 7px; font-size: 30px; letter-spacing: 0; }
.planner-header .dialog-copy { max-width: 610px; margin: 0; font-size: 13px; line-height: 1.5; }

.planner-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 13px 32px;
  border-block: 1px solid #e2e9f3;
  background: #f7f9fc;
  list-style: none;
}
.planner-progress li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  color: #7a879a;
  font-size: 11px;
  font-weight: 700;
}
.planner-progress li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  width: 16%;
  border-top: 1px solid #cdd7e5;
}
.planner-progress li span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid #cbd6e5;
  border-radius: 50%;
  background: #fff;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.planner-progress li small { overflow: hidden; font-size: inherit; text-overflow: ellipsis; white-space: nowrap; }
.planner-progress li.is-active { color: #0756d8; }
.planner-progress li.is-active span { border-color: #0756d8; background: #0756d8; color: #fff; box-shadow: 0 5px 12px rgba(7, 86, 216, .22); }
.planner-progress li.is-complete { color: #16845b; }
.planner-progress li.is-complete span { border-color: #16845b; color: transparent; }
.planner-progress li.is-complete span::after { content: ""; width: 11px; height: 6px; border-left: 2px solid #16845b; border-bottom: 2px solid #16845b; transform: rotate(-45deg) translate(1px, -1px); }

.planner-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 25px 32px 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #b8c7da transparent;
  scrollbar-width: thin;
}
.planner-step[hidden], .time-mode-panel[hidden] { display: none; }
.planner-step.is-active { animation: plannerStepIn .2s ease both; }
@keyframes plannerStepIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }

.planner-step-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.planner-step-heading > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: #eaf2ff;
  color: #0756d8;
  font: 700 12px/1 Outfit, "DM Sans", sans-serif;
  font-variant-numeric: tabular-nums;
}
.planner-step-heading p { margin: 0 0 2px; color: #16845b; font-size: 10px; font-weight: 800; letter-spacing: 0; }
.planner-step-heading h3 { margin: 0; color: #122342; font: 800 21px/1.2 Outfit, "DM Sans", sans-serif; letter-spacing: 0; }
.planner-step-heading h3:focus { outline: 0; }

.city-choice-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
.choice-chip, .choice-card { position: relative; min-width: 0; cursor: pointer; }
.choice-chip input, .choice-card input { position: absolute; width: 1px; height: 1px; margin: 0; opacity: 0; pointer-events: none; }
.choice-chip > span, .choice-card > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid #dce5f0;
  border-radius: 6px;
  background: #fff;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.choice-chip strong, .choice-card strong, .choice-chip small, .choice-card small { display: block; min-width: 0; letter-spacing: 0; }
.choice-chip strong, .choice-card strong { overflow-wrap: anywhere; color: #1b2c49; font-size: 13px; }
.choice-chip small, .choice-card small { margin-top: 3px; color: #758195; font-size: 10px; line-height: 1.3; }
.choice-chip:hover > span, .choice-card:hover > span { border-color: #9bbbe7; background: #fbfdff; }
.choice-chip input:focus-visible + span, .choice-card input:focus-visible + span { outline: 3px solid #9fc9ff; outline-offset: 2px; }
.choice-chip input:checked + span, .choice-card input:checked + span { border-color: #0756d8; background: #eef5ff; box-shadow: inset 0 0 0 1px #0756d8; }
.choice-chip input:checked + span::after, .choice-card input:checked + span::after {
  content: "";
  position: absolute;
  top: 11px;
  right: 11px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #0756d8;
  border-bottom: 2px solid #0756d8;
  transform: rotate(-45deg);
}

.choice-card-grid { display: grid; gap: 10px; margin-bottom: 18px; }
.choice-card-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice-card-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.choice-card > span { min-height: 82px; padding: 14px 15px; }

.hotel-choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.hotel-choice:last-child { grid-column: span 2; }
.hotel-choice > span { min-height: 102px; padding: 15px; }
.hotel-choice b { display: block; margin-bottom: 8px; color: #b56c12; font-size: 9px; letter-spacing: 0; }
.hotel-choice:nth-child(2) b { color: #a43d72; }
.hotel-choice:nth-child(3) b { color: #0756d8; }
.hotel-choice:nth-child(4) b { color: #16845b; }
.hotel-choice:nth-child(5) b { color: #59667a; }

.planner-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.planner-field { display: grid; gap: 6px; min-width: 0; margin-top: 14px; color: #53617a; font-size: 11px; font-weight: 700; }
.planner-field.is-full { width: 100%; }
.planner-field > span small { color: #8490a3; font-size: 10px; font-weight: 500; }
#inquiry-dialog .planner-field input, #inquiry-dialog .planner-field textarea {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 11px 13px;
  border: 1px solid #dce5f0;
  border-radius: 6px;
  color: #1d2e4b;
  background: #fff;
  font-size: 13px;
}
#inquiry-dialog .planner-field textarea { min-height: 92px; resize: vertical; }
#inquiry-dialog .planner-field input:hover, #inquiry-dialog .planner-field textarea:hover { border-color: #a9c4e7; }
#inquiry-dialog .planner-field input:focus, #inquiry-dialog .planner-field textarea:focus { border-color: #4e91e8; outline: 0; box-shadow: 0 0 0 4px #e7f1ff; }

.time-mode-panel { margin-top: 3px; }
.counter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  min-height: 72px;
  padding: 10px 12px 10px 15px;
  border: 1px solid #dce5f0;
  border-radius: 6px;
  background: #fff;
}
.counter-card-wide { max-width: 360px; }
.counter-card > span { min-width: 0; }
.counter-card strong, .counter-card small { display: block; letter-spacing: 0; }
.counter-card strong { color: #1b2d4b; font-size: 13px; }
.counter-card small { margin-top: 3px; color: #778398; font-size: 10px; }
.traveler-counter-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.number-stepper { display: grid; grid-template-columns: 44px 48px 44px; align-items: center; flex: 0 0 auto; overflow: hidden; border: 1px solid #ced9e7; border-radius: 6px; }
#inquiry-dialog .number-stepper button { width: 44px; height: 44px; padding: 0; border: 0; background: #f2f6fb; color: #0756d8; font-size: 20px; font-weight: 700; }
#inquiry-dialog .number-stepper button:hover { background: #e6effb; }
#inquiry-dialog .number-stepper button:focus-visible { position: relative; z-index: 2; outline: 3px solid #8dbdff; outline-offset: -3px; }
#inquiry-dialog .number-stepper input {
  width: 48px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-inline: 1px solid #dbe3ed;
  border-radius: 0;
  color: #152744;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  appearance: textfield;
}
#inquiry-dialog .number-stepper input::-webkit-inner-spin-button { appearance: none; margin: 0; }

#inquiry-dialog .inquiry-consent { margin-top: 16px; }
.planner-footer {
  position: static;
  z-index: auto;
  flex: 0 0 auto;
  margin-top: 0;
  padding: 11px 32px 15px;
  overflow: visible;
  border-top: 1px solid #e2e9f3;
  color: inherit;
  background: #fff;
}
.planner-footer .form-feedback { min-height: 18px; margin: 0 0 5px; }
.planner-actions { display: flex; justify-content: space-between; gap: 12px; }
#inquiry-dialog .planner-actions button { min-height: 46px; margin: 0; border-radius: 6px; }
#inquiry-dialog .planner-back { min-width: 112px; padding: 10px 16px; border: 1px solid #d4deeb; background: #fff; color: #30415d; font-weight: 700; }
#inquiry-dialog .planner-back:hover { border-color: #a9bfdc; background: #f7f9fc; }
#inquiry-dialog .planner-next, #inquiry-dialog .planner-submit { width: auto; min-width: 180px; margin-left: auto; }
#inquiry-dialog .planner-actions button[hidden] { display: none !important; }

@media (max-width: 680px) {
  #inquiry-dialog.trip-planner-dialog { width: calc(100% - 8px); max-width: calc(100% - 8px); max-height: calc(100dvh - 8px); }
  #booking-form { min-height: calc(100dvh - 8px); max-height: calc(100dvh - 8px); }
  .planner-header { padding: 20px 60px 14px 18px; }
  .planner-header h2 { font-size: 25px; }
  .planner-header .dialog-copy { font-size: 12px; }
  #inquiry-dialog.trip-planner-dialog .dialog-close { top: 10px; right: 10px; }
  .planner-progress { padding: 10px 13px; }
  .planner-progress li { gap: 4px; }
  .planner-progress li span { width: 26px; height: 26px; flex-basis: 26px; }
  .planner-progress li small { display: none; }
  .planner-progress li:not(:last-child)::after { right: -19%; width: 38%; }
  .planner-body { padding: 19px 16px 14px; }
  .planner-step-heading { align-items: flex-start; margin-bottom: 16px; }
  .planner-step-heading h3 { font-size: 19px; }
  .city-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-card-grid-three, .choice-card-grid-four, .hotel-choice-grid { grid-template-columns: 1fr; }
  .hotel-choice:last-child { grid-column: auto; }
  .choice-card > span, .hotel-choice > span { min-height: 72px; }
  .planner-field-grid, .traveler-counter-grid { grid-template-columns: 1fr; }
  .planner-field-grid .planner-field { margin-top: 0; }
  .planner-field-grid { gap: 11px; margin-top: 14px; }
  .counter-card-wide { max-width: none; }
  .planner-footer { padding: 9px 16px 12px; }
  #inquiry-dialog .planner-next, #inquiry-dialog .planner-submit { min-width: 150px; }
}

@media (max-height: 650px) and (min-width: 681px) {
  #booking-form { min-height: calc(100dvh - 24px); }
  .planner-header { padding-block: 16px 12px; }
  .planner-header .dialog-copy { display: none; }
  .planner-body { padding-block: 17px 12px; }
}
