/* Entrance palette */
html[data-page="entrance"] body {
  --bg: #f0f0ed;
  --fg: #222;
  background: var(--bg);
}

.entrance {
  min-height: calc(100vh - 54px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 28px;
}

.entrance__hero {
  text-align: center;
  padding: 60px 20px 20px;
  font-family: "Spectral", "Noto Serif SC", "Noto Serif JP", Georgia, serif;
}
.entrance__hello {
  font-size: 14px;
  color: var(--fg-3);
  letter-spacing: 2px;
  font-style: italic;
  margin: 0 0 8px;
}
.entrance__prompt {
  font-size: 22px;
  color: var(--fg);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.4;
}

.entrance__volumes {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  flex-wrap: wrap;
}

.volume {
  width: 260px;
  height: 340px;
  padding: 24px 22px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  cursor: pointer;
}
.volume:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.volume--life {
  background: #fafaf7;
  color: #222;
  transform: rotate(-2deg);
  font-family: "Spectral", "Noto Serif SC", "Noto Serif JP", Georgia, serif;
}
.volume--lab {
  background: #1a1f24;
  color: #fff;
  transform: rotate(2deg);
  font-family: "Spectral", "Noto Serif SC", "Noto Serif JP", Georgia, serif;
}
.volume:hover {
  transform: rotate(0) translateY(-8px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}

.volume__label {
  font-size: 11px; letter-spacing: 3px; opacity: 0.6;
}
.volume__title {
  font-size: 34px;
  line-height: 1.1;
}
.volume--life .volume__title { font-style: italic; }
.volume__subtitle {
  font-size: 13px; opacity: 0.7; margin-top: 6px;
}
.volume__enter {
  font-size: 11px; letter-spacing: 3px; opacity: 0.6;
}

@media (max-width: 640px) {
  .entrance__prompt { font-size: 18px; }
  .volume { width: 80vw; height: 280px; transform: none !important; }
  .volume:hover { transform: translateY(-6px) !important; }
}
