:root {
  --void: #0c0b09;
  --wall: #14110e;
  --paper: #1c1814;
  --frame: #b8955a;
  --frame-dim: #7a6240;
  --gilt: #e4c78a;
  --ink: #ece4d4;
  --muted: #b3a894;
  --stamp: #c23b22;
  --still: #d4b06a;
  --auth: #c9894a;
  --facade: #8a9bb0;
  --buried: #6e7a68;
  --banished: #5a4a52;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(184, 149, 90, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(20, 17, 14, 0.35), transparent 28%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.012) 3px,
      rgba(255, 255, 255, 0.012) 4px
    ),
    var(--void);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  line-height: 1.5;
}

a { color: var(--gilt); }
a:hover { color: #fff6dd; }

.gm-side-frame {
  position: static;
  z-index: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  align-self: stretch;
  box-sizing: border-box;
  width: var(--gm-side, clamp(9.5rem, 14vw, 12.5rem));
  min-height: 0;
  padding: 18px 14px;
  margin: 0;
  background: var(--paper);
  border: 6px solid var(--frame-dim);
  box-shadow:
    0 0 0 1px var(--frame),
    0 12px 28px rgba(0, 0, 0, 0.45);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transform: none;
  animation: none;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, color 0.2s ease;
}
.gm-side-kicker,
.gm-count-wall {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gilt);
}
.gm-nominate-frame {
  pointer-events: auto;
  cursor: pointer;
}
.gm-nominate-frame:hover {
  border-color: var(--gilt);
  box-shadow:
    0 0 0 1px var(--gilt),
    0 12px 28px rgba(0, 0, 0, 0.45);
}
.gm-nominate-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  line-height: 1.05;
  color: var(--gilt);
  letter-spacing: 0.01em;
}
.gm-count-frame {
  pointer-events: none;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.gm-count-frame.is-live {
  border-color: var(--gilt);
  box-shadow:
    0 0 0 1px var(--gilt),
    0 12px 28px rgba(0, 0, 0, 0.45);
}
.gm-count-num {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(3.2rem, 5.5vw, 4.4rem);
  line-height: 0.9;
  color: var(--gilt);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.gm-count-meta {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
  line-height: 1.45;
  max-width: none;
  width: 100%;
}
.gm-count-meta .gm-count-line {
  display: block;
}

:root {
  --gm-shell: min(1120px, calc(100% - 2 * clamp(20px, 5vw, 64px)));
  --gm-side: clamp(9.5rem, 14vw, 12.5rem);
  --gm-mast-gap: clamp(14px, 2vw, 28px);
}

.gm-shell {
  width: var(--gm-shell);
  margin: 0 auto;
  padding-bottom: 48px;
}

.gm-masthead {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 3vw, 28px);
  text-align: center;
  padding: 36px 0 0;
  animation: gm-fade 0.8s ease both;
}
.gm-masthead--wide {
  display: grid;
  grid-template-columns: var(--gm-side) minmax(0, var(--gm-shell)) var(--gm-side);
  justify-content: center;
  align-items: stretch;
  gap: var(--gm-mast-gap);
  width: 100%;
  max-width: calc(var(--gm-shell) + 2 * var(--gm-side) + 2 * var(--gm-mast-gap));
  margin: 0 auto;
  padding: 36px clamp(12px, 2vw, 24px) 0;
  box-sizing: border-box;
}
.gm-masthead--wide .gm-side-frame {
  width: 100%;
}
.gm-masthead--wide .gm-mast-main {
  width: 100%;
}
.gm-mast-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.gm-masthead .gm-brand-title {
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: none;
  max-width: none;
  font-size: clamp(3.2rem, 9vw, 5.6rem);
  line-height: 1;
}
.gm-masthead .gm-brand-title a {
  color: inherit;
  text-decoration: none;
}
.gm-masthead .gm-brand-title a:hover {
  color: #fff6dd;
}
.gm-masthead .gm-hero-tag {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.23rem; /* half of .gm-nav 2.46rem */
  line-height: 1.2;
  color: var(--gilt);
  max-width: none !important;
  margin: 14px auto 0 !important;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(184, 149, 90, 0.28);
  letter-spacing: 0.01em;
}
.gm-masthead .gm-hero-tag .gm-hero-line {
  display: block;
}
.gm-masthead .gm-nav {
  justify-content: center;
  padding: 20px 0 18px;
  border-bottom: 1px solid rgba(184, 149, 90, 0.28);
}
.gm-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  font-size: 2.46rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gm-nav a { color: var(--muted); text-decoration: none; }
.gm-nav a[aria-current="page"], .gm-nav a:hover { color: var(--gilt); }

@media (max-width: 1100px) {
  .gm-masthead--wide {
    grid-template-columns: minmax(0, 1fr);
    max-width: var(--gm-shell);
    justify-items: center;
  }
  .gm-masthead--wide .gm-side-frame {
    width: min(100%, 14rem);
  }
  .gm-masthead--wide .gm-nominate-frame {
    order: 2;
  }
  .gm-masthead--wide .gm-mast-main {
    order: 1;
  }
  .gm-masthead--wide .gm-count-frame {
    order: 3;
  }
}

@media (max-width: 720px) {
  .gm-masthead {
    flex-direction: column;
  }
  .gm-side-frame {
    width: 100%;
    max-width: 14rem;
    margin: 0 auto;
    align-self: center;
  }
}

.gm-hero {
  padding: 36px 0 32px;
  text-align: center;
  animation: gm-rise 0.9s ease both;
}
.gm-kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--frame);
  margin: 0 0 18px;
}
.gm-brand-title,
.gm-masthead .gm-brand-title,
.gm-hero h1.gm-brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(3.2rem, 9vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: var(--gilt);
}
.gm-hero-tag {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.23rem;
  line-height: 1.2;
  color: var(--gilt);
  max-width: none !important;
  margin: 0 auto 18px !important;
  letter-spacing: 0.01em;
}
.gm-hero-tag .gm-hero-line {
  display: block;
}
.gm-hero h1:not(.gm-brand-title),
.gm-plaque-hero h1,
.gm-nominate-hero h1,
.gm-domain-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
  margin: 0 auto 18px;
  max-width: 22ch;
  color: var(--ink);
}
.gm-hero p {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto;
  font-size: 1.05rem;
}
.gm-plaque-hero h1 {
  text-align: left;
  margin-left: 0;
  max-width: 18ch;
}
.gm-domain-hero h1 {
  text-align: left;
  margin-left: 0;
  max-width: none;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--gilt);
}
.gm-hero-cta {
  margin-top: 22px !important;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gm-hero-cta a {
  color: var(--gilt);
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 199, 138, 0.35);
  padding-bottom: 2px;
}
.gm-hero-cta a:hover { border-bottom-color: var(--gilt); }

.gm-toolbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 8px 0 32px;
  animation: gm-fade 1s ease 0.15s both;
}
.gm-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  justify-items: stretch;
  gap: 12px;
  padding: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.gm-views {
  padding-bottom: 0;
  border-bottom: none;
}
#wall-filters {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.gm-legend span,
.gm-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.gm-legend i {
  width: 12px; height: 12px; border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
}
.gm-legend .still { background: var(--still); }
.gm-legend .auth { background: var(--auth); }
.gm-legend .facade { background: var(--facade); }
.gm-legend .buried { background: var(--buried); }
.gm-legend .banished { background: var(--banished); }

.gm-filter {
  appearance: none;
  width: 100%;
  min-height: 3.6rem;
  border: 3px solid var(--frame-dim);
  background: var(--paper);
  color: var(--muted);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 14px 10px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(184, 149, 90, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  line-height: 1.25;
  white-space: normal;
}
.gm-filter:hover {
  color: var(--gilt);
  border-color: var(--gilt);
}
.gm-filter[aria-pressed="true"] {
  color: var(--gilt);
  border-color: var(--gilt);
  background: rgba(184, 149, 90, 0.14);
  box-shadow: 0 0 0 1px var(--gilt);
}

@media (max-width: 900px) {
  #wall-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .gm-legend,
  #wall-filters {
    grid-template-columns: 1fr;
  }
  .gm-filter {
    min-height: 3.2rem;
  }
}

.gm-hall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 28px;
  padding: 4px 0 56px;
  justify-items: stretch;
}
.gm-hall.gm-hall--timeline {
  grid-template-columns: 1fr;
  max-width: none;
  width: 100%;
  margin: 0;
  gap: 22px;
  position: relative;
}
.gm-hall.gm-hall--rail {
  max-width: none;
  width: 100%;
  gap: 28px;
}
.gm-hall.gm-hall--rail::before { display: none; }
.gm-hall.gm-hall--timeline::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(184, 149, 90, 0.45) 8%,
    rgba(184, 149, 90, 0.28) 92%,
    transparent
  );
  pointer-events: none;
}
.gm-hall.gm-hall--rail.gm-hall--timeline::before { content: none; }

.gm-timeline-stage {
  --lanes: 3;
  grid-column: 1 / -1;
  padding: 12px 0 16px;
  opacity: 0;
  transform: translateY(12px);
}
.gm-hall.is-hung .gm-timeline-stage {
  animation: gm-hang 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.gm-era-row {
  position: relative;
  height: 1.5rem;
  margin: 0 12px 10px;
}
.gm-era {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  border-left: 1px solid rgba(184, 149, 90, 0.18);
}
.gm-era span {
  display: block;
  padding-left: 10px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frame-dim);
  white-space: nowrap;
}
.gm-rail {
  --lane-gap: 44px;
  position: relative;
  height: calc(72px + (var(--lanes) * var(--lane-gap)));
  margin: 0 8px 4px;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(28, 24, 20, 0.4), rgba(12, 11, 9, 0.12)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 63px,
      rgba(184, 149, 90, 0.035) 63px,
      rgba(184, 149, 90, 0.035) 64px
    );
}
.gm-rail-line {
  position: absolute;
  left: 2%;
  right: 2%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 149, 90, 0.55) 4%,
    rgba(228, 199, 138, 0.75) 50%,
    rgba(184, 149, 90, 0.55) 96%,
    transparent
  );
  box-shadow: 0 0 18px rgba(184, 149, 90, 0.18);
}
.gm-ghost {
  --lane: 0;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--still);
  position: absolute;
  left: var(--p);
  top: calc(50% + (var(--lane) - (var(--lanes) - 1) / 2) * var(--lane-gap));
  transform: translate(-50%, -50%);
  width: 52px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.22s ease, color 0.2s ease, filter 0.2s ease, z-index 0s;
}
.gm-ghost.wall-auth-ghost { color: var(--auth); }
.gm-ghost.wall-successor-facade { color: var(--facade); }
.gm-ghost.wall-buried { color: var(--buried); }
.gm-ghost.wall-banished { color: var(--banished); }
.gm-ghost.wall-unprobed { color: var(--muted); }
.gm-ghost:hover,
.gm-ghost:focus-visible {
  transform: translate(-50%, -58%) scale(1.1);
  filter: drop-shadow(0 0 10px rgba(228, 199, 138, 0.35));
  outline: none;
  z-index: 6;
}
.gm-ghost.is-selected {
  transform: translate(-50%, -60%) scale(1.16);
  filter: drop-shadow(0 0 14px rgba(228, 199, 138, 0.5));
  z-index: 7;
}
.gm-ghost-icon {
  display: block;
  width: 26px;
  height: 34px;
  margin: 0 auto;
}
.gm-ghost-label {
  display: block;
  max-width: 88px;
  margin: 3px auto 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  pointer-events: none;
  transform: translateY(3px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.gm-ghost:hover .gm-ghost-label,
.gm-ghost:focus-visible .gm-ghost-label,
.gm-ghost.is-selected .gm-ghost-label {
  opacity: 1;
  transform: translateY(0);
  color: var(--gilt);
}
.gm-rail-years {
  position: relative;
  height: 1.5rem;
  margin: 6px 8px 0;
}
.gm-tick {
  position: absolute;
  transform: translateX(-50%);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  color: var(--frame-dim);
}
.gm-tick i {
  display: block;
  width: 1px;
  height: 9px;
  margin: 0 auto 4px;
  background: rgba(184, 149, 90, 0.45);
}
.gm-rail-caption {
  margin: 18px 12px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.gm-rail-caption strong {
  color: var(--gilt);
  font-weight: 500;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
}
.gm-hall.gm-hall--rail .gm-frame {
  max-width: min(42rem, 100%);
  width: 100%;
  justify-self: center;
  min-height: 0;
}
.gm-frame.is-focus {
  box-shadow:
    0 0 0 1px var(--frame),
    0 0 0 4px rgba(184, 149, 90, 0.18),
    0 24px 50px rgba(0, 0, 0, 0.45);
}
.gm-same-year {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}
.gm-inline-ghost {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--gilt);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}
.gm-inline-ghost:hover { color: #fff6dd; }

.gm-year {
  position: relative;
  padding: 18px 0 4px 2.6rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  letter-spacing: 0.08em;
  color: var(--gilt);
  opacity: 0;
  transform: translateY(10px);
}
.gm-hall.is-hung .gm-year {
  animation: gm-hang 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: calc(var(--i, 0) * 55ms);
}
.gm-year span {
  display: inline-block;
  border-bottom: 1px solid rgba(184, 149, 90, 0.35);
  padding-bottom: 2px;
}
.gm-hall.gm-hall--timeline:not(.gm-hall--rail) .gm-frame {
  margin-left: 0.4rem;
  min-height: 0;
}
.gm-hall.gm-hall--domain {
  grid-template-columns: 1fr;
  max-width: none;
  width: 100%;
  margin: 0;
}
.gm-domain-dir {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 8px 0 16px;
}
.gm-domain-more {
  margin: 0 0 32px;
  text-align: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gm-domain-more a {
  color: var(--gilt);
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 199, 138, 0.35);
  padding-bottom: 2px;
}
.gm-domain-more a:hover {
  border-bottom-color: var(--gilt);
}
.gm-domain-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  align-items: baseline;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 6px solid var(--frame-dim);
  box-shadow: 0 0 0 1px var(--frame);
  opacity: 0;
  transform: translateY(12px);
}
.gm-hall.is-hung .gm-domain-card {
  animation: gm-hang 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: calc(var(--i, 0) * 45ms);
}
.gm-domain-card:hover,
.gm-domain-card:focus-visible {
  border-color: var(--frame);
  outline: none;
  color: inherit;
}
.gm-domain-name {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--gilt);
}
.gm-domain-count {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gilt);
  line-height: 1;
  grid-row: 1 / span 2;
  align-self: center;
}
.gm-domain-meta {
  grid-column: 1;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.gm-domain-hero {
  padding-top: 28px;
  text-align: left;
}
.gm-domain-hero .gm-hero-tag {
  text-align: left;
  margin-left: 0 !important;
  max-width: 40ch !important;
  font-style: normal;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1rem;
  color: var(--muted);
}
.gm-domain-hero .gm-kicker a {
  color: var(--muted);
  text-decoration: none;
}
.gm-domain-hero .gm-kicker a:hover { color: var(--gilt); }

.gm-hall.gm-hall--domain .gm-section span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

@media (max-width: 720px) {
  .gm-rail {
    --lane-gap: 38px;
    margin: 0 2px 4px;
  }
  .gm-era-row { margin: 0 4px 8px; }
  .gm-era span { font-size: 0.52rem; letter-spacing: 0.06em; }
  .gm-ghost { width: 44px; }
  .gm-ghost-label { max-width: 64px; }
}

.gm-frame {
  background: var(--paper);
  border: 10px solid var(--frame-dim);
  box-shadow:
    0 0 0 1px var(--frame),
    0 24px 50px rgba(0, 0, 0, 0.45);
  padding: 22px 20px 18px;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}
.gm-hall.is-hung .gm-frame {
  animation: gm-hang 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: calc(var(--i, 0) * 70ms);
}
.gm-frame[hidden] { display: none; }
.gm-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(228, 199, 138, 0.18);
  pointer-events: none;
}

.gm-frame-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.gm-wall {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}
.gm-frame.still-answering .gm-wall { color: var(--still); }
.gm-frame.auth-ghost .gm-wall { color: var(--auth); }
.gm-frame.successor-facade .gm-wall { color: var(--facade); }
.gm-frame.buried .gm-wall { color: var(--buried); }
.gm-frame.banished .gm-wall { color: var(--banished); }
.gm-frame.banished {
  opacity: 0.72;
  filter: grayscale(0.35);
}

.gm-chip {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border: 1px solid rgba(184, 149, 90, 0.35);
  color: var(--gilt);
  white-space: nowrap;
  flex-shrink: 0;
}
.gm-chip.redirect { color: var(--facade); border-color: rgba(138, 155, 176, 0.45); }
.gm-chip.fail { color: var(--stamp); border-color: rgba(194, 59, 34, 0.45); }
.gm-chip.muted { color: var(--muted); }

.gm-frame h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  margin: 0 0 4px;
}
.gm-owner { color: var(--muted); font-size: 0.85rem; margin: 0 0 14px; }
.gm-note { color: var(--ink); font-size: 0.92rem; margin: 0 0 16px; flex: 1; }
.gm-meta {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.55;
  word-break: break-word;
}
.gm-meta a { color: var(--gilt); }

.gm-footer {
  padding: 24px 0 8px;
  border-top: 1px solid rgba(184, 149, 90, 0.22);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}
.gm-hall-page .gm-footer { text-align: center; }

/* —— Plaque —— */
.gm-plaque-page .gm-footer { margin-top: auto; }
.gm-plaque {
  padding: 48px 0 64px;
  max-width: none;
  margin: 0;
  animation: gm-rise 0.8s ease both;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.gm-plaque-hero {
  max-width: 38rem;
  margin: 0 auto;
  padding-bottom: 8px;
  text-align: center;
}
.gm-plaque-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.08;
  margin: 0 0 22px;
  color: var(--ink);
}
.gm-lede {
  margin: 0 auto;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 42ch;
}
.gm-lede code,
.gm-plaque code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.9em;
  color: var(--gilt);
}

.gm-plaque-panel {
  border: 1px solid rgba(184, 149, 90, 0.28);
  background:
    linear-gradient(180deg, rgba(28, 24, 20, 0.92), rgba(20, 17, 14, 0.88));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 28px 28px 30px;
  position: relative;
}
.gm-plaque-panel::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(228, 199, 138, 0.12);
  pointer-events: none;
}
.gm-plaque-panel h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 1.65rem;
  margin: 0 0 18px;
  color: var(--gilt);
}
.gm-plaque-panel p {
  color: var(--ink);
  margin: 0 0 14px;
  max-width: 54ch;
  line-height: 1.55;
}
.gm-plaque-panel p:last-child { margin-bottom: 0; }
.gm-plaque-panel strong { color: var(--gilt); font-weight: 500; }

.gm-wall-defs {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}
.gm-wall-defs dt {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gilt);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gm-wall-defs dt i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.gm-wall-defs dt .still { background: var(--still); }
.gm-wall-defs dt .auth { background: var(--auth); }
.gm-wall-defs dt .facade { background: var(--facade); }
.gm-wall-defs dt .buried { background: var(--buried); }
.gm-wall-defs dt .banished { background: var(--banished); }
.gm-wall-defs dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 36ch;
}

.gm-plaque-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}
.gm-nominate {
  border-left: 1px solid rgba(184, 149, 90, 0.28);
  padding-left: 28px;
}
.gm-nominate .gm-kicker { margin-bottom: 12px; }
.gm-nominate-meta {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted) !important;
  line-height: 1.5 !important;
}

.gm-rules {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 58ch;
}
.gm-rules li {
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
}
.gm-rules li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--frame);
}

@media (max-width: 820px) {
  .gm-wall-defs,
  .gm-plaque-split {
    grid-template-columns: 1fr;
  }
  .gm-nominate {
    border-left: none;
    border-top: 1px solid rgba(184, 149, 90, 0.28);
    padding-left: 0;
    padding-top: 22px;
  }
  .gm-plaque-panel { padding: 22px 20px 24px; }
}

/* —— Nominate form —— */
.gm-nominate-main {
  padding: 48px 0 40px;
  animation: gm-rise 0.8s ease both;
}
.gm-nominate-hero {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 36px;
}
.gm-nominate-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 18px;
}
.gm-nominate-hero .gm-lede {
  margin: 0 auto;
}

.gm-form {
  max-width: 34rem;
  margin: 0 auto;
  border: 1px solid rgba(184, 149, 90, 0.28);
  background: linear-gradient(180deg, rgba(28, 24, 20, 0.92), rgba(20, 17, 14, 0.88));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.gm-form::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(228, 199, 138, 0.12);
  pointer-events: none;
}
.gm-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.gm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.gm-field span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gilt);
}
.gm-optional {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}
.gm-field em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
}
.gm-field input,
.gm-field textarea {
  appearance: none;
  width: 100%;
  background: rgba(12, 11, 9, 0.65);
  border: 1px solid rgba(184, 149, 90, 0.35);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  padding: 10px 12px;
  border-radius: 0;
}
.gm-field input:focus,
.gm-field textarea:focus {
  outline: none;
  border-color: var(--gilt);
}
.gm-field textarea { resize: vertical; min-height: 6rem; }
.gm-form-stamp {
  margin: 4px 0 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--stamp);
  position: relative;
  z-index: 1;
}
.gm-turnstile,
.cf-turnstile {
  position: relative;
  z-index: 1;
  min-height: 65px;
}
.gm-form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.gm-submit {
  appearance: none;
  border: 1px solid var(--frame);
  background: rgba(184, 149, 90, 0.12);
  color: var(--gilt);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 16px;
  cursor: pointer;
}
.gm-submit:hover { background: rgba(184, 149, 90, 0.22); color: #fff6dd; }
.gm-submit:disabled { opacity: 0.5; cursor: wait; }
.gm-form-status {
  margin: 0;
  min-height: 1.3em;
  font-size: 0.9rem;
  color: var(--muted);
}
.gm-form-status[data-kind="ok"] { color: var(--still); }
.gm-form-status[data-kind="err"] { color: var(--stamp); }

.gm-hunt-meta {
  text-align: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 24px;
}
.gm-hunt-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 22px;
  padding-bottom: 40px;
}
.gm-hunt-card {
  background: var(--paper);
  border: 8px solid var(--frame-dim);
  box-shadow: 0 0 0 1px var(--frame);
  padding: 18px 16px 14px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.gm-hunt-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0 0 4px;
}
.gm-hunt-err { color: var(--stamp); font-size: 0.85rem; }

.gm-curate-strong {
  box-shadow: 0 0 0 1px var(--frame), inset 0 0 0 2px color-mix(in srgb, var(--still) 55%, transparent);
}
.gm-curate-consider {
  box-shadow: 0 0 0 1px var(--frame), inset 0 0 0 2px color-mix(in srgb, var(--muted) 40%, transparent);
}
.gm-curate-seed {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gm-curate-cmd {
  margin-top: auto;
  padding-top: 12px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.gm-curate-cmd code {
  flex: 1 1 auto;
  word-break: break-all;
  color: var(--ink);
}
.gm-curate-copy {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--frame);
  color: var(--ink);
  padding: 4px 10px;
  cursor: pointer;
}
.gm-curate-copy:hover {
  border-color: var(--ink);
}

@keyframes gm-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes gm-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes gm-hang {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .gm-masthead, .gm-hero, .gm-legend, .gm-plaque,
  .gm-hall.is-hung .gm-frame {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
