:root{
  /* Chamber palette */
  --bg: #3b2f2a;             /* muted brown */
  --ink: #f3efe8;            /* warm off-white */
  --muted: rgba(243,239,232,0.72);

  --col: 700px;
  --gutter: clamp(20px, 5vw, 64px);

  --lh: 1.78;
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Serif 4", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap{
  width: min(var(--col), calc(100% - (2 * var(--gutter))));
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) 0 clamp(60px, 9vh, 110px);
}

.masthead{
  margin: 0 0 48px 0;
}

.title{
  margin: 0;
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.08;
}

.subtitle{
  margin: 14px 0 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

/* Dialogue */

.dialogue{
  margin-top: 28px;
}

.turn{
  margin: 0 0 20px 0;
}

.line{
  margin: 0;
  font-size: 18px;
  line-height: var(--lh);
}

.who{
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-right: 8px;
  white-space: nowrap;
}

/* Interludes */

.interlude{
  margin: clamp(60px, 8vh, 100px) 0;
}

.interlude img{
  display: block;
  width: 100%;
  height: auto;
}

/* Link styling — quiet, not blue */

a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(243,239,232,0.26);
}

a:hover{
  border-bottom-color: rgba(243,239,232,0.55);
}

.subtitle a{
  color: var(--muted);
  border-bottom-color: rgba(243,239,232,0.18);
}

/* Mobile adjustments */

@media (max-width: 520px){
  .line{ font-size: 17px; }
  .masthead{ margin-bottom: 40px; }
  .interlude{ margin: 48px 0; }
}
