/* RentSivo: original editorial travel system, intentionally distinct from any OTA. */
body.rs-site {
  --rs-ink: #103236;
  --rs-deep: #092b30;
  --rs-muted: #4d6266;
  --rs-line: #d5e0e2;
  --rs-coral: #ed6b51;
  --rs-coral-dark: #d85840;
  --rs-tint: #f3f8f7;
  margin: 0;
  background: #fff;
  color: var(--rs-ink);
  font: 17px/1.65 "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.rs-site *, .rs-site *::before, .rs-site *::after { box-sizing: border-box; }
.rs-site img { display: block; max-width: 100%; height: auto; }
.rs-site a { color: inherit; }
.rs-site button, .rs-site input, .rs-site select { font: inherit; }
.rs-site :focus-visible { outline: 3px solid var(--rs-coral); outline-offset: 3px; }
.rs-site h1, .rs-site h2, .rs-site h3, .rs-site h4 {
  margin: 0;
  color: var(--rs-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.13;
}
.rs-site h1 { font-size: clamp(44px, 4.55vw, 70px); }
.rs-site h2 { font-size: clamp(36px, 3.45vw, 55px); }
.rs-site h3 { font-size: clamp(25px, 2.1vw, 32px); }
.rs-site p { margin: 0 0 1.15em; }
.rs-site ul, .rs-site ol { margin: 0 0 1.25em; padding-left: 1.3em; }
.rs-site li { margin: .42em 0; }
.rs-container { width: min(100% - 96px, 1440px); margin-inline: auto; }

.rs-skip-link { position: absolute; left: 12px; top: -80px; z-index: 1000; padding: 10px 16px; background: #fff; color: var(--rs-deep); }
.rs-skip-link:focus { top: 12px; }

.rs-header { position: relative; z-index: 20; background: #fff; border-bottom: 1px solid transparent; }
.rs-header-inner { min-height: 86px; display: flex; align-items: center; gap: 30px; }
.rs-brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--rs-deep); }
.rs-brand-mark { width: 54px; height: 54px; object-fit: contain; }
.rs-brand-name { font: 600 clamp(29px, 2.9vw, 46px)/1 Georgia, "Times New Roman", serif; letter-spacing: -.05em; }
.rs-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 37px); flex: 1 1 auto; }
.rs-nav a { font-size: 15px; font-weight: 600; text-decoration: none; white-space: nowrap; border-bottom: 2px solid transparent; padding: 8px 0; }
.rs-nav a:hover, .rs-nav a.is-current { color: var(--rs-coral-dark); border-bottom-color: var(--rs-coral); }
.rs-header-search { flex: 0 0 30px; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; text-decoration: none; }
.rs-header-search svg { width: 25px; height: 25px; fill: none; stroke: var(--rs-deep); stroke-width: 1.7; stroke-linecap: round; }
.rs-header-search:hover svg { stroke: var(--rs-coral-dark); }
.rs-menu-toggle { display: none; }

.rs-hero { position: relative; overflow: hidden; background: #fff; }
.rs-hero--home { min-height: 588px; padding-top: 56px; }
.rs-hero--home .rs-hero__intro { position: relative; z-index: 2; }
.rs-hero--home h1 { max-width: 580px; font-size: clamp(50px, 3.6vw, 58px); line-height: 1.02; }
.rs-hero--home .rs-lede { max-width: 560px; margin-top: 22px; font-size: clamp(20px, 1.6vw, 25px); line-height: 1.35; }
.rs-hero--home .rs-hero__media { position: absolute; z-index: 0; top: 0; right: 0; bottom: 0; width: 57%; }
.rs-hero--home .rs-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 46% center; }
.rs-hero--home .rs-hero__search { position: relative; z-index: 3; margin-top: 64px; padding-bottom: 27px; }
.rs-search { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1fr 1.3fr; align-items: stretch; background: #fff; border: 1px solid var(--rs-line); border-radius: 10px; box-shadow: 0 10px 28px #19343920; }
.rs-search .rs-field { min-width: 0; min-height: 92px; padding: 15px 20px 10px; position: relative; display: flex; flex-direction: column; justify-content: center; }
.rs-search .rs-field + .rs-field::before { content: ""; position: absolute; width: 1px; height: 58%; left: 0; top: 21%; background: var(--rs-line); }
.rs-field label { color: var(--rs-deep); font-size: 14px; font-weight: 700; line-height: 1.2; }
.rs-search input, .rs-search select { appearance: auto; width: 100%; min-width: 0; height: 33px; margin: 4px 0 0; padding: 0; border: 0; background: transparent; color: var(--rs-muted); font-size: 15px; line-height: 1.3; box-shadow: none; }
.rs-search input:focus, .rs-search select:focus { outline: 0; color: var(--rs-deep); }
.rs-search .rs-field:focus-within { box-shadow: inset 0 0 0 2px var(--rs-coral); border-radius: 7px; }
.rs-search input::placeholder { color: #708184; opacity: 1; }
.rs-button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid var(--rs-coral); border-radius: 8px; background: var(--rs-coral); color: #fff !important; font-size: 16px; font-weight: 700; line-height: 1.25; text-align: center; text-decoration: none; cursor: pointer; transition: background .18s ease, border-color .18s ease, transform .18s ease; }
.rs-button:hover { background: var(--rs-coral-dark); border-color: var(--rs-coral-dark); transform: translateY(-1px); }
.rs-search > .rs-button { margin: 10px; min-height: 70px; padding-inline: 14px; font-size: 17px; white-space: nowrap; }
.rs-search-note { margin: 8px 0 0; color: var(--rs-muted); font-size: 13px; line-height: 1.45; text-align: right; }
.rs-hero--home .rs-search-note { width: max-content; max-width: 100%; margin: 0 0 0 auto; padding: 4px 8px; border-radius: 0 0 6px 6px; background: #fff; }
.rs-button--secondary { border-color: transparent; background: transparent; color: var(--rs-coral-dark) !important; padding-left: 0; padding-right: 0; font-size: 17px; }
.rs-button--secondary:hover { border-color: transparent; background: transparent; color: var(--rs-deep) !important; }
.rs-hero__secondary { display: inline-flex; margin-top: 0; }

.rs-hero--editorial { padding: 72px 0 82px; border-bottom: 1px solid var(--rs-line); }
.rs-hero--editorial h1 { max-width: 980px; }
.rs-hero--editorial .rs-lede { max-width: 810px; margin: 22px 0 0; font-size: 21px; line-height: 1.45; color: var(--rs-muted); }
.rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) { display: grid; grid-template-columns: minmax(0, 42%) minmax(0, 58%); align-items: stretch; min-height: 390px; border-bottom: 1px solid var(--rs-line); }
.rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) .rs-hero__media { grid-column: 1; grid-row: 1; min-height: 390px; }
.rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) .rs-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) > .rs-container { width: auto; margin: 0; padding: 56px clamp(36px, 6vw, 95px); grid-column: 2; grid-row: 1; align-self: center; }
.rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) h1 { font-size: clamp(40px, 3.7vw, 60px); max-width: 810px; }
.rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) .rs-lede { margin-top: 18px; max-width: 670px; font-size: 19px; line-height: 1.45; }
.rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) .rs-button { margin-top: 6px; }
.rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) .rs-search-note { text-align: left; max-width: 560px; }
.rs-eyebrow, .rs-guide-meta { margin-bottom: 13px !important; color: var(--rs-coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

.rs-section { padding-top: 84px; padding-bottom: 84px; }
.rs-section.rs-container + .rs-section.rs-container { border-top: 1px solid var(--rs-line); }
.rs-section--tint { background: var(--rs-tint); }
.rs-section--dark { background: var(--rs-deep); color: #fff; }
.rs-section--dark h2, .rs-section--dark h3 { color: #fff; }
.rs-section--dark .rs-eyebrow { color: #ffb2a2; }
.rs-section-heading { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 22px 60px; margin-bottom: 31px; padding-bottom: 22px; border-bottom: 1px solid var(--rs-line); }
.rs-section-heading h2 { flex: 1 1 570px; }
.rs-section-heading p:not(.rs-eyebrow) { flex: 1 1 330px; max-width: 520px; margin: 0; color: var(--rs-muted); font-size: 17px; line-height: 1.5; }
.rs-section-heading .rs-eyebrow { flex-basis: 100%; margin-bottom: -14px !important; }
.rs-grid { display: grid; gap: 24px; }
.rs-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rs-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rs-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.rs-card, .rs-destination-card { min-width: 0; }
.rs-card { border-top: 1px solid var(--rs-line); padding: 23px 4px 6px 0; }
.rs-card h3 { margin: 0 0 12px; }
.rs-card p { color: var(--rs-muted); }
.rs-card-number { display: block; color: var(--rs-coral-dark); font-weight: 800; font-size: 13px; letter-spacing: .06em; margin-bottom: 24px; }
.rs-card--photo { border-top: 0; padding: 0 0 7px; }
.rs-card--photo img { width: 100%; aspect-ratio: 2.7 / 1; object-fit: cover; border-radius: 5px; margin-bottom: 16px; }
.rs-card--photo h3 { font-size: 27px; margin-bottom: 4px; }
.rs-card--photo p { font-size: 15px; line-height: 1.5; margin-bottom: 8px; }
.rs-destination-card { display: block; text-decoration: none; }
.rs-destination-card img { width: 100%; aspect-ratio: 1.28 / 1; object-fit: cover; margin-bottom: 15px; }
.rs-destination-card > span:first-of-type { display: block; color: var(--rs-muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px; }
.rs-destination-card h2, .rs-destination-card h3 { font-size: clamp(28px, 2.35vw, 38px); margin-bottom: 8px; }
.rs-destination-card p { margin-bottom: 10px; color: var(--rs-muted); font-size: 16px; line-height: 1.42; }
.rs-card-link, .rs-text-link { color: var(--rs-coral-dark) !important; font-size: 16px; font-weight: 700; text-decoration: none; border-bottom: 1px solid transparent; }
.rs-destination-card:hover .rs-card-link, .rs-text-link:hover { border-bottom-color: currentColor; }
.rs-destination-card:hover img { filter: saturate(1.09); }
.rs-section-foot { margin: 24px 0 0 !important; }

.rs-split { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(38px, 7vw, 115px); align-items: start; }
.rs-split h2 { margin-bottom: 20px; }
.rs-split p { max-width: 740px; }
.rs-note { background: var(--rs-tint); border-left: 3px solid var(--rs-coral); padding: 27px 30px; color: var(--rs-deep); }
.rs-section--tint .rs-note { background: #fff; }
.rs-note h3 { font-size: 26px; margin-bottom: 12px; }
.rs-note p, .rs-note li { font-size: 15px; line-height: 1.55; }
.rs-note ul, .rs-note ol { margin-bottom: 0; }
.rs-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.rs-cta h2 { max-width: 790px; }
.rs-cta p { max-width: 670px; margin: 14px 0 0; color: #d0e0dd; }
.rs-cta .rs-button { flex: 0 0 auto; }

.rs-article { max-width: 1140px; font-size: 18px; line-height: 1.7; }
.rs-article > p { max-width: 870px; }
.rs-article h2 { margin: 54px 0 18px; font-size: clamp(34px, 3vw, 45px); }
.rs-article h2:first-of-type { margin-top: 0; }
.rs-article h3 { font-size: 26px; }
.rs-article .rs-grid { margin: 33px 0; }
.rs-article a:not(.rs-button) { color: var(--rs-coral-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.rs-article .rs-note { margin: 36px 0; max-width: 900px; }
.rs-source-list { padding-left: 1.2em; }
.rs-source-list li { overflow-wrap: anywhere; }
.rs-fine-print { font-size: 14px; color: var(--rs-muted); }

.rs-footer { background: #f7faf9; border-top: 1px solid var(--rs-line); }
.rs-footer-main { display: flex; align-items: start; justify-content: space-between; gap: 60px; padding-top: 50px; padding-bottom: 41px; }
.rs-footer .rs-brand-name { font-size: 31px; }
.rs-footer .rs-brand-mark { width: 36px; height: 36px; }
.rs-footer-brand p { max-width: 410px; margin: 16px 0 0; color: var(--rs-muted); font-size: 15px; }
.rs-footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 10px 26px; max-width: 630px; }
.rs-footer-links a { color: var(--rs-ink); font-size: 14px; font-weight: 600; text-decoration: none; }
.rs-footer-links a:hover { color: var(--rs-coral-dark); }
.rs-footer-bottom { display: flex; justify-content: space-between; gap: 15px 40px; border-top: 1px solid var(--rs-line); padding-top: 16px; padding-bottom: 23px; }
.rs-footer-bottom p { margin: 0; color: var(--rs-muted); font-size: 12px; }

@media (max-width: 1400px) {
  .rs-hero--home { min-height: 0; display: flex; flex-direction: column; overflow: visible; padding-top: 38px; }
  .rs-hero--home .rs-hero__intro { order: 1; }
  .rs-hero--home h1 { max-width: 730px; }
  .rs-hero--home .rs-lede { max-width: 700px; }
  .rs-hero--home .rs-hero__media { position: relative; order: 2; top: auto; right: auto; bottom: auto; width: 100%; height: 380px; margin-top: 28px; }
  .rs-hero--home .rs-hero__search { order: 3; margin-top: -50px; padding-bottom: 27px; }
  .rs-hero--home .rs-hero__media img { object-position: center 48%; }
}

@media (max-width: 1180px) {
  .rs-container { width: min(100% - 64px, 1440px); }
  .rs-header-inner { gap: 18px; }
  .rs-nav { gap: 18px; }
  .rs-nav a { font-size: 13px; }
  .rs-brand-name { font-size: 31px; }
  .rs-search { grid-template-columns: 1.45fr .9fr .9fr .9fr 1.2fr; }
  .rs-search .rs-field { padding-inline: 14px; }
  .rs-search > .rs-button { font-size: 15px; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .rs-hero--home .rs-hero__media { height: 270px; }
  .rs-hero--home .rs-hero__search { margin-top: -58px; }
}

@media (max-width: 900px) {
  .rs-container { width: min(100% - 40px, 1440px); }
  .rs-header-inner { min-height: 74px; }
  .rs-brand-mark { width: 38px; height: 38px; }
  .rs-brand-name { font-size: 31px; }
  .rs-header-search { display: none; }
  .rs-menu-toggle { display: flex; flex: 0 0 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; padding: 0; margin-left: auto; background: #fff; border: 1px solid transparent; cursor: pointer; }
  .rs-menu-toggle span { width: 23px; height: 2px; background: var(--rs-deep); border-radius: 2px; transition: transform .18s ease, opacity .18s ease; }
  .rs-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .rs-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .rs-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .rs-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 14px 20px 22px; background: #fff; box-shadow: 0 16px 28px #092b3020; border-top: 1px solid var(--rs-line); }
  .rs-nav.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .rs-nav a { min-height: 44px; display: flex; align-items: center; padding: 8px 4px; font-size: 16px; border-bottom: 1px solid var(--rs-line); }
  .rs-hero--home { padding-top: 32px; }
  .rs-hero--home h1 { max-width: 700px; font-size: clamp(43px, 6.5vw, 62px); }
  .rs-hero--home .rs-lede { max-width: 700px; margin: 18px 0 24px; font-size: 19px; }
  .rs-hero--home .rs-hero__media { height: 360px; margin-top: 0; }
  .rs-hero--home .rs-hero__search { margin-top: 22px; padding-bottom: 30px; }
  .rs-search { grid-template-columns: repeat(2, minmax(0, 1fr)); box-shadow: none; padding: 10px; }
  .rs-search .rs-field { min-height: 74px; padding: 9px 13px; }
  .rs-search .rs-field:first-child, .rs-search .rs-field:nth-child(4), .rs-search > .rs-button { grid-column: 1 / -1; }
  .rs-search .rs-field + .rs-field::before { display: none; }
  .rs-search .rs-field { border-bottom: 1px solid var(--rs-line); }
  .rs-search > .rs-button { min-height: 52px; margin: 10px 0 0; }
  .rs-search-note { text-align: center; }
  .rs-hero--home .rs-search-note { margin-inline: auto; }
  .rs-hero__secondary { display: flex; width: fit-content; margin: 4px auto 0; }
  .rs-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rs-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rs-grid--three > :last-child { grid-column: 1 / -1; }
  .rs-split { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .rs-container { width: min(100% - 32px, 1440px); }
  .rs-header-inner { min-height: 69px; }
  .rs-brand-mark { width: 34px; height: 34px; }
  .rs-brand-name { font-size: 29px; }
  .rs-hero--home { padding-top: 26px; }
  .rs-hero--home h1 { font-size: clamp(39px, 10.1vw, 53px); line-height: 1.02; }
  .rs-hero--home .rs-lede { margin: 17px 0 23px; font-size: 18px; line-height: 1.43; }
  .rs-hero--home .rs-hero__media { height: 255px; }
  .rs-hero--home .rs-hero__media img { object-position: 54% center; }
  .rs-hero--home .rs-hero__search { margin-top: 16px; }
  .rs-search { padding: 12px; border-radius: 12px; }
  .rs-search .rs-field { min-height: 86px; padding: 8px 9px; border-bottom: 0; }
  .rs-field label { font-size: 13px; }
  .rs-search input, .rs-search select { min-height: 42px; margin-top: 6px; padding: 8px 10px; border: 1px solid var(--rs-line); border-radius: 6px; font-size: 14px; }
  .rs-search input:focus, .rs-search select:focus { outline: 2px solid var(--rs-coral); outline-offset: 1px; }
  .rs-search > .rs-button { font-size: 17px; }
  .rs-search-note { font-size: 12px; }
  .rs-section { padding-top: 59px; padding-bottom: 59px; }
  .rs-section-heading { margin-bottom: 23px; padding-bottom: 17px; gap: 12px; }
  .rs-section-heading h2 { flex-basis: 100%; font-size: 39px; }
  .rs-section-heading p:not(.rs-eyebrow) { font-size: 15px; }
  .rs-grid--two, .rs-grid--three, .rs-grid--four { grid-template-columns: 1fr; gap: 30px; }
  .rs-grid--three > :last-child { grid-column: auto; }
  .rs-card--photo img { aspect-ratio: 2.4 / 1; }
  .rs-destination-card img { aspect-ratio: 1.55 / 1; }
  .rs-destination-card h2, .rs-destination-card h3 { font-size: 33px; }
  .rs-hero--editorial { padding: 48px 0 52px; }
  .rs-hero--editorial h1 { font-size: 42px; }
  .rs-hero--editorial .rs-lede { font-size: 18px; }
  .rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) { display: flex; flex-direction: column; }
  .rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) .rs-hero__media { min-height: 0; height: 230px; order: 2; }
  .rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) > .rs-container { order: 1; padding: 46px 16px 35px; width: min(100% - 32px, 1440px); margin-inline: auto; }
  .rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) h1 { font-size: 41px; }
  .rs-hero:not(.rs-hero--home):not(.rs-hero--editorial) .rs-lede { font-size: 17px; }
  .rs-note { padding: 23px 20px; }
  .rs-article { font-size: 16px; }
  .rs-article h2 { margin-top: 43px; font-size: 33px; }
  .rs-article h3 { font-size: 24px; }
  .rs-cta { align-items: start; flex-direction: column; }
  .rs-footer-main, .rs-footer-bottom { flex-direction: column; }
  .rs-footer-main { gap: 25px; padding-top: 43px; }
  .rs-footer-links { justify-content: start; }
}

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