/*
  JOEL ROWSWELL CAMPAIGN — CONSISTENCY + MOBILE REBUILD
  ------------------------------------------------------
  Presentation-only rebuild. No website copy/content is changed.
  Brand system: Navy + Red + neutral white/off-white.
*/

:root {
  --navy: #102A43;
  --navy-deep: #0B1F33;
  --navy-soft: #173A5E;
  --red: #C62828;
  --red-dark: #A91F24;
  --white: #FFFFFF;
  --cream: #F7F5F1;
  --paper: #FBFAF8;
  --ink: #17212B;
  --muted: #5B6670;
  --line: #DDE2E7;
  --shadow: 0 16px 42px rgba(11, 31, 51, .10);
  --shadow-soft: 0 8px 26px rgba(11, 31, 51, .08);
  --radius: 14px;
  --radius-sm: 9px;
  --content: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 7vw, 104px);
  --font-head: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  
  
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
p, ul, ol, blockquote { margin-top: 0; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

.wrap,
.nav-shell {
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}
.section { padding: var(--section-y) 0; }

/* ---------- TYPE SYSTEM ---------- */
h1, h2, h3,
.campaign-kicker,
.eyebrow,
.brand-text,
.button,
.main-nav,
.priority-number,
.timeline-marker,
.career-card-head,
.milestone-top,
.road-stat span,
.road-stat strong,
.photo-caption {
  
}

h1, h2, h3 {
  margin: 0 0 .55em;
  color: var(--navy);
  font-weight: 800;
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: -.015em;
}
h1 {  }
h2 {  }
h3 {  line-height: 1.06; }

p, li {  }
.large-copy,
.section-intro,
.hero-lead {  line-height: 1.58; }

.eyebrow,
.campaign-kicker {
  margin-bottom: 14px;
  color: var(--red);
  
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--white); }

.section-heading,
.priorities-heading,
.first100-heading,
.career-heading { margin-bottom: clamp(34px, 4vw, 58px); }
.section-heading.centered,
.centered { text-align: center; }
.section-heading.centered > p,
.career-heading > p { max-width: 830px; margin-inline: auto; }

blockquote {
  margin: 30px 0 0;
  padding: 18px 0 18px 22px;
  border-left: 4px solid var(--red);
  color: var(--navy);
  
  font-weight: 650;
  line-height: 1.5;
}

/* ---------- LINKS / BUTTONS ---------- */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 7px;
  
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .035em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-red,
.button-primary { background: var(--red); color: var(--white); }
.button-red:hover,
.button-primary:hover { background: var(--red-dark); }
.button-dark { background: var(--navy); color: var(--white); }
.button-outline,
.button-ghost { border-color: rgba(255,255,255,.72); color: var(--white); background: transparent; }
.button-outline-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.button-gold { background: var(--red); color: var(--white); }
.button-full { width: 100%; }

/* ---------- ACCESSIBILITY ---------- */
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}
.skip-link:focus { top: 10px; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------- EDITOR BAR ---------- */
.editor-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px var(--gutter);
  background: #071522;
  color: var(--white);
  
}
.editor-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.editor-button {
  border: 0;
  border-radius: 5px;
  padding: 8px 10px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}
.editor-button.secondary { background: #2B4054; }
.editor-button.danger { background: #7E1E23; }
.editor-status { display: flex; align-items: center; gap: 8px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #95A8B9; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 16px rgba(11,31,51,.05);
  backdrop-filter: blur(10px);
}
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.campaign-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  text-decoration: none;
  color: var(--navy);
}
.brand-monogram,
.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 7px;
  background: var(--red);
  color: var(--white);
  
  
  font-weight: 900;
  line-height: 1;
}
.brand-text { display: grid; line-height: .92; }
.brand-text strong {  font-weight: 900; letter-spacing: .02em; }
.brand-text span { margin-top: 4px; color: var(--red);  font-weight: 800; letter-spacing: .09em; }

.main-nav { display: flex; align-items: center; gap: clamp(13px, 1.5vw, 22px); }
.main-nav a {
  color: var(--navy);
  
  font-weight: 800;
  letter-spacing: .035em;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--red); }
.main-nav .nav-button { padding: 10px 14px; border-radius: 5px; background: var(--red); color: var(--white); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
}
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy); }

/* ---------- HERO ---------- */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}
.hero-photo,
.hero-background { position: absolute; inset: 0; z-index: 0; }
.hero-photo img,
.hero-background img { width: 100%; height: 100%; object-fit: cover; object-position:center 52%; }
.hero-photo-shade,
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,21,34,.94) 0%, rgba(7,21,34,.78) 52%, rgba(7,21,34,.52) 100%);
}
.hero-content,
.hero-layout {
  position: relative;
  z-index: 2;
  min-height: min(760px, 82vh);
  padding-top: clamp(72px, 9vw, 118px);
  padding-bottom: clamp(70px, 8vw, 105px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: center;
  gap: clamp(38px, 6vw, 88px);
}
.hero-copy { max-width: 790px; }
.hero-copy h1 { color: var(--white); }
.hero-copy h1 span { display: block; }
.hero-copy .gold-line,
.hero-copy .accent-line { color: var(--white); }
.hero-lead { max-width: 720px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-candidate-card,
.hero-portrait-wrap {
  width: min(100%, 380px);
  justify-self: end;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.candidate-photo,
.hero-portrait {
  position: relative;
  min-height: 350px;
  background: #E9EDF1;
  overflow: hidden;
}
.candidate-photo img,
.hero-portrait img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: contain;
  object-position: center bottom;
}
.candidate-placeholder-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 7px;
  text-align: center;
  color: var(--navy);
  padding: 20px;
}
.candidate-initials {   font-weight: 900; }
.candidate-card-copy,
.portrait-tag { padding: 20px 22px 22px; }
.candidate-card-copy > span,
.portrait-tag > span { color: var(--red);  font-weight: 800; letter-spacing: .06em;  }
.candidate-card-copy p,
.portrait-tag strong { display: block; margin: 5px 0 0; color: var(--navy); font-weight: 700; line-height: 1.35; }

.hero-band { position: relative; z-index: 3; background: var(--red); }
.hero-band-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-band-grid > div { display: flex; align-items: center; gap: 14px; padding: 18px 22px; color: var(--white); border-right: 1px solid rgba(255,255,255,.25); }
.hero-band-grid > div:last-child { border-right: 0; }
.hero-band-grid span {   font-weight: 900; }
.hero-band-grid strong {   line-height: 1.05; letter-spacing: .03em; }

/* ---------- CONSISTENT TWO-COLUMN SECTIONS ---------- */
.intro-grid,
.about-grid,
.about-grid-expanded,
.infrastructure-grid,
.roads-hero-grid,
.family-layout,
.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

/* ---------- IMAGE SYSTEM ---------- */
.image-slot { position: relative; overflow: hidden; background: #EDF0F3; }
.image-slot > img { width: 100%; height: auto; }

/* Keep the skyline inside the hero as a true background layer.
   These more-specific rules intentionally override the generic .image-slot rules above. */
.hero-section .hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-deep);
}
.hero-section .hero-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 52%;
}
.hero-section .hero-photo-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(16,42,67,.96) 0%, rgba(16,42,67,.88) 38%, rgba(16,42,67,.70) 68%, rgba(16,42,67,.58) 100%);
}
.hero-section .hero-content,
.hero-section .hero-layout {
  position: relative;
  z-index: 2;
}
.hero-section .hero-band {
  position: relative;
  z-index: 3;
}
.intro-image,
.about-photo,
.roads-photo,
.visual-large,
.family-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.intro-image img,
.roads-photo img,
.visual-large img,
.family-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.about-photo img { width: 100%; height: auto; max-height: 620px; object-fit: contain; object-position: center; background: var(--cream); }
.photo-caption { padding: 11px 14px; background: var(--navy); color: var(--white);  font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.image-upload {
  position: absolute;
  z-index: 12;
  right: 10px;
  bottom: 10px;
  display: none;
  padding: 8px 10px;
  border-radius: 5px;
  background: var(--red);
  color: var(--white);
  
  font-weight: 800;
  cursor: pointer;
}
body.editing .image-upload,
body.editor-enabled.editing .image-upload { display: block; }

/* ---------- CALLOUTS ---------- */
.gold-callout {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  background: var(--cream);
  color: var(--navy);
}
.gold-callout strong { display: block;   }
.gold-callout span { color: var(--muted); }

/* ---------- ALL CARD SYSTEMS: ONE LANGUAGE ---------- */
.three-pillars-grid,
.priority-grid,
.road-plan-grid,
.safety-grid,
.timeline-grid,
.career-grid,
.milestone-grid,
.standard-grid {
  display: grid;
  gap: 18px;
}
.three-pillars-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.priority-grid,
.road-plan-grid,
.safety-grid,
.career-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.timeline-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.milestone-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.standard-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.pillar-block,
.priority-card,
.road-plan-card,
.safety-card,
.timeline-card,
.career-card,
.milestone-card,
.standard-card,
.form-card {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

/* Remove the old “different coloured card theme” effect. */
.pillar-block.navy,
.pillar-block.red,
.pillar-block.gold,
.milestone-card.red,
.milestone-card.gold,
.milestone-card.navy-light,
.priority-card.red-card,
.priority-featured,
.priority-road,
.road-plan-card-featured,
.safety-card-accent,
.career-card-featured {
  background: var(--white);
  color: var(--ink);
  border-top-color: var(--red);
}
.pillar-block h3,
.priority-card h3,
.road-plan-card h3,
.safety-card h3,
.timeline-card h3,
.career-card h3,
.milestone-card h3,
.standard-card h3 { color: var(--navy); }

/* ONE NUMBER STYLE EVERYWHERE */
.priority-number,
.road-plan-card > span:first-child,
.safety-card > span:first-child,
.timeline-marker,
.career-card-head > span:first-child,
.milestone-top > span:first-child,
.pillar-block > span:first-child,
.standard-card > span:first-child {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white) !important;
  
  
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
}

.priority-icon { display: none; }
.priority-card > a { display: inline-flex; margin-top: 12px; color: var(--red); font-weight: 750; text-decoration: none; }
.priority-card > a:hover { text-decoration: underline; }

/* ---------- COLOURED SECTIONS: ONLY NAVY OR RED ---------- */
.three-pillars-section,
.first100-section {
  padding: var(--section-y) 0;
  background: var(--navy);
  color: var(--white);
}
.three-pillars-section h2,
.first100-section h2 { color: var(--white); }
.three-pillars-section .pillar-block,
.first100-section .timeline-card { color: var(--ink); }

/* ---------- ROADS ---------- */
.roads-section { background: var(--cream); }
.roads-results-standard {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  background: var(--white);
}
.roads-results-standard strong { display: block; color: var(--navy);   }
.roads-results-standard span { display: block; margin-top: 4px; color: var(--muted);  font-weight: 700; letter-spacing: .03em; }
.road-data-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 42px 0 12px; overflow: hidden; border-radius: var(--radius); background: rgba(255,255,255,.28); box-shadow: var(--shadow-soft); }
.road-stat { padding: 26px 24px; background: var(--navy); color: var(--white); }
.road-stat-red { background: var(--red); }
.road-stat strong { display: block; color: var(--white);  line-height: .9; }
.road-stat span { display: block; margin: 8px 0 5px; color: var(--white);  font-weight: 800; letter-spacing: .055em; }
.road-stat p { color: rgba(255,255,255,.88);  line-height: 1.45; }
.road-source-note,
.safety-source-note { margin: 12px 0 32px; color: var(--muted);  line-height: 1.5; }
.road-lifecycle,
.responsibility-quote {
  margin-top: 28px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}
.road-lifecycle h3 { color: var(--white); }
.road-lifecycle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.road-lifecycle-grid > div { padding: 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; }
.road-lifecycle-grid strong { display: block;   }
.road-lifecycle-grid span { display: block; margin-top: 5px; color: rgba(255,255,255,.82);  line-height: 1.45; }

/* ---------- SAFETY ---------- */
.safety-section { background: var(--white); }
.safety-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(36px, 5vw, 68px); align-items: end; margin-bottom: 34px; }
.safety-role-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 30px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.safety-role-strip > div { padding: 19px 18px; background: var(--cream); border-right: 1px solid var(--line); }
.safety-role-strip > div:last-child { border-right: 0; }
.safety-role-strip span { display: block; margin-bottom: 5px; color: var(--red);   font-weight: 800; letter-spacing: .055em; }
.safety-role-strip strong { display: block; color: var(--navy);   line-height: 1.15; }
.responsibility-quote { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.responsibility-quote strong { max-width: 50%;   line-height: 1; }
.responsibility-quote span { max-width: 46%; color: rgba(255,255,255,.86); }

/* ---------- IMAGE BREAKS ---------- */
.image-break-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 430px;
  background: var(--navy);
  color: var(--white);
}
.image-break-photo { min-height: 430px; background: #DDE2E7; }
.image-break-photo img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; object-position: center; }
.image-break-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 7vw, 90px); }
.image-break-copy h2 { color: var(--white); }
.image-break-copy p { max-width: 700px; color: rgba(255,255,255,.88); }
.image-break-copy .eyebrow { color: var(--white); opacity: .9; }
/* Important people / leadership photography should not be aggressively cropped. */
.leadership-image-break .image-break-photo { display: grid; place-items: center; padding: 34px; }
.leadership-image-break .image-break-photo img { width: min(100%, 680px); height: auto; max-height: 430px; object-fit: contain; border-radius: 10px; }
.leadership-image-break .image-break-copy { background: var(--navy); }

/* ---------- ABOUT / COMMUNITY / CAREER ---------- */
.about-section { background: var(--paper); }
.about-copy p { max-width: 760px; }
.milestone-top,
.career-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.milestone-top > span,
.career-card-head > span { margin-bottom: 0 !important; flex: 0 0 auto; }
.milestone-top > strong,
.career-card-head > strong { color: var(--red);   line-height: 1.05; text-align: right; letter-spacing: .025em; }
.bench-strip {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
}
.bench-strip h3 { color: var(--white); margin-bottom: 0; }
.bench-strip p { color: rgba(255,255,255,.9); }
.career-section { background: var(--white); }

/* ---------- FIRST 100 ---------- */
.first100-section .timeline-card { border-top-color: var(--red); }
.timeline-card > span:not(.timeline-marker) { display: block; margin: -4px 0 8px; color: var(--red);   font-weight: 800; letter-spacing: .055em; }
.timeline-card ul { padding-left: 1.1em; }
.timeline-card li { margin-bottom: 8px; }

/* ---------- FORMS ---------- */
.form-card { border-top-color: var(--red); }
.form-header { margin-bottom: 20px; }
.form-header > span { color: var(--red);  font-weight: 800; letter-spacing: .06em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card label { display: grid; gap: 7px; margin-bottom: 14px; color: var(--navy);  font-weight: 700; }
.form-card input,
.form-card textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #C9D1D9;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  
  line-height: 1.45;
}
.form-card input:focus,
.form-card textarea:focus { outline: 3px solid rgba(198,40,40,.14); border-color: var(--red); }
.checkbox-row { display: flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 9px !important; }
.checkbox-row input { width: auto; }
.privacy-note { color: var(--muted);  }

/* ---------- FOOTER ---------- */
.site-footer { padding: 58px 0 20px; background: #071522; color: rgba(255,255,255,.82); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 44px; }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand-block > p { margin-top: 16px; color: rgba(255,255,255,.62);  }
.footer-nav,
.footer-contact { display: grid; align-content: start; gap: 7px; }
.footer-nav > strong,
.footer-contact > strong { margin-bottom: 6px; color: var(--white);   letter-spacing: .055em; }
.footer-nav a,
.footer-contact a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer-nav a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.6);  }
.photo-credits { margin-top: 22px; color: rgba(255,255,255,.58);  }

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 3000; transform: translateX(-50%); }

/* ---------- SOURCE / UTILITY ELEMENTS ---------- */
.source-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 22px; }
.source-links a { color: var(--navy);  }
.centered-source { justify-content: center; text-align: center; }
.check-list { display: grid; gap: 9px; margin: 22px 0; }
.check-list > div { display: flex; gap: 10px; align-items: flex-start; }
.check-list > div > span { color: var(--red); font-weight: 900; }
.infrastructure-statement { color: var(--navy); font-weight: 800; }
.visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.visual-large { grid-column: 1 / -1; }
.visual-stat { padding: 20px; border-radius: 8px; background: var(--navy); color: var(--white); }
.visual-stat.red-stat { background: var(--red); }
.visual-stat strong { display: block;   line-height: 1; }
.visual-stat span {  }

/* ---------- TABLET ---------- */
@media (max-width: 1050px) {
  .main-nav { gap: 12px; }
  .main-nav a {  }
  .standard-grid { grid-template-columns: repeat(3, 1fr); }
  .milestone-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content,
  .hero-layout { grid-template-columns: 1.2fr .8fr; }
}

/* ---------- MOBILE REBUILD ---------- */
@media (max-width: 860px) {
  :root { --gutter: 20px; --section-y: 66px; }
  html { scroll-padding-top: 70px; }
  body {  line-height: 1.64; }

  h1 {  line-height: .94; }
  h2 {  line-height: .98; }
  h3 {  line-height: 1.05; }
  .large-copy,
  .section-intro,
  .hero-lead {  line-height: 1.62; }
  .eyebrow,
  .campaign-kicker {  }

  .editor-bar { align-items: flex-start; flex-direction: column; }
  .editor-actions { width: 100%; }

  .nav-shell { width: calc(100% - 32px); min-height: 68px; }
  .brand-monogram,
  .brand-mark { width: 39px; height: 39px;  }
  .brand-text strong {  }
  .brand-text span {  }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 10px 18px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 26px rgba(11,31,51,.09);
  }
  .main-nav.open,
  .main-nav.active,
  .main-nav.is-open,
  .menu-open .main-nav { display: grid; gap: 0; }
  .main-nav a { padding: 13px 5px; border-bottom: 1px solid var(--line);  }
  .main-nav .nav-button { margin-top: 10px; padding: 13px 14px; text-align: center; border-bottom: 0; }

  .hero-content,
  .hero-layout {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 54px;
    grid-template-columns: 1fr;
    gap: 34px;
  }
	.hero-section .hero-photo > img {
		object-position:center center;
	}
  .hero-section .hero-photo-shade,
  .hero-overlay { background: linear-gradient(180deg, rgba(16,42,67,.94) 0%, rgba(16,42,67,.80) 58%, rgba(16,42,67,.92) 100%); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-candidate-card,
  .hero-portrait-wrap { justify-self: stretch; width: 100%; max-width: 440px; margin-inline: auto; }
  .candidate-photo,
  .hero-portrait,
  .candidate-photo img,
  .hero-portrait img { min-height: 0; }
  .candidate-photo img,
  .hero-portrait img { aspect-ratio: 4 / 5; object-fit: contain; }

  .hero-band-grid { grid-template-columns: 1fr; }
  .hero-band-grid > div { min-height: 58px; padding: 14px 18px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.23); }
  .hero-band-grid > div:last-child { border-bottom: 0; }

  .intro-grid,
  .about-grid,
  .about-grid-expanded,
  .infrastructure-grid,
  .roads-hero-grid,
  .family-layout,
  .join-grid,
  .safety-intro { grid-template-columns: 1fr; gap: 34px; }

  .three-pillars-grid,
  .priority-grid,
  .road-plan-grid,
  .safety-grid,
  .timeline-grid,
  .career-grid,
  .milestone-grid,
  .standard-grid { grid-template-columns: 1fr; }

  .pillar-block,
  .priority-card,
  .road-plan-card,
  .safety-card,
  .timeline-card,
  .career-card,
  .milestone-card,
  .standard-card,
  .form-card { padding: 24px 22px; }

  .priority-number,
  .road-plan-card > span:first-child,
  .safety-card > span:first-child,
  .timeline-marker,
  .career-card-head > span:first-child,
  .milestone-top > span:first-child,
  .pillar-block > span:first-child,
  .standard-card > span:first-child { width: 40px; height: 40px; margin-bottom: 17px; }

  .road-data-strip { grid-template-columns: 1fr; }
  .road-stat { padding: 24px 22px; }
  .road-lifecycle-grid { grid-template-columns: 1fr; }
  .safety-role-strip { grid-template-columns: 1fr; }
  .safety-role-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .safety-role-strip > div:last-child { border-bottom: 0; }
  .responsibility-quote { align-items: flex-start; flex-direction: column; }
  .responsibility-quote strong,
  .responsibility-quote span { max-width: none; }

  .image-break-section { grid-template-columns: 1fr; min-height: 0; }
  .image-break-photo { min-height: 0; }
  .image-break-photo img { width: 100%; height: auto; max-height: none; aspect-ratio: 16 / 10; object-fit: cover; }
  .image-break-copy { padding: 46px 20px 52px; }
  .leadership-image-break .image-break-photo { padding: 22px 20px; background: var(--cream); }
  .leadership-image-break .image-break-photo img { width: 100%; max-height: none; aspect-ratio: auto; object-fit: contain; }

  .bench-strip { grid-template-columns: 1fr; gap: 16px; padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 5px; }

  /* Mobile reading comfort: prevent tiny inherited text anywhere in content. */
  main p,
  main li,
  main blockquote,
  main .road-source-note,
  main .safety-source-note {  }
  main .road-source-note,
  main .safety-source-note,
  main .privacy-note {  }
}

@media (max-width: 480px) {
  :root { --gutter: 18px; --section-y: 58px; }
  body {  }
  .button { min-height: 50px; padding-inline: 18px; }
  .section-heading,
  .priorities-heading,
  .first100-heading,
  .career-heading { margin-bottom: 28px; }
  .pillar-block,
  .priority-card,
  .road-plan-card,
  .safety-card,
  .timeline-card,
  .career-card,
  .milestone-card,
  .standard-card,
  .form-card { border-radius: 8px; box-shadow: 0 6px 20px rgba(11,31,51,.07); }
}

/* Respect reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}


/* ==========================================================
   CAMPAIGN STRUCTURE UPDATE — AUGUST 10, 2026
   Extends the supplied site without replacing its design language.
   ========================================================== */
:root {
      --campaign-navy: #102A43;
      --campaign-slate: #3E5568;
      --campaign-red: #C62828;
      --campaign-gold: #D9A928;
      --campaign-cream: #F6F2E9;
      --campaign-ink: #17212B;
      --campaign-line: rgba(16, 42, 67, 0.16);
    }

    html { scroll-behavior: smooth; }

    /* Public site: legacy image-editing controls stay hidden. */
    .image-upload,
    .image-input,
    .candidate-placeholder-inner,
    .roads-photo-label { display: none !important; }

    /* Ensure text is readable on every red background. */
    .button-red,
    .priority-card.priority-featured,
    .safety-card-accent,
    .milestone-card.red,
    .road-stat-red,
    .red,
    [class*="red"] h1,
    [class*="red"] h2,
    [class*="red"] h3,
    [class*="red"] h4,
    [class*="red"] p,
    [class*="red"] span,
    [class*="red"] strong,
    [class*="red"] a {
      color: #fff;
    }

    .hero-actions.hero-actions-primary {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }

    .hero-actions .button-gold {
      background: var(--campaign-gold);
      color: var(--campaign-navy);
      border-color: var(--campaign-gold);
    }

    .hero-secondary-link {
      color: #fff;
      font-weight: 700;
      text-decoration-thickness: 2px;
      text-underline-offset: 4px;
    }

    .hero-band-grid.no-numbers div {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      text-align: center;
    }

    .candidate-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .candidate-letter-section {
      background: var(--campaign-cream);
    }

    .candidate-letter-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
      gap: clamp(2rem, 5vw, 5rem);
      align-items: start;
    }

    .candidate-letter-copy h2 {
      margin-bottom: 1.25rem;
    }

    .candidate-letter-copy p {
      
      line-height: 1.75;
      
      color: var(--campaign-ink);
    }

    .candidate-letter-copy .letter-opening {
      font-weight: 700;
      
      color: var(--campaign-navy);
    }

    .candidate-letter-signature {
      margin-top: 1.5rem;
      
      font-weight: 800;
      color: var(--campaign-navy);
      letter-spacing: 0.02em;
    }

    .candidate-letter-aside {
      background: var(--campaign-navy);
      color: #fff;
      padding: clamp(1.5rem, 3vw, 2.5rem);
      border-top: 6px solid var(--campaign-gold);
    }

    .candidate-letter-aside h3,
    .candidate-letter-aside p,
    .candidate-letter-aside strong,
    .candidate-letter-aside span { color: #fff; }

    .candidate-letter-aside .commitment-row {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.18);
    }

    .candidate-letter-aside .commitment-row:last-child { border-bottom: 0; }
    .candidate-letter-aside strong { display: block;  }
    .candidate-letter-aside span { display: block; margin-top: 0.2rem; opacity: 0.86; }

    .priority-grid.clean-policy-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 1rem;
    }

    .clean-policy-grid .priority-card {
      grid-column: span 4;
      min-height: 100%;
    }

    .clean-policy-grid .priority-card:nth-child(1),
    .clean-policy-grid .priority-card:nth-child(2) {
      grid-column: span 6;
    }

    .policy-label {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0.25rem 0.55rem;
      margin-bottom: 1rem;
      background: rgba(16, 42, 67, 0.08);
      color: var(--campaign-navy);
      font-weight: 800;
      letter-spacing: 0.08em;
      
    }

    .priority-featured .policy-label {
      background: rgba(255,255,255,0.16);
      color: #fff;
    }

    .voices-section {
      background: #fff;
    }

    .voices-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .voice-card {
      border: 1px solid var(--campaign-line);
      border-top: 5px solid var(--campaign-navy);
      padding: 1.5rem;
      background: #fff;
      min-height: 100%;
    }

    .voice-card blockquote {
      margin: 0 0 1.25rem;
      
      
      line-height: 1.6;
      color: var(--campaign-ink);
    }

    .voice-card cite {
      display: block;
      color: var(--campaign-navy);
      font-style: normal;
      font-weight: 800;
    }

    .voice-card small {
      display: block;
      margin-top: 0.2rem;
      color: var(--campaign-slate);
    }

    .policy-accordion-stack {
      display: grid;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .policy-accordion {
      background: #fff;
      border: 1px solid var(--campaign-line);
      border-left: 5px solid var(--campaign-navy);
    }

    .safety-section .policy-accordion { border-left-color: var(--campaign-red); }

    .policy-accordion summary {
      list-style: none;
      cursor: pointer;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 1rem;
      padding: 1.05rem 1.2rem;
      font-weight: 800;
      color: var(--campaign-navy);
      letter-spacing: 0.02em;
    }

    .policy-accordion summary::-webkit-details-marker { display: none; }

    .policy-accordion summary::after {
      content: "+";
      
      line-height: 1;
      color: var(--campaign-red);
    }

    .policy-accordion[open] summary::after { content: "–"; }

    .policy-accordion .accordion-body {
      padding: 0 1.2rem 1.2rem;
      
      line-height: 1.65;
      color: var(--campaign-ink);
    }

    .data-jump {
      display: inline-block;
      margin-top: 0.85rem;
      font-weight: 700;
      color: var(--campaign-navy);
      text-underline-offset: 3px;
    }

    .crime-data-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin: 1.5rem 0 0;
      background: var(--campaign-navy);
      color: #fff;
    }

    .crime-stat {
      padding: 1.35rem;
      border-right: 1px solid rgba(255,255,255,0.16);
    }

    .crime-stat:last-child { border-right: 0; }
    .crime-stat strong { display: block;  color: #fff; }
    .crime-stat span { display: block; font-weight: 800; color: #fff; }
    .crime-stat p { margin: 0.35rem 0 0; color: rgba(255,255,255,0.86);  }

    .first100-grid-clean {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .first100-grid-clean .timeline-card > span {
      display: inline-block;
      margin-bottom: 0.65rem;
      color: var(--campaign-gold);
      font-weight: 800;
    }

    .about-new-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
      gap: clamp(1.5rem, 4vw, 4rem);
      align-items: start;
    }

    .about-profile-photo {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      object-position: center;
      margin-bottom: 1.25rem;
    }

    .about-profile p,
    .about-qa p {
      
      line-height: 1.65;
    }

    .about-qa {
      background: var(--campaign-navy);
      color: #fff;
      padding: clamp(1.4rem, 3vw, 2.3rem);
      border-top: 6px solid var(--campaign-gold);
    }

    .about-qa h3,
    .about-qa p,
    .about-qa strong { color: #fff; }

    .about-qa h3 { margin-top: 0; }

    .qa-item {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.16);
    }

    .qa-item:last-child { border-bottom: 0; }
    .qa-item strong { display: block; margin-bottom: 0.35rem;  }
    .qa-item p { margin: 0; color: rgba(255,255,255,0.88); }

    .leadership-milestones-grid.no-number-cards .milestone-top span,
    .career-grid.no-number-cards .career-card-head span,
    .results-grid.no-number-cards > article > span { display: none; }

    .career-grid.no-number-cards .career-card-head {
      margin-bottom: 0.85rem;
    }

    .career-grid.no-number-cards .career-card-head strong {
      
      color: var(--campaign-red);
    }

    .action-section {
      background: var(--campaign-navy);
      color: #fff;
    }

    .action-section h2,
    .action-section h3,
    .action-section p,
    .action-section label,
    .action-section span,
    .action-section strong { color: #fff; }

    .action-intro {
      max-width: 760px;
      margin-bottom: 1.75rem;
    }

    .action-forms-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .campaign-form {
      background: #fff;
      color: var(--campaign-ink);
      padding: clamp(1.25rem, 3vw, 2rem);
      border-top: 6px solid var(--campaign-gold);
    }

    .campaign-form h3,
    .campaign-form label,
    .campaign-form p,
    .campaign-form span,
    .campaign-form strong { color: var(--campaign-ink); }

    .campaign-form .form-header span { color: var(--campaign-red); }

    .campaign-form label {
      display: block;
      margin-bottom: 0.85rem;
      font-weight: 700;
    }

    .campaign-form input,
    .campaign-form textarea,
    .campaign-form select {
      width: 100%;
      box-sizing: border-box;
      margin-top: 0.35rem;
      padding: 0.8rem 0.85rem;
      border: 1px solid rgba(16,42,67,0.28);
      background: #fff;
      color: var(--campaign-ink);
      font: inherit;
    }

    .campaign-form textarea { resize: vertical; }

    .campaign-form .privacy-note {
      
      color: var(--campaign-slate);
    }

    .data-sources-section {
      background: var(--campaign-cream);
      padding: 1.5rem 0 2.5rem;
    }

    .data-sources {
      background: #fff;
      border: 1px solid var(--campaign-line);
    }

    .data-sources summary {
      cursor: pointer;
      padding: 1.1rem 1.25rem;
      font-weight: 800;
      color: var(--campaign-navy);
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
    }

    .data-sources summary::-webkit-details-marker { display: none; }
    .data-sources summary::after { content: "+";  color: var(--campaign-red); }
    .data-sources[open] summary::after { content: "–"; }

    .data-sources-content {
      border-top: 1px solid var(--campaign-line);
      padding: 1rem 1.25rem 1.4rem;
      
      line-height: 1.55;
      color: var(--campaign-ink);
    }

    .data-source-item + .data-source-item { margin-top: 1rem; }
    .data-source-item strong { color: var(--campaign-navy); }
    .data-source-item a { color: var(--campaign-red); font-weight: 700; }

    .footer-contact a { display: block; }

    @media (max-width: 900px) {
      .candidate-letter-grid,
      .about-new-grid,
      .action-forms-grid { grid-template-columns: 1fr; }

      .clean-policy-grid .priority-card,
      .clean-policy-grid .priority-card:nth-child(1),
      .clean-policy-grid .priority-card:nth-child(2) { grid-column: span 12; }

      .voices-grid,
      .first100-grid-clean,
      .crime-data-strip { grid-template-columns: 1fr; }

      .crime-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
      .crime-stat:last-child { border-bottom: 0; }
    }

    @media (max-width: 640px) {
      body {  }
      .hero-actions.hero-actions-primary .button { width: 100%; text-align: center; }
      .hero-secondary-link { display: block; width: 100%; text-align: center; margin-top: 0.25rem; }
      .policy-accordion summary {  }
      .candidate-letter-copy p,
      .about-profile p,
      .about-qa p,
      .policy-accordion .accordion-body,
      .campaign-form {  }
    }


/* Public forms inherited from the original site */
.questions-section {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.questions-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}
.questions-prompt-list { display: grid; gap: 14px; margin-top: 26px; }
.questions-prompt-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.questions-prompt-list > div > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  
  font-weight: 900;
}
.questions-prompt-list p { margin: 4px 0 0; color: var(--navy); font-weight: 700; }
.resident-form {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.resident-form label { display: grid; gap: 7px; margin-bottom: 14px; color: var(--navy);  font-weight: 700; }
.resident-form input,
.resident-form textarea,
.resident-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #C9D1D9;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  
  line-height: 1.45;
}
.resident-form input:focus,
.resident-form textarea:focus,
.resident-form select:focus,
.campaign-form input:focus,
.campaign-form textarea:focus,
.campaign-form select:focus {
  outline: 3px solid rgba(198,40,40,.14);
  border-color: var(--red);
}
.full { width: 100%; }

/* Four-card leadership row used by the supplied page */
.leadership-milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Rowswell Results section */
.results-plan-section {
  padding: var(--section-y) 0;
  background: var(--navy-deep);
  color: var(--white);
}
.results-plan-section h2,
.results-plan-section h3,
.results-plan-section .eyebrow { color: var(--white); }
.results-heading { max-width: 900px; margin-bottom: 34px; }
.results-heading > p:not(.eyebrow) { color: rgba(255,255,255,.86); }
.results-standard {
  margin-top: 24px;
  padding: 17px 19px;
  border-left: 4px solid var(--red);
  background: rgba(255,255,255,.08);
}
.results-standard strong { display: block;  }
.results-standard span { display: block; margin-top: 4px; color: rgba(255,255,255,.78);  }
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.result-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.14);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.result-card h3 { color: var(--navy); }

/* Source methodology accordion */
.data-sources-section summary:focus-visible,
.policy-accordion summary:focus-visible {
  outline: 3px solid rgba(198,40,40,.25);
  outline-offset: 2px;
}

/* Reveal animation retained from the uploaded site, but kept subtle. */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Graceful image fallback: no developer/placeholder wording appears publicly. */
.candidate-photo,
.about-profile-photo,
.leadership-image-break .image-break-photo { position: relative; }
.image-missing { background: linear-gradient(135deg, #E9EDF1, #F7F5F1); }
.candidate-photo.image-missing::after {
  content: "JR";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--navy);
  
  
  font-weight: 900;
  opacity: .28;
}

@media (max-width: 1050px) {
  .leadership-milestones-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .questions-grid,
  .results-grid,
  .leadership-milestones-grid { grid-template-columns: 1fr; }
  .resident-form { padding: 24px 22px; }
}


/* Branded form-success page */
.thank-you-page { min-height: 100vh; }
.thank-you-hero { min-height: 100vh; display: grid; align-items: center; }
.thank-you-inner { position: relative; z-index: 2; padding: 80px 0; max-width: 760px; }
.thank-you-brand { margin-bottom: 60px; color: var(--white); }
.thank-you-brand .brand-text strong { color: var(--white); }
.thank-you-brand .brand-text span { color: var(--white); opacity: .82; }
.thank-you-inner h1 { color: var(--white); }

/* ==========================================================
   HUMAN VOICE + CAMPAIGN SUPPORT UPDATE — AUGUST 10, 2026
   ========================================================== */
html { scroll-padding-top: 126px; }

.support-bar {
  background: #071522;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
}
.support-bar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.support-bar-label {
  margin-right: auto;
  
  
  letter-spacing: .08em;
  color: rgba(255,255,255,.82);
}
.support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 5px;
  color: #fff;
  
  
  font-weight: 800;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
}
.support-link:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.support-link-primary { background: var(--red); border-color: var(--red); }
.support-link-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.candidate-letter-copy .letter-closing { margin-top: 1.25rem; margin-bottom: 0; }

.testimonial-approval-note {
  max-width: 760px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(198,40,40,.22);
  background: #fff8f4;
  color: #6f3232;
  
  line-height: 1.45;
}
.voice-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 5px 8px;
  background: var(--cream);
  color: var(--red);
  
  
  font-weight: 800;
  letter-spacing: .07em;
}
.voices-section .voice-card:nth-child(2) { border-top-color: var(--red); }
.voices-section .voice-card:nth-child(3) { border-top-color: var(--navy-soft); }

.midpage-support-cta {
  padding: clamp(38px, 5vw, 62px) 0;
  background: var(--navy-deep);
  color: #fff;
}
.midpage-support-inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 32px;
}
.midpage-support-inner h2 { margin: 0; color: #fff;  }
.midpage-support-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 10px; }
.support-text-link { color: #fff; font-weight: 800; text-underline-offset: 4px; }

/* Make Q&A feel conversational rather than like another card grid. */
.about-qa .qa-item strong {   letter-spacing: .01em; }
.about-qa .qa-item p {  }

/* Career copy is first-person narrative; cards stay visually compact. */
.career-card p + p { margin-top: .75rem; }

@media (max-width: 860px) {
 html { scroll-padding-top:112px; }

	.support-bar-inner {
		display:grid;
		grid-template-columns:repeat(3,minmax(0,1fr));
		width:calc(100% - 20px);
		min-height:42px;
		gap:5px;
		padding:6px 0;
	}

	.support-bar-label { display:none; }

	.support-link {
		min-width:0;
		min-height:42px;
		height: 100%;
		padding:6px 4px;
		font-size:clamp(.68rem,2.7vw,.82rem);
		line-height:1.05;
		letter-spacing:0;
		white-space:normal;
		text-align:center;
	}
	
	
  .midpage-support-inner { grid-template-columns: 1fr; gap: 20px; }
  .midpage-support-actions { justify-content: flex-start; }
  .midpage-support-actions .button { width: 100%; }
  .support-text-link { display: inline-block; padding: 8px 0; }
  .voices-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .support-bar-inner { width:calc(100% - 12px); }
  .support-link {  letter-spacing: 0; }
  .testimonial-approval-note {  }
}

/* Consolidated experience section */
.crime-data-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.crime-stat-rank { background: #F7F5F1; }
.crime-stat-rank strong,
.crime-stat-rank span { color: var(--navy); }
.crime-stat-rank p { color: var(--muted); }

.professional-experience-block {
  margin-top: clamp(34px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 52px);
  border-top: 1px solid var(--line);
}
.professional-experience-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}
.professional-experience-heading h3 { margin-bottom: 0; }
.professional-experience-heading > p { margin: 0; color: var(--muted); }
.professional-experience-grid {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: start;
}
.professional-experience-photo {
  position: sticky;
  top: 138px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}
.professional-experience-photo img {
  width: 100%;
  max-height: 570px;
  object-fit: contain;
  object-position: center;
}
.experience-accordion-stack { display: grid; gap: 10px; }
.experience-accordion { border-left-color: var(--red); }

@media (max-width: 860px) {
  .crime-data-strip { grid-template-columns: 1fr; }
  .professional-experience-heading,
  .professional-experience-grid { grid-template-columns: 1fr; }
  .professional-experience-photo { position: static; }
  .professional-experience-photo img { max-height: none; }
}


/* ==========================================================
   FINAL TYPOGRAPHY + NUMBER + DATA CONSISTENCY LOCK
   Two fonts. Four public-facing type sizes. One sequence-number style.
   ========================================================== */
:root {
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Barlow Condensed", sans-serif;
  --type-display: clamp(62px, 6.8vw, 90px);
  --type-section: clamp(40px, 4vw, 56px);
  --type-card: 24px;
  --type-body: 18px;
  --type-source: 12px;
}
body { font-family: var(--font-body); font-size: var(--type-body); }

h1,h2,h3,h4,h5,h6,.eyebrow,.campaign-kicker,.brand-monogram,.brand-text,.main-nav,.button,
.support-bar-label,.support-link,.policy-label,.voice-tag,.form-header,.road-stat strong,.road-stat span,
.crime-stat strong,.crime-stat span,.policy-accordion summary,.sequence-number,.milestone-top,.career-card-head,
.photo-caption,.candidate-letter-signature,.road-lifecycle-grid strong,.safety-role-strip span,.safety-role-strip strong,
.timeline-card>span,.footer-nav>strong,.footer-contact>strong,.footer-sources>strong { font-family: var(--font-head); }

p,li,blockquote,cite,small,input,textarea,select,label,.accordion-body,.candidate-letter-copy p,.about-profile p,
.about-qa p,.voice-card blockquote,.road-stat p,.crime-stat p,.source-fine-print { font-family: var(--font-body); }

h1 { font-size: var(--type-display); }
h2 { font-size: var(--type-section); }
h3,h4,h5,h6,.policy-accordion summary,.qa-item strong,.commitment-row strong,.brand-text strong,.brand-monogram,
.candidate-letter-signature,.responsibility-quote strong { font-size: var(--type-card); }
body,p,li,blockquote,cite,small,a,button,input,textarea,select,label,.eyebrow,.campaign-kicker,.hero-lead,.large-copy,
.brand-text span,.main-nav a,.support-bar-label,.support-link,.policy-label,.voice-tag,.hero-band-grid strong,
.hero-band-grid span,.candidate-card-copy>span,.candidate-card-copy p,.commitment-row span,.road-stat span,.road-stat p,
.crime-stat span,.crime-stat p,.road-lifecycle-grid span,.safety-role-strip span,.safety-role-strip strong,
.timeline-card>span,.milestone-top>strong,.career-card-head>strong,.form-header>span,.privacy-note,.support-text-link,
.footer-nav,.footer-contact,.footer-brand-block>p,.footer-bottom-inner { font-size: var(--type-body); }
.road-stat strong,.crime-stat strong,.visual-stat strong { font-size: var(--type-section); }
.footer-sources,.footer-sources p,.footer-sources a,.footer-sources strong { font-size: var(--type-source); }

.sequence-number,.questions-prompt-list>div>span.sequence-number {
  display:grid;place-items:center;width:42px;height:42px;min-width:42px;margin:0;border-radius:50%;
  background:var(--red);color:var(--white);font-family:var(--font-head);font-size:var(--type-body);
  font-weight:900;line-height:1;letter-spacing:0;
}
.numbered-question { display:grid!important;grid-template-columns:42px 1fr;gap:10px 13px!important;align-items:center; }
.numbered-question .question-label-text { grid-column:2; }
.numbered-question textarea { grid-column:1/-1; }
.priority-icon { display:none!important; }

.road-data-strip {
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;margin:42px 0 30px;overflow:hidden;
  border-radius:var(--radius);background:rgba(255,255,255,.28);box-shadow:var(--shadow-soft);
}
.crime-data-strip.road-data-strip { grid-template-columns:repeat(4,minmax(0,1fr));margin-top:30px; }
.road-stat,.crime-stat {
  min-height:190px;padding:26px 24px;display:flex;flex-direction:column;justify-content:center;
  background:var(--navy);color:var(--white);border:0;
}
.road-stat-red { background:var(--red); }
.crime-stat-slate { background:#315675; }
.crime-stat-rank { background:var(--navy-deep); }
.road-stat strong,.crime-stat strong {
  display:block;margin:0;color:var(--white);font-weight:500;line-height:.92;letter-spacing:-.01em;
}
.road-stat span,.crime-stat span {
  display:block;margin:10px 0 6px;color:var(--white);font-weight:800;line-height:1.05;letter-spacing:.035em;text-transform:uppercase;
}
.road-stat p,.crime-stat p { margin:0;color:rgba(255,255,255,.9);line-height:1.5; }
.crime-stat-rank strong,.crime-stat-rank span,.crime-stat-rank p { color:var(--white); }

.data-sources-section,.data-jump,.road-source-note,.safety-source-note { display:none!important; }
.footer-sources { margin-top:34px;padding-top:22px;border-top:1px solid rgba(255,255,255,.14);color:rgba(255,255,255,.58);line-height:1.5; }
.footer-sources>strong { display:block;margin-bottom:9px;color:rgba(255,255,255,.72);letter-spacing:.06em; }
.footer-sources p { margin:0 0 8px;color:rgba(255,255,255,.58); }
.footer-sources a { color:rgba(255,255,255,.78);text-underline-offset:2px; }
.policy-label,.voice-tag,.eyebrow,.campaign-kicker,.support-bar-label,.support-link,.form-header>span { line-height:1.1; }

@media(max-width:900px){ .crime-data-strip.road-data-strip{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media(max-width:640px){
  .road-data-strip,.crime-data-strip.road-data-strip{grid-template-columns:1fr;}
  .road-stat,.crime-stat{min-height:0;}
  .support-bar-inner{flex-wrap:wrap;padding-block:6px;}
  .support-link{min-height:38px;}
}


/* ==========================================================
   SCREENSHOT STYLE RESTORATION — AUGUST 10, 2026
   Crisp square geometry + consistent numbered-card language.
   ========================================================== */
:root {
  --radius: 0px;
  --radius-sm: 0px;
}

/* User-requested crisp geometry everywhere. */
*, *::before, *::after { border-radius: 0 !important; }

/* One sequence-number treatment throughout the entire site. */
.sequence-number,
.questions-prompt-list > div > span.sequence-number,
.road-plan-card > span.sequence-number,
.milestone-top > span.sequence-number,
.career-card-head > span.sequence-number {
  display: inline-grid !important;
  place-items: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--red) !important;
  color: var(--white) !important;
  font-family: var(--font-head) !important;
  font-size: var(--type-body) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}
.sequence-number.sequence-number-gold { background: var(--campaign-gold) !important; color: var(--navy-deep) !important; }

/* Priority cards remain clean, but the first Safer Sault card is always visible and prominent. */
.clean-policy-grid .priority-card { border-top: 3px solid var(--navy); box-shadow: 0 10px 28px rgba(11,31,51,.08); }
.clean-policy-grid .priority-card.priority-featured {
  display: block !important;
  background: var(--navy) !important;
  color: #fff !important;
  border-top-color: var(--red) !important;
}
.clean-policy-grid .priority-card.priority-featured h3,
.clean-policy-grid .priority-card.priority-featured p,
.clean-policy-grid .priority-card.priority-featured a { color: #fff !important; }
.clean-policy-grid .priority-card.priority-featured .policy-label { background: var(--red) !important; color:#fff !important; }

/* Testimonial heading restored as a strong, unmistakable section header. */
.voices-section .section-heading { display: block !important; visibility: visible !important; opacity: 1 !important; margin-bottom: 38px !important; }
.voices-section .section-heading h2 { color: var(--navy) !important; margin-bottom: 14px !important; }
.voices-section .testimonial-intro { max-width: 760px; margin: 0 auto; color: var(--muted); }
.voices-grid { gap: 16px; }
.voice-card { border: 1px solid var(--line); border-top: 4px solid var(--navy); box-shadow: 0 10px 26px rgba(11,31,51,.07); }

/* Roads: return the six-action card grid shown in the supplied reference. */
.road-plan-grid.screenshot-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}
.road-plan-card {
  min-height: 250px;
  padding: 28px 26px;
  background: #fff;
  border: 0;
  border-top: 4px solid var(--navy);
  box-shadow: 0 10px 26px rgba(11,31,51,.07);
}
.road-plan-card .sequence-number { margin-bottom: 22px !important; }
.road-plan-card h3 { margin-top: 20px; }
.road-plan-card p { color: var(--muted); }
.road-plan-card-featured {
  background: var(--navy) !important;
  border-top-color: var(--campaign-gold) !important;
}
.road-plan-card-featured h3,
.road-plan-card-featured p { color: #fff !important; }

/* Keep the two remaining road stats in the same squared strip language. */
.road-data-strip { border-radius: 0 !important; box-shadow: 0 10px 28px rgba(11,31,51,.08); }

/* Community leadership: screenshot-inspired numbered cards. */
.leadership-milestones-grid.screenshot-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.leadership-milestones-grid .milestone-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  background: #fff;
  box-shadow: 0 10px 26px rgba(11,31,51,.07);
  padding: 26px 24px;
}
.leadership-milestones-grid .milestone-card:nth-child(2),
.leadership-milestones-grid .milestone-card:nth-child(4) { border-top-color: var(--red); }
.milestone-top { display:flex; align-items:center; justify-content:flex-start; gap:12px; margin-bottom:20px; }
.milestone-top > strong { color: var(--red) !important; text-align:left !important; }

/* Professional career: restore the precise 2-column card composition from the reference. */
.career-return-block { margin-top: clamp(58px, 7vw, 96px); }
.screenshot-career-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.screenshot-career-grid .career-card {
  padding: 28px 26px;
  min-height: 300px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  background: #fff;
  box-shadow: 0 10px 28px rgba(11,31,51,.07);
}
.screenshot-career-grid .career-card:nth-child(2),
.screenshot-career-grid .career-card:nth-child(4),
.screenshot-career-grid .career-card:nth-child(6) { border-top-color: var(--red); }
.screenshot-career-grid .career-card:nth-child(1),
.screenshot-career-grid .career-card:nth-child(3) { background: var(--cream); }
.screenshot-career-grid .career-card-featured {
  grid-column: 1 / -1;
  min-height: 0;
  background: var(--navy) !important;
  border-top-color: var(--campaign-gold) !important;
  color: #fff !important;
}
.screenshot-career-grid .career-card-featured h3,
.screenshot-career-grid .career-card-featured p,
.screenshot-career-grid .career-card-featured .career-card-head strong { color:#fff !important; }
.career-card-head { display:flex; align-items:center; justify-content:flex-start; gap:12px; margin-bottom:20px; }
.career-card-head > strong { color: var(--red) !important; text-align:left !important; }
.screenshot-career-grid .career-card h3 { margin-top: 18px; }

/* The existing accordion treatment is retained only where it is still intentionally interactive (Safer Sault). */
.experience-accordion-stack { display:none !important; }
.professional-experience-block { display:none !important; }

/* Four-size typography lock remains intact; source fine print is the only exception. */
.road-plan-card h3,
.milestone-card h3,
.career-card h3,
.voice-card cite { font-size: var(--type-card) !important; }
.road-plan-card p,
.milestone-card p,
.career-card p,
.voice-card blockquote,
.voice-card small,
.testimonial-intro { font-size: var(--type-body) !important; }

/* Make form question number alignment match every other square badge. */
.numbered-question { grid-template-columns: 38px 1fr !important; }

@media (max-width: 1000px) {
  .road-plan-grid.screenshot-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .leadership-milestones-grid.screenshot-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .road-plan-grid.screenshot-card-grid,
  .leadership-milestones-grid.screenshot-card-grid,
  .screenshot-career-grid { grid-template-columns: 1fr; }
  .screenshot-career-grid .career-card-featured { grid-column: auto; }
  .road-plan-card,
  .leadership-milestones-grid .milestone-card,
  .screenshot-career-grid .career-card { min-height: 0; }
}

/* ==========================================================
   REQUESTED LAYOUT ADJUSTMENTS — AUGUST 10, 2026
   Only: two reserved photo spaces, testimonial gap, desktop hero height.
   ========================================================== */
.candidate-letter-side-stack,
.about-side-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.campaign-image-space {
  width: 100%;
  background: #E9EDF1;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
}
.candidate-letter-image-space { aspect-ratio: 16 / 9; }
.about-image-space { aspect-ratio: 3 / 2; }

/* Remove the stacked section padding that created the large blank area before testimonials. */
.priorities-section { padding-bottom: 0; }
.voices-section { padding-top: clamp(40px, 4vw, 56px); }

/* Reduce only the desktop hero. Mobile hero rules remain untouched. */
@media (min-width: 861px) {
  .hero-content,
  .hero-layout {
    min-height: min(610px, 68vh);
    padding-top: clamp(48px, 5vw, 72px);
    padding-bottom: clamp(48px, 5vw, 72px);
  }
}

/* Experience heading visibility: colour correction only. */
.career-section .career-heading .eyebrow { color: var(--red) !important; }
.career-section .career-heading h2 { color: var(--navy) !important; }
.career-section .career-heading p { color: var(--ink) !important; }


/* Reserved campaign photo spaces requested August 10, 2026. */
.future-image-placeholder {
  width: 100%;
  box-sizing: border-box;
  background: #EEF1F4;
  border: 1px solid var(--line);
  border-radius: 0;
}
.future-image-placeholder-career {
  min-height: 260px;
  height: 100%;
}
.future-image-placeholder-questions {
  min-height: 300px;
  margin-top: 28px;
}
.future-image-placeholder-lawn-sign {
  min-height: 150px;
  margin-top: 14px;
}