.banner-subtitle {
  color: #fff;
  text-align: center;
  font-size: 1.05em;
  margin: 0 0 1.8em;
}

.hero-cta {
  text-align: center;
  margin-top: 2em;
}

.login-link {
  display: inline-block;
  background: #E47719;
  color: #fff;
  padding: 12px 28px;
  border-radius: 3px;
  margin: 0 .5em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-link.secondary {
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .5);
}

.page-hero-copy {
  padding: 5em 0 4em;
  text-align: center;
  color: #fff;
}

.page-hero-copy h1 {
  font-size: 2.6em;
  margin-bottom: .35em;
}

.page-hero-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: #f4f4f4;
  font-size: 1.05em;
}

.inner-banner {
  min-height: 380px;
}

.account-strip {
  clear: both;
  padding-top: 1em;
}

.account-chip {
  display: inline-block;
  background: rgba(255, 255, 255, .12);
  padding: .8em 1em;
  color: #fff;
  border-radius: 4px;
}

.account-chip span {
  color: #f7d2ad;
}

.account-chip a {
  color: #fff;
  margin-left: .8em;
}

.site-alert {
  display: inline-block;
  margin: 0 1em 1em 0;
  padding: .8em 1.1em;
  border-radius: 4px;
}

.site-alert-success {
  background: rgba(53, 139, 88, .88);
  color: #fff;
}

.site-alert-error {
  background: rgba(176, 72, 55, .9);
  color: #fff;
}

.tab-search-form .reservation ul,
.service-search-form .reservation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.tab-search-form .reservation ul li,
.service-search-form .reservation ul li {
  float: none;
  width: calc(25% - 12px);
  flex: 1 1 220px;
  min-width: 0;
}

.tab-search-form .reservation ul li.span1_of_3,
.service-search-form .reservation ul li.span1_of_3 {
  width: auto;
  min-width: 180px;
  flex: 0 0 auto;
}

.tab-search-form .date_btn,
.service-search-form .date_btn {
  width: 100%;
}

.tab-search-form input[type="submit"],
.service-search-form input[type="submit"] {
  background: #E47719;
  border: none;
  color: #fff;
  padding: 14px 24px;
  text-transform: uppercase;
  width: 100%;
  min-width: 180px;
  display: block;
  white-space: nowrap;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5em;
}

.info-card,
.person-card,
.result-card {
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.info-card {
  padding: 2em;
  display: block;
  color: #555;
  min-height: 220px;
}

.info-card h4,
.person-card h4,
.result-card h4 {
  color: #E47719;
  margin-bottom: .7em;
}

.person-card {
  padding: 1.4em;
}

.person-card span {
  display: block;
  margin: .6em 0;
  color: #777;
  font-family: 'Comfortaa', cursive;
}

.search-shell {
  margin-top: 2em;
  padding: 2em;
  background: #f8f7f2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.search-summary {
  margin-top: 1em;
  color: #777;
  font-style: italic;
}

.service-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 2em;
}

.result-card img,
.person-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.result-card-copy {
  padding: 1.4em;
}

.result-card-copy span {
  display: block;
  color: #555;
  font-weight: 600;
  margin-bottom: .7em;
}

.result-card-copy ul {
  margin: 1em 0;
  padding-left: 18px;
  color: #666;
}

.result-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 1em;
}

.result-meta a {
  background: #E47719;
  color: #fff;
  padding: .8em 1.2em;
  border-radius: 3px;
}

.field-error {
  color: #b5533d;
  font-size: .92em;
  margin: .2em 0 .8em;
}

.form-note {
  padding: .9em 1em;
  border-radius: 4px;
  margin-bottom: 1em;
}

.form-note.error {
  background: #f9e2db;
  color: #9a4f3f;
}

.empty-state {
  background: #fff;
  padding: 2em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  text-align: center;
  color: #666;
}

.footer-top-grid .tag2 {
  padding-left: 0;
}

.footer-top-grid .tag2 li {
  display: inline-block;
  margin: 0 .4em .5em 0;
}

.flickr-grid img {
  height: 78px;
  object-fit: cover;
  width: 100%;
}

@media (max-width:991px) {

  .info-grid,
  .service-results {
    grid-template-columns: 1fr;
  }

  .tab-search-form .reservation ul li,
  .service-search-form .reservation ul li {
    width: 100%;
  }

  .page-hero-copy h1 {
    font-size: 2em;
  }
}