/* judge.bar */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #faf5ef; color: #1a1a1a; font-family: 'Lora', serif; line-height: 1.7; }
.header-bar { background: #0c1829; text-align: center; padding: 4rem 2rem 2rem; }
.scales { position: relative; width: 60px; height: 40px; margin: 0 auto 1.5rem; }
.scale-beam { position: absolute; top: 10px; left: 0; width: 60px; height: 2px; background: #c9a96e; }
.scale-base { position: absolute; top: 10px; left: 50%; width: 2px; height: 28px; background: #c9a96e; transform: translateX(-50%); }
.pan { position: absolute; top: 8px; width: 16px; height: 3px; border-radius: 0 0 8px 8px; border: 1px solid #c9a96e; border-top: none; }
.left-pan { left: 2px; } .right-pan { right: 2px; }
.brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2.5rem, 6vw, 4rem); color: #c9a96e; }
.subtitle { font-size: 0.85rem; color: #d6cfc7; margin-top: 0.3rem; }
.gold-rule { width: 200px; height: 2px; background: #c9a96e; margin: 1.5rem auto 0; }
.articles { max-width: 600px; margin: 0 auto; padding: 2rem 2rem; }
.article { padding: 1.5rem 0; }
.article-num { font-family: 'Inter', sans-serif; font-size: 0.65rem; color: #c9a96e; letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 0.25rem; }
.article-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; color: #1a1a1a; margin-bottom: 0.4rem; }
.article-text { font-size: 0.85rem; color: #5c5047; }
.gold-rule-thin { width: 100%; height: 1px; background: #c9a96e; opacity: 0.3; }
.precedent { padding: 2rem; max-width: 600px; margin: 0 auto; }
.citation-strip { display: flex; flex-direction: column; gap: 0.5rem; }
.citation { font-family: 'Inter', sans-serif; font-size: 0.7rem; color: #5c5047; padding: 0.5rem; border: 1px double #c9a96e; text-align: center; }
.chambers { background: #0c1829; text-align: center; padding: 4rem 2rem; }
.gavel-mark { width: 20px; height: 8px; background: #c9a96e; border-radius: 2px; margin: 0 auto 0.5rem; position: relative; }
.gavel-mark::after { content: ''; position: absolute; width: 3px; height: 16px; background: #c9a96e; bottom: -16px; left: 50%; transform: translateX(-50%); }
.chambers-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: #c9a96e; margin-top: 1.5rem; }
.chambers-brand { font-size: 0.65rem; color: #5c5047; display: block; margin-top: 0.5rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
