/* Quiet Counter — unified lock 2026-08-22. Staging only. Newsreader + Figtree only. */
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader-VF.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-VF.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --slip: #EAE7E0;
  --lamp: #F6F3EC;
  --night: #1B1916;
  --ink: #191614;
  --quiet: #6F6A62;
  --brass: #9C7A45;
  --copper: #8A4E36;
  --iron: #3F3A35;
  --rule: #C5BFB4;
  --rule-dk: #34302A;
  --foot-mute: #A09A90;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  background: var(--slip);
}

a { color: inherit; }

.kicker {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

h1, .wordmark, .serif {
  font-family: "Newsreader", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 { margin: 0 0 0.75rem; font-size: clamp(1.85rem, 4vw, 2.6rem); line-height: 1.15; }
h2 { font-family: "Newsreader", "Times New Roman", serif; font-weight: 600; font-size: clamp(1.4rem, 3vw, 1.85rem); margin: 0 0 0.75rem; }
p { margin: 0 0 1rem; color: var(--iron); }
.mute { color: var(--quiet); }

/* Gate + refusal: ticket on a dark counter */
body.gate,
body.refuse {
  background: var(--night);
  color: var(--lamp);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.gate::before,
body.refuse::before {
  content: "";
  display: block;
  height: 8px;
  background: var(--brass);
}

.ticket-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem 3rem;
}

.ticket {
  width: min(52rem, 100%);
  background: var(--slip);
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 2.4rem 2rem 2rem;
  position: relative;
}

.ticket::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 6px;
  background: var(--brass);
}

.ticket .host {
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--copper);
  margin: 0.4rem 0 0.55rem;
}

.ticket .wordmark {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.7rem;
}

.ticket .rail {
  width: 5.5rem;
  height: 2px;
  background: var(--brass);
  margin: 0 auto 1.1rem;
}

.ticket h1 { text-align: center; }
.ticket p { text-align: center; max-width: 38rem; margin-left: auto; margin-right: auto; }

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin: 1.6rem 0 1.4rem;
}

.btn,
.btn-ghost {
  display: inline-block;
  text-decoration: none;
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.78rem 1.15rem;
  border-radius: 2px;
}

.btn {
  background: var(--copper);
  color: #fff;
  border: 1px solid var(--copper);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule-dk);
}

.ticket .foot-note {
  text-align: center;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
}

.ticket .foot-note p { margin: 0 0 0.35rem; }
.ticket .foot-note .owned { color: var(--ink); font-weight: 500; }

/* Guide */
.site-head {
  background: var(--lamp);
  border-bottom: 4px solid var(--brass);
}

.site-head .inner,
.hero .inner,
.band .inner,
.brands .inner,
.split .inner,
.site-foot .inner {
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-head .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.site-head .wordmark {
  font-size: 1.45rem;
  text-decoration: none;
  color: var(--ink);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  text-decoration: none;
  color: var(--quiet);
  font-size: 0.92rem;
  font-weight: 500;
}

.chip-21 {
  background: var(--copper);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  text-decoration: none;
}

.hero { padding: 2.6rem 0 2.4rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(16rem, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3rem); }
.hero .hostline { color: var(--quiet); font-weight: 500; font-size: 0.95rem; }

.aside {
  background: var(--lamp);
  border: 1px solid var(--rule);
  padding: 1.25rem 1.2rem 1.1rem;
  position: relative;
}
.aside::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--brass);
}
.aside ul { margin: 0.4rem 0 0; padding: 0; list-style: none; }
.aside li { padding: 0.35rem 0 0.35rem 1rem; position: relative; color: var(--ink); }
.aside li::before { content: "·"; position: absolute; left: 0; color: var(--brass); font-family: "Newsreader", serif; font-size: 1.2rem; top: 0.1rem; }

.band { background: var(--lamp); border-top: 1px solid var(--rule); padding: 2.4rem 0 2.6rem; }
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; }
.step { display: grid; grid-template-columns: 2rem 1fr; gap: 0.7rem; }
.step .n { font-family: "Newsreader", serif; font-weight: 600; font-size: 1.5rem; color: var(--brass); line-height: 1.1; }
.step h3 { margin: 0 0 0.25rem; font-size: 1.05rem; font-weight: 500; }
.step p { margin: 0; font-size: 0.98rem; }

.brands { padding: 2.4rem 0; }
.brand {
  background: var(--lamp);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--copper);
  padding: 1.3rem 1.3rem 1.2rem;
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.brand h3 { margin: 0 0 0.2rem; font-family: "Newsreader", serif; font-weight: 600; font-size: 1.45rem; }
.brand .kind { color: var(--copper); font-weight: 500; font-size: 0.92rem; margin: 0 0 0.45rem; }
.brand p { margin: 0; }
.out-label {
  display: inline-block;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.55rem;
}

.split { padding: 0 0 2.8rem; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.card { background: var(--lamp); border: 1px solid var(--rule); padding: 1.2rem 1.2rem 1rem; }
.card ul { margin: 0.3rem 0 0; padding: 0 0 0 1.1rem; color: var(--ink); }
.card li { margin: 0.3rem 0; }

.site-foot {
  background: var(--night);
  color: var(--lamp);
  padding: 2.4rem 0 2.2rem;
}
.site-foot .kicker { color: var(--brass); }
.site-foot .wordmark { color: var(--lamp); font-size: 1.6rem; margin: 0 0 0.4rem; }
.site-foot a { color: var(--lamp); }
.site-foot p { color: var(--foot-mute); }
.site-foot .owned { color: var(--lamp); font-weight: 500; }
.site-foot .rule { height: 1px; background: #38322C; margin: 1.1rem 0 0.9rem; }

@media (max-width: 840px) {
  .hero-grid, .steps, .split-grid, .brand { grid-template-columns: 1fr; }
  .site-head .inner { flex-wrap: wrap; padding: 0.7rem 0; }
  .ticket { padding: 1.8rem 1.2rem 1.4rem; }
}
