/* ————————————————————————————————
   DRAGON ASSEMBLY — the summons page
   Dark: jade gone nearly to midnight — full, never black.
   Pearl: bone-pale, never flat white.
   Gold: inlaid in channels — never washed, never gradient.
   Ember: the rarest note — used once, where something is awake.
   ———————————————————————————————— */

:root {
  --dark:      #0b1712;  /* the room */
  --dark-deep: #060d09;  /* the edges of the room */
  --pearl:     #eae3d2;  /* what stands out of the dark */
  --pearl-dim: #c9c2b0;  /* running text by ember-light */
  --gold:      #b8934a;  /* inlaid, flush */
  --gold-dim:  #7d6432;
  --ember:     #e78f2e;  /* awake */

  --body-size: clamp(17px, 1.05vw + 13px, 19px);
}

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

html { background: var(--dark-deep); }

body {
  background:
    radial-gradient(ellipse 120% 70% at 50% 24%,
      var(--dark) 0%, var(--dark) 45%, var(--dark-deep) 100%);
  color: var(--pearl-dim);
  font-family: 'Spectral', serif;
  font-weight: 400;
  font-size: var(--body-size);
  letter-spacing: 0.01em;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  max-width: 36em;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* —— The hall: the medallion revealed at the centre —— */

.hall {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0 3.5rem;
}

.medallion-glow {
  position: relative;
  border-radius: 50%;
  /* banked fire: low, warm, steady — light the gathering makes for itself */
  box-shadow:
    0 0 120px 10px rgba(231, 143, 46, 0.10),
    0 0 40px  2px  rgba(231, 143, 46, 0.08);
}

.medallion {
  display: block;
  width: min(72vw, 420px);
  height: auto;
  border-radius: 50%;
}

h1 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: calc(var(--body-size) * 2.9);
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--pearl);
  margin-top: 2.6rem;
  text-wrap: balance;
}

.tagline {
  font-style: italic;
  color: var(--pearl-dim);
  margin-top: 1.1rem;
  max-width: 30em;
}

/* —— The summons —— */

.summons {
  padding: 4.5rem 0;
  max-width: 33em;   /* 60–70 characters to the line */
  margin: 0 auto;
}

.summons p + p { margin-top: 1.4em; }

/* the first line, said plainly, standing out of the dark */
.lead {
  color: var(--pearl);
}

/* the question that looks back, eyes level */
.question {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: calc(var(--body-size) * 1.35);
  letter-spacing: 0.04em;
  color: var(--pearl);
  margin-top: 2.2em !important;
}

/* the verdict of the timing */
.verdict {
  color: var(--pearl);
  font-style: italic;
  margin-top: 1.6em !important;
}

/* —— September —— */

.convening {
  padding: 4.5rem 0 5.5rem;
  text-align: center;
}

h2 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: calc(var(--body-size) * 2.0);
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--pearl);
  text-wrap: balance;
}

/* the one ember on the page: the thing that is awake */
.ember {
  margin-top: 1.6rem;
  color: var(--ember);
  font-style: italic;
  text-shadow: 0 0 22px rgba(231, 143, 46, 0.28);
}

/* —— Gold, inlaid: a channel cut for it, with a setting at the centre —— */

.inlay {
  width: min(220px, 50vw);
  height: 1px;
  margin: 0 auto;
  background: var(--gold-dim);
  position: relative;
}

.inlay::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--dark);
  border: 1px solid var(--gold);
}

.inlay.small { width: 120px; }

/* —— The seal at the foot —— */

footer {
  padding: 0 1.5rem 4rem;
  text-align: center;
}

.seal-line {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2.2rem;
}

/* —— Smaller rooms —— */

@media (max-width: 520px) {
  h1 { font-size: calc(var(--body-size) * 2.2); }
  .summons { padding: 3.5rem 0; }
}