@font-face {
  font-family: "Garamond Premier Pro Caption";
  src: url("fonts/GaramondPremrPro-Capt.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Garamond Premier Pro Caption";
  src: url("fonts/GaramondPremrPro-ItCapt.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Garamond Premier Pro Caption";
  src: url("fonts/GaramondPremrPro-SmbdCapt.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

/* Makes width calculations predictable */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
}

body {
  background: #ffffff;
  color: #222;
  font-family: "Garamond Premier Pro Caption", serif;

    padding-bottom: 61px;
}


/* -------------------------
   PAGE
------------------------- */

.top,
.hero-image {
  margin-left: 36px;
  margin-right: 36px;
}


/* -------------------------
   HEADER
------------------------- */

.top {
  padding-top: 36px;

  display: grid;
  grid-template-columns: 1fr 550px;
  align-items: start;
}

.brand {
  font-size: 55px;
  line-height: 0.8;
  letter-spacing: 1px;
}

.brand a {
  color: inherit;
  text-decoration: none;
}

/* -------------------------
   MENU
------------------------- */

.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
}

.menu-column {
  display: flex;
  flex-direction: column;
}

.menu a {
  display: grid;
  grid-template-columns: 70px 1fr;

  color: inherit;
  text-decoration: none;

  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu a span {
  display: block;
}


.menu a:hover,
.menu a.active {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}


  /*
.menu a:hover,
.menu a.active {
  background-image: linear-gradient(#222, #222);
  background-size: 100% 1.5px;
background-position: left calc(100% - 3px);
  background-repeat: no-repeat;
  
}
  */
/* -------------------------
   IMAGE
------------------------- */

.hero-image {
  margin: 20px 36px 0 36px;
}

.top + .hero-image {
  margin-top: 35px;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.about-page {
  min-height: 0;
}



/* -------------------------
   AMENITIES
------------------------- */

.amenities-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenities-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 0px;
}

.amenities-list li::before {
  content: "›";
  position: absolute;
  left: 0;
}

.amenities-list li:last-child {
  margin-bottom: 0;
}

.amenities-heading {
  margin-top: 50px;
}

.paid-service {
  margin-top: 28px;
}

.paid-service p:first-child {
  margin-bottom: 4px;
}

/* -------------------------
   GALLERY PAGE
------------------------- */

.gallery-page {
  padding-top: 90px;
}

.gallery-section {
  margin-bottom: 90px;
}

.gallery-title {
  width: 820px;
  max-width: 100%;

  margin: 0 auto;
}

.gallery-section .room-gallery {
  margin-top: 24px;
}


/* -------------------------
   ROOMS
------------------------- */

.room-page {
  margin: 0 36px;
  min-height: calc(100vh - 150px);
}

.about-page {
  min-height: 0;
}

.room-copy {
  width: 820px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 90px;

  font-size: 22px;
  line-height: 1.45;
}


.room-title {
  display: flex;
  align-items: baseline;
  margin: 0 0 4px 80px;

  font-size: 22px;
  font-weight: normal;
  font-style: italic;
  line-height: 1.2;
}

.dots {
  flex: 1;
  margin-left: 8px;

  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 4px;

  white-space: nowrap;
  overflow: hidden;
}

.room-copy p {
  margin-top: 0;
  margin-bottom: 28px;
}

.room-copy a {
  color: inherit;
}


.room-copy a.text-link-no-underline {
  text-decoration: none;
}

.room-copy a.text-link-no-underline:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.room-details {
  margin-top: 28px;
  margin-left: 80px;
}

.room-details p {
  margin-bottom: 2px;
}

.room-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-details li::before {
  content: " ";
}

.room-gallery {
  margin-top: 60px;
  width: 100%;
}

.gallery-row {
  display: flex;
  width: 100%;
  gap: 5px;
  margin-bottom: 5px;
}

.gallery-row img {
  display: block;
  flex: none;
  cursor: pointer;
}


.room-gallery + .room-copy {
  padding-top: 90px;
}

/* -------------------------
   HOME INTRO
------------------------- */

.home-intro {
  min-height: 0;
}

.home-intro .room-copy {
  padding-top: 90px;
  padding-bottom: 0;
}

.home-intro .room-copy p {
  margin-bottom: 0;
}

.home-intro + .hero-image {
  margin-top: 20px;
}

/* -------------------------
   LIGHTBOX
------------------------- */


.room-gallery img {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: none;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 255);
  padding: 36px;

  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  display: block;

  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  border: 0;
  padding: 20px;

  background: none;
  color: #222;

  font-family: "Garamond Premier Pro Caption", serif;
  font-size: 50px;

  cursor: pointer;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}


/* -------------------------
   FOOTER
------------------------- */

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;

  display: flex;
  justify-content: space-between;
  align-items: baseline;

  padding: 18px 36px;

  background: #ffffff;

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

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}


/* -------------------------
   RESPONSIVE — TABLET
------------------------- */

@media (max-width: 1100px) {

  .top {
    grid-template-columns: 1fr 430px;
  }

  .menu {
    column-gap: 30px;
  }

  .menu a {
    grid-template-columns: 55px 1fr;
  }

}


/* -------------------------
   RESPONSIVE — MOBILE
------------------------- */

@media (max-width: 700px) {

  .brand span {
    display: block;
  }

  .top,
  .hero-image,
  .room-page {
    margin-left: 18px;
    margin-right: 18px;
  }

  .top {
    display: block;
  }

  .menu {
    margin-top: 28px;
  }

}






/* Temporary password screen */

#password-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-box {
  width: 320px;
  text-align: center;
}

.password-title {
  font-family: "Garamond Premier Pro", Garamond, serif;
  font-size: 32px;
  margin-bottom: 40px;
}

#site-password {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid #222;
  border-radius: 0;
  padding: 8px 0;
  background: transparent;
  font: inherit;
  outline: none;
}

#password-submit {
  margin-top: 20px;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

#password-error {
  margin-top: 15px;
  font-size: 14px;
}
