/* Concept III — The Chapel: a single work in a quiet, focused space. */
.room-chapel {
  --bg: #17161a;
  --ink: #ece6da;
  --muted: #9a9284;
  --focus: #e7c489;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  color: var(--ink);
  background:
    radial-gradient(90% 70% at 50% 12%, #23212a 0%, #17161a 62%),
    #17161a;
}

.room-chapel .room-nav a {
  color: var(--ink);
}

.room-intro {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(0.5rem, 2vw, 1.5rem);
}

.room-intro .eyebrow {
  color: var(--muted);
  letter-spacing: 0.32em;
}

.room-intro h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0.5rem 0 0.6rem;
}

.room-intro__lead {
  max-width: 48ch;
  margin: 0 auto;
  color: var(--muted);
  font-style: italic;
  font-size: 1.1rem;
}

.chapel {
  padding: clamp(1rem, 4vw, 3rem) 0 clamp(3rem, 7vw, 6rem);
}

.chapel__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  max-width: 760px;
  margin: 0 auto;
}

.chapel__frame {
  border: 0;
  background: none;
  padding: 0;
  cursor: zoom-in;
  line-height: 0;
}

.chapel__frame:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 6px;
}

.chapel__img {
  max-height: 62vh;
  width: auto;
  margin: 0 auto;
  border: 14px solid #0e0d0b;
  border-radius: 2px;
  box-shadow:
    0 0 0 1px #000,
    0 40px 90px -40px rgba(0, 0, 0, 0.95),
    0 0 120px -30px rgba(255, 226, 176, 0.28);
  transition: opacity 0.4s ease;
}

.chapel__cap {
  text-align: center;
  max-width: 46ch;
}

.chapel__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  margin: 0 0 0.4rem;
}

.chapel__meta {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.chapel__note {
  color: #d8d1c4;
  font-size: 1.02rem;
  margin: 0;
}

.chapel__controls {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.chapel__btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(231, 196, 137, 0.4);
  background: rgba(231, 196, 137, 0.06);
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.chapel__btn:hover {
  background: rgba(231, 196, 137, 0.18);
  transform: scale(1.05);
}

.chapel__btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.chapel__count {
  min-width: 5ch;
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--muted);
}
