/* VoyageWindow — a photo-led, practical travel platform. */
:root {
  --ink: #15212d;
  --muted: #63707a;
  --paper: #fff;
  --white: #fff;
  --teal: #2146e8;
  --lime: #e7edff;
  --sand: #f5f6f8;
  --line: #e4e7ec;
  --accent: #2146e8;
  --editorial: var(--body);
  --container: 1280px;
  --radius: 12px;
}
body {
  background: #fff;
  font-size: 15px;
}
h1,
h2,
h3 {
  font-weight: 650;
  letter-spacing: -0.05em;
}
h2 {
  font-size: clamp(28px, 3vw, 42px);
}
h3 {
  letter-spacing: -0.035em;
}
a:hover {
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #2146e8;
  outline-offset: 4px;
}
.button {
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 24px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #1332b4;
  transform: translateY(-2px);
}
.eyebrow {
  color: #526473;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.section {
  padding-block: 64px;
}
.section-heading {
  margin-bottom: 26px;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
.text-link {
  color: #2146e8;
  font-weight: 650;
  font-size: 13px;
  gap: 15px;
}
.text-link:hover {
  gap: 21px;
}
.small {
  font-size: 12px;
}
.site-header {
  background: #fff;
  position: relative;
  z-index: 40;
  border-bottom: 1px solid #edf0f3;
}
.header-inner {
  height: 88px;
  gap: 38px;
}
.logo {
  font-size: 25px;
  letter-spacing: -1.3px;
  font-weight: 750;
}
.logo svg {
  background: #2146e8;
  color: #fff;
  padding: 6px;
  border-radius: 10px;
  width: 32px;
  height: 37px;
  stroke-width: 1.8;
}
.logo-dot {
  color: #2146e8;
}
.desktop-nav {
  margin-inline: auto;
  gap: 34px;
}
.desktop-nav a {
  font-size: 13px;
  font-weight: 550;
}
.desktop-nav a:hover {
  color: #2146e8;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-search {
  padding-left: 18px;
  height: 26px;
}
.header-search svg {
  width: 20px;
}
.saved-toggle {
  border: 0;
  background: none;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--ink);
  padding: 9px 0;
}
.saved-toggle svg {
  width: 18px;
  height: 18px;
}
.saved-toggle b {
  font-size: 10px;
  background: #eff2ff;
  border-radius: 50%;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: #2146e8;
}
.mobile-nav summary {
  font-size: 12px;
}
.travel-hero {
  position: relative;
  isolation: isolate;
  height: 590px;
  margin: 0 22px;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  background: #25444e;
}
.travel-hero > .travel-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  z-index: -2;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 23, 40, 0.69),
      rgba(4, 23, 40, 0.22) 57%,
      rgba(4, 23, 40, 0.08)
    ),
    linear-gradient(0deg, rgba(3, 27, 36, 0.5), transparent 40%);
  z-index: -1;
}
.hero-content {
  max-width: 1280px;
  width: calc(100% - 100px);
  margin: auto;
  padding-top: 66px;
  color: white;
}
.hero-kicker {
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.hero-content h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.03;
  letter-spacing: -0.057em;
  margin: 22px 0 22px;
  font-weight: 620;
}
.hero-content h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}
.hero-content > p:not(.hero-kicker) {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}
.hero-explore {
  display: inline-flex;
  margin-top: 25px;
  gap: 38px;
  align-items: center;
  border-bottom: 1px solid #ffffff80;
  padding-bottom: 9px;
  font-weight: 550;
  font-size: 13px;
}
.hero-explore span {
  font-size: 21px;
}
.hero-location {
  position: absolute;
  bottom: 66px;
  right: 46px;
  display: flex;
  gap: 11px;
  align-items: center;
  color: white;
  font-size: 12px;
}
.location-dot {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 5px #ffffff24;
  background: white;
  border-radius: 50%;
}
.hero-location small {
  display: block;
  color: #e2e7eb;
  letter-spacing: 0.08em;
  font-size: 9px;
  margin-top: 3px;
}
.hero-location > a {
  border-left: 1px solid #ffffff55;
  padding-left: 15px;
  margin-left: 10px;
  font-size: 10px;
}
.hero-edition {
  position: absolute;
  right: 30px;
  top: 38px;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.17em;
}
.search-dock {
  position: relative;
  z-index: 10;
  margin-top: -44px;
  max-width: 1120px;
  background: white;
  border-radius: 13px;
  box-shadow: 0 14px 44px #15314414;
  padding: 24px 30px 17px;
  border: 1px solid #e9edf1;
}
.destination-search {
  position: relative;
  max-width: none;
  margin: 0;
}
.destination-search > label {
  display: block;
  color: #15212d;
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 9px;
}
.search-field {
  border: 0;
  background: #f5f7fa;
  border-radius: 7px;
  box-shadow: none;
  padding: 6px 6px 6px 18px;
  gap: 14px;
  min-height: 59px;
}
.search-field > svg {
  width: 22px;
  color: #2146e8;
}
.search-field input {
  padding: 7px 0;
  height: auto;
  font-size: 14px;
  color: #15212d;
}
.search-field button {
  background: #2146e8;
  border-radius: 6px;
  padding: 14px 28px;
  color: white;
  font-size: 13px;
  min-height: 45px;
  white-space: nowrap;
}
.search-field button:hover {
  background: #1332b4;
}
.destination-search #search-help {
  display: none;
}
.search-inspiration {
  display: flex;
  gap: 18px;
  font-size: 11px;
  padding-top: 14px;
  align-items: center;
}
.search-inspiration > span {
  color: #6a7480;
}
.search-inspiration a {
  font-weight: 550;
}
.search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 12px 35px #11223926;
  border: 1px solid #e3e7f0;
  border-radius: 8px;
  z-index: 20;
  max-height: 360px;
  overflow: auto;
  color: #15212d;
}
.search-results a {
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 20px;
  gap: 12px;
  align-items: center;
}
.search-results a:hover,
.search-results a:focus {
  background: #eff3ff;
}
.search-results strong {
  font-size: 13px;
}
.search-results span {
  font-size: 11px;
}
.discovery-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 31px 0 0;
  gap: 18px;
}
.discovery-intro > span {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #697682;
}
.discovery-intro p {
  font-size: 11px;
}
.featured-places {
  padding-top: 57px;
}
.explorer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.destination-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.destination-filters button {
  border: 1px solid #e3e6ea;
  background: white;
  color: #626d78;
  padding: 9px 18px;
  border-radius: 24px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  font-size: 12px;
}
.destination-filters button[aria-pressed="true"] {
  background: #15212d;
  border-color: #15212d;
  color: #fff;
}
.destination-filters button:hover {
  border-color: #15212d;
}
.destination-filters svg {
  width: 13px;
  height: 13px;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 22px;
}
.place-card {
  position: relative;
  min-width: 0;
}
.place-photo {
  display: block;
  aspect-ratio: 1.5;
  background: #e8eef4;
  border-radius: 11px;
  overflow: hidden;
  position: relative;
}
.travel-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.place-photo:hover .travel-photo,
.moment-card:hover .travel-photo {
  transform: scale(1.045);
}
.place-copy {
  padding: 15px 2px 0;
}
.place-copy > p {
  font-size: 10px;
  color: #6b7780;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.015em;
}
.place-copy > p > span {
  font-size: 19px;
  color: #15212d;
}
.place-copy h3 {
  font-size: 25px;
  margin: 2px 0 7px;
  font-weight: 620;
}
.place-copy h3 a:hover {
  color: #2146e8;
}
.place-caption {
  font-size: 11px;
  color: #6b7780;
}
.save-place {
  position: absolute;
  right: 13px;
  top: 13px;
  border: 0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px #0001;
  color: #233341;
  z-index: 2;
}
.save-place svg {
  height: 17px;
  width: 17px;
}
.save-place:hover {
  transform: scale(1.08);
}
.save-place[aria-pressed="true"] {
  color: #2146e8;
}
.save-place[aria-pressed="true"] svg {
  fill: #2146e8;
}
.place-photo-empty {
  display: grid;
  place-items: center;
  background: #edf1f6;
  color: #b8c7d5;
}
.place-photo-empty:after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid #cad5df;
  border-radius: 50%;
  right: -15px;
  top: 15px;
}
.place-monogram {
  font-size: 65px;
  letter-spacing: -5px;
  font-weight: 700;
}
.place-reference {
  position: absolute;
  bottom: 17px;
  left: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 9px;
  color: #556879;
}
.filter-empty {
  padding: 35px;
  border: 1px dashed #c8d2df;
  border-radius: 10px;
}
.trip-feature {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f5ef;
  margin-block: 22px 0;
  min-height: 480px;
}
.trip-feature-photo {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.trip-feature-photo img {
  position: absolute;
  inset: 0;
}
.trip-feature-photo > span {
  position: absolute;
  bottom: 24px;
  left: 28px;
  color: white;
  letter-spacing: 0.15em;
  font-size: 9px;
  text-shadow: 0 1px 6px #000;
}
.trip-feature-copy {
  padding: 46px 55px;
}
.trip-feature-copy h2 {
  font-size: clamp(37px, 3.6vw, 50px);
  margin: 23px 0;
  line-height: 1.06;
}
.trip-feature-copy h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.trip-feature-copy > p:not(.eyebrow) {
  font-size: 13px;
  max-width: 340px;
  line-height: 1.8;
}
.trip-feature-copy .button {
  margin-top: 25px;
}
.topic-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
}
.topic-grid a {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  padding: 23px 17px;
  border: 1px solid #e3e7ec;
  border-radius: 10px;
  background: #fff;
  min-height: 135px;
  font-size: 12px;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.topic-grid a > svg {
  width: 28px;
  height: 28px;
  color: #2146e8;
}
.topic-grid a > span:last-child {
  position: absolute;
  top: 22px;
  right: 15px;
  font-size: 17px;
  color: #7a8792;
}
.topic-grid a:hover {
  background: #f6f8ff;
  border-color: #acbaff;
  transform: translateY(-3px);
}
.region-band {
  background: #152f41;
  color: #fff;
  margin-top: 10px;
}
.region-band .eyebrow {
  color: #b0c2d1;
}
.region-band-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 25px;
}
.region-band h2 {
  margin-top: 18px;
  color: white;
  font-size: 46px;
  line-height: 1.1;
}
.region-band-heading > p {
  color: #b5c6d1;
  font-size: 13px;
  line-height: 1.8;
}
.region-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 45px;
}
.region-links a {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 16px;
  padding: 22px 0;
  border-top: 1px solid #ffffff30;
}
.region-links a > span:first-child {
  font-size: 9px;
  color: #91a9bc;
}
.region-links a > span:last-child {
  margin-left: auto;
  color: #b8c8d3;
}
.region-links a:hover {
  color: #b9dfff;
}
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.moment-card {
  position: relative;
  height: 350px;
  border-radius: 11px;
  overflow: hidden;
  isolation: isolate;
  color: white;
}
.moment-card > .travel-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.moment-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #051b2adb, transparent 90%);
  z-index: -1;
}
.moment-card > div {
  position: absolute;
  bottom: 29px;
  left: 25px;
  right: 25px;
}
.moment-card > div > span:first-child {
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.07em;
}
.moment-card h3 {
  font-size: 29px;
  color: white;
  font-weight: 550;
  line-height: 1.12;
  margin-top: 12px;
}
.moment-arrow {
  display: block;
  margin-top: 23px;
  font-size: 24px;
}
.journal-section {
  padding-top: 10px;
}
.guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.guide-list article {
  padding: 23px 0;
  border-block: 1px solid #e4e7ed;
  background: #fff;
}
.guide-list h3 {
  font-size: 21px;
  line-height: 1.25;
  margin: 14px 0;
}
.guide-list h3 a:hover {
  color: #2146e8;
}
.guide-list p {
  font-size: 12px;
  line-height: 1.7;
}
.guide-list .small {
  display: block;
  margin-top: 20px;
  font-size: 10px;
}
.guide-list .eyebrow {
  font-size: 9px;
}
.section-note {
  font-size: 12px;
}
.closing-note {
  position: relative;
  border-top: 1px solid #e4e8ed;
  padding: 63px 0 75px;
}
.closing-note h2 {
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.05;
  margin: 22px 0 26px;
}
.closing-note h2 em {
  font-family: Georgia, serif;
  color: #2146e8;
}
.closing-note > span {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 230px;
  font-weight: 300;
  line-height: 1.5;
  color: #2146e8;
}
.site-footer {
  background: #f6f7f9;
  color: #15212d;
  border-top: 1px solid #e5e9ee;
  padding-top: 52px;
}
.site-footer p,
.site-footer .small {
  color: #687781;
}
.site-footer nav a {
  font-size: 12px;
  color: #394b5a;
}
.footer-bottom {
  font-size: 10px;
  border-color: #dfe4ea;
  padding-block: 22px;
  margin-top: 40px;
  color: #6b7780;
}
.footer-grid {
  gap: 70px;
}
.breadcrumbs {
  padding-block: 22px;
  font-size: 10px;
}
.page-intro {
  padding-top: 32px;
  padding-bottom: 48px;
}
.page-intro h1 {
  font-size: clamp(40px, 5vw, 70px);
  margin: 15px 0 22px;
}
.page-intro > p,
.page-intro > div > p:not(.eyebrow) {
  font-size: 15px;
  max-width: 600px;
}
.page-intro .destination-search {
  max-width: 660px;
  margin-top: 30px;
}
.portal-intro {
  position: relative;
  gap: 55px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.portal-photo {
  height: 300px;
  overflow: hidden;
  border-radius: 13px;
  position: relative;
}
.portal-photo > .save-place {
  top: 16px;
  right: 16px;
}
.portal-intro > .city-coordinates {
  position: absolute;
  bottom: 65px;
  right: 70px;
  background: #fff;
  padding: 11px 16px;
  font-size: 11px;
  border-radius: 7px;
  line-height: 1.5;
}
.status-label {
  font-size: 10px;
  background: #f2f5f8;
  color: #576979;
  border: 0;
  border-radius: 5px;
  padding: 8px 12px;
  margin-top: 22px;
  display: inline-block;
}
.facts-panel {
  border-radius: 11px;
  background: #f6f8fa;
  padding: 26px 30px;
  border: 1px solid #e4e9ef;
}
.facts-panel dt {
  font-size: 10px;
}
.facts-panel dd {
  font-size: 16px;
}
.facts-panel .small {
  font-size: 10px;
}
.country-stamp {
  border-color: #a9bce7;
  color: #2146e8;
}
.region-pills a {
  border-radius: 24px;
  font-size: 12px;
  padding: 9px 16px;
}
.region-pills a[aria-current="page"] {
  background: #15212d;
  border-color: #15212d;
}
.country-list {
  gap: 0 35px;
}
.country-list a {
  font-size: 13px;
  padding-block: 18px;
}
.country-list a:hover {
  color: #2146e8;
  background: #fafbff;
}
.directory-region h2 {
  font-size: 30px;
}
.directory-filter {
  margin-bottom: 28px;
  max-width: 500px;
}
.directory-filter label {
  display: block;
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 10px;
}
.directory-filter input {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #dce3eb;
  border-radius: 8px;
  background: #f8f9fb;
  color: #15212d;
}
.directory-filter p {
  font-size: 11px;
  margin-top: 8px;
}
.article-shell {
  gap: 65px;
  grid-template-columns: minmax(0, 780px) 230px;
}
.article-header h1 {
  font-size: clamp(34px, 4.1vw, 55px);
  line-height: 1.08;
}
.article-deck {
  font-size: 17px;
  line-height: 1.7;
}
.article-cover {
  position: relative;
  height: 330px;
  overflow: hidden;
  border-radius: 11px;
  margin: 27px 0;
}
.article-cover a {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #fff;
  padding: 5px 9px;
  font-size: 9px;
  border-radius: 5px;
}
.byline {
  font-size: 11px;
}
.verification-banner {
  border-radius: 7px;
  font-size: 12px;
  background: #fff8e9;
  border: 1px solid #f1e3c2;
  color: #705c36;
}
.verification-banner span {
  color: #705c36;
}
.article h2 {
  font-size: 28px;
  letter-spacing: -0.035em;
}
.article-body {
  font-size: 16px;
  line-height: 1.85;
}
.article-sidebar {
  top: 30px;
}
.article-sidebar nav a {
  font-size: 12px;
  padding-block: 9px;
}
.sidebar-destination {
  border: 1px solid #e4e9ef;
  border-radius: 12px;
  background: #f3f6fa;
  padding: 22px 18px 14px;
  min-width: 0;
}
.sidebar-destination .eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.sidebar-destination h3 {
  font-size: 26px;
  line-height: 1.2;
  margin: 10px 0 18px;
  overflow-wrap: anywhere;
}
.sidebar-destination a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  margin: 0;
  padding: 11px 0;
  font-size: 12px;
  line-height: 1.5;
  border-top: 1px solid #dce3ed;
  overflow-wrap: anywhere;
}
.sidebar-destination a svg {
  flex: 0 0 14px;
}
.sidebar-destination a:hover {
  color: #2146e8;
}
.cookie-banner {
  position: fixed;
  z-index: 110;
  bottom: 24px;
  left: 24px;
  width: min(440px, calc(100% - 48px));
  padding: 24px;
  background: white;
  color: #15212d;
  border: 1px solid #dce3ed;
  border-radius: 16px;
  box-shadow: 0 12px 55px #14213d26;
}
.cookie-banner h2 {
  font-size: 20px;
  margin: 0 0 10px;
}
.cookie-banner p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #15212d;
  border-radius: 7px;
  background: white;
  color: #15212d;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}
.cookie-actions button:hover {
  background: #eef3ff;
}
.cookie-banner a {
  text-decoration: underline;
}
.footer-privacy-button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-banner {
    bottom: 82px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 20px;
  }
}

.quick-answer {
  background: #eef3ff;
  border-left-color: #2146e8;
  border-radius: 7px;
}
.at-a-glance {
  border-radius: 9px;
}
.at-a-glance dt {
  font-size: 11px;
}
.at-a-glance dd {
  font-size: 14px;
}
.faq details {
  border-radius: 6px;
  margin-top: 10px;
}
.faq summary {
  font-size: 15px;
}
.destination-cta {
  border-radius: 12px;
  background: #edf2ff;
}
.prose h1 {
  font-size: clamp(38px, 4vw, 55px);
}
.prose h2 {
  font-size: 29px;
}
.empty-state {
  background: #f6f8fa;
  border-radius: 10px;
  padding: 30px;
  border: 1px solid #e4e9ef;
}
.collection-grid a {
  border-radius: 11px;
  background: #f6f8fb;
}
.saved-dialog {
  border: 0;
  border-radius: 16px;
  padding: 30px;
  width: min(560px, calc(100% - 32px));
  max-height: 85dvh;
  box-shadow: 0 25px 120px #0003;
  color: #15212d;
}
.saved-dialog::backdrop {
  background: #0c203ba6;
  backdrop-filter: blur(4px);
}
.saved-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.saved-dialog-head h2 {
  font-size: 29px;
  margin-top: 8px;
}
.saved-dialog-head button {
  border: 0;
  background: #f2f4f7;
  font-size: 25px;
  border-radius: 50%;
  width: 38px;
  height: 38px;
}
.saved-help {
  font-size: 12px;
  margin: 16px 0 24px;
}
.saved-dialog [data-saved-empty] {
  font-size: 14px;
  line-height: 1.8;
  padding: 15px 0 30px;
}
.saved-dialog form {
  margin-top: 24px;
}
.saved-row {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid #e3e8f0;
  padding: 14px 0;
}
.saved-row img {
  width: 75px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
}
.saved-row a {
  font-size: 16px;
  font-weight: 600;
  flex: 1;
}
.saved-row button {
  border: 1px solid #e1e6ed;
  border-radius: 5px;
  background: white;
  font-size: 11px;
  padding: 9px;
}
.save-toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #152f41;
  color: white;
  padding: 14px 23px;
  border-radius: 8px;
  box-shadow: 0 7px 25px #0002;
  font-size: 12px;
  z-index: 100;
  max-width: calc(100% - 30px);
  width: max-content;
}
.saved-row a:hover {
  color: #2146e8;
}
.more-cities summary {
  font-size: 13px;
}
@media (min-width: 1500px) {
  .travel-hero {
    height: 660px;
  }
  .hero-content {
    padding-top: 85px;
  }
  .hero-content h1 {
    font-size: 90px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }
  .header-inner {
    gap: 23px;
  }
  .logo {
    font-size: 21px;
  }
  .container,
  .header-inner {
    width: calc(100% - 64px);
  }
  .hero-content {
    width: calc(100% - 70px);
  }
  .topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .topic-grid a {
    min-height: 120px;
  }
  .trip-feature-copy {
    padding: 36px;
  }
  .article-shell {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) 190px;
  }
  .city-grid {
    gap: 24px 18px;
  }
  .hero-content h1 {
    font-size: 73px;
  }
  .moment-card h3 {
    font-size: 24px;
  }
}
@media (max-width: 800px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .header-actions {
    margin-left: auto;
  }
  .header-inner {
    height: 75px;
  }
  .travel-hero {
    height: 570px;
    margin-inline: 12px;
  }
  .hero-content {
    padding-top: 58px;
  }
  .hero-location {
    right: 28px;
    bottom: 66px;
  }
  .hero-content h1 {
    font-size: 66px;
  }
  .hero-location > a {
    display: none;
  }
  .hero-edition {
    font-size: 8px;
  }
  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trip-feature {
    min-height: 420px;
  }
  .trip-feature-copy {
    padding: 30px;
  }
  .trip-feature-copy h2 {
    font-size: 38px;
  }
  .trip-feature-photo {
    min-height: 400px;
  }
  .moments-grid {
    gap: 14px;
  }
  .moment-card {
    height: 310px;
  }
  .moment-card > div {
    left: 17px;
    right: 17px;
    bottom: 22px;
  }
  .moment-card h3 {
    font-size: 22px;
  }
  .region-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .region-band h2 {
    font-size: 38px;
  }
  .guide-list {
    grid-template-columns: 1fr;
  }
  .guide-list article {
    padding: 25px 0;
  }
  .guide-list article + article {
    border-top: 0;
  }
  .guide-list .small {
    margin-top: 14px;
  }
  .portal-intro {
    gap: 25px;
  }
  .portal-photo {
    height: 260px;
  }
  .article-shell {
    display: block;
  }
  .article-sidebar {
    position: static;
  }
  .article-cover {
    height: 300px;
  }
  .portal-intro > .city-coordinates {
    right: 20px;
    bottom: 65px;
  }
  .closing-note > span {
    font-size: 160px;
    top: 55px;
  }
  .section {
    padding-block: 48px;
  }
  .journal-section {
    padding-top: 0;
  }
  .explorer-toolbar {
    align-items: flex-start;
  }
  .explorer-toolbar > .small {
    display: none;
  }
  .discovery-intro > span {
    font-size: 8px;
  }
  .discovery-intro p {
    font-size: 10px;
  }
  .trip-feature-copy .eyebrow {
    font-size: 9px;
  }
  .facts-panel {
    padding: 22px;
  }
  .saved-toggle > span {
    display: none;
  }
}
@media (max-width: 600px) {
  .container,
  .header-inner {
    width: calc(100% - 36px);
  }
  .header-inner {
    height: 70px;
    gap: 18px;
  }
  .logo {
    font-size: 20px;
    letter-spacing: -1px;
    gap: 8px;
  }
  .logo svg {
    width: 27px;
    height: 32px;
    padding: 5px;
    border-radius: 8px;
  }
  .header-actions {
    gap: 10px;
  }
  .header-search {
    display: none;
  }
  .saved-toggle {
    gap: 5px;
  }
  .mobile-nav summary {
    padding: 9px 0;
  }
  .mobile-nav nav {
    left: auto;
    right: 0;
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 12px 35px #15212d26;
    background: #fff;
  }
  .travel-hero {
    height: 555px;
    margin: 0 8px;
    border-radius: 0 0 12px 12px;
  }
  .travel-hero > .travel-photo {
    object-position: 58% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #061e36b8, #061e3633),
      linear-gradient(0deg, #0a203968, transparent 45%);
  }
  .hero-content {
    width: calc(100% - 42px);
    padding-top: 55px;
  }
  .hero-content h1 {
    font-size: 58px;
    line-height: 1.05;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .hero-kicker {
    font-size: 8px;
    letter-spacing: 0.14em;
  }
  .hero-content > p:not(.hero-kicker) {
    font-size: 14px;
  }
  .hero-explore {
    font-size: 12px;
    margin-top: 20px;
  }
  .hero-location {
    left: 27px;
    right: auto;
    bottom: 68px;
    font-size: 11px;
  }
  .hero-edition {
    right: 13px;
    top: 25px;
    font-size: 7px;
  }
  .search-dock {
    padding: 19px 17px 17px;
    border-radius: 11px;
    margin-top: -39px;
  }
  .destination-search > label {
    font-size: 12px;
  }
  .search-field {
    padding: 5px 5px 5px 12px;
    gap: 9px;
    min-height: 53px;
  }
  .search-field input {
    font-size: 12px;
    min-width: 0;
  }
  .search-field > svg {
    width: 17px;
  }
  .search-field button {
    font-size: 11px;
    padding: 11px 13px;
    min-height: 42px;
  }
  .search-field button span {
    display: none;
  }
  .search-inspiration {
    gap: 14px;
    font-size: 10px;
    flex-wrap: wrap;
  }
  .search-inspiration > span {
    width: 100%;
    font-size: 9px;
    margin-bottom: -6px;
  }
  .search-results a {
    grid-template-columns: 1fr 1fr 15px;
    gap: 6px;
    padding: 13px 10px;
  }
  .search-results strong {
    font-size: 12px;
  }
  .search-results span {
    font-size: 10px;
  }
  .discovery-intro {
    padding-top: 25px;
  }
  .discovery-intro > span {
    font-size: 7px;
    letter-spacing: 0.08em;
  }
  .discovery-intro p {
    display: none;
  }
  .section {
    padding-block: 39px;
  }
  .section-heading {
    gap: 16px;
    align-items: flex-start;
    position: relative;
  }
  .section-heading h2 {
    font-size: 28px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
    margin-bottom: 9px;
  }
  .section-heading > .text-link {
    font-size: 10px;
    gap: 5px;
    white-space: normal;
    max-width: 90px;
    line-height: 1.5;
    text-align: right;
    margin-top: 24px;
  }
  .featured-places {
    padding-top: 39px;
  }
  .destination-filters {
    gap: 5px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    max-width: 100%;
  }
  .destination-filters button {
    font-size: 10px;
    padding: 8px 13px;
    white-space: nowrap;
  }
  .explorer-toolbar {
    margin-bottom: 15px;
  }
  .city-grid {
    gap: 25px 13px;
  }
  .place-photo {
    aspect-ratio: 1.03;
    border-radius: 9px;
  }
  .place-copy {
    padding: 10px 0 0;
  }
  .place-copy > p {
    font-size: 9px;
  }
  .place-copy > p > span {
    font-size: 14px;
  }
  .place-copy h3 {
    font-size: 22px;
    margin-top: 3px;
    margin-bottom: 6px;
  }
  .place-caption {
    font-size: 10px;
    display: block;
    line-height: 1.5;
  }
  .save-place {
    right: 9px;
    top: 9px;
    width: 32px;
    height: 32px;
  }
  .save-place svg {
    width: 15px;
    height: 15px;
  }
  .trip-feature {
    grid-template-columns: 1fr;
    margin-top: 5px;
    border-radius: 11px;
  }
  .trip-feature-photo {
    min-height: 260px;
  }
  .trip-feature-copy {
    padding: 30px 27px 34px;
  }
  .trip-feature-copy h2 {
    font-size: 40px;
    margin: 19px 0;
  }
  .trip-feature-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: none;
  }
  .trip-feature-copy .button {
    margin-top: 22px;
  }
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .topic-grid a {
    padding: 20px 15px;
    min-height: 119px;
    gap: 20px;
    font-size: 11px;
  }
  .topic-grid a > svg {
    width: 25px;
    height: 25px;
  }
  .region-band-heading {
    display: block;
    margin-bottom: 28px;
  }
  .region-band h2 {
    font-size: 36px;
  }
  .region-band-heading > p {
    margin-top: 21px;
    font-size: 12px;
  }
  .region-links {
    gap: 0 25px;
  }
  .region-links a {
    font-size: 12px;
    padding: 19px 0;
    gap: 9px;
  }
  .region-links a > span:first-child {
    font-size: 8px;
  }
  .moments-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 10px;
  }
  .moment-card {
    flex: 0 0 82%;
    height: 330px;
    scroll-snap-align: start;
  }
  .moment-card h3 {
    font-size: 30px;
  }
  .moment-card > div {
    left: 25px;
    bottom: 28px;
  }
  .journal-section {
    padding-top: 10px;
  }
  .guide-list {
    gap: 0;
  }
  .guide-list h3 {
    font-size: 22px;
  }
  .section-note {
    font-size: 11px;
    line-height: 1.7;
  }
  .closing-note {
    padding: 42px 0 48px;
  }
  .closing-note h2 {
    font-size: 47px;
  }
  .closing-note > span {
    font-size: 95px;
    top: 70px;
    right: 0;
  }
  .closing-note .eyebrow {
    font-size: 8px;
  }
  .closing-note .button {
    font-size: 12px;
    padding: 14px 19px;
  }
  .site-footer {
    padding-top: 35px;
  }
  .footer-grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .site-footer .logo {
    font-size: 22px;
  }
  .site-footer p {
    font-size: 13px;
  }
  .site-footer nav {
    gap: 14px;
  }
  .site-footer nav a {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 25px;
  }
  .page-intro {
    padding-top: 20px;
    padding-bottom: 28px;
  }
  .page-intro h1 {
    font-size: 45px;
    line-height: 1.1;
    margin: 13px 0 18px;
  }
  .page-intro > p,
  .page-intro > div > p:not(.eyebrow) {
    font-size: 14px;
  }
  .portal-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .portal-photo {
    height: 245px;
  }
  .portal-intro > .city-coordinates {
    bottom: 44px;
    right: 16px;
  }
  .facts-panel dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .facts-panel {
    padding: 20px 18px;
  }
  .facts-panel dd {
    font-size: 13px;
    overflow-wrap: anywhere;
  }
  .facts-panel .small {
    line-height: 1.7;
  }
  .country-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .directory-region h2 {
    font-size: 27px;
  }
  .directory-filter input {
    font-size: 13px;
  }
  .status-label {
    font-size: 9px;
  }
  .article-header h1 {
    font-size: 35px;
    line-height: 1.13;
  }
  .article-deck {
    font-size: 15px;
  }
  .article-cover {
    height: 235px;
  }
  .article-body {
    font-size: 15px;
  }
  .article h2 {
    font-size: 26px;
  }
  .article-shell {
    width: calc(100% - 36px);
  }
  .verification-banner {
    font-size: 11px;
  }
  .article-sidebar {
    display: none;
  }
  .at-a-glance dl {
    grid-template-columns: 1fr;
  }
  .destination-cta {
    padding: 25px;
    gap: 23px;
  }
  .prose h1 {
    font-size: 36px;
  }
  .saved-dialog {
    padding: 23px;
  }
  .saved-dialog-head h2 {
    font-size: 25px;
  }
  .saved-help {
    font-size: 11px;
  }
  .save-toast {
    font-size: 11px;
    text-align: center;
  }
  .place-monogram {
    font-size: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

.hero-next {
  border: 1px solid #ffffff70;
  border-radius: 50%;
  color: #fff;
  background: #0c263b66;
  width: 36px;
  height: 36px;
  font-size: 20px;
  margin-left: 10px;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.hero-next:hover {
  background: #2146e8;
}
.hero-next:disabled {
  opacity: 0.5;
  cursor: wait;
}
@media (max-width: 600px) {
  .hero-location {
    right: 23px;
  }
  .hero-next {
    margin-left: auto;
  }
  .hero-content h1 {
    font-size: clamp(45px, 13.5vw, 58px);
  }
  .section-heading {
    display: flex;
    flex-direction: row;
  }
  .section-heading > .text-link {
    flex-shrink: 0;
  }
  .search-inspiration {
    row-gap: 12px;
  }
}

.photo-credit {
  font-size: 9px;
  line-height: 1.5;
  color: #687681;
  display: block;
  margin-top: 7px;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.portal-photo > .photo-credit {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: #fffffff0;
  border-radius: 5px;
  padding: 6px 8px;
  width: fit-content;
  max-width: calc(100% - 20px);
}
.photo-credit-list {
  max-height: 640px;
  overflow: auto;
  border-block: 1px solid #e4e8ee;
  padding: 0 18px;
  margin-bottom: 35px;
}
.photo-credit-list > section {
  padding: 18px 0;
  border-bottom: 1px solid #e4e8ee;
  scroll-margin-top: 20px;
}
.photo-credit-list h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.photo-credit-list p {
  font-size: 12px;
  line-height: 1.7;
}
.portal-intro > .city-coordinates {
  bottom: 84px;
}

/* Keep the mobile landing view compact enough to reach search immediately. */
@media (max-width: 600px) {
  .travel-hero {
    height: 400px;
  }
  .hero-content {
    padding-top: 30px;
  }
  .hero-content h1 {
    font-size: clamp(39px, 12vw, 50px);
    margin: 16px 0;
    line-height: 1.04;
  }
  .hero-content > p:not(.hero-kicker) {
    font-size: 13px;
    line-height: 1.55;
  }
  .hero-explore {
    margin-top: 15px;
    padding-bottom: 7px;
  }
  .hero-location {
    bottom: 58px;
  }
  .hero-edition {
    font-size: 6px;
    top: 20px;
  }
}

button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  transition:
    background 0.18s,
    border-color 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
}
button:active:not(:disabled),
.button:active {
  transform: translateY(1px);
}
button:disabled {
  cursor: default;
  opacity: 0.4;
}
button:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #8da7ff;
  outline-offset: 3px;
}
.secondary-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid #dce3eb;
  background: white;
  padding: 11px 17px;
  border-radius: 8px;
  font: 600 12px var(--body);
  color: #233749;
  min-height: 42px;
  transition:
    background 0.18s,
    border-color 0.18s,
    transform 0.18s;
}
.secondary-button:hover,
.icon-button:hover {
  background: #f2f5ff;
  border-color: #aabafa;
  color: #2146e8;
}
.city-actions {
  display: flex;
  gap: 10px;
  margin: -2px 0 23px;
}
.city-actions .secondary-button {
  background: #2146e8;
  border-color: #2146e8;
  color: #fff;
}
.city-actions .secondary-button:hover {
  background: #1637c6;
}
.quick-search-dialog {
  border: 0;
  border-radius: 16px;
  padding: 28px;
  width: min(640px, calc(100% - 30px));
  max-height: 85dvh;
  color: #15212d;
  overflow: visible;
  box-shadow: 0 20px 100px #0003;
}
.quick-search-dialog::backdrop {
  background: #0c203ba6;
  backdrop-filter: blur(4px);
}
.quick-search-dialog h2 {
  font-size: 30px;
  margin-top: 10px;
}
.quick-search-dialog .destination-search {
  margin-top: 28px;
}
.quick-search-dialog .search-results {
  position: static;
  box-shadow: none;
  border: 0;
  border-bottom: 1px solid #e3e8ef;
  margin-top: 15px;
  max-height: 270px;
}
.quick-inspiration {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 12px;
}
.quick-inspiration > span {
  color: #718190;
}
.quick-inspiration a {
  color: #2146e8;
  font-weight: 600;
}
.keyboard-hint {
  font-size: 10px;
  margin-top: 24px;
  color: #72808c;
  display: flex;
  align-items: center;
  gap: 7px;
}
kbd {
  font-family: inherit;
  background: #f3f5f8;
  border: 1px solid #e1e7ef;
  border-radius: 4px;
  padding: 2px 6px;
  color: #5c6d7b;
}
.destination-search[aria-busy="true"] .search-field {
  box-shadow: 0 0 0 2px #d9e1ff;
}
.destination-search[aria-busy="true"] button {
  opacity: 0.7;
}
.mobile-bottom-nav {
  display: none;
}
.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 26px;
  width: 43px;
  height: 43px;
  background: #fff;
  border: 1px solid #dce3ec;
  border-radius: 50%;
  box-shadow: 0 4px 15px #1d34521f;
  color: #2146e8;
  font-size: 22px;
  z-index: 35;
}
.back-to-top:hover {
  background: #2146e8;
  color: #fff;
}
.view-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  font-size: 11px;
  color: #62717d;
}
.view-toolbar label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.view-toolbar select {
  font: 500 11px var(--body);
  background: #fff;
  color: #253b4c;
  border: 1px solid #dce3ec;
  padding: 9px 12px;
  border-radius: 6px;
}
.view-toolbar [role="group"] {
  display: flex;
  padding: 3px;
  border: 1px solid #e1e6ee;
  background: #f6f8fa;
  border-radius: 7px;
  gap: 3px;
}
.view-toolbar button {
  border: 0;
  background: transparent;
  color: #71808d;
  font: 550 11px var(--body);
  padding: 7px 13px;
  border-radius: 4px;
}
.view-toolbar button[aria-pressed="true"] {
  background: #fff;
  color: #2146e8;
  box-shadow: 0 1px 5px #0001;
}
.city-grid.is-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.city-grid.is-list .place-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 12px;
  border: 1px solid #e2e8ef;
  border-radius: 10px;
}
.city-grid.is-list .place-photo {
  width: 120px;
  height: 120px;
  aspect-ratio: auto;
}
.city-grid.is-list .place-copy {
  padding: 0;
}
.city-grid.is-list .place-copy h3 {
  font-size: 23px;
}
.city-grid.is-list .save-place {
  left: 87px;
  right: auto;
  top: 18px;
  width: 28px;
  height: 28px;
}
.city-grid.is-list .photo-credit {
  font-size: 8px;
}
.trip-planner {
  scroll-margin-top: 25px;
}
.planner-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 29px;
}
.planner-heading h2 {
  margin: 12px 0;
}
.planner-heading p:not(.eyebrow) {
  font-size: 13px;
}
.planner-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  border: 1px solid #dde5ee;
  border-radius: 14px;
  overflow: hidden;
}
.planner-details {
  padding: 32px;
  background: #f7f9fc;
}
.planner-details h3,
.planner-checklist h3 {
  font-size: 19px;
  font-weight: 600;
}
.trip-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 27px;
}
.trip-dates label {
  font-size: 11px;
  font-weight: 600;
  color: #536879;
}
.trip-dates input {
  display: block;
  min-width: 0;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d8e1ec;
  background: #fff;
  padding: 12px;
  border-radius: 7px;
  color: #233c51;
  font: 500 13px var(--body);
}
.date-summary {
  font-size: 11px;
  color: #506b86;
  margin: 13px 0 25px;
  line-height: 1.7;
}
.notes-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #536879;
  margin-bottom: 9px;
}
.planner-details textarea {
  display: block;
  width: 100%;
  resize: vertical;
  min-height: 115px;
  max-height: 400px;
  padding: 14px;
  border: 1px solid #d8e1ec;
  background: #fff;
  border-radius: 7px;
  font: 13px/1.7 var(--body);
  color: #233c51;
}
.planner-details textarea::placeholder {
  color: #8995a2;
}
.planner-storage {
  font-size: 10px;
  line-height: 1.7;
  margin-top: 13px;
  color: #63768b;
}
.planner-checklist {
  padding: 32px;
}
.checklist-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.checklist-heading span {
  white-space: nowrap;
  font-size: 11px;
  color: #2146e8;
  background: #edf2ff;
  padding: 5px 10px;
  border-radius: 15px;
}
.planner-checklist progress {
  appearance: none;
  display: block;
  width: 100%;
  height: 4px;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  background: #eaf0f6;
  margin: 21px 0 11px;
}
.planner-checklist progress::-webkit-progress-bar {
  background: #eaf0f6;
}
.planner-checklist progress::-webkit-progress-value {
  background: #2146e8;
  border-radius: 5px;
  transition: width 0.25s;
}
.planner-checklist progress::-moz-progress-bar {
  background: #2146e8;
}
.checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #eef1f5;
  cursor: pointer;
}
.checklist-item:last-child {
  border: 0;
  padding-bottom: 0;
}
.checklist-item input {
  appearance: none;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  border: 1.5px solid #c5d1df;
  border-radius: 5px;
  margin: 1px 0 0;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.checklist-item input:checked {
  background: #2146e8;
  border-color: #2146e8;
}
.checklist-item input:checked:after {
  content: "✓";
  color: white;
  font-size: 13px;
  font-weight: 700;
}
.checklist-item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #273d50;
}
.checklist-item small {
  display: block;
  font-size: 10px;
  color: #728395;
  margin-top: 4px;
  line-height: 1.6;
}
.checklist-item:has(input:checked) strong {
  color: #778c9c;
  text-decoration: line-through;
}
.trip-dates input[aria-invalid="true"] {
  border-color: #c04444;
  background: #fff8f8;
}
.article-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0;
}
.reading-time {
  font-size: 11px;
  color: #70808e;
}
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 100;
  appearance: none;
  border: 0;
  background: transparent;
}
.reading-progress::-webkit-progress-bar {
  background: transparent;
}
.reading-progress::-webkit-progress-value {
  background: #2146e8;
}
.reading-progress::-moz-progress-bar {
  background: #2146e8;
}
.article-sidebar nav a[aria-current="location"] {
  color: #2146e8;
  background: #eff3ff;
  border-radius: 5px;
  padding-left: 10px;
}
.article [id] {
  scroll-margin-top: 25px;
}
.mobile-toc {
  display: none;
}
.faq-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.story-controls {
  display: none;
}
.save-place:hover {
  box-shadow: 0 4px 18px #122a5230;
}
.save-place[aria-pressed="true"] {
  background: #edf2ff;
}
.saved-toggle:hover {
  color: #2146e8;
}
.mobile-nav summary {
  list-style: none;
}
.mobile-nav summary::marker {
  display: none;
}
.mobile-nav summary:before {
  content: "☰";
  font-size: 14px;
  margin-right: 7px;
}
.mobile-nav[open] summary:before {
  content: "×";
  font-size: 20px;
}
.mobile-nav nav a {
  padding: 13px 16px;
}
.mobile-nav nav a:hover {
  background: #f0f4ff;
  color: #2146e8;
}
@media (max-width: 900px) {
  .planner-grid {
    grid-template-columns: 1fr;
  }
  .planner-checklist {
    border-top: 1px solid #dde5ee;
  }
  .city-grid.is-list {
    grid-template-columns: 1fr;
  }
  .planner-heading > .secondary-button {
    white-space: nowrap;
  }
  .mobile-toc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 12px;
    border: 1px solid #e0e6ee;
    border-radius: 8px;
    padding: 12px 15px;
    background: #f7f9fc;
    margin: 20px 0;
  }
  .mobile-toc select {
    max-width: 70%;
    font: 12px var(--body);
    border: 0;
    background: transparent;
    color: #2146e8;
  }
  .article-sidebar {
    display: none;
  }
}
@media (max-width: 600px) {
  body {
    padding-bottom: 70px;
  }
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(61px + env(safe-area-inset-bottom));
    padding: 6px 15px calc(6px + env(safe-area-inset-bottom));
    z-index: 45;
    border-top: 1px solid #e1e7ef;
    background: #ffffffed;
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 -4px 18px #23476a08;
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 60px;
    min-height: 46px;
    border: 0;
    background: none;
    color: #687d8e;
    font: 500 9px var(--body);
  }
  .mobile-bottom-nav svg {
    width: 19px;
    height: 19px;
  }
  .mobile-bottom-nav a[aria-current="page"] {
    color: #2146e8;
  }
  .mobile-bottom-nav b {
    font-size: 8px;
    background: #eef2ff;
    padding: 1px 4px;
    border-radius: 4px;
    color: #2146e8;
  }
  .save-toast {
    bottom: 83px;
    max-width: calc(100% - 34px);
    padding: 12px 18px;
  }
  .back-to-top {
    bottom: 82px;
    right: 18px;
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  .quick-search-dialog {
    padding: 24px 20px;
    width: calc(100% - 26px);
    max-height: calc(100dvh - 90px);
    overflow: auto;
  }
  .quick-search-dialog h2 {
    font-size: 26px;
    max-width: 250px;
  }
  .quick-search-dialog .eyebrow {
    font-size: 8px;
  }
  .quick-search-dialog .saved-dialog-head button {
    flex-shrink: 0;
  }
  .quick-search-dialog .destination-search {
    margin-top: 24px;
  }
  .quick-inspiration {
    font-size: 10px;
    gap: 12px;
  }
  .quick-inspiration > span {
    width: 100%;
  }
  .keyboard-hint {
    display: none;
  }
  .saved-dialog {
    max-height: calc(100dvh - 110px);
  }
  .city-actions {
    margin-bottom: 21px;
  }
  .city-actions .secondary-button,
  .city-actions .icon-button {
    font-size: 11px;
    min-height: 40px;
    padding: 10px 14px;
  }
  .planner-heading {
    align-items: flex-start;
  }
  .planner-heading h2 {
    font-size: 28px;
  }
  .planner-heading > div {
    min-width: 0;
  }
  .planner-heading > .secondary-button {
    padding: 10px;
    min-width: 77px;
    max-width: 85px;
    font-size: 10px;
    white-space: normal;
    gap: 6px;
  }
  .planner-heading p:not(.eyebrow) {
    font-size: 11px;
    line-height: 1.7;
  }
  .planner-details,
  .planner-checklist {
    padding: 23px 19px;
  }
  .planner-details h3,
  .planner-checklist h3 {
    font-size: 18px;
  }
  .trip-dates {
    gap: 10px;
    margin-top: 22px;
  }
  .trip-dates input {
    font-size: 12px;
    padding: 10px 7px;
  }
  .planner-details textarea {
    font-size: 12px;
  }
  .checklist-heading span {
    font-size: 10px;
    padding: 4px 8px;
  }
  .checklist-item {
    padding: 16px 0;
  }
  .checklist-item strong {
    font-size: 12px;
  }
  .checklist-item small {
    font-size: 10px;
  }
  .view-toolbar {
    gap: 8px;
    font-size: 10px;
  }
  .view-toolbar label {
    gap: 7px;
    font-size: 0;
  }
  .view-toolbar select {
    font-size: 11px;
    padding: 10px 7px;
  }
  .view-toolbar button {
    padding: 8px 10px;
    font-size: 10px;
  }
  .city-grid.is-list .place-card {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 14px;
    padding: 9px;
  }
  .city-grid.is-list .place-photo {
    width: 100px;
    height: 120px;
  }
  .city-grid.is-list .save-place {
    left: 75px;
    top: 15px;
    width: 27px;
    height: 27px;
  }
  .city-grid.is-list .place-copy h3 {
    font-size: 22px;
  }
  .story-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
  }
  .story-controls button {
    border: 1px solid #dae2ec;
    background: white;
    color: #24425b;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 19px;
  }
  .story-controls button:disabled {
    opacity: 0.3;
  }
  .faq-heading {
    align-items: flex-start;
    gap: 12px;
  }
  .faq-heading h2 {
    font-size: 25px;
  }
  .faq-heading .secondary-button {
    font-size: 10px;
    padding: 9px 11px;
    min-width: 80px;
    min-height: 36px;
  }
  .article-tools {
    gap: 12px;
  }
  .article-tools .secondary-button {
    font-size: 11px;
  }
  .reading-time {
    font-size: 10px;
  }
  .mobile-toc {
    font-size: 11px;
    padding: 13px 12px;
  }
  .mobile-toc select {
    font-size: 11px;
  }
  .footer-bottom {
    padding-bottom: 25px;
  }
}

.city-local-time {
  font-size: 11px !important;
  color: #61788d !important;
  margin: -8px 0 22px !important;
  letter-spacing: 0.01em;
}

.save-place.save-inline {
  position: static;
  border: 1px solid #dce3eb;
  box-shadow: none;
  width: auto;
  min-width: 85px;
  height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-flex;
  gap: 8px;
  font-size: 12px;
}
.save-inline[aria-pressed="true"] {
  border-color: #bccbff;
}
.save-inline:hover {
  transform: none;
  background: #f1f5ff;
}
@media (max-width: 600px) {
  .save-place.save-inline {
    min-width: 68px;
    padding: 9px 10px;
    height: 40px;
    font-size: 11px;
  }
  .city-actions {
    gap: 7px;
  }
}

.page-intro h1,
.place-copy h3,
.planner-heading h2 {
  overflow-wrap: anywhere;
}
@media (max-width: 600px) {
  .city-actions {
    flex-wrap: wrap;
  }
  .quick-search-dialog .saved-dialog-head > div {
    min-width: 0;
  }
}
@media (max-width: 360px) {
  .header-actions {
    display: none;
  }
  .header-inner {
    gap: 10px;
  }
  .mobile-nav {
    margin-left: auto;
  }
  .logo {
    font-size: 19px;
  }
  .search-field button {
    padding-inline: 11px;
  }
  .search-field input {
    font-size: 11px;
  }
  .saved-dialog-head h2 {
    font-size: 23px;
  }
}

/* About: an editorial window into the brand. */
.about-intro {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: end;
  padding-block: 80px 54px;
}
.about-intro h1 {
  font-size: clamp(44px, 5.2vw, 78px);
  letter-spacing: -0.055em;
  line-height: 1.08;
  margin: 20px 0 0;
}
.about-intro h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.about-intro-copy {
  max-width: 420px;
  padding-bottom: 5px;
}
.about-intro-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: #526271;
  margin-bottom: 18px;
}
.about-intro-copy p:first-child {
  color: #15212d;
  font-size: 20px;
  line-height: 1.5;
}
.about-photo {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 16px;
  color: white;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #071d3477, transparent 80%),
    linear-gradient(0deg, #071d3488, transparent 45%);
  pointer-events: none;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo > div {
  position: absolute;
  z-index: 1;
  left: 48px;
  bottom: 64px;
}
.about-photo > div span {
  font-size: 10px;
  letter-spacing: 0.16em;
}
.about-photo > div p {
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-top: 18px;
}
.about-photo > a {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 25px;
  font-size: 11px;
}
.about-story {
  padding-block: 100px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  scroll-margin-top: 35px;
}
.about-story h2,
.about-approach h2,
.about-standards h2,
.about-contact h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.about-story h2 span {
  color: #7b8894;
}
.about-story p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.8;
  color: #526271;
  max-width: 700px;
  margin-top: 18px;
}
.about-discover {
  background: #f4f7fa;
  padding-block: 70px;
}
.about-discover h2 {
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.04em;
  margin-block: 14px 38px;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.about-pillars > a {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #e3e9ef;
  border-radius: 12px;
  background: white;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.about-pillars > a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px #183b6410;
}
.about-number {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #526271;
}
.about-pillars h3 {
  font-size: 24px;
  line-height: 1.25;
  margin: 26px 0 14px;
  letter-spacing: -0.025em;
}
.about-pillars p {
  color: #526271;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-pillars .text-link {
  margin-top: auto;
  font-size: 12px;
}
.about-approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 85px;
  padding-block: 95px;
}
.about-approach figure {
  margin: 0;
}
.about-approach img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 100px 12px 12px 12px;
}
.about-approach figcaption {
  font-size: 11px;
  color: #526271;
  margin-top: 12px;
}
.about-approach h2 {
  margin-top: 16px;
}
.about-approach p {
  font-size: 14px;
  line-height: 1.8;
  color: #526271;
}
.about-principle {
  display: flex;
  gap: 20px;
  border-top: 1px solid #e3e9ef;
  margin-top: 24px;
  padding-top: 20px;
}
.about-principle > span {
  color: #2146e8;
  font-size: 12px;
  padding-top: 4px;
}
.about-principle h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.about-standards {
  padding-block: 60px 90px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  border-top: 1px solid #e3e9ef;
}
.about-standards h2 {
  margin-top: 16px;
}
.about-standards p {
  color: #526271;
  font-size: 15px;
  line-height: 1.8;
}
.about-standards details {
  border-bottom: 1px solid #dde4ec;
  padding: 20px 0;
}
.about-standards details:first-child {
  padding-top: 0;
}
.about-standards summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding-right: 12px;
}
.about-standards details p {
  margin: 15px 0 0;
  font-size: 14px;
}
.about-standards details a {
  text-decoration: underline;
}
.about-contact {
  background: #edf2ff;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 100px;
  padding: 48px;
  margin-bottom: 85px;
  align-items: center;
}
.about-contact h2 {
  margin-top: 14px;
}
.about-contact p {
  font-size: 15px;
  line-height: 1.8;
  color: #526271;
  margin: 16px 0 25px;
}
.about-contact > div:last-child {
  border-left: 1px solid #cdd9f0;
  padding-left: 40px;
}
.about-contact a {
  overflow-wrap: anywhere;
}
@media (max-width: 900px) {
  .about-intro {
    gap: 30px;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .about-approach {
    gap: 35px;
  }
  .about-pillars {
    gap: 14px;
  }
  .about-pillars > a {
    padding: 24px 20px;
  }
  .about-standards {
    gap: 35px;
  }
  .about-contact {
    gap: 35px;
    padding: 35px;
  }
}
@media (max-width: 600px) {
  .about-intro {
    grid-template-columns: 1fr;
    padding-block: 38px 30px;
    gap: 25px;
  }
  .about-intro h1 {
    font-size: clamp(36px, 10vw, 52px);
  }
  .about-intro-copy p:first-child {
    font-size: 18px;
  }
  .about-intro-copy p {
    font-size: 14px;
  }
  .about-photo {
    height: 310px;
    border-radius: 10px;
  }
  .about-photo > div {
    left: 22px;
    bottom: 65px;
  }
  .about-photo > a {
    right: 18px;
    font-size: 9px;
  }
  .about-photo > div span {
    font-size: 8px;
  }
  .about-story {
    padding-block: 48px;
  }
  .about-story p:not(.eyebrow) {
    font-size: 15px;
  }
  .about-discover {
    padding-block: 42px;
  }
  .about-pillars,
  .about-approach,
  .about-standards,
  .about-contact {
    grid-template-columns: 1fr;
  }
  .about-pillars h3 {
    margin-top: 20px;
  }
  .about-approach {
    padding-block: 48px;
  }
  .about-approach img {
    height: 320px;
    border-top-left-radius: 60px;
  }
  .about-standards {
    padding-block: 38px 48px;
    gap: 25px;
  }
  .about-contact {
    padding: 25px;
    margin-bottom: 48px;
  }
  .about-contact > div:last-child {
    border-left: 0;
    border-top: 1px solid #cdd9f0;
    padding: 25px 0 0;
  }
  .about-contact .button {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-pillars > a {
    transition: none;
  }
  .about-pillars > a:hover {
    transform: none;
  }
}

.collection-grid {
  gap: 20px;
}
.collection-grid > a {
  padding: 26px;
  border: 1px solid #e4e9ef;
  border-radius: 12px;
  min-width: 0;
}
.collection-grid h2,
.collection-grid h3 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin: 16px 0 10px;
}
.collection-grid p {
  font-size: 14px;
  line-height: 1.7;
  max-width: none;
  color: #657382;
}
.collection-grid a > span:last-child {
  position: static;
}
.situations-intro {
  padding-top: 40px;
  padding-bottom: 30px;
}
.situations-intro h1 {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.15;
  margin-top: 18px;
}
.situations-intro > p:not(.eyebrow) {
  font-size: 16px;
  max-width: 650px;
  line-height: 1.7;
}
.situations-intro .eyebrow {
  font-size: 10px;
}
.situations-section {
  padding-top: 12px;
  padding-bottom: 70px;
}
.situations-grid > a {
  display: flex;
  flex-direction: column;
  background: #fff;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.situations-grid > a:hover {
  border-color: #aebfe9;
  background: #f7f9ff;
  transform: translateY(-3px);
}
.situation-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.situation-card-top span {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #738293;
}
.situation-card-top svg {
  width: 18px;
  height: 18px;
  color: #2146e8;
}
.situations-grid .situation-card-link {
  margin-top: auto;
  padding-top: 24px;
  font-size: 12px;
  font-weight: 600;
  color: #2146e8;
}
.contact-panel h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 16px 0;
}
.contact-email {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 600;
  color: #2146e8;
}
.contact-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.contact-topics a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid #d3def2;
  border-radius: 7px;
  background: #ffffff99;
}
.contact-topics a:hover {
  background: white;
  border-color: #2146e8;
}
.contact-panel small {
  font-size: 11px;
  line-height: 1.7;
  color: #657382;
  display: block;
}
@media (max-width: 900px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-topics {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .collection-grid > a {
    padding: 22px;
  }
  .collection-grid h2,
  .collection-grid h3 {
    font-size: 21px;
  }
  .situations-intro {
    padding-top: 24px;
  }
  .situations-intro > p:not(.eyebrow) {
    font-size: 14px;
  }
  .situations-section {
    padding-bottom: 42px;
  }
  .contact-topics {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .situations-grid > a {
    transition: none;
  }
  .situations-grid > a:hover {
    transform: none;
  }
}
