:root {
  --ink: #101010;
  --muted: #5c552d;
  --paper: #FDDE04;
  --soft: #FDDE04;
  --yellow: #FDDE04;
  --yellow-strong: #8C0714;
  --line: #101010;
  --white: #fffef2;
  --shadow: 0 18px 48px rgba(27, 22, 0, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.shell { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--yellow); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: .08em; text-decoration: none; }
.brand-logo {
  width: 88px; height: 38px; border-radius: 8px; object-fit: contain;
  display: block; border: 2px solid var(--ink); background: var(--yellow);
}
.nav-links { display: flex; gap: 22px; align-items: center; font-size: 14px; font-weight: 750; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.menu-toggle { display: none; border: 1px solid var(--ink); background: var(--white); border-radius: 10px; padding: 9px 11px; cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 2px; background: var(--ink); margin: 4px 0; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 0 20px; border-radius: 999px;
  background: var(--ink); color: var(--white); text-decoration: none; font-weight: 800;
  border: 1px solid var(--ink); cursor: pointer;
}
.button.light { background: var(--white); color: var(--ink); border-color: var(--line); }
.button.yellow { background: var(--yellow); color: var(--ink); border-color: var(--ink); }
.hero { padding: 96px 0 84px; background: var(--yellow); }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 58px; align-items: center; }
.kicker { margin: 0 0 15px; font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.04; letter-spacing: -.045em; }
h1 { max-width: 760px; margin: 0; font-size: clamp(50px, 7vw, 92px); }
h2 { margin: 0 0 16px; font-size: clamp(32px, 4vw, 54px); }
h3 { margin: 0 0 8px; font-size: 22px; }
.hero-copy { max-width: 650px; margin: 25px 0 0; font-size: 19px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.hero-meta span { padding: 7px 10px; border: 1px solid rgba(16,16,16,.35); border-radius: 999px; font-size: 12px; font-weight: 850; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-card {
  padding: 28px; border: 2px solid var(--ink); border-radius: var(--radius);
  background: rgba(255,255,255,.68); box-shadow: 14px 14px 0 var(--ink);
}
.hero-logo {
  display: block; width: 100%; height: auto; max-height: 165px; object-fit: contain;
  margin: -3px 0 23px; border: 1px solid rgba(16,16,16,.25); border-radius: 12px;
}
.hero-panel-title { margin: 0 0 10px; font-size: 28px; }
.hero-panel-copy { margin: 0; color: #4e492f; }
.signal-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.signal-list li { display: flex; gap: 10px; align-items: baseline; padding-top: 12px; border-top: 1px solid rgba(16,16,16,.18); }
.signal-list b { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.hero-card strong { display: block; margin-bottom: 14px; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
.hero-card ul { padding-left: 20px; margin: 0; }
.section { padding: 88px 0; }
.section.soft { background: var(--soft); }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 30px; }
.section-head p { max-width: 510px; margin: 0; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  padding: 26px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: 0 8px 26px rgba(27, 22, 0, .08);
}
.card p { color: var(--muted); margin: 0; }
.eyebrow { color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.notice { padding: 16px 18px; border-left: 4px solid var(--yellow-strong); background: #fff8cf; }
.notice p { margin: 0; color: #4d4521; }
.page-hero { padding: 70px 0 52px; background: var(--soft); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(44px, 6vw, 72px); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 32px; }
.filter {
  padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--white); font: inherit; font-weight: 750; cursor: pointer;
}
.filter.active, .filter:hover { background: var(--yellow); border-color: var(--ink); }
.empty {
  padding: 46px 26px; border: 1px dashed #cabb7f; border-radius: var(--radius);
  background: #fffdf0; text-align: center;
}
.empty p { max-width: 570px; margin: 10px auto 0; color: var(--muted); }
.profile-top { display: flex; gap: 24px; align-items: center; }
.avatar { width: 84px; height: 84px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); border: 2px solid var(--ink); font-size: 30px; font-weight: 950; }
.tag { display: inline-flex; padding: 5px 9px; border-radius: 7px; background: var(--soft); color: #625719; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.footer { padding: 48px 0 58px; border-top: 1px solid var(--ink); background: var(--yellow); color: var(--ink); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand { display: grid; gap: 14px; align-content: start; }
.footer-logo { display: block; width: min(100%, 285px); height: auto; border-radius: 9px; }
.footer-brand p { max-width: 290px; margin: 0; }
.footer-nav { display: grid; align-content: start; gap: 7px; }
.footer-nav strong { margin-bottom: 5px; color: var(--ink); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer a { color: var(--ink); text-underline-offset: 3px; }
.admin-shell { max-width: 1180px; margin: 0 auto; padding: 48px 28px; }
.admin-bar { display: flex; justify-content: space-between; align-items: start; gap: 20px; margin-bottom: 34px; }
.admin-nav { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 25px; }
.admin-nav button { border: 1px solid var(--line); background: var(--white); padding: 10px 14px; border-radius: 9px; cursor: pointer; font-weight: 800; }
.admin-nav button.active { background: var(--yellow); border-color: var(--ink); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 15px 17px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: #fff9dc; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
tr:last-child td { border-bottom: 0; }
label { display: grid; gap: 6px; font-weight: 800; font-size: 14px; }
input, textarea, select { width: 100%; border: 1px solid #cfc59e; border-radius: 10px; padding: 12px 13px; background: #fff; font: inherit; }
textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.span-2 { grid-column: span 2; }
.hidden { display: none !important; }

@media (max-width: 780px) {
  .shell { padding: 0 18px; }
  .nav { min-height: 66px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 66px; left: 0; right: 0; display: none; padding: 16px 18px 20px; border-bottom: 1px solid var(--line); background: var(--yellow); box-shadow: 0 18px 28px rgba(27,22,0,.1); }
  .nav-links.is-open { display: grid; gap: 0; }
  .nav-links a { padding: 12px 0; }
  .nav-links .button { display: inline-flex; width: fit-content; margin-top: 7px; padding: 0 18px; }
  .hero { padding: 60px 0; }
  .hero-grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-card { box-shadow: 8px 8px 0 var(--ink); }
  .section { padding: 62px 0; }
  .section-head, .admin-bar { display: block; }
  .section-head p { margin-top: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
}.brand-word { display: inline-flex; align-items: center; min-height: 38px; }
.catalog-summary { display: flex; justify-content: space-between; gap: 28px; align-items: end; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.catalog-summary h2 { margin: 8px 0 10px; font-size: clamp(30px, 4vw, 48px); }
.catalog-summary p { max-width: 680px; margin: 0; color: var(--muted); }
.catalog-stat { min-width: 130px; padding: 18px; border-left: 1px solid var(--line); text-align: right; }
.catalog-stat strong { display: block; font-size: 42px; line-height: 1; }
.catalog-stat span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.politician-card { display: flex; min-height: 230px; flex-direction: column; }
.politician-card h3 a { text-decoration-thickness: 2px; text-underline-offset: 4px; }
.politician-note { margin-top: 20px !important; }
.last-verified { margin-top: auto !important; padding-top: 17px; font-size: 12px; color: var(--muted) !important; }
.profile-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 22px; }
.claim-list { display: grid; gap: 18px; margin-top: 26px; }
.claim-list .card h3 { margin-top: 15px; }
.source-link { display: inline-block; margin-top: 16px; font-weight: 850; text-underline-offset: 4px; }
.source-stack { display: grid; gap: 2px; }
.profile-aside { align-self: start; }
.facts { display: grid; gap: 14px; margin: 22px 0; }
.facts div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.facts dt { color: var(--muted); font-size: 13px; }
.facts dd { margin: 0; font-weight: 800; text-align: right; }
.profile-aside hr { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }
@media (max-width: 780px) { .catalog-summary, .profile-layout { display: block; } .catalog-stat { margin-top: 22px; border-left: 0; border-top: 1px solid var(--line); text-align: left; } }
/* Rockipedia visual direction: one exact logo yellow, no washed gradients. */
:root {
  --ink: #101010;
  --muted: #2d2700;
  --paper: #FDDE04;
  --soft: #FDDE04;
  --yellow: #FDDE04;
  --yellow-strong: #8C0714;
  --line: #101010;
  --white: #fffef2;
}
body { background: var(--yellow); }
.shell { max-width: 1440px; }
.site-header { background: var(--yellow); border-bottom: 2px solid var(--ink); }
.brand-logo { width: 154px; height: 46px; border: 2px solid var(--ink); border-radius: 10px; object-fit: contain; background: #8C0714; }
.hero { min-height: min(820px, calc(100vh - 76px)); display: flex; align-items: center; padding: 112px 0 104px; background: var(--yellow); }
.hero-grid { width: 100%; grid-template-columns: 1.18fr .82fr; gap: 82px; }
h1 { font-size: clamp(64px, 8vw, 128px); max-width: 1020px; }
.hero-copy { max-width: 760px; font-size: clamp(20px, 2vw, 27px); line-height: 1.35; }
.hero-card { background: #8C0714; color: #fff4df; border-color: var(--ink); box-shadow: 18px 18px 0 var(--ink); }
.hero-card .kicker, .hero-card h2, .hero-card strong { color: #F2CC70; }
.hero-panel-copy { color: #fff4df; }
.hero-ribbon { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid rgba(242,204,112,.7); }
.hero-ribbon span { padding: 14px 0; border-bottom: 1px solid rgba(242,204,112,.7); color: #fff4df; font-weight: 800; }
.page-hero, .section.soft { background: var(--yellow); }
.section { padding: 104px 0; }
.card { border: 2px solid var(--ink); box-shadow: 8px 8px 0 rgba(16,16,16,.16); }
.button { background: var(--ink); color: var(--yellow); }
.button.light { color: var(--ink); background: var(--white); }
.filter.active, .filter:hover { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.tag { background: var(--ink); color: var(--yellow); }
.footer { background: var(--yellow); border-top: 2px solid var(--ink); }
@media (max-width: 780px) { .hero { min-height: auto; padding: 72px 0 78px; } .hero-grid { gap: 44px; } .brand-logo { width: 142px; height: 42px; } }
/* Professional homepage direction: restrained type, no logo box, no instructional clutter. */
.brand-symbol { position: relative; z-index: 0; min-height: 48px; padding: 2px 18px 2px 8px; }
.brand-logo { width: 174px; height: 46px; border: 0; border-radius: 0; object-fit: contain; background: transparent; }
.hero-home h1 { max-width: 800px; font-size: clamp(52px, 5.3vw, 82px); letter-spacing: -.055em; }
.hero-home .hero-copy { max-width: 660px; font-size: clamp(19px, 1.55vw, 23px); }
.hero-visual { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: 44px; background: #8C0714; color: #fff4df; clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%); }
.hero-visual strong { display: block; margin: 8px 0 0; color: #FDDE04; font-size: clamp(90px, 10vw, 160px); line-height: .86; letter-spacing: -.08em; }
.hero-visual span, .hero-visual p { color: #fff4df; font-size: 18px; font-weight: 800; }
.visual-rule { width: 100%; height: 2px; margin: 28px 0 12px; background: #F2CC70; }
.stats-strip { border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--yellow); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid div { padding: 26px 24px; border-right: 1px solid var(--ink); }
.stats-grid div:first-child { border-left: 1px solid var(--ink); }
.stats-grid strong { display: block; font-size: 40px; line-height: 1; }
.stats-grid span { display: block; margin-top: 7px; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.editorial-grid, .dark-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.editorial-links { border-top: 2px solid var(--ink); }
.editorial-links a { display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--ink); text-decoration: none; }
.editorial-links strong { font-size: 20px; }
.editorial-links span { color: var(--muted); }
.editorial-links b { font-size: 24px; }
.section-dark { background: #101010; color: #fff4df; }
.section-dark .kicker { color: #F2CC70; }
.section-dark p { max-width: 560px; margin: 0; font-size: 22px; line-height: 1.35; }
.section-note { padding: 32px 0; }
.section-note p { margin: 0; font-size: 14px; }
@media (max-width: 780px) { .hero-home h1 { font-size: clamp(44px, 13vw, 68px); } .hero-visual { min-height: 330px; padding: 34px; clip-path: none; } .stats-grid { grid-template-columns: repeat(2, 1fr); } .stats-grid div:nth-child(2) { border-right: 0; } .editorial-grid, .dark-grid { grid-template-columns: 1fr; gap: 32px; } .editorial-links a { grid-template-columns: 1fr auto; } .editorial-links span { grid-column: 1; grid-row: 2; } .editorial-links b { grid-column: 2; grid-row: 1 / span 2; } }
/* Final editorial cleanup: no visible brand wordmark in footer, no logo frame or gradient. */
.brand-symbol { padding-left: 0; padding-right: 0; }
.brand-logo { width: 164px; height: 42px; border: 0; background: transparent; }
.footer-mark { display: block; width: 164px; height: 42px; object-fit: contain; object-position: left center; }
.hero-home h1 { font-size: clamp(42px, 4.1vw, 64px); max-width: 700px; }
.hero-home .hero-copy { font-size: clamp(18px, 1.25vw, 21px); }
.hero-visual strong { font-size: clamp(74px, 8vw, 120px); }
/* Homepage editorial scale and restrained footer. */
.hero-home h1 { font-size: clamp(42px, 4vw, 62px); line-height: .98; max-width: 620px; }
.hero-home .hero-copy { max-width: 600px; font-size: clamp(17px, 1.15vw, 20px); }
.hero-editorial-panel { min-height: 350px; }
.editorial-panel-lines { display: grid; margin-top: 34px; border-top: 1px solid #F2CC70; }
.editorial-panel-lines span { padding: 16px 0; border-bottom: 1px solid #F2CC70; color: #fff4df; font-size: 19px; font-weight: 800; }
.footer-grid { grid-template-columns: repeat(3, 1fr); }
.footer-disclaimer { display: block; margin-top: 16px; color: var(--muted); font-size: 12px; }
@media (max-width: 780px) { .hero-home h1 { font-size: clamp(40px, 12vw, 58px); } .hero-editorial-panel { min-height: 250px; } .footer-grid { grid-template-columns: 1fr 1fr; } }

/* Shared navigation cleanup */
.brand-word { display:inline-flex; align-items:center; min-height:42px; color:var(--ink); font-size:clamp(18px,2vw,24px); font-weight:950; letter-spacing:-.065em; text-decoration:none; }
.nav-links { gap:18px; }
.nav-links a { white-space:nowrap; }
.footer-disclaimer { line-height:1.35; }
