/* Concept I — The Sanctuary: a hushed museum hall, picture lights. */
.room-sanctuary {
  --bg: #1b1a1d;
  --ink: #e9e3d7;
  --muted: #a49c8d;
  --focus: #e7c489;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  background:
    radial-gradient(140% 60% at 50% -20%, #2a282c 0%, #1b1a1d 60%),
    #1b1a1d;
  color: var(--ink);
}

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

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

.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: 52ch;
  margin: 0 auto;
  color: var(--muted);
  font-style: italic;
  font-size: 1.1rem;
}

/* The hall: generous, evenly spaced, single focus per work. */
.hall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 6rem);
  align-items: end;
  justify-items: center;
}

.room-sanctuary .work {
  position: relative;
  max-width: 420px;
  padding-top: 46px; /* room for the picture light */
  text-align: center;
}

/* Picture light: a small fixture and the warm wash it casts. */
.room-sanctuary .work::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 128px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(#d8c9a6, #b9a377);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.room-sanctuary .work::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 150%;
  max-width: 560px;
  height: 340px;
  transform: translateX(-50%);
  background: radial-gradient(
    60% 55% at 50% 0%,
    rgba(255, 232, 188, 0.4) 0%,
    rgba(255, 232, 188, 0.14) 38%,
    rgba(255, 232, 188, 0) 72%
  );
  pointer-events: none;
  z-index: 0;
}

.room-sanctuary .work__btn {
  position: relative;
  z-index: 2;
  cursor: zoom-in;
  padding: 12px;
  background: linear-gradient(145deg, #2b2620, #14110d);
  border: 1px solid #0d0b09;
  border-radius: 2px;
  box-shadow:
    0 2px 0 rgba(255, 240, 210, 0.06) inset,
    0 26px 50px -22px rgba(0, 0, 0, 0.9);
}

.room-sanctuary .work__img {
  border: 1px solid #0d0b09;
  box-shadow: 0 8px 22px -12px rgba(0, 0, 0, 0.8);
}

.room-sanctuary .work__cap {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  color: var(--ink);
}

.room-sanctuary .work__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.room-sanctuary .work__meta {
  color: var(--muted);
  letter-spacing: 0.04em;
}
