/* Eternal Wellspring home page. */
.site-header {
  box-sizing: border-box;
  min-height: var(--header-h);
  height: auto;
  display: flex;
  align-items: center;
  padding: 4px 12px;
  border-bottom: 1px solid var(--line);
}
body { --header-h: 88px; }
.site-header .brand-tag,
.site-header .brand-tag-sub {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  color: #555;
}
.site-header .brand-tag-sub { font-size: 11px; }
.site-title {
  font-size: 16px !important;
  font-weight: 800 !important;
}
.site-title a,
.site-description a {
  color: var(--title-color);
  text-decoration: none;
}
.site-description {
  font-size: 13px !important;
  color: #444 !important;
}
.hall-page {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: var(--body-bg, #f0e8d9);
  color: #222;
}
.hall-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.2rem;
  padding: 0.7rem 1.4rem;
  background: #fff;
  border-bottom: 1px solid #c5c5c5;
}
.hall-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: #005EB8;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.ew-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #005EB8;
  text-decoration: none;
}
.ew-mark img {
  display: block;
  height: 40px;
  width: auto;
  max-height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}
.ew-words {
  display: block;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.hall-hero {
  padding: 2.2rem 1.4rem 0.4rem;
  max-width: 58rem;
  margin: 0 auto;
}
.hall-hero h1 {
  margin: 0 !important;
  font-size: 2rem !important;
  color: #005EB8 !important;
  border: 0 !important;
  padding: 0 !important;
}
.hall-page .tagline {
  margin: 0.45rem 0 0;
  font-size: 1.08rem;
  color: #444;
  max-width: 36rem;
}
.hall-page .tagline-sub {
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
  color: #555;
  max-width: 36rem;
}
.hall-hero .site-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0.9rem 0 0;
}
.hall-hero .site-list a {
  color: #005EB8;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  text-decoration: none;
  border: 0;
  background: none;
  padding: 0.05rem 0;
}
.hall-hero .site-list a:hover { text-decoration: underline; }
.hall-doors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 72rem;
  margin: 1.4rem auto 3rem;
  padding: 0 1.4rem;
}
.hall-door {
  display: block;
  padding: 1.05rem 1.1rem 1.15rem;
  background: #fff;
  border: 2px solid #005EB8;
  border-radius: 8px;
  color: #222;
  text-decoration: none;
}
.hall-door:hover { background: #f0f6fc; }
.hall-door strong { display: block; color: #005EB8; font-size: 1.12rem; }
.hall-door span { display: block; font-size: 0.92rem; color: #444; margin-top: 0.28rem; }
@media (max-width: 1100px) {
  .hall-doors { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .hall-doors { grid-template-columns: 1fr; }
}

.home-hero {
  box-sizing: border-box;
  width: 100vw;
  max-width: 100vw;
  margin: 0.75rem 0 1.75rem;
  margin-left: calc(50% - 50vw);
  padding: 0 1.25rem;
}
.home-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 6rem);
  object-fit: contain;
  margin: 0 auto;
}
