/* ═══════════════════════════════════════════════════════════════
   NOEL HAYDT FOR MAYOR — noelformayor.ca
   Main stylesheet — shared across all pages
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ───────────────────────────────────────────────────── */
:root {
  --navy:       #0D2545;
  --navy-mid:   #1A3A60;
  --navy-deep:  #0A1E38;
  --navy-light: #243D5F;
  --gold-el:    #F5C842;
  --gold-hv:    #C4973A;
  --gold-dim:   #8A6820;
  --cream:      #F7F5F0;
  --cream-dark: #EDE9E1;
  --sky:        #B8C9D9;
  --sky-dark:   #556070;
  --white:      #ffffff;
  --text-dark:  #1C1C2E;
  --text-mid:   #3A4455;
  --rule:       #E0DDD8;
  --rule-dark:  rgba(255,255,255,.08);

  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans:  'Poppins', system-ui, -apple-system, sans-serif;

  --max-w:   1140px;
  --pad-x:   clamp(1.25rem, 5vw, 4rem);
  --section: clamp(3.5rem, 7vw, 5.5rem);

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);

  --transition: .2s ease;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ── Utilities ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.eyebrow {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-hv);
  margin-bottom: .75rem;
}
.eyebrow--light { color: var(--gold-hv); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover  { opacity: .88; }
.btn:active { transform: scale(.97); }

.btn--primary   { background: var(--gold-hv); color: var(--navy); }
.btn--navy      { background: var(--navy); color: var(--gold-el); }
.btn--ghost-light {
  background: transparent;
  border: 1.5px solid var(--sky);
  color: var(--sky);
}
.btn--ghost-dark {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn--ghost-gold {
  background: transparent;
  border: 1.5px solid var(--gold-hv);
  color: var(--gold-hv);
}
.btn--sm { font-size: .7rem; padding: .55rem 1.1rem; }
.btn--lg { font-size: .88rem; padding: .9rem 2rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Pull quote ───────────────────────────────────────────────── */
.pull-quote {
  border-left: 3px solid var(--gold-hv);
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.75rem 0;
}
.pull-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.65;
}
.pull-quote cite {
  display: block;
  margin-top: .5rem;
  font-size: .68rem;
  font-weight: 700;
  font-style: normal;
  color: var(--sky-dark);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Cred pills ───────────────────────────────────────────────── */
.cred-pills {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}
.cred-pill {
  background: #E8EFF5;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 600;
  padding: .28rem .75rem;
  border-radius: 20px;
  letter-spacing: .02em;
}

/* ── Section header ───────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--navy);
}
.section-more {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-hv);
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.section-more:hover { opacity: .7; }

/* ── Diagonal texture overlay (reusable) ─────────────────────── */
.texture-overlay {
  position: relative;
}
.texture-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,.016) 18px,
    rgba(255,255,255,.016) 19px
  );
  pointer-events: none;
}

/* ── Animations ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.anim-1 { animation: fadeUp .6s ease both; }
.anim-2 { animation: fadeUp .6s .1s ease both; }
.anim-3 { animation: fadeUp .6s .2s ease both; }
.anim-4 { animation: fadeUp .6s .3s ease both; }
.anim-5 { animation: fadeUp .6s .4s ease both; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 2px solid var(--gold-hv);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.35); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.nav-logo-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-el);
  letter-spacing: -.2px;
  line-height: 1;
}
.nav-logo-rule {
  width: 100%;
  height: 1.5px;
  background: var(--gold-hv);
  border-radius: 1px;
}
.nav-logo-sub {
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sky);
}

.nav-menu { display: flex; align-items: center; gap: 1.75rem; }
.nav-menu a {
  font-size: .73rem;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: .04em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--gold-hv);
  transition: right var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold-el); }
.nav-menu a:hover::after,
.nav-menu a.active::after { right: 0; }

.nav-cta {
  background: var(--gold-hv);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: .48rem 1.1rem;
  border-radius: var(--radius-sm);
  letter-spacing: .06em;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { opacity: .85; color: var(--navy); }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid var(--rule-dark);
  padding: 0 var(--pad-x);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
}
.mobile-nav.open {
  display: block;
  max-height: 500px;
  padding: 1rem var(--pad-x) 1.5rem;
}
.mobile-nav a {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--sky);
  padding: .65rem 0;
  border-bottom: .5px solid var(--rule-dark);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold-el); }
.mobile-nav .mobile-cta {
  display: block;
  text-align: center;
  background: var(--gold-hv);
  color: var(--navy);
  font-weight: 700;
  padding: .75rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HEADER BANNER (interior pages)
   ═══════════════════════════════════════════════════════════════ */
.page-header {
  background: var(--navy);
  background-image: repeating-linear-gradient(
    135deg,
    transparent, transparent 18px,
    rgba(255,255,255,.017) 18px, rgba(255,255,255,.017) 19px
  );
  padding: 4rem var(--pad-x) 3.5rem;
  border-bottom: 3px solid var(--gold-hv);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: attr(data-watermark);
  position: absolute;
  right: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  color: rgba(255,255,255,.035);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.page-header-inner { max-width: var(--max-w); margin: 0 auto; }
.page-header-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--gold-el);
  line-height: 1.1;
  margin-bottom: .4rem;
}
.page-header-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--sky);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--navy);
  background-image: repeating-linear-gradient(
    135deg,
    transparent, transparent 18px,
    rgba(255,255,255,.016) 18px, rgba(255,255,255,.016) 19px
  );
  padding: 4rem var(--pad-x) 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to left, rgba(10,30,56,.6) 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: flex-end;
}

.hero-content { padding-bottom: 4.5rem; }

.hero-eyebrow {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-hv);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold-el);
  line-height: 1.08;
  margin-bottom: .6rem;
  letter-spacing: -.5px;
}
.hero-headline em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: .55em;
  color: var(--sky);
  letter-spacing: 0;
  margin-top: .4rem;
}

.hero-body {
  font-size: .92rem;
  color: var(--sky);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.25rem;
  opacity: .9;
}

.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

.hero-photo {
  align-self: flex-end;
  position: relative;
}
.hero-photo-frame {
  width: 100%;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid var(--rule-dark);
  border-bottom: none;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 2rem;
}
.hero-photo-placeholder svg { opacity: .25; }
.hero-photo-placeholder span { font-size: .68rem; color: var(--sky-dark); text-align: center; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 1.6rem 1.25rem;
  text-align: center;
  border-right: .5px solid var(--rule);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .3rem;
}
.trust-label { font-size: .7rem; color: var(--sky-dark); line-height: 1.45; }

/* ═══════════════════════════════════════════════════════════════
   NARRATIVE
   ═══════════════════════════════════════════════════════════════ */
.narrative {
  background: var(--white);
  padding: var(--section) var(--pad-x);
  border-bottom: 1px solid var(--rule);
}
.narrative-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.narrative-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.narrative-body { font-size: .9rem; color: var(--text-mid); line-height: 1.85; }
.narrative-body p + p { margin-top: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   PRIORITIES
   ═══════════════════════════════════════════════════════════════ */
.priorities {
  background: var(--navy);
  background-image: repeating-linear-gradient(
    135deg,
    transparent, transparent 20px,
    rgba(255,255,255,.014) 20px, rgba(255,255,255,.014) 21px
  );
  padding: var(--section) var(--pad-x);
}
.priorities-inner { max-width: var(--max-w); margin: 0 auto; }
.priorities-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--gold-el);
  margin-bottom: 2.5rem;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.75rem;
}
.priority-card {
  background: var(--navy-mid);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  border-left: 3px solid var(--gold-hv);
  transition: transform var(--transition), background var(--transition);
  cursor: default;
}
.priority-card:hover { transform: translateY(-2px); background: var(--navy-light); }
.priority-num {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-hv);
  margin-bottom: .4rem;
}
.priority-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold-el);
  margin-bottom: .55rem;
  line-height: 1.2;
}
.priority-body { font-size: .8rem; color: var(--sky); line-height: 1.7; }
.priorities-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT STRIP
   ═══════════════════════════════════════════════════════════════ */
.about-strip {
  background: var(--cream);
  padding: var(--section) var(--pad-x);
  border-bottom: 1px solid var(--rule);
}
.about-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.about-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--gold-hv);
  overflow: hidden;
  background: #D3DCE6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-avatar-initials {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--navy);
  line-height: 1;
}
.about-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: .15rem;
}
.about-role {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-hv);
  margin-bottom: .85rem;
}
.about-bio-text {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  max-width: 620px;
}
.about-actions { display: flex; gap: .75rem; margin-top: 1.25rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════════════════════════ */
.events-section {
  background: var(--white);
  padding: var(--section) var(--pad-x);
  border-bottom: 1px solid var(--rule);
}
.events-inner { max-width: var(--max-w); margin: 0 auto; }

.event-list { display: flex; flex-direction: column; gap: .75rem; }
.event-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-hv);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-row:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}
.event-date { text-align: center; min-width: 44px; flex-shrink: 0; }
.event-month {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-hv);
  line-height: 1;
}
.event-day {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
}
.event-name { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.event-detail { font-size: .74rem; color: var(--sky-dark); line-height: 1.45; }

/* ═══════════════════════════════════════════════════════════════
   NEWS
   ═══════════════════════════════════════════════════════════════ */
.news-section {
  background: var(--cream);
  padding: var(--section) var(--pad-x);
  border-bottom: 1px solid var(--rule);
}
.news-inner { max-width: var(--max-w); margin: 0 auto; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: .5px solid var(--rule);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-card-tag {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .8rem 1rem .2rem;
  color: var(--gold-hv);
}
.news-card-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  padding: .25rem 1rem .5rem;
  line-height: 1.4;
}
.news-card-meta { font-size: .7rem; color: var(--sky-dark); padding: 0 1rem .9rem; }

/* ═══════════════════════════════════════════════════════════════
   EMAIL CAPTURE
   ═══════════════════════════════════════════════════════════════ */
.email-capture {
  background: var(--navy);
  background-image: repeating-linear-gradient(
    135deg,
    transparent, transparent 18px,
    rgba(255,255,255,.016) 18px, rgba(255,255,255,.016) 19px
  );
  padding: var(--section) var(--pad-x);
  text-align: center;
}
.email-capture-inner { max-width: 520px; margin: 0 auto; }
.capture-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--gold-el);
  margin-bottom: .55rem;
}
.capture-sub {
  font-size: .85rem;
  color: var(--sky);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  opacity: .88;
}
.capture-form { display: flex; gap: .5rem; max-width: 440px; margin: 0 auto .85rem; }
.capture-input {
  flex: 1;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .84rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
}
.capture-input::placeholder { color: var(--sky-dark); }
.capture-input:focus { border-color: var(--gold-hv); }
.capture-legal { font-size: .63rem; color: var(--sky-dark); line-height: 1.55; }

.capture-success {
  background: rgba(39, 80, 10, .25);
  border: 1px solid rgba(39, 80, 10, .5);
  color: #c8f0a0;
  font-size: .88rem;
  font-weight: 600;
  padding: .85rem 1.25rem;
  border-radius: var(--radius-sm);
  max-width: 440px;
  margin: 0 auto .85rem;
  text-align: center;
}
.capture-error {
  background: rgba(163, 45, 45, .25);
  border: 1px solid rgba(163, 45, 45, .5);
  color: #fca5a5;
  font-size: .85rem;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-sm);
  max-width: 440px;
  margin: 0 auto .75rem;
  text-align: center;
}
.capture-field-error {
  display: block;
  font-size: .72rem;
  color: #fca5a5;
  margin-top: .25rem;
  text-align: left;
}
/* Disable state while submitting */
[data-fs-submit-btn]:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  padding: 2.75rem var(--pad-x) 1.75rem;
  border-top: 2px solid var(--gold-hv);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: .5px solid var(--rule-dark);
  margin-bottom: 1.25rem;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold-el);
  margin-bottom: .3rem;
}
.footer-brand-sub { font-size: .63rem; color: var(--sky-dark); line-height: 1.55; }
.footer-brand-tagline { font-style: italic; color: var(--sky-dark); }

.footer-nav { display: flex; flex-direction: column; gap: .45rem; align-items: center; }
.footer-nav a { font-size: .7rem; color: var(--sky-dark); transition: color var(--transition); }
.footer-nav a:hover { color: var(--sky); }

.footer-contact { text-align: right; }
.footer-contact a { display: block; font-size: .73rem; color: var(--sky-dark); margin-bottom: .3rem; transition: color var(--transition); }
.footer-contact a:hover { color: var(--sky); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-legal { font-size: .6rem; color: rgba(255,255,255,.18); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
   ═══════════════════════════════════════════════════════════════ */
.about-intro { background: var(--white); padding: var(--section) var(--pad-x); border-bottom: 1px solid var(--rule); }
.about-intro-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; gap: 4.5rem; align-items: start; }
.about-photo-card { position: sticky; top: 88px; }
.about-photo-frame { background: var(--navy-mid); border-radius: var(--radius-md); overflow: hidden; border: 3px solid var(--gold-hv); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-card-name { font-family: var(--font-serif); font-weight: 700; font-size: 1.25rem; color: var(--navy); margin-bottom: .15rem; }
.about-card-role { font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-hv); margin-bottom: .85rem; }
.about-cred-list { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.about-cred-item { display: flex; align-items: flex-start; gap: .55rem; font-size: .78rem; color: var(--text-mid); line-height: 1.4; }
.about-cred-item::before { content: ''; display: block; width: 3px; height: 3px; border-radius: 50%; background: var(--gold-hv); margin-top: .52rem; flex-shrink: 0; }
.about-bio-headline { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.45rem, 2.5vw, 1.9rem); color: var(--navy); line-height: 1.2; margin-bottom: 1.4rem; }
.about-bio-body { font-size: .9rem; color: var(--text-mid); line-height: 1.88; }
.about-bio-body p + p { margin-top: 1rem; }

/* Experience timeline */
.experience { background: var(--cream); padding: var(--section) var(--pad-x); border-bottom: 1px solid var(--rule); }
.experience-inner { max-width: var(--max-w); margin: 0 auto; }
.timeline { display: flex; flex-direction: column; }
.timeline-item { display: grid; grid-template-columns: 130px 1fr; gap: 2rem; position: relative; padding-bottom: 2.25rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: 129px; top: 10px; bottom: 0; width: 1px; background: var(--rule); }
.timeline-item:last-child::before { display: none; }
.timeline-date { text-align: right; padding-top: 2px; }
.timeline-date-text { font-size: .7rem; font-weight: 700; color: var(--gold-hv); letter-spacing: .05em; line-height: 1.4; }
.timeline-content { padding-left: 2rem; position: relative; }
.timeline-content::before { content: ''; position: absolute; left: -5px; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold-hv); border: 2px solid var(--cream); }
.timeline-role { font-family: var(--font-serif); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: .15rem; }
.timeline-org { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sky-dark); margin-bottom: .5rem; }
.timeline-desc { font-size: .84rem; color: var(--text-mid); line-height: 1.75; }

/* Values */
.values { background: var(--navy); padding: var(--section) var(--pad-x); }
.values-inner { max-width: var(--max-w); margin: 0 auto; }
.values-headline { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--gold-el); margin-bottom: 2.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.value-card { background: var(--navy-mid); border-radius: var(--radius-md); padding: 1.75rem; border-top: 3px solid var(--gold-hv); transition: transform var(--transition); }
.value-card:hover { transform: translateY(-2px); }
.value-icon { font-size: 1.5rem; margin-bottom: .7rem; }
.value-title { font-family: var(--font-serif); font-weight: 700; font-size: 1rem; color: var(--gold-el); margin-bottom: .5rem; }
.value-desc { font-size: .8rem; color: var(--sky); line-height: 1.68; }

/* Community stats */
.community { background: var(--white); padding: var(--section) var(--pad-x); border-bottom: 1px solid var(--rule); }
.community-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.community-headline { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--navy); margin-bottom: 1.25rem; line-height: 1.2; }
.community-body { font-size: .9rem; color: var(--text-mid); line-height: 1.85; }
.community-body p + p { margin-top: 1rem; }
.community-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card { background: var(--cream); border-radius: var(--radius-md); padding: 1.5rem; border-left: 3px solid var(--gold-hv); }
.stat-num { font-family: var(--font-serif); font-weight: 700; font-size: 2rem; color: var(--navy); line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .72rem; color: var(--sky-dark); line-height: 1.4; }

/* About CTA */
.about-cta { background: var(--navy); padding: var(--section) var(--pad-x); text-align: center; }
.about-cta-inner { max-width: 580px; margin: 0 auto; }
.about-cta-headline { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--gold-el); margin-bottom: .7rem; }
.about-cta-sub { font-size: .88rem; color: var(--sky); line-height: 1.75; margin-bottom: 2rem; opacity: .88; }
.about-cta-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 320px; }
  .about-intro-inner { grid-template-columns: 260px 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-content { padding-bottom: 0; }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: .5px solid var(--rule); }
  .trust-item:nth-child(4) { border-top: .5px solid var(--rule); }

  .narrative-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .priority-grid { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-avatar { margin: 0 auto; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card:last-child { display: none; }

  .about-intro-inner { grid-template-columns: 1fr; }
  .about-photo-card { position: static; max-width: 260px; margin: 0 auto 2rem; }
  .community-inner { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-contact { text-align: center; }
  .footer-contact a { display: inline; margin-right: .75rem; }
}

@media (max-width: 640px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }

  .news-grid { grid-template-columns: 1fr; }
  .news-card:last-child { display: block; }

  .capture-form { flex-direction: column; }
  .capture-input { width: 100%; }

  .values-grid { grid-template-columns: 1fr; }
  .community-stats { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 1rem; }
  .timeline-item::before { left: 79px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media print {
  .site-nav, .nav-hamburger, .mobile-nav { display: none; }
  .hero { padding-top: 2rem; }
  .btn { border: 1px solid #333; }
}
.nav-divider {
    margin-left: 18px;
}
/* ------------------------------------------------ */
/* A Better Norfolk Articles */
/* ------------------------------------------------ */

.article-page {
    background: #f5f7fa;
    padding: 7rem 2rem 5rem;
}

.article-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 14px;
    box-shadow: 0 3px 18px rgba(0,0,0,.06);
}

.article-eyebrow {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .78rem;
    color: #9b7b45;
    font-weight: 700;
    margin-bottom: 1rem;
}

.article-main-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 2rem;
    font-family: 'Lora', serif;
    color: #16202b;
}

.article-meta {
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: .95rem;
}

.article-body {
    font-size: 1.08rem;
    line-height: 1.95;
    color: #374151;
}

.article-body p {
    margin-bottom: 1.8rem;
}

.article-body ul {
    margin: 1.5rem 0 2rem 2rem;
}

.article-body li {
    margin-bottom: .9rem;
}

.article-return {
    margin-top: 4rem;
}

.article-return a {
    color: #0f4c81;
    text-decoration: none;
    font-weight: 600;
}

.article-return a:hover {
    text-decoration: underline;
}
.gold-leaf {
    color: #c7a86d;
    margin-left: 6px;
    font-size: 0.9em;
}
