:root {
  --bg: #f6f1ef;
  --text: #1a1a1a;
  --muted: #555;
  --light-muted: #bbb;
  --blood: #7a0f14;
  --signature: #9a948d;
  --max-width: 880px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px 24px 84px;
  position: relative;
  overflow: hidden;
}

/* title */

.title-block {
  text-align: center;
  margin-bottom: 56px;
}

.title {
  display: inline-block;
  margin: 0 auto;
  color: var(--blood);
  font-weight: 700;
  line-height: 0.92;
  text-align: center;
}

.title-line {
  display: block;
  font-size: clamp(2.1rem, 8vw, 4.15rem);
  letter-spacing: 0.01em;
}

.title-line:first-child {
  margin-bottom: 10px;
}

.subtitle {
  margin-top: 28px;
  font-size: clamp(1.05rem, 2.3vw, 1.38rem);
  font-style: italic;
  color: #444;
  line-height: 1.2;
  text-align: center;
}

/* cast */

.cast-label {
  text-align: center;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.08rem);
}

.cast {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 54px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(0.88rem, 1.7vw, 0.96rem);
}

.cast .sep {
  width: 1px;
  height: 14px;
  background: var(--light-muted);
  flex: 0 0 auto;
}

/* play */

.play {
  position: relative;
}

.blood-drop {
  position: absolute;
  width: clamp(180px, 25vw, 300px);
  right: max(-24px, -2vw);
  top: clamp(12px, 5vw, 28px);
  opacity: 0.84;
  filter: saturate(90%) contrast(95%);
  pointer-events: none;
  z-index: 0;
}

.speaker,
.line,
.stage-direction {
  position: relative;
  z-index: 1;
}

/* text */

.speaker {
  margin-top: 24px;
  margin-bottom: 4px;
  font-variant: small-caps;
  letter-spacing: 0.04em;
  color: #444;
  font-size: clamp(1.02rem, 2.1vw, 1.1rem);
}

.line {
  margin-left: clamp(16px, 2.5vw, 24px);
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 2.4vw, 1.22rem);
  line-height: 1.42;
}

.stage-direction {
  margin-left: clamp(6px, 1.5vw, 12px);
  margin-top: 4px;
  margin-bottom: 12px;
  font-style: italic;
  color: #7a746d;
  font-size: clamp(0.98rem, 2vw, 1.04rem);
  line-height: 1.4;
}

/* signature */

.signature {
  margin-top: 64px;
  text-align: center;
}

.signature a {
  text-decoration: none;
  color: var(--signature);
  text-transform: lowercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.signature a:hover {
  color: #777;
}

/* desktop refinement */

@media (min-width: 701px) {
  .container {
    padding: 104px 34px 90px;
  }

  .title-block {
    margin-bottom: 68px;
  }

  .title-line:first-child {
    margin-bottom: 12px;
  }

  .subtitle {
    margin-top: 38px;
  }

  .cast {
    gap: 14px;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
  }

  .cast .sep {
    height: 16px;
  }

  .blood-drop {
    right: -48px;
    top: 8px;
  }

  .speaker {
    margin-top: 28px;
    margin-bottom: 6px;
    letter-spacing: 0.08em;
  }

  .line {
    margin-bottom: 14px;
  }

  .stage-direction {
    margin-top: 8px;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .signature {
    margin-top: 96px;
  }

  .signature a {
    letter-spacing: 0.3em;
    font-size: 0.9rem;
  }
}
