:root {
  --bg: #D9D3C5;
  --plate: #E5DFD2;
  --ink: #131210;
  --name: #131210;
  --name-hover: #cf2900;
  --ink-dim: #000000;
  --gold: #8C6B2E;
  --strip: rgba(20, 17, 16, 0.22);
  --frame-size: min(64%, 82vh, 1024px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: var(--bg);
  overflow: hidden;
}

body {
  font-family: 'EB Garamond', serif;
  color: var(--ink);
}

.stage {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(14px, 2.5vh, 24px) 4vw 4vh;
}

.signmark {
  width: 80px;
  height: 80px;
  display: block;
  margin-bottom: clamp(12px, 2vh, 20px);
}

.entrances {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: var(--frame-size);
  margin-bottom: clamp(24px, 4vh, 40px);
}

.entrance {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--name);
}

.entrance--left { align-items: flex-end; text-align: right; }
.entrance--right { align-items: flex-start; text-align: left; }

.entrance__name {
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 1.05vw, 17px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
  transition: color 450ms ease;
}

.entrance:hover .entrance__name,
.entrance:focus-visible .entrance__name {
  color: var(--name-hover);
}

.entrance__tag {
  margin-top: 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: clamp(9px, 0.7vw, 11px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--ink-dim);
}

.entrance:focus-visible {
  color: var(--gold);
}

.divider {
  flex: 0 0 auto;
  width: 1.5px;
  height: 30px;
  margin: 2px clamp(20px, 3vw, 40px) 0;
  background: var(--strip);
}

.showcase {
  position: relative;
  width: var(--frame-size);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.showcase__layer {
  position: absolute;
  inset: 0;
  background-color: var(--plate);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.showcase__layer.is-visible {
  opacity: 1;
}

@media (max-width: 640px) {
  :root { --frame-size: min(78vw, 60vh, 460px); }
  .stage { padding: 1.5vh 6vw 3vh; }
  .entrance__name { font-size: 12px; }
  .divider { margin: 2px 14px 0; }
}