/* === Student House — main stylesheet === */

:root {
  --sh-blue: #2f6bff;
  --sh-blue-dark: #1f4fd1;
  --sh-ink: #0f1b2d;
  --sh-bg: #fcfbf8;
  --sh-white: #ffffff;
  --sh-shadow: 0 4px 16px rgba(15, 27, 45, 0.08);
  --sh-shadow-lg: 0 10px 32px rgba(15, 27, 45, 0.14);
  --sh-radius: 999px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--sh-ink);
  background: var(--sh-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* max-width: 100v; */
}
img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
a {
  color: inherit;
  text-decoration: none;
}

.sh-container {
  width: 100%;
  margin: 0 auto;
  padding-inline: 20px;
}
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.sh-btn,
.wpforms-submit-container button[type='submit'].wpforms-submit {
  background: var(--sh-blue) !important;
  color: var(--sh-white) !important ;
  border: none;
  border-radius: var(--sh-radius);
  padding: 24px 22px;
  font: inherit;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
  width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: 'Montserrat', sans-serif !important;
}
.sh-btn:hover {
  background-color: #5792fa !important;
}
.sh-btn--white,
.sh-footer .wpforms-submit-container button[type='submit'].wpforms-submit {
  background: #fff !important;
  color: var(--sh-blue) !important;
  border: 1px solid var(--sh-white);
  padding-block: 10px;
  font-size: 15px;
}
.wpforms-container.wpforms-container-full.wpforms-render-modern {
  margin: 0;
}
.sh-btn--white:hover,
.wpforms-submit-container button[type='submit'].wpforms-submit:hover {
  background-color: var(--sh-blue) !important;
  color: var(--sh-white) !important;
}
.wpforms-submit-container button[type='submit'].wpforms-submit:hover {
  padding: 14px 22px;
  font-size: 15px;
}

/* === HEADER === */
.sh-header {
  z-index: 100;
  position: relative;
}
.sh-header__bar {
  background: var(--sh-blue);
  color: var(--sh-white);
}
.sh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 16px;
}
.sh-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sh-white);
}
.sh-logo__text strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 800;
}
.sh-logo__text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.9;
  margin-top: 2px;
}
.sh-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.sh-header__left {
  display: flex;
  align-items: center;
  gap: 61px;
}
.sh-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--sh-white);
}
.sh-icon svg {
  height: 46px;
  width: 36px;
}
.sh-header .sh-icon:hover {
  filter: invert(33%) sepia(96%) saturate(2975%) hue-rotate(216deg)
    brightness(101%) contrast(102%);
}
.sh-footer .sh-icon:hover {
  filter: invert(67%) sepia(45%) saturate(5603%) hue-rotate(200deg)
    brightness(101%) contrast(101%);
}

/* Lang pill */
.sh-lang {
  position: relative;
}
.sh-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--sh-white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--sh-radius);
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}
.sh-lang__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--sh-white);
  color: var(--sh-ink);
  list-style: none;
  margin: 0;
  padding: 6px;
  border-radius: var(--sh-radius-sm);
  box-shadow: var(--sh-shadow-lg);
  min-width: 100px;
  display: none;
}
.sh-lang.is-open .sh-lang__menu {
  display: block;
}
.sh-lang__menu a {
  display: block;
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--sh-ink);
}
.sh-lang__menu a:hover {
  background: rgba(47, 107, 255, 0.08);
  color: var(--sh-blue);
  opacity: 1;
}

/* === LOCATIONS DROPDOWN BAR === */
.sh-locations-bar {
  background: var(--sh-white);
  /* border-bottom: 1px solid rgba(6, 26, 37, 0.3); */
  padding: 14px 0;
}
.sh-dropdown {
  position: relative;
  max-width: 420px;
}
.sh-dropdown__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 5px;
  padding: 14px 24px 14px 21px;
  background: var(--sh-white);
  color: var(--sh-ink);
  border: 1px solid rgba(6, 26, 37, 0.3);
  border-radius: 50px;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  box-shadow: var(--sh-shadow);
}
.sh-dropdown__btn .arrow {
  width: 19px;
  height: 11px;
}
.sh-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--sh-white);
  color: var(--sh-ink);
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: var(--sh-radius-sm);
  box-shadow: var(--sh-shadow-lg);
  display: none;
  z-index: 20;
}
.sh-dropdown.is-open .sh-dropdown__menu {
  display: block;
}
.sh-dropdown.is-open .sh-dropdown__btn img {
  transform: rotate(180deg);
}
.sh-dropdown__menu li {
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
}
.sh-dropdown__menu li:hover,
.sh-dropdown__menu li.is-active {
  color: var(--sh-blue);
  background: rgba(47, 107, 255, 0.06);
}

.sh-main {
  background-color: #fff;
  z-index: 10;
  position: relative;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
/* === HERO === */
.sh-hero {
  padding: 24px 0 80px;
  position: relative;

  overflow: hidden;
}

.sh-hero__title {
  font-size: clamp(35px, 6vw, 80px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 24px;
  color: var(--sh-ink);
  position: absolute;
  z-index: 1;
  bottom: 15px;
  left: 18px;
  max-width: 81vw;
  font-weight: 500;
  margin: 0;
}
.sh-hero__stage {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.sh-hero__illustration {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1586px;
}

/* Pins */
.sh-pin {
  position: absolute;
  transform: translate(-50%, -100%);
}
.sh-pin__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sh-white);
  border: none;
  border-radius: var(--sh-radius);
  padding: 8px 16px 8px 8px;
  box-shadow: var(--sh-shadow);
  cursor: pointer;
  font: inherit;
  color: var(--sh-ink);
  white-space: nowrap;
  border: 1px solid rgba(6, 26, 37, 0.3);
}
.sh-pin.is-open .sh-pin__badge {
  border-bottom: none;
  border-radius: 25px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.sh-pin__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sh-blue);
  color: var(--sh-white);
}
.sh-pin__label {
  font-size: 14px;
  font-weight: 500;
}

.sh-pin__popover {
  display: none;
  position: absolute;
  top: 84%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sh-white);
  border-radius: var(--sh-radius-sm);
  padding: 16px 18px;
  width: 100%;
  z-index: 10;
  color: var(--sh-ink);
  border: 1px solid rgba(6, 26, 37, 0.3);
  z-index: 1;
}
.sh-pin.is-open .sh-pin__popover {
  border-top: none;
  border-radius: 25px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.sh-pin__popover ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
}
.sh-pin__popover li {
  margin-bottom: 4px;
}
.sh-pin__link {
  display: inline-block;
  margin-top: 8px;
  color: var(--sh-blue);
  font-weight: 600;
}
.sh-pin.is-open .sh-pin__popover {
  display: block;
}
@media (hover: hover) {
  .sh-pin:hover .sh-pin__popover {
    display: block;
  }
  .sh-pin:hover .sh-pin__badge {
    border-bottom: none;
    border-radius: 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .sh-pin:hover .sh-pin__popover {
    border-top: none;
    border-radius: 0;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}

/* === FOOTER === */
.sh-footer {
  background: var(--sh-blue);
  color: var(--sh-white);
  padding: 84px 0 32px;
  margin-top: -20px;
  overflow: hidden;
  z-index: 5;
  position: relative;
}
.sh-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: start;
}
.sh-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sh-logo--footer .sh-logo__text strong {
  font-size: 18px;
}
.sh-logo--footer .sh-logo__text small {
  font-size: 11px;
}
.sh-footer__social {
  display: flex;
  gap: 8px;
}
.sh-footer__social .sh-icon {
  filter: brightness(0) invert(1);
}
.sh-footer__copy {
  font-size: 13px;
  opacity: 0.9;
}

.sh-footer__title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

/* Partners grid */
.sh-partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.sh-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 5px;
  background: #fff;
  color: var(--sh-white);
  border-radius: var(--sh-radius);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: background 0.15s ease;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.sh-partner:first-child {
  padding: 15px;
}

/* Contacts */
.sh-footer__contact-row {
  gap: 72px;
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.6px;
  display: flex;
}
.sh-footer__contact-row a {
  color: var(--sh-white);
}

/* Form */
.sh-form,
.wpforms-form .wpforms-field-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sh-honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
}
.sh-form__field input,
.sh-form__field textarea,
.sh-form-container .wpforms-form .wpforms-field-container input,
.sh-form-container .wpforms-form .wpforms-field-container textarea {
  width: 100%;
  min-width: 100%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid var(--sh-white);
  color: var(--sh-white);
  border-radius: var(--sh-radius);
  padding: 21px 22px;
  font: inherit;
  outline: none;
  transition: background 0.15s ease;
}
.sh-form__field textarea,
.sh-form-container .wpforms-form .wpforms-field-container textarea {
  border-radius: 22px;
  min-height: 96px;
  max-height: 96px;
  resize: vertical;
}
.sh-form__field input::placeholder,
.sh-form__field textarea::placeholder,
.sh-form-container .wpforms-form .wpforms-field-container input::placeholder,
.sh-form-container
  .wpforms-form
  .wpforms-field-container
  textarea::placeholder {
  color: rgba(255, 255, 255, 0.85);
}
.sh-form__field input:focus,
.sh-form__field textarea:focus,
.sh-form-container .wpforms-form .wpforms-field-container input:focus,
.sh-form-container .wpforms-form .wpforms-field-container textarea:focus {
  background: rgba(255, 255, 255, 0.28);
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.sh-form__submit--inline {
  display: inline-block;
  padding: 12px 28px;
}
.sh-form__msg {
  font-size: 14px;
  margin: 0;
}
.sh-form__msg--ok,
.sh-form-container
  div.wpforms-container-full
  .wpforms-confirmation-container-full,
.sh-form-container div.wpforms-container-full * {
  background: var(--sh-blue);
  color: #d6f5e2;
  border: none;
}
.sh-form-container .wpforms-confirmation-container-full span {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
.sh-form__msg--err,
.sh-form-container div.wpforms-container-full .wpforms-form label.wpforms-error,
.sh-form-container div.wpforms-container-full .wpforms-form em.wpforms-error {
  color: #ffd6d6;
  margin-top: 5px;
}
.sh-form-container .wpforms-container .wpforms-field {
  padding: 0;
}
.sh-form-container .wpforms-container .wpforms-confirmation-container-full * {
  height: 0;
  margin: 0;
}

/* === Generic pages === */
.sh-page,
.sh-single__inner {
  padding-block: 48px;
}
.sh-page__title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 24px;
}
.sh-post {
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 27, 45, 0.06);
}
.sh-post h2 {
  margin: 0 0 8px;
}
.sh-post__meta {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 16px;
}
.sh-404 {
  text-align: center;
  padding: 96px 0;
}

/* === Property page === */
.sh-prop-hero {
  padding: 32px 0 16px;
  background: #fff;
  overflow: hidden;
  max-height: calc(100vh - 100px);
}
.sh-prop-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.82fr;
  align-items: center;
}
.sh-prop-hero__left,
.sh-prop-hero__right {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sh-prop-hero__left {
  justify-content: flex-end;
}
.sh-prop-hero__right {
  justify-content: space-between;
  gap: 20px;
}
.sh-map-image {
  position: absolute;
  width: 140%;
  top: -18%;
  left: -2%;
}
.sh-prop-hero__city {
  font-size: 18px;
  color: var(--sh-ink);
  opacity: 0.7;
  margin-bottom: 8px;
}
.sh-prop-hero__title {
  font-size: clamp(30px, 4vw, 60px);
  line-height: 1.05;
  font-weight: 500;
  color: var(--sh-ink);
  margin: 0 0 24px;
}
.sh-prop-pills {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: fit-content;
}
.sh-prop-pills li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #b4babe;
  border-radius: 999px;
  padding: 5px 25px 5px 15px;
  font-size: 18px;
  color: var(--sh-ink);
  box-shadow: 0 4px 14px rgba(15, 27, 45, 0.06);
  width: 100%;
  max-width: 100%;
}
.sh-prop-pills__icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 999px;
  background: var(--sh-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-prop-hero__desc {
  font-size: 18px;
  color: var(--sh-ink);
  opacity: 0.8;
  margin: 0 6% 3% 30%;
  font-weight: 500;
  max-width: 360px;
  line-height: 1.25;
}
.sh-prop-hero__cta {
  width: 100%;
  max-width: 490px;
}
.sh-prop-hero__art {
  position: relative;
}
.sh-prop-hero__art img {
  width: 132%;
  height: auto;
  display: block;
  margin: 11% 0 -41% -13%;
}
.sh-prop-hero__since {
  position: absolute;
  top: 69%;
  left: -1%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 999px;
  padding: 23px 34px;
  font-size: 18px;
  font-weight: 500;
  color: var(--sh-ink);
  z-index: 2;
  border: 1px solid #b4babe;
}

.sh-prop-amenities {
  background: var(--sh-blue);
  padding: 76px 0 93px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.sh-prop-amenities__row {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.sh-prop-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: #fff;
  min-width: 193px;
}
.sh-prop-amenity__icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sh-prop-amenity__icon svg {
  width: 100%;
  height: 100%;
}
.sh-prop-amenity__label {
  font-size: 20px;
  text-transform: uppercase;
}

.sh-prop-cards-band {
  background: var(--sh-blue);
  margin-top: -5px;
  padding: 5px 0 60px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  z-index: 1;
  position: relative;
}
.sh-prop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 48px;
}
.sh-prop-card {
  background: rgba(90, 147, 246, 1);
  border-radius: 40px;
  padding: 35px 33px 28px;
  color: #fff;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 102px;
  border: 1px solid #fff;
}
.sh-prop-card__icon {
  width: 55px;
  height: 55px;
}
.sh-prop-card__icon img {
  width: auto;
  max-width: 65px;
}
.sh-prop-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}
.sh-prop-cards__cta {
  display: block;
  max-width: 100%;
  text-align: center;
}

.sh-prop-rooms {
  margin-top: -45px;
  padding: 77px 0 15px;
  background: #e5eefe;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.sh-prop-tabs {
  display: flex;
  gap: 0;
  background: transparent;
}
.sh-prop-tab {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 18px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-ink);
  cursor: pointer;
  border-radius: 18px 18px 0 0;
  transition: all 0.2s;
}
.sh-prop-tab.is-active {
  /* background: var(--sh-blue); */
  color: #fff;
  opacity: 1;
}
.sh-prop-room {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 13px 0;
  border-radius: 0 0 18px 18px;
  align-items: center;
}
.sh-prop-room.is-active {
  display: grid;
}
.sh-prop-room__media img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  display: block;
  max-height: 469px;
  overflow: hidden;
  object-fit: cover;
}
.sh-prop-room__body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sh-prop-room__body-top {
  padding-left: 22px;
}
.sh-prop-room__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0em;
  margin: 34px 0 20px;
  color: var(--sh-ink);
}
.sh-prop-room__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 5px;
}
.sh-prop-room__features li {
  background: #fff;
  border: 1px solid #b4babe;
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 15px;
  color: var(--sh-ink);
  background-color: #e5eefe;
  display: flex;
  gap: 8px;
  align-items: center;
}
.sh-prop-room__features li img {
  height: 21px;
  width: auto;
  max-width: 21px;
}
.sh-prop-room__body-bottom {
}
.sh-prop-room__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 20px 20px;
}
.sh-prop-room__price {
  font-size: 30px;
  font-weight: 600;
  color: var(--sh-ink);
}
.sh-prop-room__price-note {
  font-size: 18px;
  color: var(--sh-ink);
  opacity: 0.6;
  font-weight: 500;
}
.sh-prop-room__cta {
  width: 100%;
}

.sh-prop-map {
  padding: 0 0 1px;
}
.sh-prop-map__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  padding: 20px 24px;
  /* border-radius: 40px; */
}
.sh-prop-map__panel {
  background: #fff;
  padding: 0 0 16px;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
}
.sh-prop-map__thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.sh-prop-map__pill {
  background: var(--sh-blue);
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
}
.sh-prop-map__meta {
  padding: 14px 16px;
  margin: 0;
  font-size: 12px;
}
.sh-prop-map__meta dt {
  font-weight: 600;
  color: var(--sh-ink);
  margin-top: 8px;
}
.sh-prop-map__meta dd {
  margin: 2px 0;
  color: var(--sh-ink);
  opacity: 0.85;
  word-break: break-word;
}
.sh-prop-map__info {
  max-height: 648px;
  overflow-y: scroll;
}
#snazzy-map-canvas {
  background: #dde7f2;
  min-height: 648px;
  border-radius: 0 40px 40px 0;
  overflow: hidden;
}

.sh-btn--white {
  background: #fff;
  color: var(--sh-blue);
}
.sh-btn--white:hover {
  background: #f4f7fc;
}

/* ---------- Inquiry modal ---------- */
.sh-modal[hidden] {
  display: none;
}
.sh-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.sh-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 45, 0.55);
  backdrop-filter: blur(2px);
}
.sh-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 30px;
  max-width: 856px;
  width: 100%;
  padding: 36px 36px 32px;
  /* box-shadow: 0 30px 80px -20px rgba(15, 27, 45, 0.35); */
  max-height: calc(100vh - 48px);
  overflow: auto;
}
.sh-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 0;
  color: #2f6bff;
  cursor: pointer;
  padding: 6px;
  line-height: 0;
  border-radius: 8px;
}
.sh-modal__close:hover {
  background: #eef3ff;
}
.sh-modal__title {
  font-size: 25px;
  font-weight: 500;
  color: #0f1b2d;
  margin: 6px 293px 16px 0;
  line-height: 1.1;
}
/* .sh-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sh-inquiry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
} */
.sh-inquiry-form input[type='text'],
.sh-inquiry-form input[type='email'],
.sh-inquiry-form select,
.sh-inquiry-form textarea,
.sh-modal .wpforms-form input[type='text'],
.sh-modal .wpforms-form input[type='email'],
.sh-modal .wpforms-form select,
.sh-modal .wpforms-form textarea {
  width: 100%;
  border: 1px solid #b4babe;
  border-radius: 50px;
  padding: 20px 42px !important;
  font: inherit;
  color: #0f1b2d;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  height: auto;
  font-size: 18px;
}
.sh-modal .wpforms-form input[type='radio'] + label {
  font-size: 18px;
}
.sh-modal .wpforms-form input[type='radio'] {
  margin-top: -1px !important;
  display: inline-block;
}
.sh-modal .wpforms-form input[type='radio'],
.sh-modal .wpforms-form input[type='radio']::before,
.sh-modal .wpforms-form input[type='radio']::after {
  width: 25px;
  height: 25px;
}
.sh-modal .wpforms-form input[type='radio']:checked:before {
  border-color: #b4babe;
  box-shadow: none;
}
.sh-modal .wpforms-form input[type='radio']:checked:after {
  transform: scale(0.6);
}
.sh-inquiry-form textarea,
.sh-modal .wpforms-form textarea {
  resize: vertical;
  min-height: 175px !important;
}
.sh-inquiry-form input:focus,
.sh-inquiry-form select:focus,
.sh-inquiry-form textarea:focus,
.sh-modal .wpforms-form input:focus,
.sh-modal .wpforms-form select:focus,
.sh-modal .wpforms-form textarea:focus {
  border-color: #2f6bff;
}
.sh-modal .wpforms-form .sh-inquiry-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'><path d='M1 1l6 6 6-6' stroke='%232F6BFF' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 22px center;
  padding-right: 46px;
}
.sh-modal .wpforms-form .wpforms-field-container {
  gap: 8px;
}
.sh-modal .wpforms-form .wpforms-field {
  padding: 2px 0;
}
.sh-modal .wpforms-form .wpforms-field.wpforms-field-radio {
  padding: 32px 40px 20px;
}

.stay-duration-university,
.stay-duration-dates {
  display: none !important;
}

.stay-duration-university.is-visible,
.stay-duration-dates.is-visible {
  display: block !important;
}
.sh-modal .wpforms-form select {
  background-image: url('../images/blue-arrow.svg');
  background-repeat: no-repeat;
  background-position: right 30px center;
  background-size: 19px;
}
body.sh-modal-open {
  overflow: hidden;
}

/* ============ Blog index ============ */
.sh-blog {
  padding: 56px 0 96px;
  background: #fff;
}
.sh-blog__title {
  font-size: clamp(56px, 10vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--sh-dark, #0f1b2d);
  margin: 0 0 28px;
  text-transform: uppercase;
}
.sh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--sh-dark, #0f1b2d);
  margin: 0 0 48px;
}
.sh-breadcrumb__home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.sh-breadcrumb__home:hover {
  color: var(--sh-blue, #2f6bff);
}
.sh-breadcrumb__sep {
  opacity: 0.5;
}
.sh-breadcrumb__current {
  opacity: 0.75;
}

.sh-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sh-card {
  padding: 20px;
  border: 1px solid rgba(6, 26, 37, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sh-card__more,
.sh-single__back {
  color: var(--sh-blue);
  font-weight: 600;
}
.sh-card__more {
  justify-self: end;
  margin: auto 0 0;
}

/* === Responsive === */

@media (min-width: 961px) {
  .desktop-view {
    display: block;
  }
  .mobile-view {
    display: none;
  }
  .sh-header__bar {
    background: transparent;
    color: var(--sh-ink);
    padding: 5px 0 0;
  }
  .sh-icon {
    color: var(--sh-ink);
  }
  .sh-logo {
    max-width: 188px;
  }
  .sh-locations-bar {
    background: var(--sh-white);
    border-bottom: none;
    padding: 0;
    max-width: 341px;
    min-width: 341px;
    width: 100%;
  }
  .sh-dropdown__btn {
    box-shadow: none;
  }
  .sh-dropdown__menu {
    box-shadow: none;
  }
  .sh-dropdown.is-open .sh-dropdown__btn {
    border-bottom: none;
    border-radius: 25px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .sh-dropdown.is-open .sh-dropdown__menu {
    border: 1px solid rgba(6, 26, 37, 0.3);
    border-top: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    top: 85%;
  }
  .sh-dropdown__menu li {
    padding: 6px 10px;
  }
  .sh-hero {
    margin-right: -23px;
  }
  .sh-footer {
    padding: 135px 0 32px;
    margin-top: -50px;
  }
  .sh-footer__brand .sh-logo {
    max-width: 300px;
  }
  .sh-footer__brand,
  .sh-footer__partners {
    height: 100%;
  }
  .sh-footer__brand {
    margin-top: 21px;
    grid-column: 1;
    grid-row: 1;
  }
  .sh-footer__partners {
    grid-column: 2;
    grid-row: 1;
  }
  .sh-footer__contacts {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  .sh-footer__grid {
    gap: 81px;
  }
  .sh-partner {
    min-height: 64px;
  }
  .sh-prop-rooms .sh-dropdown {
    width: 100%;
    max-width: 100%;
  }
  .sh-prop-room__media {
    max-width: 50vw;
  }
  .sh-prop-room .room-gallery-slider {
    height: 100%;
  }
  .sh-footer__bottom {
    grid-column: 1 / 3;
    grid-row: 2;
    display: flex;
    gap: 50px;
    align-items: center;
  }
}

@media (min-width: 1025px) {
  .sh-pin__icon {
    width: 46px;
    height: 46px;
  }
  .sh-pin__label {
    font-size: 18px;
  }
  .sh-pin__badge {
    gap: 14px;
  }

  .sh-pin__badge {
    padding: 12px 26px 12px 16px;
  }
  .sh-hero__stage {
    max-width: 96vw;
    margin-left: 2vw;
  }
  .sh-pin__popover ul {
    padding-left: 34px;
    font-size: 15px;
  }
  .sh-pin.is-open .sh-pin__badge {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .sh-pin.is-open .sh-pin__popover {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}
@media (min-width: 1350px) {
  .sh-hero {
    margin-top: -66px;
  }
  .sh-hero__title {
    max-width: 1093px;
  }
  .sh-footer__grid {
    gap: 10px 172px;
  }
}
@media (min-width: 1600px) {
  .sh-prop-hero__inner {
    padding-right: 132px;
  }
  .sh-prop-hero__cta {
    margin-bottom: 17%;
  }
  .sh-prop-hero__right {
    padding-bottom: 14%;
  }
}
@media (max-width: 1600px) {
  .sh-prop-hero__since {
    top: 59%;
  }
  .sh-prop-hero {
    padding: 0 0 16px;
  }
}
@media (max-width: 1350px) {
  .sh-prop-hero__inner {
    grid-template-columns: 0.5fr 1fr 1fr;
  }
  .sh-prop-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .sh-prop-card {
    gap: 96px;
  }
}
@media (max-width: 1024px) {
  .sh-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .desktop-view {
    display: none;
  }
  .mobile-view {
    display: block;
  }
  .sh-dropdown__btn.mobile-view {
    display: flex;
  }

  .sh-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sh-partners {
    grid-template-columns: repeat(4, 1fr);
  }
  .sh-logo {
    max-width: 193px;
    filter: brightness(0) invert(1);
  }
  .sh-header .sh-icon {
    filter: brightness(0) invert(1);
  }
  .sh-locations-bar {
    padding: 0;
    z-index: 20;
    position: relative;
  }
  .sh-locations-bar .sh-container {
    padding: 0;
  }
  section:not(.sh-prop-rooms) .sh-dropdown__btn {
    border: none;
    border-radius: 0;
  }
  .sh-hero {
    overflow: visible;
  }

  .sh-prop-hero__inner {
    grid-template-columns: 1fr;
  }
  .sh-prop-hero__title {
    font-size: 30px;
    line-height: 1;
  }
  .sh-prop-room {
    grid-template-columns: 1fr;
  }
  .sh-prop-map__inner {
    grid-template-columns: 1fr;
    padding: 13px 16px;
    border-radius: 20px;
  }
  .sh-prop-map__panel {
    border-radius: 12px 12px 0 0;
  }
  .sh-prop-map__embed {
    border-radius: 0 0 12px 12px;
  }
  .sh-container {
    padding: 0 11px;
  }
  .sh-prop-hero {
    max-height: 100%;
    padding-top: 36px;
  }
  .sh-prop-hero__left {
    order: 1;
  }
  .sh-prop-hero__right {
    order: 2;
  }
  .sh-prop-hero__art {
    order: 3;
  }
  .sh-map-image {
    display: none;
  }
  .sh-prop-hero__city {
    font-size: 14px;
    opacity: 1;
    letter-spacing: 0.2px;
    margin-bottom: 7px;
  }
  .sh-prop-pills {
    margin: 0;
    gap: 4px;
    width: 100%;
    order: 1;
  }
  .sh-prop-pills__icon {
    width: 28px;
    height: 28px;
    padding: 6px;
  }
  .sh-prop-pills li {
    padding: 6px;
    font-size: 14px;
  }
  .sh-prop-pills li p {
    margin: 0;
    letter-spacing: 0.1px;
  }
  .sh-prop-hero__desc {
    order: 2;
    font-size: 14px;
    margin: 4% 6% 4% 12%;
    line-height: 1.2;
  }
  .sh-prop-hero__cta {
    order: 3;
  }
  .sh-btn {
    font-size: 14px;
    padding: 14px 22px;
  }
  .sh-prop-hero__art img {
    width: 98%;
    margin: 7% 0 -38% 2%;
  }
  .sh-prop-hero__since {
    top: 59%;
  }
  .sh-prop-hero__since {
    padding: 9px 18px;
    font-size: 14px;
    top: 18%;
    left: 69%;
    min-width: 123px;
  }
  .sh-prop-amenities {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 43px 0 65px;
  }
  .sh-prop-amenity {
    min-width: auto;
    gap: 7px;
  }
  .sh-prop-amenity__icon {
    width: 52px;
    height: 52px;
  }
  .sh-prop-amenity__label {
    font-size: 14px;
  }
  .sh-prop-amenities__row {
    gap: 24px;
  }
  .sh-prop-cards-band {
    overflow-x: hidden;
  }
  .sh-prop-cards-band .sh-container {
    padding: 0;
  }
  .sh-prop-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 11px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .sh-prop-cards::-webkit-scrollbar {
    display: none;
  }

  .sh-prop-card {
    flex: 1 0 80vw;
    padding: 29px 19px 25px;
  }
  .sh-prop-card:first-child {
    margin-left: 11px;
  }
  .sh-prop-card:last-child {
    margin-right: 11px;
  }
  .sh-prop-card__icon {
    width: 51px;
    height: 51px;
  }
  .sh-prop-card p {
    font-size: 14px;
    line-height: 1.2;
  }
  .sh-prop-cards__cta {
    padding: 19px 22px;
    width: calc(100% - 22px);
    margin-inline: 11px;
  }
  .sh-prop-cards-band {
    padding: 5px 0 39px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .sh-prop-tabs {
    display: none;
  }
  .sh-prop-rooms {
    padding: 67px 0 37px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .sh-prop-rooms .sh-dropdown.is-open .sh-dropdown__btn {
    border-bottom: none;
    border-radius: 25px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .sh-prop-rooms .sh-dropdown.is-open .sh-prop-tabs {
    display: block;
    position: absolute;
    border: 1px solid rgba(6, 26, 37, 0.3);
    border-top: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    top: 85%;
    z-index: 10;
    background-color: #fff;
  }
  .sh-prop-rooms .sh-prop-tab {
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
    text-align: left;
    font-weight: 400;
    border-radius: 0;
    text-transform: lowercase;
  }

  .sh-prop-tab::first-letter {
    text-transform: uppercase;
  }
  .sh-prop-rooms .sh-prop-tab.is-active {
    color: var(--sh-blue);
    background: rgba(47, 107, 255, 0.06);
  }
  .sh-prop-rooms .sh-dropdown__btn {
    padding: 16px 20px 16px 26px;
  }
  .sh-prop-room__body-top {
    padding-left: 0;
  }
  .sh-prop-room__title {
    font-size: 20px;
    font-weight: 600;
    margin: 22px 0 12px;
  }
  .sh-prop-room__features {
    gap: 4px;
  }
  .sh-prop-room__features li {
    font-size: 14px;
    gap: 10px;
  }
  .sh-prop-room__media img {
    max-height: 243px;
  }
  .sh-prop-room__price-row {
    flex-direction: column;
  }
  .sh-prop-room__price-row {
    margin: 24px 0 35px;
  }
  .sh-prop-room__price {
    font-size: 20px;
  }
  .sh-prop-room__price-note {
    font-size: 14px;
    margin-top: -5px;
  }
  .sh-prop-map__info {
    display: none;
  }
  .sh-prop-room__media {
    max-width: calc(100vw - 22px);
  }

  #snazzy-map-canvas {
    min-height: 554px;
    border-radius: 20px;
  }
  .sh-main {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .sh-footer__brand {
    flex-direction: row;
    align-items: center;
  }
  .sh-footer__social {
    margin: 10px 39px 0 0;
    gap: 20px;
  }
  .sh-modal__close {
    width: 40px;
    height: 40px;
    right: 9px;
    top: 13px;
  }
}
@media (max-width: 640px) {
  .sh-header__inner {
    min-height: 68px;
  }
  .sh-logo__text strong {
    font-size: 14px;
  }
  .sh-icon {
    display: none;
  }
  .sh-icon:nth-of-type(1),
  .sh-icon:nth-of-type(2) {
    display: inline-flex;
  }
  .sh-pin__badge {
    padding: 4px 17px 4px 4px;
  }
  .sh-pin__icon {
    width: 28px;
    height: 28px;
  }
  .sh-pin__label {
    font-size: 12px;
  }
  .sh-partners {
    grid-template-columns: repeat(3, 1fr);
  }
  .sh-hero {
    padding-bottom: 32px;
  }
  .sh-header .sh-container {
    padding: 0 10px;
  }

  .sh-header__right {
    gap: 15px;
  }
  .sh-dropdown__btn {
    padding: 11px 14px 11px 11px;
    font-size: 14px;
  }
  .sh-dropdown__menu li {
    padding: 7px 4px;
    font-size: 14px;
  }
  .sh-dropdown__btn .arrow {
    width: 12px;
    height: 7px;
  }
  .sh-hero__title {
    position: relative;
    left: 8px;
    margin-top: 27px;
  }
  .sh-hero .sh-container {
    padding: 0;
  }
  .sh-hero__stage {
    margin-top: -7px;
  }
  .sh-pin:nth-of-type(odd) {
    z-index: 1;
  }
  .sh-modal__title {
    font-size: 18px;
    margin: 6px 40px 1px 0;
  }
  .sh-inquiry-form input[type='text'],
  .sh-inquiry-form input[type='email'],
  .sh-inquiry-form select,
  .sh-inquiry-form textarea,
  .sh-modal .wpforms-form input[type='text'],
  .sh-modal .wpforms-form input[type='email'],
  .sh-modal .wpforms-form select,
  .sh-modal .wpforms-form textarea {
    border-radius: 30px;
    padding: 14px 24px !important;
    font-size: 14px;
  }
  .sh-modal .wpforms-form .wpforms-field-name .wpforms-field-row {
    flex-direction: column;
    gap: 10px;
  }
  .sh-modal
    .wpforms-form
    .wpforms-field
    .wpforms-field-row
    .wpforms-field-row-block {
    padding-inline: 0;
    width: 100%;
  }
  .sh-modal .wpforms-form .wpforms-field.wpforms-field-radio {
    padding: 14px 39px 18px 23px;
  }
  .sh-modal__panel {
    border-radius: 20px;
  }
  .sh-modal .wpforms-form input[type='radio'],
  .sh-modal .wpforms-form input[type='radio']::before,
  .sh-modal .wpforms-form input[type='radio']::after {
    width: 25px;
    height: 25px;
  }
  .sh-modal .wpforms-form input[type='radio'] + label {
    font-size: 14px;
  }
  .sh-modal .wpforms-form input[type='radio'] {
    margin-top: -2px !important;
  }
  .sh-inquiry-form textarea,
  .sh-modal .wpforms-form textarea {
    min-height: 148px !important;
  }
  .sh-modal
    .wpforms-form
    .wpforms-submit-container
    button[type='submit'].wpforms-submit {
    padding: 15px;
    font-size: 14px;
  }
  .sh-modal .wpforms-form .wpforms-field-container {
    gap: 6px;
  }
  .sh-modal .wpforms-form select {
    background-position: right 20px center;
    background-size: 12px;
  }
  .sh-blog__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  #sh-inquiry.sh-modal .wpforms-form .wpforms-list-2-columns ul {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 520px) {
  .sh-modal__panel {
    padding: 39px 25px;
  }
  .sh-inquiry-form__row {
    grid-template-columns: 1fr;
  }
}
@media (orientation: landscape) {
  .sh-pin:first-of-type {
    left: 19.5% !important;
    top: 21.7% !important;
  }
  .sh-pin:nth-of-type(2) {
    left: 73% !important;
    top: 23.3% !important;
  }
  .sh-pin:nth-of-type(3) {
    left: 29.4% !important;
    top: 73.2% !important;
  }
  .sh-pin:last-of-type {
    left: 75.2% !important;
    top: 70.2% !important;
  }
  .sh-hero__illustration.mobile-view {
    display: none;
  }
  .sh-hero__illustration.desktop-view {
    display: block;
  }
  .sh-hero__illustration {
    /* max-height: calc(100vh - 130px); */
  }
  .sh-prop-tabs {
    border-bottom: 1px solid var(--sh-blue);
  }
  .sh-prop-tab {
    font-size: 18px;
    padding: 30px 27px 17px;
    font-weight: 500;
    letter-spacing: 0.8px;
    background: transparent;
    position: relative;
  }
  .sh-prop-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2b7fff;
    transform: perspective(14px) rotateX(2deg);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.15);
    z-index: -1;
    border-bottom: 1px solid var(--sh-blue);
  }

  .sh-prop-tab.is-active::before {
    background-color: #2b7fff;
  }
  .sh-prop-tab.is-active {
    background: transparent;
    box-shadow: none;
  }
  .sh-prop-tab:not(.is-active) {
    color: #718096;
  }

  .sh-prop-tab:not(.is-active)::before {
    background: #e5eefe;
  }
  .sh-prop-tab:nth-child(1) {
    z-index: 5;
  }
  .sh-prop-tab:nth-child(2) {
    z-index: 4;
  }
  .sh-prop-tab:nth-child(3) {
    z-index: 3;
  }
  .sh-prop-tab:nth-child(4) {
    z-index: 2;
  }
  .sh-prop-tab:nth-child(5) {
    z-index: 1;
  }
  .sh-prop-tab:first-child::before {
    left: 20px;
  }
  .sh-prop-tab:last-child::before {
    right: 20px;
  }
}
@media (orientation: portrait) {
  .sh-prop-amenities__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
