html {
  min-height: 100%;
  background: #0b0d0e;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: #fff;
  background:
    linear-gradient(rgba(6, 7, 7, .74), rgba(6, 7, 7, .84)),
    url(../img/bg_greeting2.jpg) center top / 420px auto repeat;
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

.en-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 78px;
  padding: 0 30px;
  box-sizing: border-box;
  background: #000;
}

.en-logo {
  display: block;
  width: 116px;
}

.en-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.en-page {
  min-height: calc(100vh - 78px);
  padding: 12px 24px 96px;
  box-sizing: border-box;
}

.en-intro {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 54px;
}

.en-intro p,
.en-info {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: .02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
}

.en-intro p + p {
  margin-top: 34px;
}

.en-info {
  margin-top: 38px;
}

.en-info dt {
  margin-top: 28px;
}

.en-info dd {
  margin: 0;
}

.en-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(500px, 100%);
  height: 54px;
  margin-top: 38px;
  background: rgba(78, 78, 78, .9);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}

.en-reserve span {
  margin-left: auto;
  padding-right: 18px;
  font-size: 1.5rem;
  line-height: 1;
}

.en-reserve:hover {
  background: #e4c45f;
  color: #111;
}

.en-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.en-gallery figure {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1.78;
  background: #111;
}

.en-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.en-gallery figure:hover img {
  transform: scale(1.04);
}

@media (max-width: 760px) {
  .en-header {
    position: relative;
    justify-content: center;
    padding: 18px 18px 20px;
  }

  .en-logo {
    width: 132px;
  }

  .en-page {
    padding: 32px 18px 64px;
  }

  .en-intro {
    width: 100%;
  }

  .en-intro p,
  .en-info {
    font-size: .98rem;
    line-height: 1.85;
  }

  .en-gallery {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 16px;
  }
}
