/* ==========================================================================
   Pet-Friendly Is Broken
   Design language taken from the wordmark: a slab of red stone that has
   fractured. Monuments carry the arguments, limestone carries the reading,
   fracture lines replace rules, and red appears only where there is a wound.
   ========================================================================== */

:root {
  --void:      #0b0b0d;
  --stone:     #141417;
  --limestone: #f6f4ee;
  --plate:     #faf8f4;
  --ink:       #17150f;
  --ink-soft:  #4b4740;
  --ash:       #8b867c;
  --ash-dim:   #b3ada2;

  --red:       #b0241b;
  --red-hot:   #d4382c;
  --red-deep:  #6f0f0a;

  --display: 'Oswald', 'IBM Plex Sans Condensed', Impact, sans-serif;
  --body:    'Spectral', Georgia, 'Times New Roman', serif;
  --mono:    'IBM Plex Mono', 'SF Mono', Menlo, monospace;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='0.34'/%3E%3C/svg%3E");

  --measure: 40rem;
}

* { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background-color: var(--limestone);
  background-image: var(--grain);
  background-blend-mode: multiply;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 62rem;
  margin: 0 auto;
  padding: 0 1.75rem;
}

main.wrap > section > *,
main.wrap > p, main.wrap > h1, main.wrap > h2, main.wrap > h3 { max-width: var(--measure); }
main.wrap > section > ul.sins, main.wrap > section > .doors, main.wrap > section > .stings,
main.wrap > ul.sins, main.wrap > .doors, main.wrap > .stings { max-width: none; }

/* ==========================================================================
   Masthead
   ========================================================================== */

.topbar {
  position: sticky;
  top: 0;
  background-color: var(--void);
  background-image: var(--grain);
  background-blend-mode: overlay;
  position: relative;
  z-index: 2;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.mast > a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
}

.mast img {
  height: 1.3rem;
  width: auto;
  display: block;
  transform: translateY(0.2rem);
}

.mast .verdict {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #fff;
  white-space: nowrap;
}

.topnav {
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  justify-content: flex-end;
}

.topnav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}

.topnav a:hover { color: #fff; border-bottom-color: var(--red-hot); }

/* ==========================================================================
   The monument
   ========================================================================== */

.band {
  position: relative;
  background-color: var(--stone);
  background-image:
    radial-gradient(120% 140% at 50% -20%, rgba(255,255,255,0.11), rgba(255,255,255,0) 55%),
    radial-gradient(90% 80% at 50% 120%, rgba(176,36,27,0.16), rgba(0,0,0,0) 70%),
    var(--grain);
  background-blend-mode: normal, normal, overlay;
  color: #fff;
  padding: clamp(3.2rem, 7vw, 5.4rem) 0 clamp(3rem, 6vw, 4.6rem);
  overflow: hidden;
}

.band .wrap { position: relative; z-index: 1; }

.band .k {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin: 0 0 1.9rem;
}

/* the wordmark lockup: the slab, then the verdict */
.lockup { margin: 0; }

.lockup img {
  display: block;
  width: min(100%, 44rem);
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.6));
}

.lockup .verdict {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(3rem, 10.5vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: -0.012em;
  color: #fff;
  margin-top: 0.7rem;
}

.band .sub {
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
  line-height: 1.62;
  color: rgba(255,255,255,0.74);
  margin: 2.2rem 0 0;
  max-width: 38rem;
  text-wrap: pretty;
  border-left: 2px solid var(--red);
  padding-left: 1.15rem;
}

/* section fronts */
.band.compact { padding: clamp(2.6rem, 5vw, 3.8rem) 0 clamp(2.4rem, 4vw, 3.2rem); }

.band.compact h1 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  color: #fff;
  margin: 0;
  max-width: none;
}

/* never split a hyphenated name across lines */
.nb { white-space: nowrap; }

.band.compact .sub { font-size: 1.06rem; margin-top: 1.5rem; }

/* ==========================================================================
   Type on the document
   ========================================================================== */

main.wrap { padding-top: 3.2rem; padding-bottom: 1rem; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--ink);
}

main h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin: 0 0 1.1rem; }

h2 {
  font-size: 1.6rem;
  margin: 3rem 0 0.9rem;
}

h3 { font-size: 1.1rem; margin: 2rem 0 0.5rem; letter-spacing: 0.03em; }

p { margin: 0 0 1.3em; text-wrap: pretty; }

a { color: var(--red-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: rgba(111,15,10,0.35); }
a:hover { text-decoration-color: var(--red); }

strong { font-weight: 600; }

.kicker {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.6rem;
}

.standfirst {
  font-size: 1.34rem;
  line-height: 1.58;
  color: var(--ink-soft);
  margin: 0 0 2.4rem;
  text-wrap: pretty;
}

/* ==========================================================================
   Page rhythm (full-bleed sections)
   ========================================================================== */

.block { padding: clamp(3rem, 6vw, 4.6rem) 0; }

.shead { margin-bottom: 2.2rem; }
.shead h2 { margin: 0.35rem 0 0; font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.06; }

.payoff {
  font-size: 1.28rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44rem;
  margin: 2.4rem 0 0;
  padding-left: 1.15rem;
  border-left: 3px solid var(--red);
  text-wrap: pretty;
}

/* the seven, previewed on the dark band */
.sinband h2 { color: #fff; margin: 0.35rem 0 0; font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.04; }

.sinlist {
  list-style: none;
  margin: 2.4rem 0 2.6rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.15rem 3rem;
  max-width: 40rem;
}

.sinlist li {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.88);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.sinlist .n {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--red-hot);
  margin-right: 0.8rem;
}

.btnrow { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.cta.ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
}

.cta.ghost:hover { background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 2px #fff; }

/* two supporting destinations */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.card {
  display: block;
  background: var(--plate);
  border: 1px solid rgba(23,21,15,0.12);
  border-top: 3px solid var(--red);
  padding: 1.8rem 1.8rem 1.6rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s, box-shadow .15s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -20px rgba(23,21,15,0.55);
}

.card .kicker { margin-bottom: 0.4rem; }
.card h3 { margin: 0 0 0.6rem; font-size: 1.3rem; }
.card p { font-size: 1rem; line-height: 1.6; margin: 0 0 1.1rem; color: var(--ink-soft); }

.card .go {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-deep);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

.card:hover .go { color: var(--red); }

/* ==========================================================================
   Components
   ========================================================================== */

.rule {
  border: none;
  border-top: 1px solid rgba(23,21,15,0.14);
  margin: 3rem 0;
}

/* the evidence plate */
.fact {
  background: var(--plate);
  border: 1px solid rgba(23,21,15,0.1);
  border-left: 4px solid var(--red);
  padding: 1.5rem 1.6rem 1.3rem;
  margin: 2.2rem 0;
  box-shadow: 0 12px 26px -18px rgba(23,21,15,0.55);
  max-width: var(--measure);
}

.fact p {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.42;
  color: var(--ink);
  text-transform: none;
}

.fact .src {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 0.8rem;
}

/* the stings: six recognitions, two rows of three */
.stings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(23,21,15,0.13);
  border: 1px solid rgba(23,21,15,0.13);
  margin: 0 0 2.4rem;
}

.sting {
  background: var(--plate);
  padding: 1.5rem 1.5rem 1.6rem;
  position: relative;
}

.sting::before {
  content: "";
  position: absolute;
  left: 1.5rem; top: 0;
  width: 2.2rem; height: 3px;
  background: var(--red);
}

.sting h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  color: var(--red-deep);
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

.sting p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  text-wrap: pretty;
}

.afterstings { font-size: 1.14rem; }

/* the sins ledger */
.wrap.sinspage { max-width: 84rem; }

.sins { list-style: none; margin: clamp(2.4rem, 4vw, 3.4rem) 0 0; padding: 0; }

.sins li { border-top: 1px solid rgba(23,21,15,0.16); }

.sins li:first-child { border-top: 0; }

.sins li:hover { background: rgba(176,36,27,0.06); }

.sinrow {
  display: grid;
  grid-template-columns: clamp(4rem, 6vw, 6rem) minmax(0, 25rem) minmax(0, 1fr);
  gap: 0 clamp(1.4rem, 2.8vw, 3rem);
  align-items: start;
  padding: clamp(1.9rem, 3.2vw, 2.9rem) 0;
  color: inherit;
  text-decoration: none;
}

a.sinrow { cursor: pointer; }
a.sinrow:focus-visible { outline: 2px solid var(--red); outline-offset: -4px; }

.sins .n {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.8rem, 4.6vw, 4.4rem);
  line-height: 0.8;
  color: var(--red);
  text-align: right;
}

.sins .t {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2.7vw, 2.5rem);
  line-height: 1.02;
  color: var(--ink);
  margin: 0 0 0.55rem;
  text-wrap: balance;
}

.sins li:hover .t { color: var(--red); }

/* the phrase real guests use: the loudest line in the entry */
.callit {
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.32vw, 1.2rem);
  line-height: 1.46;
  color: var(--red-deep);
  margin: 0.65rem 0 0;
  padding-left: 0.9rem;
  border-left: 3px solid var(--red);
  text-wrap: balance;
}

.sins .d {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.68;
  margin: 0;
  max-width: none;
  text-wrap: pretty;
}

.sbody { padding-top: 0.2rem; }

.sins .more {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  margin-top: 1.3rem;
  padding: 0.62rem 1.1rem;
}


@media (max-width: 1000px) {
  .sinrow { grid-template-columns: clamp(4rem, 6vw, 6rem) minmax(0, 1fr); }
  .sbody { grid-column: 2; padding-top: 1rem; }
}

@media (max-width: 720px) {
  .sinrow { grid-template-columns: 3rem 1fr; gap: 0 1rem; }
  .sbody { grid-column: 2; }
  .sins .n { font-size: 2.1rem; }
  .sins .t { font-size: 1.35rem; }
  .callit { font-size: 1.05rem; padding-left: 0.8rem; }
}

/* stamped call to action */
.cta {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--red);
  padding: 1rem 1.8rem;
  margin-top: 0.6rem;
  transition: background .15s, transform .15s;
}

.cta:hover { background: var(--red-hot); transform: translateY(-1px); }

/* doors between the two audiences */
.hoteldoor, .twin {
  background: var(--plate);
  border: 1px solid rgba(23,21,15,0.12);
  border-top: 3px solid var(--red);
  padding: 1.7rem 1.9rem;
  max-width: var(--measure);
}

.sinspage .twin {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}

.sinspage .twin p { font-size: 1.08rem; }

.sinspage .twin a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

.hoteldoor { margin: 3.4rem 0 0; }
.twin { margin: 3.4rem 0; }
.hoteldoor p, .twin p { margin: 0; font-size: 1.02rem; line-height: 1.6; }

.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin: 2rem 0 0.4rem; }

.door {
  background: var(--plate);
  border: 1px solid rgba(23,21,15,0.12);
  border-top: 3px solid var(--red);
  padding: 1.6rem;
}

.door h3 { margin: 0 0 0.6rem; }
.door p { font-size: 1rem; margin-bottom: 1rem; }

.door .go {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red-deep);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

/* questions */
.qa {
  padding: 1.9rem 0 0.3rem;
  border-top: 1px solid rgba(23,21,15,0.12);
  margin-top: 1.4rem;
  max-width: var(--measure);
}

.qa h2 { margin: 0 0 0.7rem; padding-top: 0; background: none; font-size: 1.32rem; }

ul.plain { padding-left: 0; list-style: none; max-width: var(--measure); }

ul.plain li { margin-bottom: 0.95em; padding-left: 1.5rem; position: relative; text-wrap: pretty; }

ul.plain li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 0.5rem; height: 0.5rem;
  background: var(--red);
  transform: rotate(45deg);
}

/* sources */
.sources {
  margin-top: 4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(23,21,15,0.14);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--ash);
  max-width: 46rem;
}

.sources h2 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--ash);
  margin: 0 0 1rem;
  padding-top: 0;
  background: none;
}

.sources ol { padding-left: 1.4rem; margin: 0; }
.sources li { margin-bottom: 0.6em; }
.sources a { color: var(--ash); text-decoration-color: rgba(139,134,124,0.4); overflow-wrap: anywhere; }
.sources a:hover { color: var(--red); }

/* ==========================================================================
   Footer: back to stone
   ========================================================================== */

footer {
  margin-top: 5rem;
  background-color: var(--void);
  background-image: var(--grain);
  background-blend-mode: overlay;
  color: var(--ash-dim);
}

footer .wrap {
  padding-top: 2.4rem;
  padding-bottom: 2.8rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  line-height: 2;
}

footer a { color: var(--ash-dim); text-decoration-color: rgba(179,173,162,0.35); }
footer a:hover { color: #fff; }

/* ==========================================================================
   Small screens
   ========================================================================== */

@media (max-width: 720px) {
  body { font-size: 1.06rem; }
  .doors { grid-template-columns: 1fr; }
  .topbar .wrap { flex-wrap: wrap; gap: 0.55rem 1rem; padding-bottom: 0.85rem; }
  .topnav { gap: 1.1rem; font-size: 0.74rem; }
  .band .sub { max-width: none; }
  .sins li { grid-template-columns: 3rem 1fr; gap: 0 1rem; }

.sins .n { font-size: 1.9rem; }
  .sins .t { font-size: 1.14rem; }
  .standfirst { font-size: 1.16rem; }
  .stings { grid-template-columns: 1fr; }
  .sting p { font-size: 0.98rem; }
  .lockup .verdict { font-size: clamp(2.6rem, 13vw, 4rem); }
  .sinlist { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .btnrow .cta { width: 100%; text-align: center; }
}


/* ==========================================================================
   Homepage slabs
   ========================================================================== */

.poster {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 0.98;
  margin: 0.4rem 0 0;
}

.poster.light { color: #fff; }

/* -- slab 2: the charge sheet -- */
.chargesheet { padding: clamp(3.6rem, 7vw, 6rem) 0 clamp(3.2rem, 6vw, 5rem); }
.chargesheet .wrap { max-width: 84rem; }
.chargesheet .shead h2 { font-size: clamp(2rem, 3.6vw, 3.3rem); }

.tally {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.14;
  font-size: clamp(1.3rem, 2.45vw, 2.1rem);
  color: var(--ink);
  margin: 2.4rem 0 0;
  padding: 0.2rem 0 0.2rem 1.2rem;
  border-left: 4px solid var(--red);
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .tally { white-space: normal; text-wrap: pretty; }
}



.charges {
  list-style: none;
  margin: clamp(2.4rem, 5vw, 3.6rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23,21,15,0.18);
  border-left: 1px solid rgba(23,21,15,0.18);
}

.charge {
  display: block;
  padding: clamp(1.8rem, 2.8vw, 2.8rem) clamp(1.6rem, 2.4vw, 2.6rem) clamp(2.2rem, 3.4vw, 3.2rem);
  border-right: 1px solid rgba(23,21,15,0.18);
  border-bottom: 1px solid rgba(23,21,15,0.18);
}

.ctick {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.cbox {
  display: block;
  width: clamp(1.7rem, 2.2vw, 2.2rem);
  height: clamp(1.7rem, 2.2vw, 2.2rem);
  border: 2px solid var(--red);
  margin-bottom: 1.15rem;
  position: relative;
  transition: background-color .12s ease;
}

.cbox::after {
  content: "";
  position: absolute;
  left: 50%; top: 46%;
  width: 34%; height: 62%;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: translate(-50%, -50%) rotate(45deg) scale(0.4);
  opacity: 0;
  transition: opacity .12s ease, transform .12s ease;
}

.ctick:hover .cbox { background: rgba(176,36,27,0.12); }

.ctick[aria-pressed="true"] .cbox { background: var(--red); }
.ctick[aria-pressed="true"] .cbox::after { opacity: 1; transform: translate(-50%, -50%) rotate(45deg) scale(1); }

.ctick:focus-visible { outline: 2px solid var(--red); outline-offset: 6px; }

.ctick[aria-pressed="true"] .cbody h3 { color: var(--red-deep); }

.cbody h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.95rem);
  margin: 0 0 0.6rem;
  line-height: 1.02;
}

.cbody p {
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 1000px) and (min-width: 721px) {
  .charges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* -- slab 3: the verdict -- */
.verdictslab {
  background: var(--red);
  background-image: radial-gradient(120% 160% at 50% -30%, rgba(255,255,255,0.12), rgba(255,255,255,0) 55%), var(--grain);
  background-blend-mode: normal, overlay;
  color: #fff;
  padding: clamp(3.6rem, 8vw, 6.5rem) 0;
}

.verdictslab .vk {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin: 0 0 1.6rem;
}

.verdictslab .vline {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  margin: 0;
  max-width: none;
}

.verdictslab .vsub {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  margin: 1.6rem 0 0;
}

/* -- slab 4: the monument -- */
.monument { padding: clamp(3.6rem, 7vw, 6rem) 0; }
.monument .poster { font-size: clamp(2.8rem, 6.6vw, 5.6rem); }
.monument .sub { margin-top: 1.8rem; }

.seven { list-style: none; margin: clamp(2.2rem, 4vw, 3.4rem) 0 clamp(2.4rem, 4vw, 3.4rem); padding: 0; }

.seven li { border-bottom: 1px solid rgba(255,255,255,0.12); }

.sevenlink {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(0.55rem, 1.2vw, 0.9rem) 0;
  text-decoration: none;
  cursor: pointer;
}

.sevenlink:hover .s { color: var(--red-hot); }
.sevenlink:focus-visible { outline: 2px solid var(--red-hot); outline-offset: 4px; }

.seven li:first-child { border-top: 1px solid rgba(255,255,255,0.12); }


.seven .n {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--red-hot);
  min-width: 2.6ch;
}

.seven .s {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  color: #fff;
  letter-spacing: 0.005em;
}

.cta.big {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  padding: 1.35rem 2.8rem;
}

/* -- slab 5: the voices (a single band, nothing else) -- */
.ticker {
  display: block;
  margin: 0;
  overflow: hidden;
  background-color: var(--red);
  background-image: var(--grain);
  background-blend-mode: overlay;
  text-decoration: none;
  transition: background-color .18s ease;
}

.ticker:hover { background-color: var(--red-hot); }
.ticker:focus-visible { outline: 3px solid var(--ink); outline-offset: -3px; }

.tk-track {
  display: flex;
  width: max-content;
  animation: tk 58s linear infinite;
}

.ticker:hover .tk-track { animation-play-state: paused; }

.tk-set { display: flex; align-items: center; padding: 0.95rem 0; }

.tk-set > span {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.35vw, 1.18rem);
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
}

.tk-set > span::after {
  content: "";
  display: inline-block;
  width: 0.42em; height: 0.42em;
  background: rgba(255,255,255,0.72);
  transform: rotate(45deg) translateY(-0.14em);
  margin: 0 1.5rem;
}

@keyframes tk { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) { .tk-track { animation: none; } }

/* -- slab 6: the closing demand -- */
.bigfoot {
  background-color: var(--stone);
  background-image: radial-gradient(120% 140% at 50% -20%, rgba(255,255,255,0.08), rgba(255,255,255,0) 55%), var(--grain);
  background-blend-mode: normal, overlay;
  margin-top: 0;
  padding: clamp(3.6rem, 7vw, 6rem) 0 2.6rem;
}

.bigfoot .fstate {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  color: #fff;
  margin: 0 0 2.4rem;
}

.bigfoot .fnav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 1.6rem;
}

.bigfoot .fnav a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

.bigfoot .fnav a:hover { color: var(--red-hot); }

.bigfoot .fsmall {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ash);
  margin: 0;
}

/* scroll-in */
.pre { opacity: 0; transform: translateY(16px); }
.in { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s ease; }

@media (max-width: 720px) {
  .charges { grid-template-columns: 1fr; }
  .cbox { margin-bottom: 0.9rem; }
  .seven .s { font-size: 1.35rem; }
  .cta.big { width: 100%; text-align: center; }
  .bigfoot .fnav { gap: 0.9rem 1.4rem; }
}


/* ==========================================================================
   Site footer (compact, one across the whole site)
   ========================================================================== */

.sitefoot {
  background-color: var(--void);
  background-image: var(--grain);
  background-blend-mode: overlay;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 0;
  padding: 2.4rem 0 2.2rem;
}

.sitefoot .frow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.fmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
}

.fmark img { height: 1.05rem; width: auto; display: block; transform: translateY(0.16rem); }

.fmark span {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.sitefoot .fnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
}

.sitefoot .fnav a {
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.sitefoot .fnav a:hover { color: var(--red-hot); }

.sitefoot .flegal {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--ash);
  margin: 1rem 0 0;
}

@media (max-width: 720px) {
  .sitefoot .frow { flex-direction: column; align-items: flex-start; }
}


/* touch: nav links get real tap area */
@media (max-width: 720px) {
  .topnav a, .sitefoot .fnav a { padding-top: 0.45rem; padding-bottom: 0.45rem; }
  .mast > a, .fmark { padding: 0.3rem 0; }
}


/* perspective switch (v10): same seven sins, two audiences */
.switch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 0.6rem;
}

.swlabel {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-right: 0.7rem;
}

.swopt {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.62rem 1.2rem;
  border: 1px solid rgba(23,21,15,0.28);
  transition: background-color .14s ease, color .14s ease, border-color .14s ease;
}

.swopt:hover { border-color: var(--red); color: var(--red); }

.swopt.is-on {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  cursor: default;
}

.swopt.is-on:hover { color: #fff; }

/* stamped call to action */
.cta {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--red);
  padding: 1rem 1.8rem;
  margin-top: 0.6rem;
  transition: background .15s, transform .15s;
}

.cta:hover { background: var(--red-hot); transform: translateY(-1px); }

/* doors between the two audiences */
.hoteldoor, .twin {
  background: var(--plate);
  border: 1px solid rgba(23,21,15,0.12);
  border-top: 3px solid var(--red);
  padding: 1.7rem 1.9rem;
  max-width: var(--measure);
}

.sinspage .twin {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}

.sinspage .twin p { font-size: 1.08rem; }

.sinspage .twin a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

.hoteldoor { margin: 3.4rem 0 0; }
.twin { margin: 3.4rem 0; }
.hoteldoor p, .twin p { margin: 0; font-size: 1.02rem; line-height: 1.6; }

.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin: 2rem 0 0.4rem; }

.door {
  background: var(--plate);
  border: 1px solid rgba(23,21,15,0.12);
  border-top: 3px solid var(--red);
  padding: 1.6rem;
}

.door h3 { margin: 0 0 0.6rem; }
.door p { font-size: 1rem; margin-bottom: 1rem; }

.door .go {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red-deep);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

/* questions */
.qa {
  padding: 1.9rem 0 0.3rem;
  border-top: 1px solid rgba(23,21,15,0.12);
  margin-top: 1.4rem;
  max-width: var(--measure);
}

.qa h2 { margin: 0 0 0.7rem; padding-top: 0; background: none; font-size: 1.32rem; }

ul.plain { padding-left: 0; list-style: none; max-width: var(--measure); }

ul.plain li { margin-bottom: 0.95em; padding-left: 1.5rem; position: relative; text-wrap: pretty; }

ul.plain li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 0.5rem; height: 0.5rem;
  background: var(--red);
  transform: rotate(45deg);
}

/* sources */
.sources {
  margin-top: 4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(23,21,15,0.14);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--ash);
  max-width: 46rem;
}

.sources h2 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--ash);
  margin: 0 0 1rem;
  padding-top: 0;
  background: none;
}

.sources ol { padding-left: 1.4rem; margin: 0; }
.sources li { margin-bottom: 0.6em; }
.sources a { color: var(--ash); text-decoration-color: rgba(139,134,124,0.4); overflow-wrap: anywhere; }
.sources a:hover { color: var(--red); }

/* ==========================================================================
   Footer: back to stone
   ========================================================================== */

footer {
  margin-top: 5rem;
  background-color: var(--void);
  background-image: var(--grain);
  background-blend-mode: overlay;
  color: var(--ash-dim);
}

footer .wrap {
  padding-top: 2.4rem;
  padding-bottom: 2.8rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  line-height: 2;
}

footer a { color: var(--ash-dim); text-decoration-color: rgba(179,173,162,0.35); }
footer a:hover { color: #fff; }

/* ==========================================================================
   Small screens
   ========================================================================== */

@media (max-width: 720px) {
  body { font-size: 1.06rem; }
  .doors { grid-template-columns: 1fr; }
  .topbar .wrap { flex-wrap: wrap; gap: 0.55rem 1rem; padding-bottom: 0.85rem; }
  .topnav { gap: 1.1rem; font-size: 0.74rem; }
  .band .sub { max-width: none; }
  .sins li { grid-template-columns: 3rem 1fr; gap: 0 1rem; }

.sins .n { font-size: 1.9rem; }
  .sins .t { font-size: 1.14rem; }
  .standfirst { font-size: 1.16rem; }
  .stings { grid-template-columns: 1fr; }
  .sting p { font-size: 0.98rem; }
  .lockup .verdict { font-size: clamp(2.6rem, 13vw, 4rem); }
  .sinlist { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .btnrow .cta { width: 100%; text-align: center; }
}


/* ==========================================================================
   Homepage slabs
   ========================================================================== */

.poster {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 0.98;
  margin: 0.4rem 0 0;
}

.poster.light { color: #fff; }

/* -- slab 2: the charge sheet -- */
.chargesheet { padding: clamp(3.6rem, 7vw, 6rem) 0 clamp(3.2rem, 6vw, 5rem); }
.chargesheet .wrap { max-width: 84rem; }
.chargesheet .shead h2 { font-size: clamp(2rem, 3.6vw, 3.3rem); }

.tally {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.14;
  font-size: clamp(1.3rem, 2.45vw, 2.1rem);
  color: var(--ink);
  margin: 2.4rem 0 0;
  padding: 0.2rem 0 0.2rem 1.2rem;
  border-left: 4px solid var(--red);
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .tally { white-space: normal; text-wrap: pretty; }
}



.charges {
  list-style: none;
  margin: clamp(2.4rem, 5vw, 3.6rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23,21,15,0.18);
  border-left: 1px solid rgba(23,21,15,0.18);
}

.charge {
  display: block;
  padding: clamp(1.8rem, 2.8vw, 2.8rem) clamp(1.6rem, 2.4vw, 2.6rem) clamp(2.2rem, 3.4vw, 3.2rem);
  border-right: 1px solid rgba(23,21,15,0.18);
  border-bottom: 1px solid rgba(23,21,15,0.18);
}

.ctick {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.cbox {
  display: block;
  width: clamp(1.7rem, 2.2vw, 2.2rem);
  height: clamp(1.7rem, 2.2vw, 2.2rem);
  border: 2px solid var(--red);
  margin-bottom: 1.15rem;
  position: relative;
  transition: background-color .12s ease;
}

.cbox::after {
  content: "";
  position: absolute;
  left: 50%; top: 46%;
  width: 34%; height: 62%;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: translate(-50%, -50%) rotate(45deg) scale(0.4);
  opacity: 0;
  transition: opacity .12s ease, transform .12s ease;
}

.ctick:hover .cbox { background: rgba(176,36,27,0.12); }

.ctick[aria-pressed="true"] .cbox { background: var(--red); }
.ctick[aria-pressed="true"] .cbox::after { opacity: 1; transform: translate(-50%, -50%) rotate(45deg) scale(1); }

.ctick:focus-visible { outline: 2px solid var(--red); outline-offset: 6px; }

.ctick[aria-pressed="true"] .cbody h3 { color: var(--red-deep); }

.cbody h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.95rem);
  margin: 0 0 0.6rem;
  line-height: 1.02;
}

.cbody p {
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 1000px) and (min-width: 721px) {
  .charges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* -- slab 3: the verdict -- */
.verdictslab {
  background: var(--red);
  background-image: radial-gradient(120% 160% at 50% -30%, rgba(255,255,255,0.12), rgba(255,255,255,0) 55%), var(--grain);
  background-blend-mode: normal, overlay;
  color: #fff;
  padding: clamp(3.6rem, 8vw, 6.5rem) 0;
}

.verdictslab .vk {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin: 0 0 1.6rem;
}

.verdictslab .vline {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  margin: 0;
  max-width: none;
}

.verdictslab .vsub {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  margin: 1.6rem 0 0;
}

/* -- slab 4: the monument -- */
.monument { padding: clamp(3.6rem, 7vw, 6rem) 0; }
.monument .poster { font-size: clamp(2.8rem, 6.6vw, 5.6rem); }
.monument .sub { margin-top: 1.8rem; }

.seven { list-style: none; margin: clamp(2.2rem, 4vw, 3.4rem) 0 clamp(2.4rem, 4vw, 3.4rem); padding: 0; }

.seven li { border-bottom: 1px solid rgba(255,255,255,0.12); }

.sevenlink {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(0.55rem, 1.2vw, 0.9rem) 0;
  text-decoration: none;
  cursor: pointer;
}

.sevenlink:hover .s { color: var(--red-hot); }
.sevenlink:focus-visible { outline: 2px solid var(--red-hot); outline-offset: 4px; }

.seven li:first-child { border-top: 1px solid rgba(255,255,255,0.12); }


.seven .n {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--red-hot);
  min-width: 2.6ch;
}

.seven .s {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  color: #fff;
  letter-spacing: 0.005em;
}

.cta.big {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  padding: 1.35rem 2.8rem;
}

/* -- slab 5: the voices (a single band, nothing else) -- */
.ticker {
  display: block;
  margin: 0;
  overflow: hidden;
  background-color: var(--red);
  background-image: var(--grain);
  background-blend-mode: overlay;
  text-decoration: none;
  transition: background-color .18s ease;
}

.ticker:hover { background-color: var(--red-hot); }
.ticker:focus-visible { outline: 3px solid var(--ink); outline-offset: -3px; }

.tk-track {
  display: flex;
  width: max-content;
  animation: tk 58s linear infinite;
}

.ticker:hover .tk-track { animation-play-state: paused; }

.tk-set { display: flex; align-items: center; padding: 0.95rem 0; }

.tk-set > span {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.35vw, 1.18rem);
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
}

.tk-set > span::after {
  content: "";
  display: inline-block;
  width: 0.42em; height: 0.42em;
  background: rgba(255,255,255,0.72);
  transform: rotate(45deg) translateY(-0.14em);
  margin: 0 1.5rem;
}

@keyframes tk { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) { .tk-track { animation: none; } }

/* -- slab 6: the closing demand -- */
.bigfoot {
  background-color: var(--stone);
  background-image: radial-gradient(120% 140% at 50% -20%, rgba(255,255,255,0.08), rgba(255,255,255,0) 55%), var(--grain);
  background-blend-mode: normal, overlay;
  margin-top: 0;
  padding: clamp(3.6rem, 7vw, 6rem) 0 2.6rem;
}

.bigfoot .fstate {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  color: #fff;
  margin: 0 0 2.4rem;
}

.bigfoot .fnav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 1.6rem;
}

.bigfoot .fnav a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

.bigfoot .fnav a:hover { color: var(--red-hot); }

.bigfoot .fsmall {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ash);
  margin: 0;
}

/* scroll-in */
.pre { opacity: 0; transform: translateY(16px); }
.in { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s ease; }

@media (max-width: 720px) {
  .charges { grid-template-columns: 1fr; }
  .cbox { margin-bottom: 0.9rem; }
  .seven .s { font-size: 1.35rem; }
  .cta.big { width: 100%; text-align: center; }
  .bigfoot .fnav { gap: 0.9rem 1.4rem; }
}


/* ==========================================================================
   Site footer (compact, one across the whole site)
   ========================================================================== */

.sitefoot {
  background-color: var(--void);
  background-image: var(--grain);
  background-blend-mode: overlay;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 0;
  padding: 2.4rem 0 2.2rem;
}

.sitefoot .frow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.fmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
}

.fmark img { height: 1.05rem; width: auto; display: block; transform: translateY(0.16rem); }

.fmark span {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.sitefoot .fnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
}

.sitefoot .fnav a {
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.sitefoot .fnav a:hover { color: var(--red-hot); }

.sitefoot .flegal {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--ash);
  margin: 1rem 0 0;
}

@media (max-width: 720px) {
  .sitefoot .frow { flex-direction: column; align-items: flex-start; }
}


/* touch: nav links get real tap area */
@media (max-width: 720px) {
  .topnav a, .sitefoot .fnav a { padding-top: 0.45rem; padding-bottom: 0.45rem; }
  .mast > a, .fmark { padding: 0.3rem 0; }
}


/* the other audience: deliberately not a sin, and not in the list */
.perspective {
  max-width: 52rem;
  margin: clamp(4.5rem, 8vw, 7rem) auto 0;
  padding: clamp(2.4rem, 4vw, 3.4rem) clamp(1.6rem, 3vw, 3rem) clamp(2.6rem, 4vw, 3.4rem);
  border: 1px solid rgba(23,21,15,0.22);
  background: var(--plate);
  text-align: center;
}

.pbadge {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 0.4rem 0.85rem;
  margin: 0 0 1.5rem;
}

.phead {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 1rem;
}

.pdesc {
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 38rem;
  margin: 0 auto 2rem;
  text-wrap: pretty;
}

.pcta {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 1.1rem 2.2rem;
  text-decoration: none;
}

.pcta:hover { background: var(--red-hot); }
.pcta:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

@media (max-width: 720px) {
  .pcta { display: block; }
}

/* stamped call to action */
.cta {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--red);
  padding: 1rem 1.8rem;
  margin-top: 0.6rem;
  transition: background .15s, transform .15s;
}

.cta:hover { background: var(--red-hot); transform: translateY(-1px); }

/* doors between the two audiences */
.hoteldoor, .twin {
  background: var(--plate);
  border: 1px solid rgba(23,21,15,0.12);
  border-top: 3px solid var(--red);
  padding: 1.7rem 1.9rem;
  max-width: var(--measure);
}

.sinspage .twin {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}

.sinspage .twin p { font-size: 1.08rem; }

.sinspage .twin a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

.hoteldoor { margin: 3.4rem 0 0; }
.twin { margin: 3.4rem 0; }
.hoteldoor p, .twin p { margin: 0; font-size: 1.02rem; line-height: 1.6; }

.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin: 2rem 0 0.4rem; }

.door {
  background: var(--plate);
  border: 1px solid rgba(23,21,15,0.12);
  border-top: 3px solid var(--red);
  padding: 1.6rem;
}

.door h3 { margin: 0 0 0.6rem; }
.door p { font-size: 1rem; margin-bottom: 1rem; }

.door .go {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red-deep);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

/* questions */
.qa {
  padding: 1.9rem 0 0.3rem;
  border-top: 1px solid rgba(23,21,15,0.12);
  margin-top: 1.4rem;
  max-width: var(--measure);
}

.qa h2 { margin: 0 0 0.7rem; padding-top: 0; background: none; font-size: 1.32rem; }

ul.plain { padding-left: 0; list-style: none; max-width: var(--measure); }

ul.plain li { margin-bottom: 0.95em; padding-left: 1.5rem; position: relative; text-wrap: pretty; }

ul.plain li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 0.5rem; height: 0.5rem;
  background: var(--red);
  transform: rotate(45deg);
}

/* sources */
.sources {
  margin-top: 4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(23,21,15,0.14);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--ash);
  max-width: 46rem;
}

.sources h2 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--ash);
  margin: 0 0 1rem;
  padding-top: 0;
  background: none;
}

.sources ol { padding-left: 1.4rem; margin: 0; }
.sources li { margin-bottom: 0.6em; }
.sources a { color: var(--ash); text-decoration-color: rgba(139,134,124,0.4); overflow-wrap: anywhere; }
.sources a:hover { color: var(--red); }

/* ==========================================================================
   Footer: back to stone
   ========================================================================== */

footer {
  margin-top: 5rem;
  background-color: var(--void);
  background-image: var(--grain);
  background-blend-mode: overlay;
  color: var(--ash-dim);
}

footer .wrap {
  padding-top: 2.4rem;
  padding-bottom: 2.8rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  line-height: 2;
}

footer a { color: var(--ash-dim); text-decoration-color: rgba(179,173,162,0.35); }
footer a:hover { color: #fff; }

/* ==========================================================================
   Small screens
   ========================================================================== */

@media (max-width: 720px) {
  body { font-size: 1.06rem; }
  .doors { grid-template-columns: 1fr; }
  .topbar .wrap { flex-wrap: wrap; gap: 0.55rem 1rem; padding-bottom: 0.85rem; }
  .topnav { gap: 1.1rem; font-size: 0.74rem; }
  .band .sub { max-width: none; }
  .sins li { grid-template-columns: 3rem 1fr; gap: 0 1rem; }

.sins .n { font-size: 1.9rem; }
  .sins .t { font-size: 1.14rem; }
  .standfirst { font-size: 1.16rem; }
  .stings { grid-template-columns: 1fr; }
  .sting p { font-size: 0.98rem; }
  .lockup .verdict { font-size: clamp(2.6rem, 13vw, 4rem); }
  .sinlist { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .btnrow .cta { width: 100%; text-align: center; }
}


/* ==========================================================================
   Homepage slabs
   ========================================================================== */

.poster {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 0.98;
  margin: 0.4rem 0 0;
}

.poster.light { color: #fff; }

/* -- slab 2: the charge sheet -- */
.chargesheet { padding: clamp(3.6rem, 7vw, 6rem) 0 clamp(3.2rem, 6vw, 5rem); }
.chargesheet .wrap { max-width: 84rem; }
.chargesheet .shead h2 { font-size: clamp(2rem, 3.6vw, 3.3rem); }

.tally {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.14;
  font-size: clamp(1.3rem, 2.45vw, 2.1rem);
  color: var(--ink);
  margin: 2.4rem 0 0;
  padding: 0.2rem 0 0.2rem 1.2rem;
  border-left: 4px solid var(--red);
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .tally { white-space: normal; text-wrap: pretty; }
}



.charges {
  list-style: none;
  margin: clamp(2.4rem, 5vw, 3.6rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23,21,15,0.18);
  border-left: 1px solid rgba(23,21,15,0.18);
}

.charge {
  display: block;
  padding: clamp(1.8rem, 2.8vw, 2.8rem) clamp(1.6rem, 2.4vw, 2.6rem) clamp(2.2rem, 3.4vw, 3.2rem);
  border-right: 1px solid rgba(23,21,15,0.18);
  border-bottom: 1px solid rgba(23,21,15,0.18);
}

.ctick {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.cbox {
  display: block;
  width: clamp(1.7rem, 2.2vw, 2.2rem);
  height: clamp(1.7rem, 2.2vw, 2.2rem);
  border: 2px solid var(--red);
  margin-bottom: 1.15rem;
  position: relative;
  transition: background-color .12s ease;
}

.cbox::after {
  content: "";
  position: absolute;
  left: 50%; top: 46%;
  width: 34%; height: 62%;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: translate(-50%, -50%) rotate(45deg) scale(0.4);
  opacity: 0;
  transition: opacity .12s ease, transform .12s ease;
}

.ctick:hover .cbox { background: rgba(176,36,27,0.12); }

.ctick[aria-pressed="true"] .cbox { background: var(--red); }
.ctick[aria-pressed="true"] .cbox::after { opacity: 1; transform: translate(-50%, -50%) rotate(45deg) scale(1); }

.ctick:focus-visible { outline: 2px solid var(--red); outline-offset: 6px; }

.ctick[aria-pressed="true"] .cbody h3 { color: var(--red-deep); }

.cbody h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.95rem);
  margin: 0 0 0.6rem;
  line-height: 1.02;
}

.cbody p {
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 1000px) and (min-width: 721px) {
  .charges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* -- slab 3: the verdict -- */
.verdictslab {
  background: var(--red);
  background-image: radial-gradient(120% 160% at 50% -30%, rgba(255,255,255,0.12), rgba(255,255,255,0) 55%), var(--grain);
  background-blend-mode: normal, overlay;
  color: #fff;
  padding: clamp(3.6rem, 8vw, 6.5rem) 0;
}

.verdictslab .vk {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin: 0 0 1.6rem;
}

.verdictslab .vline {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  margin: 0;
  max-width: none;
}

.verdictslab .vsub {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  margin: 1.6rem 0 0;
}

/* -- slab 4: the monument -- */
.monument { padding: clamp(3.6rem, 7vw, 6rem) 0; }
.monument .poster { font-size: clamp(2.8rem, 6.6vw, 5.6rem); }
.monument .sub { margin-top: 1.8rem; }

.seven { list-style: none; margin: clamp(2.2rem, 4vw, 3.4rem) 0 clamp(2.4rem, 4vw, 3.4rem); padding: 0; }

.seven li { border-bottom: 1px solid rgba(255,255,255,0.12); }

.sevenlink {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(0.55rem, 1.2vw, 0.9rem) 0;
  text-decoration: none;
  cursor: pointer;
}

.sevenlink:hover .s { color: var(--red-hot); }
.sevenlink:focus-visible { outline: 2px solid var(--red-hot); outline-offset: 4px; }

.seven li:first-child { border-top: 1px solid rgba(255,255,255,0.12); }


.seven .n {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--red-hot);
  min-width: 2.6ch;
}

.seven .s {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  color: #fff;
  letter-spacing: 0.005em;
}

.cta.big {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  padding: 1.35rem 2.8rem;
}

/* -- slab 5: the voices (a single band, nothing else) -- */
.ticker {
  display: block;
  margin: 0;
  overflow: hidden;
  background-color: var(--red);
  background-image: var(--grain);
  background-blend-mode: overlay;
  text-decoration: none;
  transition: background-color .18s ease;
}

.ticker:hover { background-color: var(--red-hot); }
.ticker:focus-visible { outline: 3px solid var(--ink); outline-offset: -3px; }

.tk-track {
  display: flex;
  width: max-content;
  animation: tk 58s linear infinite;
}

.ticker:hover .tk-track { animation-play-state: paused; }

.tk-set { display: flex; align-items: center; padding: 0.95rem 0; }

.tk-set > span {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.35vw, 1.18rem);
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
}

.tk-set > span::after {
  content: "";
  display: inline-block;
  width: 0.42em; height: 0.42em;
  background: rgba(255,255,255,0.72);
  transform: rotate(45deg) translateY(-0.14em);
  margin: 0 1.5rem;
}

@keyframes tk { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) { .tk-track { animation: none; } }

/* -- slab 6: the closing demand -- */
.bigfoot {
  background-color: var(--stone);
  background-image: radial-gradient(120% 140% at 50% -20%, rgba(255,255,255,0.08), rgba(255,255,255,0) 55%), var(--grain);
  background-blend-mode: normal, overlay;
  margin-top: 0;
  padding: clamp(3.6rem, 7vw, 6rem) 0 2.6rem;
}

.bigfoot .fstate {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  color: #fff;
  margin: 0 0 2.4rem;
}

.bigfoot .fnav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 1.6rem;
}

.bigfoot .fnav a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

.bigfoot .fnav a:hover { color: var(--red-hot); }

.bigfoot .fsmall {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ash);
  margin: 0;
}

/* scroll-in */
.pre { opacity: 0; transform: translateY(16px); }
.in { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s ease; }

@media (max-width: 720px) {
  .charges { grid-template-columns: 1fr; }
  .cbox { margin-bottom: 0.9rem; }
  .seven .s { font-size: 1.35rem; }
  .cta.big { width: 100%; text-align: center; }
  .bigfoot .fnav { gap: 0.9rem 1.4rem; }
}


/* ==========================================================================
   Site footer (compact, one across the whole site)
   ========================================================================== */

.sitefoot {
  background-color: var(--void);
  background-image: var(--grain);
  background-blend-mode: overlay;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 0;
  padding: 2.4rem 0 2.2rem;
}

.sitefoot .frow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.fmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
}

.fmark img { height: 1.05rem; width: auto; display: block; transform: translateY(0.16rem); }

.fmark span {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.sitefoot .fnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
}

.sitefoot .fnav a {
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.sitefoot .fnav a:hover { color: var(--red-hot); }

.sitefoot .flegal {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--ash);
  margin: 1rem 0 0;
}

@media (max-width: 720px) {
  .sitefoot .frow { flex-direction: column; align-items: flex-start; }
}


/* touch: nav links get real tap area */
@media (max-width: 720px) {
  .topnav a, .sitefoot .fnav a { padding-top: 0.45rem; padding-bottom: 0.45rem; }
  .mast > a, .fmark { padding: 0.3rem 0; }
}


/* the eighth row: the same ledger grammar, pointing at the other audience */
a.crossrow {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.crossrow:focus-visible { outline: 2px solid var(--red); outline-offset: -4px; }

.crossrow .mark {
  display: inline-block;
  width: clamp(1.5rem, 2.2vw, 2.1rem);
  height: clamp(1.5rem, 2.2vw, 2.1rem);
  background: var(--red);
  transform: rotate(45deg);
  margin-top: 0.5rem;
}


/* ==========================================================================
   Longform article (a written sin)
   ========================================================================== */

.artmain { padding: 0 0 1rem; }

.arthead {
  position: relative;
  background-color: var(--stone);
  background-image:
    radial-gradient(120% 150% at 20% -30%, rgba(255,255,255,0.10), rgba(255,255,255,0) 55%),
    var(--grain);
  background-blend-mode: normal, overlay;
  color: #fff;
  padding: clamp(2.6rem, 5vw, 4.2rem) 0 clamp(2.6rem, 4.5vw, 3.8rem);
  margin-bottom: clamp(2.6rem, 4.5vw, 4rem);
}

.arthead .wrap { max-width: 74rem; }

.arthead .k {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin: 0 0 1.4rem;
}

.arthead .k a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(212,56,44,0.4); }
.arthead .k a:hover { border-bottom-color: var(--red-hot); }

.arthead h1 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  color: #fff;
  margin: 0;
}

.arthead .artlede {
  font-family: var(--body);
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  max-width: 42rem;
  margin: 1.8rem 0 0;
  padding-left: 1.2rem;
  border-left: 3px solid var(--red);
  text-wrap: pretty;
}

/* the two-column body: sticky rail + reading measure, centred as a pair */
.article {
  max-width: 74rem;
  margin: 0 auto;
  padding: 0 1.75rem clamp(3rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 13.5rem minmax(0, 42rem);
  justify-content: center;
  gap: 0 clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.artrail {
  position: sticky;
  top: 5.2rem;
}

.artrail .rnum {
  font-family: var(--display);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 0.8;
  color: var(--red);
  margin: 0;
}

.artrail .rtag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0.5rem 0 1.6rem;
}

.rnav { display: flex; flex-direction: column; border-top: 1px solid rgba(23,21,15,0.16); }

.rnav a {
  font-family: var(--sans, var(--body));
  font-size: 0.92rem;
  line-height: 1.3;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.7rem 0 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(23,21,15,0.1);
  border-left: 2px solid transparent;
  transition: color .14s ease, border-color .14s ease;
}

.rnav a:hover { color: var(--red); border-left-color: var(--red); }
.rnav a.is-current { color: var(--red); border-left-color: var(--red); }

.rswitch {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-deep);
  text-decoration: none;
  margin-top: 1.6rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

.rswitch:hover { color: var(--red); }

/* body typography */
.artbody { min-width: 0; }

.artbody > p {
  font-size: 1.15rem;
  line-height: 1.78;
  margin: 0 0 1.4em;
  text-wrap: pretty;
}

.artbody > p.lead {
  font-size: 1.32rem;
  line-height: 1.62;
  color: var(--ink);
}

.artbody h2 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.06;
  color: var(--ink);
  margin: 2.8rem 0 1rem;
  scroll-margin-top: 5.5rem;
  text-wrap: balance;
}

.artbody .fact { max-width: none; }
.artbody .sources { max-width: none; }

.endnote {
  margin: 3rem 0 0;
  border-top: 3px solid var(--red);
  padding-top: 1.6rem;
}

.endnote p { font-size: 1.05rem; line-height: 1.6; margin: 0 0 0.9rem; }
.endnote p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .article {
    grid-template-columns: minmax(0, 1fr);
    max-width: 44rem;
    gap: 0;
  }
  .artrail {
    position: static;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(23,21,15,0.16);
  }
  .artrail .rnum { font-size: 2.4rem; }
  .artrail .rtag { margin: 0; }
  .rnav { display: none; }
  .rswitch { margin: 0 0 0 auto; }
}


/* ==========================================================================
   Standalone pages: Complaints, Questions, About (article header + wide body)
   ========================================================================== */

.pagebody { max-width: 74rem; margin: 0 auto; padding: 0 1.75rem clamp(3rem, 5vw, 5rem); }

/* About: a single centred reading column */
.reading { max-width: 42rem; }
.reading > p { font-size: 1.18rem; line-height: 1.78; margin: 0 0 1.4em; text-wrap: pretty; }
.reading > p.lead { font-size: 1.32rem; line-height: 1.62; color: var(--ink); }
.reading h2 {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.35rem, 2vw, 1.7rem); color: var(--ink);
  margin: 2.6rem 0 1rem; text-wrap: balance;
}
.reading .rule { border: none; border-top: 1px solid rgba(23,21,15,0.16); margin: 2.6rem 0; }

/* Questions: two-column Q&A grid */
.qgrid {
  columns: 2;
  column-gap: clamp(2rem, 4vw, 4rem);
}
.qgrid .qa {
  break-inside: avoid;
  border: 0;
  background: none;
  padding: 0;
  margin: 0 0 2.2rem;
  max-width: none;
}
.qgrid .qa h2 {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: 1.18rem; line-height: 1.14; color: var(--ink);
  margin: 0 0 0.6rem; padding: 0; background: none;
  border-left: 3px solid var(--red); padding-left: 0.9rem; text-wrap: balance;
}
.qgrid .qa p { font-size: 1.04rem; line-height: 1.62; margin: 0; color: var(--ink-soft); text-wrap: pretty; }


@media (max-width: 820px) {
  .qgrid, .rgrid { columns: 1; }
}


/* ==========================================================================
   Complaints: receipts grouped by sin
   ========================================================================== */

.rsec { margin: 0 0 clamp(2.6rem, 4vw, 4rem); }

.rsechead {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0 0 1rem;
  margin: 0 0 1.6rem;
  border-bottom: 2px solid var(--ink);
}

.rsechead .rsn {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--red);
}

.rsechead h2 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1;
  color: var(--ink);
  margin: 0;
}

.rsechead .rscount {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  margin-left: auto;
  white-space: nowrap;
}

.rcards {
  columns: 2;
  column-gap: clamp(1.6rem, 3vw, 2.6rem);
}

/* the ungrouped wall: one chorus, three columns */
.rwall { margin: 0 0 clamp(2.6rem, 4vw, 4rem); }
.rwall .rcards { columns: 3; }

@media (max-width: 1100px) { .rwall .rcards { columns: 2; } }
@media (max-width: 820px)  { .rwall .rcards { columns: 1; } }

.rcard {
  break-inside: avoid;
  margin: 0 0 clamp(1.6rem, 3vw, 2.6rem);
  padding: 1.5rem 1.6rem 1.3rem;
  background: var(--plate);
  border: 1px solid rgba(23,21,15,0.12);
  border-left: 3px solid var(--red);
  position: relative;
}

.rcard blockquote {
  margin: 0;
  font-family: var(--body);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
}

.rcard blockquote::before {
  content: "\201C";
  color: var(--red);
  font-weight: 600;
}
.rcard blockquote::after {
  content: "\201D";
  color: var(--red);
  font-weight: 600;
}

.rcard figcaption {
  margin: 0.85rem 0 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--ash);
}

.rcard figcaption a { color: var(--ash); text-decoration-color: rgba(139,134,124,0.45); }
.rcard figcaption a:hover { color: var(--red); }

@media (max-width: 820px) {
  .rcards { columns: 1; }
}

/* ==========================================================================
   Questions hub: index of the atomic answer pages
   ========================================================================== */

.ansblock { margin: clamp(2.4rem, 4vw, 3.6rem) 0 0; }

.ansblock h2 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 0.6rem;
  padding: 0 0 1rem;
  border-bottom: 2px solid var(--ink);
}

.ansblock .anslede {
  margin: 0 0 1.8rem;
  color: var(--ash);
  max-width: 62ch;
  text-wrap: pretty;
}

.ansgrid { list-style: none; margin: 0; padding: 0; }

.ansgrid li { border-bottom: 1px solid rgba(23,21,15,0.12); }

.ansgrid a {
  display: block;
  padding: 1.15rem 0.9rem 1.15rem 0;
  text-decoration: none;
  border-left: 3px solid transparent;
  padding-left: 0.9rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.ansgrid a:hover { background: var(--plate); border-left-color: var(--red); }

.ansgrid .aq {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--ink);
}

.ansgrid a:hover .aq { color: var(--red); }

.ansgrid .aa {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--ash);
  text-wrap: pretty;
}

/* cross-links from a sin page into the answers */
.seealso {
  margin: clamp(2rem, 3vw, 2.8rem) 0 0;
  padding: 1.2rem 1.4rem;
  background: var(--plate);
  border-left: 3px solid var(--red);
}

.seealso .salabel {
  margin: 0 0 0.6rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
}

.seealso ul { margin: 0; padding: 0 0 0 1.1rem; }
.seealso li { margin: 0.3rem 0; }

.legalnote {
  margin: 1.6rem 0 0;
  font-size: 0.92rem;
  color: var(--ash);
  font-style: italic;
  text-wrap: pretty;
}

/* ==========================================================================
   Live tally on the charge sheet
   ========================================================================== */

.cnote {
  margin: 1.1rem 0 0;
  max-width: 54ch;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--ash);
}

/* hidden until the first count lands, so nothing flashes a zero */
/* NOTE: must out-specify `.cbody p`, which sets margin:0 and a much larger
   font-size. `.ccount` alone loses that cascade and the line renders big and
   flush against the paragraph above. Keep the `.cbody` prefix. */
.cbody p.ccount {
  margin: 1.45rem 0 0;
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--ash);
  white-space: nowrap;
  /* collapsed until a real count arrives, so a new page never reads a zero */
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin-top: 0;
  transition: opacity .35s ease;
}

.cbody p.ccount.is-live {
  visibility: visible;
  height: auto;
  margin-top: 1.45rem;
}

.ccount.is-live { opacity: 1; }


.cbody p.ccount .cnum {
  color: var(--red);
  font-weight: 500;
  font-size: inherit;
  letter-spacing: inherit;
  margin-right: 0.5em;
  font-variant-numeric: tabular-nums;
}

.cbody p.ccount.just-up .cnum { animation: cbump .7s ease; }

@keyframes cbump {
  0%   { transform: translateY(0.28em); opacity: 0.35; }
  45%  { transform: translateY(-0.06em); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

.cbody p.ccount .cnum { display: inline-block; }

.ctick[aria-pressed="true"] .cbody p.ccount .cnum { color: var(--red-deep); }

@media (prefers-reduced-motion: reduce) {
  .ccount, .ccount.just-up .cnum { transition: none; animation: none; }
}
