/*
Theme Name: Vote NOTA
Theme URI: https://votenota.org
Author: VOTE NOTA campaign
Description: Classic campaign theme for VOTE NOTA — a New York write-in for Governor, November 3, 2026. Print None of the Above in the write-in box. No page-builder required.
Version: 1.0.2
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: votenota
Tags: one-column, custom-menu, featured-images, translation-ready, news

Civic campaign theme. WordPress requires this file at the theme root and enqueued via get_stylesheet_uri().
*/

:root {
  --paper: #f3efe6;
  --wash: #e7e0d1;
  --surface: #fffdf8;
  --ink: #14171c;
  --muted: #5e584e;
  --seal: #8b1e2d;
  --seal-fg: #f3efe6;
  --rule: #d4ccbc;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body.nota-body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
  font-weight: 600;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.nota-wrap { width: min(72rem, calc(100% - 2rem)); margin-inline: auto; }
.kicker {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.6rem;
}
.kicker.seal { color: var(--seal); }
.kicker.light { color: rgba(243, 239, 230, 0.7); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 40rem; }
.lede.light { color: rgba(243, 239, 230, 0.82); }
.muted { color: var(--muted); }

.nota-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 239, 230, 0.94);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(10px);
}
.nota-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}
.nota-mark {
  display: inline-flex;
  gap: 0.45rem;
  align-items: baseline;
  text-decoration: none;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.nota-mark .seal,
.seal-block {
  background: var(--seal);
  color: var(--seal-fg);
  padding: 0.15rem 0.4rem;
}
.nota-mark.light span:first-child { color: var(--paper); }
.nota-nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nota-nav a {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}
.nota-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.15rem;
  background: var(--seal);
  color: var(--seal-fg);
  text-decoration: none;
  border: 0;
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.nota-btn.ghost {
  background: var(--surface);
  color: var(--ink);
}
.nota-burger { display: none; }

.nota-hero { position: relative; min-height: 72vh; display: grid; align-items: end; }
.nota-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nota-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,23,28,0.88), rgba(20,23,28,0.35));
}
.nota-hero-copy { position: relative; padding: 5rem 0 4rem; color: var(--paper); }
.nota-hero-plain { padding: 3.5rem 0 2rem; border-bottom: 1px solid var(--rule); }
.nota-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.nota-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: var(--paper);
}
.nota-stats > div { padding: 1.8rem 1.4rem; border-right: 1px solid rgba(243,239,230,0.12); }
.nota-stats .num { font-family: var(--display); font-size: 3rem; margin: 0; }
.nota-stats .label { font-family: var(--display); letter-spacing: 0.16em; text-transform: uppercase; }

.nota-section { padding: 3.5rem 0; }
.nota-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.nota-3 article { border-top: 2px solid var(--ink); padding-top: 1rem; }
.nota-band { background: var(--wash); padding: 3.5rem 0; }
.nota-steps { padding-left: 1.2rem; }
.nota-steps li { margin: 0.8rem 0; }

.nota-form { display: grid; gap: 0.85rem; margin-top: 1.4rem; max-width: 36rem; }
.nota-form label { font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; display: grid; gap: 0.35rem; }
.nota-form input, .nota-form select, .nota-form textarea {
  font-family: var(--serif);
  font-size: 1rem;
  min-height: 2.75rem;
  border: 1px solid var(--rule);
  background: var(--surface);
  color: var(--ink);
  padding: 0.4rem 0.7rem;
}
.nota-form textarea { min-height: 7rem; }
.nota-flash { background: var(--wash); padding: 0.8rem 1rem; }

.nota-footer { background: var(--ink); color: var(--paper); padding: 3rem 0 0; }
.nota-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.nota-footer a { color: rgba(243,239,230,0.8); text-decoration: none; }
.nota-footer ul { list-style: none; padding: 0; }
.nota-legal { border-top: 1px solid rgba(243,239,230,0.12); margin: 0; padding: 1rem calc((100% - min(72rem, calc(100% - 2rem))) / 2); font-size: 0.78rem; color: rgba(243,239,230,0.45); }

.nota-prose { max-width: 42rem; padding: 2.5rem 0 4rem; font-size: 1.12rem; }
.nota-prose p { margin: 0 0 1.1rem; }
.nota-article { padding: 3rem 0 4rem; max-width: 44rem; }
.nota-tease { padding: 1.4rem 0; border-bottom: 1px solid var(--rule); }
.nota-tease h2 { font-family: var(--serif); text-transform: none; letter-spacing: 0; font-weight: 600; }
.nota-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 0 4rem; }
.nota-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 3rem; }
.nota-table th, .nota-table td { text-align: left; padding: 0.7rem 0.4rem; border-bottom: 1px solid var(--rule); }
.nota-faq { border-bottom: 1px solid var(--rule); padding: 1rem 0; }
.nota-faq summary { cursor: pointer; font-size: 1.15rem; }

@media (max-width: 860px) {
  .nota-nav, .nota-header .nota-btn { display: none; }
  .nota-header.is-open .nota-nav { display: block; position: absolute; left: 0; right: 0; top: 4rem; background: var(--paper); border-bottom: 1px solid var(--rule); padding: 0.5rem 1rem 1rem; }
  .nota-header.is-open .nota-nav ul { flex-direction: column; }
  .nota-burger { display: inline-flex; min-height: 2.75rem; background: transparent; border: 0; font-family: var(--display); letter-spacing: 0.14em; text-transform: uppercase; }
  .nota-stats, .nota-3, .nota-footer-grid, .nota-split { grid-template-columns: 1fr; }
  .nota-hero { min-height: 70vh; }
}
