/* Chavez Campaign — Bold Civic stylesheet.
   Scoped under .chz-root to avoid collisions with Breakdance/Zero Theme defaults. */

.chz-root {
  --chz-teal:#0e6e7c;
  --chz-teal-dark:#0a4f5a;
  --chz-teal-darker:#073841;
  --chz-teal-tint:#e6f1f3;
  --chz-gold:#f0b71a;
  --chz-gold-deep:#d09e0c;
  --chz-gold-tint:#fff4cf;
  --chz-ink:#0f1a1c;
  --chz-ink-soft:#3d4a4c;
  --chz-paper:#ffffff;
  --chz-paper-soft:#f7f6f1;
  --chz-line:rgba(15,26,28,0.1);
  --chz-line-strong:rgba(15,26,28,0.2);
  --chz-display:'Archivo', system-ui, sans-serif;
  --chz-sans:'Archivo', system-ui, sans-serif;
  --chz-narrow:'Archivo Narrow', system-ui, sans-serif;

  font-family: var(--chz-sans);
  color: var(--chz-ink);
  background: var(--chz-paper);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.chz-root *, .chz-root *::before, .chz-root *::after { box-sizing: border-box; }
.chz-root h1, .chz-root h2, .chz-root h3, .chz-root h4 {
  font-family: var(--chz-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}
.chz-root p { margin: 0; }
.chz-root a { color: inherit; text-decoration: none; }
.chz-root img { display: block; max-width: 100%; }
.chz-root button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
html { scroll-behavior: smooth; }
.chz-wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ============ Buttons (shared) ============ */
.chz-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  font-family: var(--chz-display);
  font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px;
  transition: transform .15s, background .15s, color .15s;
  border: 2px solid transparent;
  cursor: pointer;
}
.chz-btn-gold { background: var(--chz-gold); color: var(--chz-ink); border-color: var(--chz-gold); }
.chz-btn-gold:hover { background: var(--chz-gold-deep); border-color: var(--chz-gold-deep); }
.chz-btn-teal { background: var(--chz-teal); color: #fff; border-color: var(--chz-teal); }
.chz-btn-teal:hover { background: var(--chz-teal-dark); border-color: var(--chz-teal-dark); }
.chz-btn-ghost { background: transparent; color: var(--chz-ink); border-color: var(--chz-ink); }
.chz-btn-ghost:hover { background: var(--chz-ink); color: #fff; }
.chz-btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.chz-btn-outline-light:hover { background: #fff; color: var(--chz-teal); }
.breakdance .chz-root a,
.breakdance .chz-root a:hover { color: inherit; text-decoration: none; }
.breakdance .chz-root .chz-btn-gold,
.breakdance .chz-root .chz-btn-gold:hover { color: var(--chz-ink); }
.breakdance .chz-root .chz-btn-teal,
.breakdance .chz-root .chz-btn-teal:hover { color: #fff; }
.breakdance .chz-root .chz-btn-ghost { color: var(--chz-ink); }
.breakdance .chz-root .chz-btn-ghost:hover { color: #fff; }
.breakdance .chz-root .chz-btn-outline-light { color: #fff; }
.breakdance .chz-root .chz-btn-outline-light:hover { color: var(--chz-teal); }

/* ============ NAV / HEADER ============ */
.chz-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--chz-paper);
  border-bottom: 2px solid var(--chz-ink);
}
.chz-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  max-width: 1320px; margin: 0 auto; gap: 56px;
}
.chz-header-logo img { height: 44px; }
.breakdance .chz-root .chz-header-logo img { height: 44px; width: auto; max-width: none; }
.chz-header-links {
  display: flex; gap: 8px;
  font-family: var(--chz-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-left: auto;
}
.chz-header-links a {
  padding: 10px 18px; color: var(--chz-ink);
  transition: color .15s, background .15s; position: relative;
}
.chz-header-links a:hover { color: var(--chz-teal); }
.chz-header-cta { display: flex; align-items: center; gap: 14px; }

/* ============ ANNOUNCEMENT ============ */
.chz-ann {
  background: var(--chz-gold); color: var(--chz-ink);
  padding: 14px 0; text-align: center;
  font-family: var(--chz-display);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.chz-ann .sep { margin: 0 14px; opacity: 0.6; }

/* ============ HERO ============ */
.chz-hero {
  background: var(--chz-teal); color: #fff;
  position: relative; overflow: hidden;
}
.chz-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.chz-hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch;
  min-height: 640px; position: relative;
}
.chz-hero .chz-hero-grid {
  max-width: none;
  padding-left: max(40px, calc((100vw - 1320px) / 2 + 40px));
  padding-right: 0;
}
.chz-hero-left { padding: 80px 40px 80px 0; display: flex; flex-direction: column; justify-content: center; position: relative; }
.chz-hero-left::before {
  content: ""; position: absolute; left: -96px; top: 80px;
  width: 60px; height: 120px;
  background: repeating-linear-gradient(180deg, var(--chz-gold) 0, var(--chz-gold) 8px, transparent 8px, transparent 20px);
}
.chz-hero-district {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--chz-display);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--chz-gold); margin-bottom: 28px;
}
.breakdance .chz-root .chz-hero-district { color: var(--chz-gold); }
.chz-hero-district::before { content: ""; width: 36px; height: 3px; background: var(--chz-gold); }
.chz-hero-title {
  font-size: clamp(56px, 7.5vw, 116px);
  line-height: 0.88; margin-bottom: 28px;
  color: #fff; font-weight: 900;
  letter-spacing: 0;
}
.chz-hero-title .gold { color: var(--chz-gold); }
.chz-hero-sub {
  font-size: 19px; line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 540px; margin-bottom: 68px; font-weight: 400;
}
.breakdance .chz-root .chz-hero-sub { color: rgba(255,255,255,0.85); }
.chz-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.chz-hero-ctas .chz-btn { padding: 16px 30px; font-size: 14px; }
.chz-hero-bar {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 28px; max-width: 560px;
}
.chz-hero-bar .stat { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.15); }
.chz-hero-bar .stat:last-child { border-right: 0; }
.chz-hero-bar .num { font-family: var(--chz-display); font-weight: 800; font-size: 36px; color: var(--chz-gold); line-height: 1; letter-spacing: 0; margin-bottom: 4px; }
.chz-hero-bar .num .suffix { font-size: 22px; }
.chz-hero-bar .lbl { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 600; }

.chz-hero-photo-wrap { position: relative; overflow: hidden; background: var(--chz-teal-dark); }
.chz-hero-photo-wrap .chz-hero-photo,
.chz-hero-photo-wrap .breakdance-image,
.chz-hero-photo-wrap .breakdance-image-container,
.chz-hero-photo-wrap .breakdance-image-clip { width: 100%; height: 100%; }
.chz-hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.breakdance .chz-root .chz-hero-photo-wrap .chz-hero-photo,
.breakdance .chz-root .chz-hero-photo-wrap .breakdance-image,
.breakdance .chz-root .chz-hero-photo-wrap .breakdance-image-container,
.breakdance .chz-root .chz-hero-photo-wrap .breakdance-image-clip,
.breakdance .chz-root .chz-hero-photo-wrap img {
  width: 100%;
  height: 100%;
}
.breakdance .chz-root .chz-hero-photo-wrap img {
  max-width: none;
  object-fit: cover;
  object-position: center 30%;
}
.chz-hero-photo-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--chz-teal) 0%, transparent 20%);
  pointer-events: none;
}
.chz-hero-badge {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 32px;
  background: var(--chz-gold); color: var(--chz-ink);
  padding: 14px 20px;
  font-family: var(--chz-display);
  font-weight: 800; font-size: 12.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; flex-direction: column; gap: 2px;
}
.chz-hero-badge .big { font-size: 22px; letter-spacing: 0; }

/* ============ SIGNUP ============ */
.chz-signup { background: var(--chz-paper-soft); padding: 80px 0; border-bottom: 2px solid var(--chz-ink); }
.chz-signup-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.chz-eyebrow {
  font-family: var(--chz-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--chz-teal); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 12px;
}
.chz-eyebrow::before { content: ""; width: 32px; height: 3px; background: var(--chz-gold); }
.chz-eyebrow-gold { color: var(--chz-gold); }
.chz-signup h2 { font-size: 52px; line-height: 0.95; margin-bottom: 16px; letter-spacing: 0; }
.chz-signup h2 .teal { color: var(--chz-teal); }
.chz-signup .lede { font-size: 16px; color: var(--chz-ink-soft); max-width: 380px; line-height: 1.55; }

.chz-form {
  background: #fff; border: 2px solid var(--chz-ink);
  padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.chz-form .field { display: flex; flex-direction: column; }
.chz-form label.chz-label {
  font-family: var(--chz-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 6px; color: var(--chz-ink);
}
.chz-form input[type=text],
.chz-form input[type=email],
.chz-form input[type=tel] {
  border: none; border-bottom: 2px solid var(--chz-ink);
  background: transparent;
  padding: 8px 0 10px;
  font: inherit; font-size: 16px; color: var(--chz-ink);
  transition: border .15s;
}
.chz-form input::placeholder { color: rgba(15,26,28,0.35); }
.chz-form input:focus { outline: none; border-bottom-color: var(--chz-teal); }
.chz-form-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; color: var(--chz-ink-soft); margin-top: 10px; }
.chz-form-consent input { margin-top: 3px; accent-color: var(--chz-teal); width: 16px; height: 16px; flex-shrink: 0; }
.chz-form-submit { grid-column: 1 / -1; margin-top: 6px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.chz-form-submit .legalese { font-size: 11.5px; color: var(--chz-ink-soft); max-width: 280px; line-height: 1.45; font-weight: 500; }
.chz-form-submit button {
  background: var(--chz-ink); color: var(--chz-gold);
  padding: 16px 32px;
  font-family: var(--chz-display);
  font-weight: 800; font-size: 13.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .15s;
  border-radius: 2px;
}
.chz-form-submit button:hover { background: var(--chz-teal); }
.chz-form-submit button[disabled] { opacity: 0.6; cursor: wait; }
.chz-form-error { grid-column: 1 / -1; color: #b00020; font-size: 13px; font-weight: 600; }

/* ============ BIO ============ */
.chz-bio { padding: 104px 0 96px; background: var(--chz-paper); position: relative; }
.chz-bio-grid { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 80px; align-items: start; }
.chz-bio-photos { display: grid; grid-template-columns: 1fr; gap: 18px; position: sticky; top: 120px; }
.chz-bio-photo { position: relative; overflow: hidden; background: var(--chz-teal-tint); }
.chz-bio-photo.tall { aspect-ratio: 5/6; }
.chz-bio-photo.wide { aspect-ratio: 5/3; }
.chz-bio-photo .chz-bio-img,
.chz-bio-photo .breakdance-image,
.chz-bio-photo .breakdance-image-container,
.chz-bio-photo .breakdance-image-clip { width: 100%; height: 100%; }
.chz-bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.breakdance .chz-root .chz-bio-photo .chz-bio-img,
.breakdance .chz-root .chz-bio-photo .breakdance-image,
.breakdance .chz-root .chz-bio-photo .breakdance-image-container,
.breakdance .chz-root .chz-bio-photo .breakdance-image-clip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}
.breakdance .chz-root .chz-bio-photo .breakdance-image-object,
.breakdance .chz-root .chz-bio-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}
.chz-bio-photo .cap {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--chz-ink); color: var(--chz-gold);
  padding: 8px 12px;
  font-family: var(--chz-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.chz-bio h2 { font-size: 64px; letter-spacing: 0; margin-bottom: 28px; }
.chz-bio h2 .gold { color: var(--chz-gold-deep); }
.chz-bio-lede { font-size: 22px; font-weight: 500; line-height: 1.35; margin-bottom: 28px; letter-spacing: 0; }
.chz-bio-body p { margin-bottom: 18px; font-size: 16.5px; line-height: 1.65; color: var(--chz-ink-soft); }
.chz-bio-body p strong { color: var(--chz-ink); font-weight: 700; }
.chz-bio-pulls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 36px; border-top: 2px solid var(--chz-ink); }
.chz-bio-pull { padding: 24px 18px 0; border-right: 1px solid var(--chz-line); }
.chz-bio-pull:last-child { border-right: 0; }
.chz-bio-pull .num { font-family: var(--chz-display); font-weight: 900; font-size: 48px; color: var(--chz-teal); line-height: 1; letter-spacing: 0; margin-bottom: 6px; }
.chz-bio-pull .lbl { font-size: 13px; color: var(--chz-ink-soft); line-height: 1.4; }

/* ============ PRIORITIES ============ */
.chz-priorities { background: var(--chz-ink); color: #fff; padding: 104px 0 96px; position: relative; overflow: hidden; }
.chz-priorities::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--chz-gold) 0, var(--chz-gold) 32px, var(--chz-teal) 32px, var(--chz-teal) 64px);
}
.chz-ptr-head { margin-bottom: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
.chz-ptr-head h2 { font-size: 64px; color: #fff; letter-spacing: 0; }
.chz-ptr-head h2 .gold { color: var(--chz-gold); }
.chz-ptr-head p { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.55; max-width: 480px; }
.chz-priorities .chz-eyebrow { color: var(--chz-gold); }
.chz-ptr-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,0.15); }
.chz-ptr-row {
  display: grid; grid-template-columns: 80px 1fr 1.4fr; gap: 40px;
  padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,0.15);
  align-items: start;
  transition: background .2s;
}
.chz-ptr-row:hover { background: rgba(255,255,255,0.02); }
.chz-ptr-row .num {
  font-family: var(--chz-display);
  font-weight: 900; font-size: 36px;
  color: var(--chz-gold); letter-spacing: 0; line-height: 1;
}
.chz-ptr-row h3 { font-size: 34px; color: #fff; letter-spacing: 0; line-height: 1; }
.chz-ptr-row .desc p { color: rgba(255,255,255,0.7); font-size: 15.5px; line-height: 1.6; margin-bottom: 16px; }
.chz-ptr-row .desc > p:last-child { margin-bottom: 0; }
.chz-ptr-highlights {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(240,183,26,0.32);
}
.chz-ptr-highlights-title {
  font-family: var(--chz-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chz-gold);
  margin-bottom: 7px;
}
.chz-ptr-row .desc .chz-ptr-highlights p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}
.chz-ptr-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.chz-ptr-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--chz-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  color: rgba(255,255,255,0.85);
}
.chz-ptr-tag.done { border-color: var(--chz-teal); color: var(--chz-teal-tint); background: rgba(14,110,124,0.15); }
.chz-ptr-tag.next { border-color: var(--chz-gold); color: var(--chz-gold-tint); background: rgba(240,183,26,0.1); }
.chz-ptr-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ============ ENDORSEMENTS ============ */
.chz-endorse { background: var(--chz-paper-soft); padding: 104px 0 96px; }
.chz-endorse-head { margin-bottom: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
.chz-endorse-head h2 { font-size: 64px; letter-spacing: 0; }
.chz-endorse-head h2 .teal { color: var(--chz-teal); }
.chz-endorse-head p { color: var(--chz-ink-soft); font-size: 17px; line-height: 1.55; max-width: 460px; }
.chz-endorse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--chz-ink); border: 2px solid var(--chz-ink); }
.chz-end-card {
  background: #fff; padding: 32px 30px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 280px; transition: background .2s;
}
.chz-end-card:hover { background: var(--chz-teal-tint); }
.chz-end-num {
  font-family: var(--chz-display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--chz-teal); margin-bottom: 14px;
}
.chz-end-quote { font-family: var(--chz-display); font-size: 17.5px; line-height: 1.35; font-weight: 500; color: var(--chz-ink); margin-bottom: 32px; letter-spacing: 0; }
.chz-end-quote img { display: block; margin: 0 auto; max-width: 100%; height: auto; }
.chz-end-attr { padding-top: 18px; border-top: 2px solid var(--chz-ink); }
.chz-end-name { font-family: var(--chz-display); font-weight: 800; font-size: 17px; color: var(--chz-ink); letter-spacing: 0; line-height: 1.1; text-transform: uppercase; }
.chz-end-role { font-size: 13px; color: var(--chz-ink-soft); margin-top: 4px; line-height: 1.3; }

/* ============ CONTACT ============ */
.chz-contact { padding: 104px 0 96px; background: var(--chz-paper); position: relative; }
.chz-contact-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.chz-contact-head .chz-eyebrow { justify-content: center; }
.chz-contact-head h2 { font-size: 60px; letter-spacing: 0; margin-bottom: 14px; }
.chz-contact-head h2 .teal { color: var(--chz-teal); }
.chz-contact-head p { color: var(--chz-ink-soft); font-size: 17px; max-width: 520px; margin: 0 auto; line-height: 1.55; }
.chz-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.chz-ctc-card {
  border: 2px solid var(--chz-ink); padding: 36px 36px 32px;
  background: #fff; position: relative;
  transition: background .2s, color .2s;
}
.chz-ctc-card.camp { background: var(--chz-teal); color: #fff; border-color: var(--chz-teal); }
.chz-ctc-card.camp h3, .chz-ctc-card.camp .chz-ctc-key, .chz-ctc-card.camp a { color: #fff; }
.chz-ctc-card.camp .chz-ctc-sub { color: rgba(255,255,255,0.75); }
.chz-ctc-stripe { position: absolute; top: 0; left: 0; right: 0; height: 6px; }
.chz-ctc-card.camp .chz-ctc-stripe { background: var(--chz-gold); }
.chz-ctc-card.leg .chz-ctc-stripe { background: var(--chz-ink); }
.chz-ctc-label {
  font-family: var(--chz-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 12px;
}
.chz-ctc-card.camp .chz-ctc-label { color: var(--chz-gold); }
.chz-ctc-card.leg .chz-ctc-label { color: var(--chz-teal); }
.chz-ctc-label::before { content: ""; width: 24px; height: 3px; background: currentColor; }
.chz-ctc-card h3 { font-size: 34px; letter-spacing: 0; margin-bottom: 8px; }
.chz-ctc-sub { font-size: 14.5px; color: var(--chz-ink-soft); margin-bottom: 28px; line-height: 1.55; }
.chz-ctc-list { display: flex; flex-direction: column; gap: 14px; }
.chz-ctc-row { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.chz-ctc-row .ico {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.chz-ctc-card.leg .chz-ctc-row .ico { background: var(--chz-paper-soft); color: var(--chz-teal); }
.chz-ctc-card.camp .chz-ctc-row .ico { color: var(--chz-gold); }
.chz-ctc-row .ico svg { width: 15px; height: 15px; }
.chz-ctc-row a { transition: opacity .15s; }
.chz-ctc-row a:hover { opacity: 0.75; }
.chz-ctc-row .chz-ctc-key { display: block; font-family: var(--chz-display); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; margin-bottom: 3px; }
.chz-ctc-card.leg .chz-ctc-key { color: var(--chz-ink-soft); }

/* ============ FOOTER ============ */
.chz-footer {
  background: var(--chz-ink);
  color: rgba(255,255,255,0.6);
  padding: 96px 0 56px;
  border-top: 8px solid var(--chz-gold);
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.28);
}
.chz-footer .chz-wrap {
  max-width: none;
  padding-left: 72px;
  padding-right: 72px;
}
.chz-ft {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 72px;
}
.chz-ft-logo { justify-self: start; }
.chz-ft-logo img { height: 96px; width: auto; max-width: none; filter: brightness(0) invert(1); }
.chz-ft-tag {
  justify-self: center;
  text-align: center;
  font-family: var(--chz-display);
  font-size: 22px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--chz-gold);
  white-space: nowrap;
}
.breakdance .chz-root .chz-ft-tag,
.breakdance .chz-root .chz-ft-tag * {
  color: var(--chz-gold) !important;
}
.chz-ft-social { display: flex; gap: 20px; justify-content: flex-end; justify-self: end; }
.chz-ft-social a {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
  color: #fff;
}
.breakdance .chz-root .chz-ft-social a,
.breakdance .chz-root .chz-ft-social svg {
  color: #fff !important;
}
.chz-ft-social a:hover { background: var(--chz-gold); color: var(--chz-ink); }
.chz-ft-social svg { width: 24px; height: 24px; fill: currentColor; }
.chz-ft-meta {
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  color: rgba(255,255,255,0.42);
  text-align: center;
  margin-top: 0;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--chz-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Class-based overrides keep native Breakdance elements aligned with the campaign art direction. */
.chz-root .chz-hero-title {
  font-family: var(--chz-display);
  font-size: clamp(56px, 7.5vw, 116px);
  line-height: 0.88;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.breakdance .chz-root .chz-hero-title,
.breakdance .chz-root .chz-signup-title,
.breakdance .chz-root .chz-bio-title,
.breakdance .chz-root .chz-ptr-title,
.breakdance .chz-root .chz-endorse-title,
.breakdance .chz-root .chz-contact-title,
.breakdance .chz-root .chz-priority-title,
.breakdance .chz-root .chz-ctc-card h3 {
  font-family: var(--chz-display);
  letter-spacing: 0;
}
.breakdance .chz-root .chz-hero-title { font-size: clamp(56px, 7.5vw, 116px); color: #fff; line-height: 0.88; }
.breakdance .chz-root .chz-signup-title { font-size: 52px; color: var(--chz-ink); }
.breakdance .chz-root .chz-bio-title,
.breakdance .chz-root .chz-endorse-title,
.breakdance .chz-root .chz-contact-title { color: var(--chz-ink); }
.breakdance .chz-root .chz-bio-title,
.breakdance .chz-root .chz-ptr-title,
.breakdance .chz-root .chz-endorse-title { font-size: 64px; }
.breakdance .chz-root .chz-ptr-title,
.breakdance .chz-root .chz-priority-title { color: #fff; }
.breakdance .chz-root .chz-contact-title { font-size: 60px; }
.breakdance .chz-root .chz-priority-title { font-size: 34px; line-height: 1; }
.chz-root .chz-signup-title,
.chz-root .chz-bio-title,
.chz-root .chz-ptr-title,
.chz-root .chz-endorse-title,
.chz-root .chz-contact-title,
.chz-root .chz-priority-title,
.chz-root .chz-ctc-card h3 {
  font-family: var(--chz-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}
.chz-root .chz-signup-title { font-size: 52px; color: var(--chz-ink); margin-bottom: 16px; }
.chz-root .chz-bio-title { font-size: 64px; color: var(--chz-ink); margin-bottom: 28px; }
.chz-root .chz-ptr-title { font-size: 64px; color: #fff; }
.chz-root .chz-endorse-title { font-size: 64px; color: var(--chz-ink); }
.chz-root .chz-contact-title { font-size: 60px; color: var(--chz-ink); margin-bottom: 14px; }
.chz-root .chz-priority-title,
.chz-root .chz-ptr-row h3 { font-size: 34px; color: #fff; line-height: 1; }
.chz-root .chz-signup-title .teal,
.chz-root .chz-endorse-title .teal,
.chz-root .chz-contact-title .teal { color: var(--chz-teal); }
.chz-root .chz-hero-title .gold,
.chz-root .chz-ptr-title .gold { color: var(--chz-gold); }
.chz-root .chz-bio-title .gold { color: var(--chz-gold-deep); }

/* Native Breakdance Div elements default to flex-column; these restore the design layout. */
.breakdance .chz-root .chz-wrap {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.breakdance .chz-footer .chz-wrap {
  max-width: none;
  padding-left: 72px;
  padding-right: 72px;
}
.breakdance .chz-root .chz-header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  padding-left: 40px;
  padding-right: 40px;
  gap: 56px;
}
.breakdance .chz-root .chz-header-links,
.breakdance .chz-root .chz-header-cta,
.breakdance .chz-root .chz-hero-ctas,
.breakdance .chz-root .chz-ptr-tags,
.breakdance .chz-root .chz-ctc-row,
.breakdance .chz-root .chz-ft-social {
  display: flex;
  flex-direction: row;
}
.breakdance .chz-root .chz-hero-grid,
.breakdance .chz-root .chz-signup-grid,
.breakdance .chz-root .chz-bio-grid,
.breakdance .chz-root .chz-ptr-head,
.breakdance .chz-root .chz-endorse-head,
.breakdance .chz-root .chz-contact-grid,
.breakdance .chz-root .chz-ft {
  display: grid;
}
.breakdance .chz-root .chz-hero-grid { grid-template-columns: 1.05fr 1fr; align-items: stretch; }
.breakdance .chz-root .chz-hero .chz-hero-grid {
  max-width: none;
  padding-left: max(40px, calc((100vw - 1320px) / 2 + 40px));
  padding-right: 0;
}
.breakdance .chz-root .chz-signup-grid { grid-template-columns: 1fr 1.5fr; }
.breakdance .chz-root .chz-bio-grid { grid-template-columns: 1.1fr 1.4fr; }
.breakdance .chz-root .chz-ptr-head,
.breakdance .chz-root .chz-endorse-head,
.breakdance .chz-root .chz-contact-grid { grid-template-columns: 1fr 1fr; }
.breakdance .chz-root .chz-ft { grid-template-columns: 1fr auto 1fr; }
.breakdance .chz-root .chz-ft-logo img {
  height: 96px;
  width: auto;
  max-width: none;
}
.breakdance .chz-root .chz-hero-left,
.breakdance .chz-root .chz-end-card {
  display: flex;
  flex-direction: column;
}
.breakdance .chz-root .chz-hero-bar,
.breakdance .chz-root .chz-bio-photos,
.breakdance .chz-root .chz-bio-pulls,
.breakdance .chz-root .chz-endorse-grid,
.breakdance .chz-root .chz-contact-grid,
.breakdance .chz-root .chz-form {
  display: grid;
}
.breakdance .chz-root .chz-hero-bar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.breakdance .chz-root .chz-bio-photos { grid-template-columns: 1fr; }
.breakdance .chz-root .chz-bio-pulls { grid-template-columns: repeat(3, 1fr); }
.breakdance .chz-root .chz-endorse-grid { grid-template-columns: repeat(3, 1fr); }
.breakdance .chz-root .chz-form { grid-template-columns: 1fr 1fr; }
.breakdance .chz-root .chz-ptr-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
}

/* ============ Mobile ============ */
@media (max-width: 820px) {
  .chz-wrap,
  .breakdance .chz-root .chz-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .chz-footer {
    padding: 56px 0 36px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .chz-footer .chz-wrap,
  .breakdance .chz-footer .chz-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .chz-header-inner,
  .breakdance .chz-root .chz-header-inner {
    padding: 12px 18px;
    gap: 12px;
  }
  .chz-header-logo img,
  .breakdance .chz-root .chz-header-logo img {
    height: 34px;
  }
  .chz-header-cta .chz-btn-ghost {
    display: none;
  }
  .chz-header-cta .chz-btn {
    padding: 10px 14px;
    font-size: 11px;
  }
  .chz-header-links { display: none; }
  .chz-hero-grid, .chz-signup-grid, .chz-bio-grid, .chz-ptr-head, .chz-endorse-head, .chz-contact-grid, .chz-endorse-grid, .chz-ft { grid-template-columns: 1fr; gap: 32px; }
  .chz-hero .chz-hero-grid,
  .breakdance .chz-root .chz-hero .chz-hero-grid {
    padding-left: 24px;
    padding-right: 24px;
  }
  .breakdance .chz-root .chz-header-links { display: none; }
  .breakdance .chz-root .chz-hero-grid,
  .breakdance .chz-root .chz-signup-grid,
  .breakdance .chz-root .chz-bio-grid,
  .breakdance .chz-root .chz-ptr-head,
  .breakdance .chz-root .chz-endorse-head,
  .breakdance .chz-root .chz-contact-grid,
  .breakdance .chz-root .chz-endorse-grid,
  .breakdance .chz-root .chz-ft {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .chz-hero-grid > *,
  .breakdance .chz-root .chz-hero-grid > * {
    min-width: 0;
  }
  .chz-hero-left { padding: 44px 0 40px; }
  .chz-hero-left::before { display: none; }
  .chz-ptr-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .breakdance .chz-root .chz-ptr-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .chz-ptr-row .desc { grid-column: 1 / -1; }
  .chz-hero-title {
    font-size: 39px;
    max-width: 100%;
  }
  .breakdance .chz-root .chz-hero-title {
    font-size: 39px;
    max-width: 100%;
  }
  .chz-hero-sub { font-size: 17px; }
  .chz-hero-badge {
    left: 50%; transform: translateX(-50%);
    bottom: 24px;
  }
  .chz-hero-bar,
  .breakdance .chz-root .chz-hero-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .chz-hero-bar .stat {
    border-right: 0;
    padding-right: 0;
  }
  .chz-form,
  .breakdance .chz-root .chz-form {
    width: 100%;
    max-width: calc(100vw - 48px);
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .chz-signup-copy,
  .chz-signup-form-wrap,
  .chz-signup .lede {
    width: 100%;
    max-width: calc(100vw - 48px);
  }
  .chz-hero-photo-wrap img,
  .chz-hero-photo-wrap .breakdance-image,
  .chz-hero-photo-wrap .breakdance-image-container,
  .chz-hero-photo-wrap .breakdance-image-clip,
  .breakdance .chz-root .chz-hero-photo-wrap,
  .breakdance .chz-root .chz-hero-photo-wrap .breakdance-image,
  .breakdance .chz-root .chz-hero-photo-wrap .breakdance-image-container,
  .breakdance .chz-root .chz-hero-photo-wrap .breakdance-image-clip,
  .breakdance .chz-root .chz-hero-photo-wrap img {
    max-width: 100%;
  }
  .chz-bio h2, .chz-ptr-head h2, .chz-endorse-head h2, .chz-contact-head h2, .chz-signup h2 { font-size: 42px; }
  .breakdance .chz-root .chz-bio-title,
  .breakdance .chz-root .chz-ptr-title,
  .breakdance .chz-root .chz-endorse-title,
  .breakdance .chz-root .chz-contact-title,
  .breakdance .chz-root .chz-signup-title { font-size: 42px; }
  .chz-bio-photos { position: static; }
  .chz-bio-pulls { grid-template-columns: 1fr; border-top: 1px solid var(--chz-line); }
  .breakdance .chz-root .chz-bio-pulls { grid-template-columns: 1fr; }
  .chz-bio-pull { border-right: 0; border-bottom: 1px solid var(--chz-line); padding: 18px 0; }
  .chz-ft,
  .breakdance .chz-root .chz-ft {
    text-align: center;
    justify-items: center;
    margin-bottom: 36px;
  }
  .chz-ft-logo img,
  .breakdance .chz-root .chz-ft-logo img {
    height: 72px;
  }
  .chz-ft-tag {
    font-size: 14px;
    white-space: normal;
  }
  .chz-ft-social { justify-content: center; gap: 12px; }
  .chz-ft-social a {
    width: 50px;
    height: 50px;
  }
  .chz-ft-social svg {
    width: 18px;
    height: 18px;
  }
  .chz-ft-meta {
    margin-top: 0;
    padding-top: 24px;
    font-size: 11px;
    line-height: 1.7;
  }
}

@media (max-width: 1040px) and (min-width: 821px) {
  .chz-header-inner {
    padding-left: 28px;
    padding-right: 28px;
    gap: 24px;
  }
  .breakdance .chz-root .chz-header-inner {
    padding-left: 28px;
    padding-right: 28px;
    gap: 24px;
  }
  .chz-header-logo img,
  .breakdance .chz-root .chz-header-logo img {
    height: 38px;
  }
  .chz-header-links a {
    padding-left: 12px;
    padding-right: 12px;
  }
  .chz-header-cta {
    gap: 10px;
  }
  .chz-header-cta .chz-btn {
    padding: 12px 18px;
    font-size: 12px;
  }
  .chz-hero-grid,
  .breakdance .chz-root .chz-hero-grid {
    min-height: 600px;
  }
  .chz-hero .chz-hero-grid,
  .breakdance .chz-root .chz-hero .chz-hero-grid {
    padding-left: 28px;
    padding-right: 0;
  }
  .chz-hero-left {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .chz-hero-district {
    margin-bottom: 18px;
  }
  .chz-hero-title,
  .breakdance .chz-root .chz-hero-title {
    font-size: 62px;
    margin-bottom: 18px;
  }
  .chz-hero-sub {
    margin-bottom: 44px;
  }
  .chz-hero-ctas {
    margin-bottom: 18px;
  }
  .chz-hero-bar {
    padding-top: 20px;
  }
}
