@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");

:root{
  --fsh-header-bg:#F8FAFD;
  --fsh-search:#2F65A8;
  --fsh-accent:#6F8FC2;
  --fsh-book:#173B66;
  --fsh-gold:#86A6D2;
  --fsh-bg:#F6F8FB;
  --fsh-paper:#FFFFFF;
  --fsh-card:#EDF3FA;
  --fsh-ink:#20354F;
  --fsh-muted:#66758A;
  --fsh-line:#D6E1EE;
  --fsh-footer:#173B66;
  --fsh-footer-text:#F7FAFC;
  --fsh-body:"Alone Kaium","AloneKaium",Arial,sans-serif;
  --fsh-heading:"Marcellus",Georgia,serif;
  --fsh-ease:cubic-bezier(.22,1,.36,1);
}

body.fsh-drawer-open,body.fsh-reviews-open{overflow:hidden}

#fshGlobalHeaderRoot,#fshGlobalHeaderRoot *,
#fshGlobalFooterRoot,#fshGlobalFooterRoot *,
.fsh-reviews,.fsh-reviews *{
  box-sizing:border-box;
  box-shadow:none!important;
}

#fshGlobalHeaderRoot,#fshGlobalFooterRoot,.fsh-reviews{font-family:var(--fsh-body)}
#fshGlobalHeaderRoot a,#fshGlobalFooterRoot a,.fsh-reviews a{text-decoration:none;color:inherit}

/* HEADER */
#fshGlobalHeaderRoot{width:100%;margin:0;padding:0;position:relative;z-index:9990}
.fsh-header{width:100%;min-height:78px;background:var(--fsh-header-bg);border-bottom:1px solid rgba(23,59,102,.08)}
.fsh-header-inner{
  width:min(calc(100% - 48px),1320px);
  min-height:78px;
  margin:0 auto;
  display:grid;
  grid-template-columns:170px minmax(0,1fr) auto;
  align-items:center;
  gap:28px;
}

.fsh-brand{width:150px;display:flex;align-items:center}
.fsh-logo-image{display:block;width:100%;max-width:150px;height:58px;object-fit:contain;object-position:left center}

.fsh-desktop-menu{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(22px,2vw,36px);
}

.fsh-desktop-menu > a,
.fsh-desktop-menu > .fsh-desktop-menu-item > .fsh-desktop-link{
  min-height:78px;
  display:inline-flex;
  align-items:center;
  color:var(--fsh-muted);
  font-size:16px;
  font-weight:400;
  line-height:1;
  white-space:nowrap;
  transition:color .22s ease,transform .22s var(--fsh-ease);
}

.fsh-desktop-menu > a:not(.is-active):hover,
.fsh-desktop-menu > .fsh-desktop-menu-item > .fsh-desktop-link:not(.is-active):hover{
  color:var(--fsh-search)!important;
  transform:translateX(4px);
}

.fsh-desktop-menu .fsh-desktop-link.is-active,
.fsh-desktop-menu .fsh-desktop-link.is-active:hover{
  color:var(--fsh-book)!important;
}

.fsh-header-actions{display:flex;align-items:center;justify-content:flex-end;gap:12px}

.fsh-book-button,.fsh-drawer-book{
  min-height:48px;
  padding:0 22px;
  border:1px solid var(--fsh-book);
  border-radius:15px;
  background:var(--fsh-book);
  color:#fff!important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:500;
  transition:background .22s var(--fsh-ease),border-color .22s var(--fsh-ease),transform .22s var(--fsh-ease);
}

.fsh-book-button:hover,.fsh-drawer-book:hover{
  background:var(--fsh-search);
  border-color:var(--fsh-search);
  transform:translateX(4px);
}

.fsh-menu-trigger{
  width:48px;
  height:48px;
  margin:0;
  padding:0;
  border:0;
  border-radius:16px;
  background:transparent;
  color:var(--fsh-book);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
  transition:
    background .22s var(--fsh-ease),
    transform .22s var(--fsh-ease),
    color .22s var(--fsh-ease);
}

.fsh-menu-trigger:hover,
.fsh-menu-trigger:focus-visible{
  background:rgba(111,143,194,.14);
  color:var(--fsh-search);
  transform:translateX(3px);
  outline:none;
}

.fsh-menu-icon{
  width:30px;
  height:24px;
  display:block;
  overflow:visible;
}

.fsh-menu-line{
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transform-box:fill-box;
  transform-origin:center;
  transition:
    transform .22s var(--fsh-ease),
    stroke .22s ease;
}

.fsh-menu-trigger:hover .fsh-menu-line-top{
  transform:translateX(2px);
}

.fsh-menu-trigger:hover .fsh-menu-line-mid{
  transform:translateX(-2px);
}

.fsh-menu-trigger:hover .fsh-menu-line-bottom{
  transform:translateX(3px);
}

.fsh-menu-overlay{
  position:fixed;inset:0;z-index:9997;
  background:rgba(14,39,69,.5);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .26s ease,visibility .26s ease;
}

.fsh-menu-overlay.is-open{opacity:1;visibility:visible;pointer-events:auto}

.fsh-mobile-drawer{
  position:fixed;top:10px;right:10px;bottom:10px;z-index:9999;
  width:min(390px,calc(100% - 20px));
  padding:18px;
  border:1px solid var(--fsh-line);
  border-radius:24px;
  background:radial-gradient(circle at 100% 0%,rgba(111,143,194,.16),transparent 36%),var(--fsh-paper);
  color:var(--fsh-ink);
  display:flex;flex-direction:column;overflow:auto;
  visibility:hidden;
  transform:translateX(calc(100% + 30px));
  transition:visibility .3s ease,transform .3s var(--fsh-ease);
}

.fsh-mobile-drawer.is-open{visibility:visible;transform:translateX(0)}

.fsh-drawer-header{
  min-height:68px;padding-bottom:14px;border-bottom:1px solid var(--fsh-line);
  display:flex;align-items:center;justify-content:space-between;gap:18px;
}

.fsh-drawer-brand{width:160px;display:flex;align-items:center}
.fsh-drawer-logo-image{width:100%;max-width:160px;height:56px;object-fit:contain;object-position:left center}

.fsh-drawer-close{
  width:42px;height:42px;border:1px solid var(--fsh-line);border-radius:14px;
  background:var(--fsh-card);color:var(--fsh-book);position:relative;cursor:pointer;
}

.fsh-drawer-close span,.fsh-drawer-close span::before{
  content:"";position:absolute;top:50%;left:50%;
  width:16px;height:1.5px;background:currentColor;border-radius:99px;
}
.fsh-drawer-close span{transform:translate(-50%,-50%) rotate(45deg)}
.fsh-drawer-close span::before{transform:translate(-50%,-50%) rotate(90deg)}

.fsh-mobile-menu{display:grid;padding:14px 0}
.fsh-mobile-menu > a{
  min-height:54px;border-bottom:1px solid var(--fsh-line);
  color:var(--fsh-ink);display:flex;align-items:center;
  font-family:var(--fsh-heading);font-size:24px;
  transition:color .2s ease,padding-left .2s ease;
}
.fsh-mobile-menu > a:hover{color:var(--fsh-search);padding-left:5px}
.fsh-drawer-footer{margin-top:auto;padding-top:18px}
.fsh-drawer-footer p{margin:0 0 14px;color:var(--fsh-muted);font-size:14px}
.fsh-drawer-book{width:100%}

/* ROOMS DROPDOWN */
.fsh-desktop-menu-item{
  min-height:78px;
  position:relative;
  display:flex;
  align-items:center;
}

.fsh-rooms-top-link{
  gap:6px;
}

.fsh-rooms-top-link > svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .22s var(--fsh-ease);
}

.fsh-desktop-menu-item--rooms:hover .fsh-rooms-top-link > svg,
.fsh-desktop-menu-item--rooms:focus-within .fsh-rooms-top-link > svg{
  transform:rotate(180deg);
}

.fsh-rooms-dropdown{
  width:min(820px,calc(100vw - 48px));
  position:absolute;
  top:calc(100% - 1px);
  left:50%;
  z-index:9995;
  padding-top:10px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translate(-46%,10px);
  transition:opacity .22s ease,visibility .22s ease,transform .22s var(--fsh-ease);
}

.fsh-desktop-menu-item--rooms:hover .fsh-rooms-dropdown,
.fsh-desktop-menu-item--rooms:focus-within .fsh-rooms-dropdown{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-46%,0);
}

.fsh-rooms-dropdown__inner{
  padding:12px;
  border:1px solid var(--fsh-line);
  border-radius:22px;
  background:#FFFFFF;
}

.fsh-room-all-row{
  padding:0 4px 10px;
  margin-bottom:2px;
  border-bottom:1px solid var(--fsh-line);
}

.fsh-room-all-link{
  min-height:50px;
  padding:0 16px;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--fsh-book)!important;
  background:var(--fsh-bg);
  font-size:16px;
  font-weight:500;
  transition:background .2s ease,color .2s ease,transform .2s var(--fsh-ease);
}

.fsh-room-all-link:hover,
.fsh-room-all-link:focus-visible{
  background:var(--fsh-card);
  color:var(--fsh-search)!important;
  transform:translateX(3px);
}

.fsh-room-all-link svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.fsh-room-link svg,
.fsh-mobile-room-all svg,
.fsh-mobile-room-group a svg{
  width:15px;
  height:15px;
  flex:0 0 15px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  opacity:.55;
  transition:transform .2s var(--fsh-ease),opacity .2s ease;
}

.fsh-room-link:hover svg,
.fsh-room-link:focus-visible svg,
.fsh-mobile-room-all:hover svg,
.fsh-mobile-room-all:focus-visible svg,
.fsh-mobile-room-group a:hover svg,
.fsh-mobile-room-group a:focus-visible svg{
  opacity:1;
  transform:translateX(3px);
}

.fsh-room-groups{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  padding-top:8px;
}

.fsh-room-group{
  min-width:0;
  padding:15px 16px 13px;
  border-radius:15px;
  background:#FFFFFF;
}

.fsh-room-group + .fsh-room-group{
  border-left:1px solid var(--fsh-line);
  border-radius:0;
}

.fsh-room-group h3{
  margin:0 0 12px;
  color:var(--fsh-search);
  font-family:var(--fsh-body);
  font-size:11px;
  line-height:1;
  font-weight:500;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.fsh-room-group > div{
  display:grid;
  gap:5px;
}

.fsh-room-link{
  min-height:42px;
  padding:0 11px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:#F8FAFD;
  color:var(--fsh-muted)!important;
  font-size:16px;
  line-height:1;
  transition:background .2s ease,color .2s ease,transform .2s var(--fsh-ease);
}

.fsh-room-link:hover,
.fsh-room-link:focus-visible{
  background:var(--fsh-card);
  color:var(--fsh-book)!important;
  transform:translateX(3px);
}

/* MOBILE ROOMS ACCORDION */
.fsh-mobile-rooms{
  border-bottom:1px solid var(--fsh-line);
}

.fsh-mobile-rooms-toggle{
  width:100%;
  min-height:54px;
  margin:0!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  outline:0!important;
  box-shadow:none!important;
  appearance:none!important;
  -webkit-appearance:none!important;
  background:transparent!important;
  color:var(--fsh-ink)!important;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-family:var(--fsh-heading)!important;
  font-size:24px!important;
  line-height:1!important;
  font-weight:400!important;
  text-align:left;
  cursor:pointer;
}

.fsh-mobile-rooms-toggle:hover,
.fsh-mobile-rooms-toggle:focus-visible{
  background:transparent!important;
  color:var(--fsh-search)!important;
  outline:none!important;
}

.fsh-mobile-rooms-toggle svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:var(--fsh-search);
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .24s var(--fsh-ease);
}

.fsh-mobile-rooms.is-open .fsh-mobile-rooms-toggle svg{
  transform:rotate(180deg);
}

.fsh-mobile-rooms-panel{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .36s var(--fsh-ease),opacity .22s ease,padding .22s ease;
}

.fsh-mobile-rooms.is-open .fsh-mobile-rooms-panel{
  max-height:900px;
  padding:0 0 15px;
  opacity:1;
}

.fsh-mobile-room-all{
  min-height:46px!important;
  margin:4px 0 14px;
  padding:0 14px!important;
  border:0!important;
  border-radius:12px;
  background:var(--fsh-bg);
  color:var(--fsh-book)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px;
  font-family:var(--fsh-body)!important;
  font-size:17px!important;
  line-height:1!important;
  font-weight:500;
}

.fsh-mobile-room-all:hover,
.fsh-mobile-room-all:focus-visible{
  background:var(--fsh-card);
  color:var(--fsh-search)!important;
}

.fsh-mobile-room-group{
  padding:14px 0 5px;
  border-top:1px solid var(--fsh-line);
}

.fsh-mobile-room-group > span{
  display:block;
  margin-bottom:7px;
  color:var(--fsh-search);
  font-size:11px;
  line-height:1;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.fsh-mobile-room-group a{
  min-height:44px;
  margin:3px 0;
  padding:0 10px;
  border:0;
  border-radius:10px;
  background:#F8FAFD;
  color:var(--fsh-muted)!important;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-family:var(--fsh-body);
  font-size:17px;
  line-height:1;
}

.fsh-mobile-room-group a:hover,
.fsh-mobile-room-group a:focus-visible{
  background:var(--fsh-card);
  color:var(--fsh-book)!important;
}

/* FOOTER */
#fshGlobalFooterRoot{
  width:100%;

  margin:0;
  padding:0;
}


.fsh-footer{
  width:100%;

  margin:0;
  padding:52px 0 20px;

  border-top:1px solid rgba(111,143,194,.24);

  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(111,143,194,.13),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #214A7D 0%,
      #173B66 54%,
      #0E2745 100%
    );

  color:var(--fsh-footer-text);

  position:relative;

  overflow:hidden;
}


.fsh-footer::before{
  content:"";

  width:220px;
  height:1px;

  position:absolute;
  top:0;
  left:0;

  background:
    linear-gradient(
      90deg,
      var(--fsh-search),
      transparent
    );
}


.fsh-footer-shell{
  width:min(calc(100% - 44px),1280px);

  margin:0 auto;
}


/* CONTACT RAIL */

.fsh-footer-contact-rail{
  margin-bottom:58px;

  padding:4px;

  border:1px solid rgba(247,250,252,.14);
  border-radius:28px;

  background:
    rgba(255,255,255,.035);

  display:grid;

  grid-template-columns:
    minmax(300px,.78fr)
    minmax(0,1.22fr);

  gap:4px;

  overflow:hidden;
}


.fsh-footer-contact-copy{
  padding:30px 31px;

  display:flex;
  flex-direction:column;
  justify-content:center;
}


.fsh-footer-contact-kicker,
.fsh-footer-booking-kicker{
  display:block;

  color:var(--fsh-search);

  font-size:11px;
  line-height:1.2;
}


.fsh-footer-contact-copy h2{
  max-width:500px;

  margin:7px 0 0;

  color:var(--fsh-footer-text);

  font-family:var(--fsh-heading);

  font-size:32px;
  font-weight:400;

  line-height:1.08;
  letter-spacing:-.02em;
}


.fsh-footer-contact-copy p{
  max-width:540px;

  margin:12px 0 0;

  color:rgba(247,250,252,.62);

  font-size:15px;
  line-height:1.58;
}


.fsh-footer-contact-actions{
  min-width:0;

  padding:8px;

  border-radius:7px 24px 24px 7px;

  background:
    rgba(247,250,252,.035);

  display:grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap:8px;
}


.fsh-footer-contact-card{
  min-width:0;
  min-height:126px;

  padding:19px 18px;

  border:1px solid rgba(247,250,252,.13);
  border-radius:19px;

  background:
    rgba(255,255,255,.025);

  display:grid;

  grid-template-columns:
    48px
    minmax(0,1fr)
    20px;

  align-items:center;

  gap:13px;

  transition:
    border-color .20s ease,
    background .20s ease;
}


.fsh-footer-contact-card:hover,
.fsh-footer-contact-card:focus-visible{
  border-color:
    rgba(111,143,194,.52);

  background:
    rgba(111,143,194,.075);
}


.fsh-footer-contact-icon{
  width:46px;
  height:46px;

  border:1px solid rgba(111,143,194,.30);
  border-radius:14px;

  background:
    rgba(111,143,194,.08);

  display:grid;
  place-items:center;
}


.fsh-footer-contact-icon svg{
  width:27px;
  height:27px;

  fill:none;

  stroke:var(--fsh-search);
  stroke-width:1.55;

  stroke-linecap:round;
  stroke-linejoin:round;
}


.fsh-footer-contact-card-copy{
  min-width:0;
}


.fsh-footer-contact-card-copy small{
  display:block;

  color:rgba(247,250,252,.48);

  font-size:11px;
  line-height:1.25;
}


.fsh-footer-contact-card-copy strong{
  display:block;

  margin-top:6px;

  color:var(--fsh-footer-text);

  font-family:var(--fsh-heading);

  font-size:19px;
  font-weight:400;

  line-height:1.2;

  overflow-wrap:anywhere;
}


.fsh-footer-contact-arrow{
  width:19px;
  height:19px;

  fill:none;

  stroke:var(--fsh-search);
  stroke-width:1.8;

  stroke-linecap:round;
  stroke-linejoin:round;

  transition:
    transform .20s var(--fsh-ease);
}


.fsh-footer-contact-card:hover
.fsh-footer-contact-arrow,
.fsh-footer-contact-card:focus-visible
.fsh-footer-contact-arrow{
  transform:translateX(4px);
}


/* MAIN FOOTER */

.fsh-footer-main{
  padding-bottom:40px;

  display:grid;

  grid-template-columns:
    minmax(270px,.84fr)
    minmax(360px,1.08fr)
    minmax(280px,.78fr);

  gap:clamp(34px,4.2vw,62px);

  align-items:start;
}


.fsh-footer-logo{
  width:210px;

  margin:0 0 28px;
  padding:0;

  border:0;
  border-radius:0;

  background:transparent;

  display:inline-flex;
  align-items:center;
  justify-content:flex-start;

  overflow:visible;
}

.fsh-footer-logo img{
  width:100%;
  height:auto;
  max-height:none;

  display:block;

  object-fit:contain;
  object-position:left center;
}

.fsh-footer-logo.is-bundled-logo{
  width:210px;
  height:auto;
  min-height:0;
  padding:0;
  border:0;
  background:transparent;
}

.fsh-footer-logo.is-bundled-logo img{
  width:100%;
  height:auto;
  max-width:100%;
  flex:0 1 auto;
  margin:0;
  object-fit:contain;
  object-position:left center;
  filter:none;
}


.fsh-footer h2,
.fsh-footer h3{
  margin:0;

  font-family:var(--fsh-heading);
  font-weight:400;

  letter-spacing:-.02em;
}


.fsh-footer-brand h2{
  max-width:430px;

  color:var(--fsh-footer-text);

  font-size:34px;

  line-height:1.06;
}


.fsh-footer-brand>p{
  max-width:430px;

  margin:16px 0 0;

  color:rgba(247,250,252,.62);

  font-size:15px;
  line-height:1.65;
}

.fsh-footer-location{
  width:fit-content;
  margin-top:19px;
  color:rgba(247,250,252,.70)!important;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  line-height:1.4;
  transition:color .20s ease;
}

.fsh-footer-location svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:var(--fsh-search);
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.fsh-footer-location:hover,
.fsh-footer-location:focus-visible{
  color:var(--fsh-footer-text)!important;
}


.fsh-footer-inline-email{
  width:fit-content;

  margin-top:24px;
  padding-top:15px;

  border-top:1px solid rgba(247,250,252,.13);

  display:grid;

  gap:4px;
}


.fsh-footer-inline-email span{
  color:rgba(247,250,252,.42);

  font-size:11px;
}


.fsh-footer-inline-email strong{
  color:var(--fsh-footer-text);

  font-size:14px;
  font-weight:400;

  transition:color .20s ease;
}


.fsh-footer-inline-email:hover strong{
  color:var(--fsh-search);
}


/* NAVIGATION */

.fsh-footer-navigation{
  display:grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap:40px;
}


.fsh-footer-column h3{
  margin-bottom:19px;

  color:var(--fsh-footer-text);

  font-size:24px;
}


.fsh-footer-column nav{
  border-top:
    1px solid
    rgba(247,250,252,.13);

  display:grid;
}


.fsh-footer-column nav a{
  min-height:53px;

  border-bottom:
    1px solid
    rgba(247,250,252,.13);

  color:
    rgba(247,250,252,.64);

  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:12px;

  font-size:14px;

  transition:
    color .20s ease;
}


.fsh-footer-column nav a svg{
  width:15px;
  height:15px;

  flex:0 0 auto;

  fill:none;

  stroke:var(--fsh-search);
  stroke-width:1.7;

  stroke-linecap:round;
  stroke-linejoin:round;

  opacity:0;

  transform:
    translateX(-3px);

  transition:
    opacity .20s ease,
    transform .20s var(--fsh-ease);
}


.fsh-footer-column nav a:hover,
.fsh-footer-column nav a:focus-visible{
  color:var(--fsh-footer-text)!important;
}


.fsh-footer-column nav a:hover svg,
.fsh-footer-column nav a:focus-visible svg{
  opacity:1;

  transform:translateX(0);
}


/* BOOKING CARD */

.fsh-footer-booking{
  padding:24px;

  border:
    1px solid
    rgba(247,250,252,.17);

  border-radius:25px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.025)
    );
}


.fsh-footer-booking h3{
  margin-top:7px;

  color:var(--fsh-footer-text);

  font-size:28px;

  line-height:1.08;
}


.fsh-footer-booking>p{
  margin:14px 0 23px;

  color:rgba(247,250,252,.62);

  font-size:15px;
  line-height:1.58;
}


.fsh-footer-book-button{
  width:100%;
  min-height:54px;

  padding:0 19px;

  border:
    1px solid
    var(--fsh-search);

  border-radius:15px;

  background:
    var(--fsh-search);

  color:#FFFFFF!important;

  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:16px;

  font-size:15px;
  font-weight:500;

  transition:
    background .20s ease,
    border-color .20s ease,
    color .20s ease;
}


.fsh-footer-book-button span{
  color:#FFFFFF!important;
}


.fsh-footer-book-button svg{
  width:18px;
  height:18px;

  fill:none;

  stroke:#FFFFFF;
  stroke-width:1.8;

  stroke-linecap:round;
  stroke-linejoin:round;

  transition:
    transform .20s var(--fsh-ease);
}


.fsh-footer-book-button:hover,
.fsh-footer-book-button:focus-visible{
  background:
    var(--fsh-book);

  border-color:
    var(--fsh-book);

  color:#FFFFFF!important;
}


.fsh-footer-book-button:hover svg,
.fsh-footer-book-button:focus-visible svg{
  transform:translateX(4px);
}


.fsh-footer-booking-contact{
  width:fit-content;

  margin-top:15px;

  color:
    rgba(247,250,252,.62)!important;

  display:inline-flex;

  font-size:13px;

  transition:color .20s ease;
}


.fsh-footer-booking-contact:hover,
.fsh-footer-booking-contact:focus-visible{
  color:var(--fsh-search)!important;
}


/* BOTTOM */

.fsh-footer-bottom{
  min-height:64px;

  padding-top:19px;

  border-top:
    1px solid
    rgba(247,250,252,.13);

  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:28px;
}


.fsh-footer-bottom>p{
  margin:0;

  color:
    rgba(247,250,252,.44);

  font-size:13px;
}


.fsh-footer-bottom-actions{
  display:flex;

  align-items:center;
  justify-content:flex-end;

  gap:20px;
}


.fsh-footer-bottom-links{
  display:flex;

  align-items:center;

  gap:22px;
}


.fsh-footer-bottom-links a{
  color:
    rgba(247,250,252,.58);

  font-size:13px;

  transition:color .20s ease;
}


.fsh-footer-bottom-links a:hover,
.fsh-footer-bottom-links a:focus-visible{
  color:var(--fsh-search)!important;
}


/* PREMIUM FLOATING BACK TO TOP */

#fshGlobalFooterRoot
.fsh-footer-top-button{
  width:52px!important;
  height:52px!important;

  min-width:52px!important;
  min-height:52px!important;

  margin:0!important;
  padding:0!important;

  border:
    1px solid
    rgba(111,143,194,.52)!important;

  border-radius:16px!important;

  background:
    rgba(14,39,69,.92)!important;

  color:#FFFFFF!important;

  display:grid!important;
  place-items:center!important;

  position:fixed!important;

  right:24px!important;
  bottom:24px!important;
  left:auto!important;
  top:auto!important;

  z-index:9998!important;

  opacity:0!important;
  visibility:hidden!important;

  transform:
    translate3d(0,12px,0)
    scale(.96)!important;

  appearance:none!important;
  -webkit-appearance:none!important;

  cursor:pointer!important;

  pointer-events:none!important;

  box-shadow:none!important;

  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);

  transition:
    opacity .24s ease,
    visibility .24s ease,
    transform .24s var(--fsh-ease),
    border-color .20s ease,
    background .20s ease!important;
}


#fshGlobalFooterRoot
.fsh-footer-top-button.is-visible{
  opacity:1!important;
  visibility:visible!important;

  transform:
    translate3d(0,0,0)
    scale(1)!important;

  pointer-events:auto!important;
}


#fshGlobalFooterRoot
.fsh-footer-top-button::before{
  content:"";

  width:17px;
  height:2px;

  border-radius:2px;

  background:#FFFFFF;

  position:absolute;

  top:10px;
  left:50%;

  transform:translateX(-50%);

  opacity:.78;
}


#fshGlobalFooterRoot
.fsh-footer-top-button svg{
  width:20px!important;
  height:20px!important;

  margin-top:3px!important;

  fill:none!important;

  stroke:#FFFFFF!important;
  stroke-width:1.8!important;

  stroke-linecap:round!important;
  stroke-linejoin:round!important;

  transition:
    transform .20s var(--fsh-ease),
    stroke .20s ease!important;
}


#fshGlobalFooterRoot
.fsh-footer-top-button:hover,
#fshGlobalFooterRoot
.fsh-footer-top-button:focus-visible{
  border-color:
    rgba(255,255,255,.62)!important;

  background:
    rgba(14,39,69,.92)!important;

  transform:
    translate3d(0,-3px,0)
    scale(1)!important;

  outline:none!important;
}


#fshGlobalFooterRoot
.fsh-footer-top-button:hover::before,
#fshGlobalFooterRoot
.fsh-footer-top-button:focus-visible::before{
  background:#FFFFFF;
}


#fshGlobalFooterRoot
.fsh-footer-top-button:hover svg,
#fshGlobalFooterRoot
.fsh-footer-top-button:focus-visible svg{
  stroke:#FFFFFF!important;

  transform:translateY(-3px)!important;
}


#fshGlobalFooterRoot
.fsh-footer-top-button:focus-visible{
  outline:
    2px solid
    rgba(111,143,194,.58)!important;

  outline-offset:4px!important;
}


/* TABLET */

@media(max-width:900px){

  .fsh-footer{
    padding-top:42px;
  }


  .fsh-footer-contact-rail{
    grid-template-columns:1fr;

    margin-bottom:48px;
  }


  .fsh-footer-contact-actions{
    border-radius:7px 7px 24px 24px;
  }


  .fsh-footer-main{
    grid-template-columns:1fr 1fr;

    gap:42px;
  }


  .fsh-footer-booking{
    grid-column:1 / -1;
  }

}


/* MOBILE */

@media(max-width:767px){

  .fsh-footer{
    padding:
      36px
      0
      18px;
  }


  .fsh-footer-shell{
    width:
      calc(100% - 28px);
  }


  .fsh-footer-contact-rail{
    margin-bottom:42px;

    border-radius:22px;
  }


  .fsh-footer-contact-copy{
    padding:
      25px
      19px;
  }


  .fsh-footer-contact-copy h2{
    font-size:29px;
  }


  .fsh-footer-contact-copy p{
    font-size:18px;
  }


  .fsh-footer-contact-actions{
    padding:7px;

    grid-template-columns:1fr;

    border-radius:
      7px
      7px
      18px
      18px;
  }


  .fsh-footer-contact-card{
    min-height:96px;

    padding:16px;

    border-radius:16px;

    grid-template-columns:
      44px
      minmax(0,1fr)
      18px;

    gap:11px;
  }


  .fsh-footer-contact-icon{
    width:42px;
    height:42px;

    border-radius:13px;
  }


  .fsh-footer-contact-icon svg{
    width:25px;
    height:25px;
  }


  .fsh-footer-contact-card-copy strong{
    font-size:18px;
  }


  .fsh-footer-main,
  .fsh-footer-navigation{
    grid-template-columns:1fr;
  }


  .fsh-footer-main{
    padding-bottom:34px;

    gap:34px;
  }


  .fsh-footer-logo{
    width:190px;

    margin:0 auto 22px;
    padding:0;

    border:0;
    border-radius:0;

    background:transparent;

    justify-content:center;
  }


  .fsh-footer-logo img{
    width:100%;
    height:auto;
    max-height:none;

    object-position:center;
  }


  .fsh-footer-logo.is-bundled-logo{
    width:190px;
    height:auto;
    min-height:0;
    padding:0;
  }


  .fsh-footer-logo.is-bundled-logo img{
    width:100%;
    height:auto;
    max-width:100%;
    flex:0 1 auto;
    margin:0;
    object-position:center;
  }


  .fsh-footer-brand h2{
    font-size:31px;
  }


  .fsh-footer-brand>p{
    font-size:16px;
  }


  .fsh-footer-inline-email strong{
    font-size:18px;
  }


  .fsh-footer-navigation{
    gap:31px;
  }


  .fsh-footer-column nav a{
    min-height:54px;

    font-size:16px;
  }


  .fsh-footer-column nav a svg{
    opacity:.76;

    transform:none;
  }


  .fsh-footer-booking{
    padding:22px 19px;

    border-radius:21px;
  }


  .fsh-footer-booking h3{
    font-size:29px;
  }


  .fsh-footer-booking>p{
    font-size:16px;
  }


  .fsh-footer-book-button{
    font-size:17px;
  }


  .fsh-footer-booking-contact{
    font-size:16px;
  }


  .fsh-footer-bottom{
    align-items:flex-start;

    flex-direction:column;

    gap:15px;
  }


  .fsh-footer-bottom>p{
    font-size:14px;
  }


  .fsh-footer-bottom-links{
    width:100%;

    justify-content:flex-start;

    flex-wrap:wrap;

    gap:16px 20px;
  }


  .fsh-footer-bottom-links a{
    font-size:16px;
  }


  #fshGlobalFooterRoot
  .fsh-footer-top-button{
    width:48px!important;
    height:48px!important;

    min-width:48px!important;
    min-height:48px!important;

    right:14px!important;
    bottom:14px!important;

    border-radius:15px!important;
  }

}


/* REDUCED MOTION */

@media(prefers-reduced-motion:reduce){

  .fsh-footer-contact-arrow,
  .fsh-footer-column nav a svg,
  .fsh-footer-book-button svg,
  #fshGlobalFooterRoot .fsh-footer-top-button,
  #fshGlobalFooterRoot .fsh-footer-top-button svg{
    transition:none!important;
  }


  #fshGlobalFooterRoot
  .fsh-footer-top-button,
  #fshGlobalFooterRoot
  .fsh-footer-top-button:hover,
  #fshGlobalFooterRoot
  .fsh-footer-top-button:focus-visible{
    transform:none!important;
  }

}


/* REVIEWS */
.fsh-reviews{margin:0;padding:96px 0;background:var(--fsh-bg);color:var(--fsh-ink)}
.fsh-reviews-shell{width:min(calc(100% - 44px),1280px);margin:0 auto}
.fsh-reviews-head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:30px;align-items:end;margin-bottom:34px}
.fsh-reviews-head h2,.fsh-reviews-dialog h2,.fsh-review-card h3,.fsh-review-modal-card h3{
  margin:0;color:var(--fsh-ink);font-family:var(--fsh-heading);font-weight:400;
}
.fsh-reviews-head h2{font-size:clamp(34px,4vw,52px);line-height:1.08}
.fsh-reviews-head p{max-width:680px;margin:14px 0 0;color:var(--fsh-muted);font-size:17px;line-height:1.6}
.fsh-reviews-open{
  min-height:48px;padding:0 20px;border:1px solid var(--fsh-search);border-radius:15px;
  background:var(--fsh-search);color:#fff;font-family:var(--fsh-body);font-size:15px;cursor:pointer;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.fsh-reviews-open:hover{background:var(--fsh-book);border-color:var(--fsh-book);transform:translateX(4px)}
.fsh-reviews-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.fsh-review-card,.fsh-review-modal-card{padding:26px;border:1px solid var(--fsh-line);border-radius:22px;background:var(--fsh-paper)}
.fsh-review-top{display:flex;align-items:center;gap:12px}
.fsh-review-avatar{width:42px;height:42px;border-radius:50%;background:var(--fsh-search);color:var(--fsh-ink);display:grid;place-items:center;font-weight:600}
.fsh-review-top h3{font-size:22px;line-height:1.08}
.fsh-review-top p{margin:4px 0 0;color:var(--fsh-muted);font-size:13px}
.fsh-review-stars{margin-top:18px;color:var(--fsh-gold);letter-spacing:.06em;font-size:15px}
.fsh-review-text{margin:12px 0 0;color:var(--fsh-muted);font-size:16px;line-height:1.62}

.fsh-reviews-modal{position:fixed;inset:0;z-index:2147482600;display:none;padding:22px}
.fsh-reviews-modal.is-open{display:grid;place-items:center}
.fsh-reviews-backdrop{position:absolute;inset:0;border:0;background:rgba(14,39,69,.76);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);cursor:pointer}
.fsh-reviews-dialog{width:min(760px,calc(100vw - 32px));max-height:86vh;padding:24px;border:1px solid var(--fsh-line);border-radius:28px;background:var(--fsh-paper);position:relative;z-index:2;overflow:auto}
.fsh-reviews-dialog-head{display:flex;justify-content:space-between;align-items:flex-start;gap:18px;padding-bottom:20px;border-bottom:1px solid var(--fsh-line)}
.fsh-reviews-dialog-head h2{font-size:34px}
.fsh-reviews-dialog-head p{margin:7px 0 0;color:var(--fsh-muted);font-size:14px}
.fsh-reviews-close{width:42px;height:42px;border:1px solid var(--fsh-line);border-radius:14px;background:var(--fsh-card);position:relative;cursor:pointer;flex:0 0 auto}
.fsh-reviews-close span,.fsh-reviews-close span::before{content:"";position:absolute;left:50%;top:50%;width:16px;height:1.5px;background:var(--fsh-ink);border-radius:99px}
.fsh-reviews-close span{transform:translate(-50%,-50%) rotate(45deg)}
.fsh-reviews-close span::before{transform:translate(-50%,-50%) rotate(90deg)}
.fsh-reviews-modal-list{display:grid;gap:12px;margin-top:18px}

/* Hide the theme regions only when the matching plugin region is enabled. */
body.fsh-global-header-active .elementor-location-header,
body.fsh-global-header-active header#masthead,
body.fsh-global-header-active .site-header:not(.fsh-header){display:none!important}

body.fsh-global-footer-active .elementor-location-footer,
body.fsh-global-footer-active footer#colophon,
body.fsh-global-footer-active .site-footer:not(.fsh-footer){display:none!important}


@media(max-width:1120px) and (min-width:901px){
  .fsh-header-inner{
    width:calc(100% - 28px);
    grid-template-columns:140px minmax(0,1fr) auto;
    gap:18px;
  }

  .fsh-brand{width:132px}
  .fsh-logo-image{max-width:132px;height:50px}

  .fsh-desktop-menu{
    gap:clamp(14px,1.45vw,22px);
  }

  .fsh-desktop-menu > a,
  .fsh-desktop-menu > .fsh-desktop-menu-item > .fsh-desktop-link{
    font-size:14px;
  }

  .fsh-book-button{
    min-height:44px;
    padding:0 17px;
    font-size:14px;
  }
}

@media(max-width:900px){
  .fsh-header-inner{
    width:100%;
    padding:0 16px;
    grid-template-columns:minmax(0,1fr) auto;
  }
  .fsh-desktop-menu,.fsh-book-button{display:none}
  .fsh-menu-trigger{display:flex!important}
}

@media(min-width:901px){
  .fsh-menu-trigger{display:none!important}
}

@media(max-width:767px){
  .fsh-header,.fsh-header-inner{min-height:66px}
  .fsh-header-inner{padding:0 12px}
  .fsh-brand{width:140px}
  .fsh-logo-image{max-width:140px;height:48px}
  .fsh-menu-trigger{width:42px;height:42px;display:flex!important}
  .fsh-reviews{padding:64px 0}
  .fsh-reviews-open{width:100%}
  .fsh-reviews-dialog{padding:18px;border-radius:22px}
}

#fshGlobalHeaderRoot .fsh-menu-trigger{
  border:0!important;
  box-shadow:none!important;
  background:transparent!important;
}
#fshGlobalHeaderRoot .fsh-menu-trigger:hover,
#fshGlobalHeaderRoot .fsh-menu-trigger:focus-visible{
  background:rgba(111,143,194,.14)!important;
}

@media(max-width:767px){
  .fsh-reviews-shell{
    width:calc(100% - 28px);
  }
}

/* Elementor-editable global slots: v1.4.0 */
#fshGlobalTopBarRoot,
#fshGlobalSpecialsRoot {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

#fshGlobalTopBarRoot {
  z-index: 10020;
}

#fshGlobalSpecialsRoot {
  z-index: 10000;
}

#fshGlobalTopBarRoot > .elementor,
#fshGlobalSpecialsRoot > .elementor {
  width: 100%;
}
