:root {
  --navy: #07142e;
  --navy-soft: #101f45;
  --violet: #642069;
  --red: #ce2149;
  --red-dark: #a9143a;
  --pink: #f4dce6;
  --cream: #f7f4ee;
  --paper: #fcfbf8;
  --white: #ffffff;
  --ink: #11182a;
  --muted: #687084;
  --line: rgba(17, 24, 42, .1);
  --max: 1240px;
  --radius-xl: 48px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-soft: 0 22px 70px rgba(7, 20, 46, .11);
  --shadow-card: 0 14px 36px rgba(7, 20, 46, .09);
  --scroll-progress: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 95px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
main { overflow: clip; }
button, a { font: inherit; }
a { color: inherit; }
img { display: block; }
h1, h2, h3, p { margin-top: 0; }

.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 3px;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  background: linear-gradient(90deg, #e83d65, #9d4edd, #3b82f6);
  box-shadow: 0 0 18px rgba(206, 33, 73, .7);
}
.skip-link {
  position: fixed;
  z-index: 130;
  top: -5rem;
  left: 1rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: var(--shadow-card);
}
.skip-link:focus { top: 1rem; }

[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

.nav-shell, .section-shell, .hero-grid {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}
.site-header {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: 96px;
  border-bottom: 1px solid transparent;
  background: rgba(7,20,46,0);
  transition: background-color .38s ease, border-color .38s ease, box-shadow .38s ease, backdrop-filter .38s ease;
}
.has-scrolled .site-header {
  border-bottom-color: rgba(255,255,255,.11);
  background: rgba(7,20,46,.88);
  box-shadow: 0 14px 36px rgba(7,20,46,.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  backdrop-filter: blur(20px) saturate(1.35);
}
.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  transform: translateY(12px);
  padding: 0;
  transition: transform .35s var(--ease);
}
.has-scrolled .nav-shell {
  transform: translateY(6px);
}
.brand {
  display: block;
  width: 176px;
  flex: 0 0 auto;
  padding: .2rem 0;
  transition: transform .3s var(--ease), opacity .3s ease;
}
.brand:hover { transform: translateY(-2px) scale(1.015); }
.brand img {
  width: 100%;
  height: auto;
  filter: invert(1) drop-shadow(0 7px 18px rgba(7,20,46,.48));
}
.desktop-nav { display: none; }
.desktop-nav a {
  position: relative;
  padding: .6rem .78rem;
  border-radius: 999px;
  text-decoration: none;
  color: #30384b;
  font-size: .87rem;
  font-weight: 750;
  transition: color .25s ease, background .25s ease;
}
.desktop-nav a:hover { color: var(--red-dark); background: var(--pink); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 52px;
  padding: .85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #e22b58, #b71643);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 13px 28px rgba(206, 33, 73, .26);
  transition: transform .3s var(--ease), box-shadow .3s ease, filter .3s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(206, 33, 73, .34); filter: saturate(1.12); }
.button:active { transform: translateY(-1px) scale(.98); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #91b8ff; outline-offset: 4px; }
.mobile-menu { position: relative; }
.mobile-menu summary {
  width: 46px;
  height: 46px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(7,20,46,.88);
  box-shadow: 0 10px 30px rgba(7,20,46,.22);
  backdrop-filter: blur(18px);
  cursor: pointer;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 19px; height: 2px; border-radius: 2px; background: var(--white); transition: transform .25s ease; }
.mobile-menu[open] summary span:first-child { transform: translateY(7px) rotate(45deg); }
.mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
.mobile-menu[open] summary span:last-child { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu nav {
  position: fixed;
  top: 86px;
  left: 1rem;
  right: 1rem;
  display: grid;
  gap: .2rem;
  padding: .75rem;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 26px;
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow-soft);
  animation: menuIn .35s var(--ease);
}
.mobile-menu nav a { padding: .9rem 1rem; border-radius: 16px; text-decoration: none; font-weight: 800; }
.mobile-menu nav a:hover { background: var(--cream); color: var(--red); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 11% 14%, rgba(170, 49, 151, .55), transparent 30%),
    radial-gradient(circle at 88% 25%, rgba(34, 91, 180, .36), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(206, 33, 73, .24), transparent 38%),
    linear-gradient(145deg, #0a1735 0%, #06122b 56%, #090f23 100%);
  border-radius: 0 0 clamp(34px, 6vw, 74px) clamp(34px, 6vw, 74px);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .48;
  animation: drift 12s ease-in-out infinite alternate;
}
.hero::before { width: 340px; height: 340px; left: -180px; bottom: 8%; background: rgba(183, 27, 88, .38); }
.hero::after { width: 420px; height: 420px; right: -250px; top: 5%; background: rgba(61, 77, 176, .34); animation-delay: -4s; }
.hero-grid {
  display: grid;
  gap: 2.4rem;
  min-height: 780px;
  padding: 8.5rem 0 3rem;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow {
  margin-bottom: 1.2rem;
  color: rgba(255,255,255,.72);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-flex;
  margin-right: .55rem;
  padding: .36rem .62rem;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
}
.eyebrow-dark { color: var(--red); }
.hero h1, .section-heading h2, .priorities-intro h2, .contact-section h2, .legal-page h1 {
  margin-bottom: 1.35rem;
  font-weight: 880;
  letter-spacing: -.055em;
  line-height: .94;
}
.hero h1 { max-width: 760px; font-size: clamp(3.7rem, 14vw, 7.6rem); }
.hero h1 em, .priorities-intro h2 em {
  color: transparent;
  background: linear-gradient(100deg, #ff567a 3%, #d74a9b 46%, #7ea8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}
.hero-lead { max-width: 610px; margin-bottom: 0; color: rgba(255,255,255,.76); font-size: 1.03rem; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.75rem; }
.text-link { font-weight: 800; text-decoration: none; }
.text-link span { display: inline-block; transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(5px); }
.hero .text-link { color: rgba(255,255,255,.9); }
.countdown {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 2rem;
  padding: .7rem 1rem .7rem .75rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}
.countdown strong { min-width: 48px; color: #ff7190; font-size: 1.65rem; line-height: 1; text-align: center; }
.countdown span { max-width: 145px; color: rgba(255,255,255,.7); font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; line-height: 1.25; }

.hero-showcase { position: relative; min-height: 550px; }
.showcase-list-switch {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem;
  width: min(94%, 370px);
  padding: .3rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(7,20,46,.62);
  box-shadow: 0 14px 36px rgba(0,0,0,.2);
  backdrop-filter: blur(18px) saturate(1.3);
}
.showcase-list-switch button {
  min-height: 42px;
  padding: .5rem .7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.58);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 820;
  transition: color .3s ease, background .35s var(--ease), box-shadow .35s ease;
}
.showcase-list-switch button[aria-selected="true"] { background: var(--white); color: var(--navy); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.showcase-list-switch span { display: inline-grid; place-content: center; min-width: 23px; height: 23px; margin-left: .25rem; border-radius: 50%; background: rgba(206,33,73,.16); color: #ff6e8d; font-size: .66rem; }
.showcase-list-switch button[aria-selected="true"] span { background: var(--pink); color: var(--red-dark); }
.showcase-glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 75, 166, .34), rgba(51, 102, 207, .13) 45%, transparent 70%);
  filter: blur(20px);
  animation: pulseGlow 6s ease-in-out infinite;
}
.showcase-card {
  position: absolute;
  left: 50%;
  top: 64px;
  width: min(78vw, 350px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 32px;
  background: var(--navy);
  box-shadow: 0 30px 70px rgba(0,0,0,.32);
  transition: transform .9s var(--ease), opacity .65s ease, filter .65s ease;
  will-change: transform, opacity;
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; }
.showcase-active { z-index: 4; opacity: 1; transform: translateX(-50%) translateY(0) rotate(0) scale(1); }
.showcase-previous { z-index: 2; opacity: .48; filter: saturate(.75); transform: translateX(-66%) translateY(34px) rotate(-7deg) scale(.86); }
.showcase-next { z-index: 3; opacity: .64; filter: saturate(.85); transform: translateX(-35%) translateY(24px) rotate(7deg) scale(.9); }
.showcase-hidden { z-index: 1; opacity: 0; transform: translateX(-50%) translateY(60px) scale(.76); pointer-events: none; }
.showcase-meta {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 0;
  width: min(92%, 400px);
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  background: rgba(7,20,46,.72);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  backdrop-filter: blur(20px) saturate(1.4);
}
.showcase-meta > div:first-child { display: grid; }
.showcase-meta span { color: rgba(255,255,255,.55); font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.showcase-meta strong { font-size: 1rem; }
.showcase-meta small { color: #ff7593; font-weight: 750; }
.showcase-controls { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: .28rem; max-width: 108px; }
.showcase-controls button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.3); cursor: pointer; transition: width .3s var(--ease), background .3s ease; }
.showcase-controls button[aria-current="true"] { width: 25px; background: #ff5d7f; }
.hero-ticker {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-height: 58px;
  padding: .8rem 1rem;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.72);
  white-space: nowrap;
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero-ticker i { width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: #ff567a; box-shadow: 0 0 12px #ff567a; }

.section { position: relative; padding-block: 5.2rem; }
.section-heading { display: grid; gap: 1rem; margin-bottom: 2.7rem; }
.section-heading h2, .priorities-intro h2, .contact-section h2 { font-size: clamp(3rem, 10vw, 6.6rem); }
.section-heading > p { max-width: 540px; color: var(--muted); font-size: 1.02rem; }
.candidate-section { background: linear-gradient(180deg, var(--paper), #f5f1f5 80%, var(--paper)); }
.candidate-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -250px;
  top: 20%;
  border-radius: 50%;
  background: rgba(147, 71, 157, .13);
  filter: blur(22px);
}
.candidate-tabs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
  padding: .35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 8px 25px rgba(7,20,46,.06);
  backdrop-filter: blur(14px);
}
.candidate-tabs button {
  min-height: 51px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 820;
  transition: color .3s ease, background .35s var(--ease), box-shadow .35s ease;
}
.candidate-tabs button[aria-selected="true"] { background: var(--navy); color: var(--white); box-shadow: 0 10px 22px rgba(7,20,46,.18); }
.candidate-tabs span { display: inline-grid; place-content: center; min-width: 27px; height: 27px; margin-left: .4rem; border-radius: 50%; background: rgba(206,33,73,.12); color: var(--red); font-size: .72rem; }
.candidate-tabs button[aria-selected="true"] span { background: var(--red); color: var(--white); }
.candidate-status { margin: 1.15rem 0 1.25rem; color: var(--muted); font-size: .74rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.candidate-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(84vw, 340px);
  gap: 1rem;
  overflow-x: auto;
  padding: .3rem 1rem 1.5rem .1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(206,33,73,.55) transparent;
  animation: gridIn .55s var(--ease);
}
.candidate-card {
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
  transition: transform .5s var(--ease), box-shadow .5s ease, border-color .5s ease;
}
.candidate-card:hover { transform: translateY(-8px); border-color: rgba(206,33,73,.22); box-shadow: 0 28px 62px rgba(7,20,46,.15); }
.candidate-portrait { position: relative; aspect-ratio: 1; margin: .55rem; overflow: hidden; border-radius: 24px; background: var(--navy); }
.candidate-portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease), filter .5s ease; }
.candidate-card:hover .candidate-portrait img { transform: scale(1.035); filter: saturate(1.06); }
.candidate-shine {
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-16deg);
  background: linear-gradient(100deg, transparent 38%, rgba(255,255,255,.2), transparent 62%);
  transition: transform .9s var(--ease);
}
.candidate-card:hover .candidate-shine { transform: translateX(120%) skewX(-16deg); }
.candidate-copy { min-height: 176px; display: flex; flex-direction: column; padding: .8rem 1.25rem 1.35rem; }
.candidate-copy p { display: flex; align-items: center; flex-wrap: wrap; gap: .55rem; margin-bottom: .65rem; color: var(--muted); font-size: .65rem; font-weight: 820; letter-spacing: .07em; text-transform: uppercase; }
.candidate-copy p span { padding: .28rem .5rem; border-radius: 999px; background: var(--pink); color: var(--red-dark); }
.candidate-copy h3 { margin-bottom: .55rem; font-size: 1.32rem; line-height: 1.1; letter-spacing: -.025em; }
.candidate-copy > span { color: var(--muted); font-size: .86rem; }
.candidate-copy > strong { margin-top: auto; padding-top: .85rem; color: var(--red); font-size: .76rem; }

.priorities-section {
  margin: 0 .75rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 12%, rgba(161,54,154,.42), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(40,82,174,.35), transparent 34%),
    var(--navy);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(7,20,46,.18);
}
.priorities-section::after { content: ""; position: absolute; width: 460px; height: 460px; right: -280px; top: -160px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.priorities-intro { margin-bottom: 2.8rem; }
.priorities-intro > p:last-child { max-width: 580px; color: rgba(255,255,255,.68); }
.priority-list { display: grid; gap: .8rem; margin: 0; padding: 0; list-style: none; }
.priority-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: .9rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.065);
  backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), background .35s ease, border-color .35s ease;
}
.priority-list li:hover { transform: translateX(6px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.priority-list li > span { color: #ff6d8d; font-size: 1.35rem; font-weight: 880; }
.priority-list h3 { margin-bottom: .35rem; font-size: 1.08rem; }
.priority-list p { margin: 0; color: rgba(255,255,255,.63); font-size: .86rem; }

.belief-strip { padding: 4.5rem 0; }
.belief-grid {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f6dfe7, #f3ecf4 55%, #e8edfb);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
}
.belief-grid blockquote { margin: 0; max-width: 820px; font-family: Georgia, serif; font-size: clamp(1.7rem, 6vw, 3.6rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.12; }
.belief-grid > div { padding-top: 1.2rem; border-top: 1px solid rgba(7,20,46,.16); }
.belief-grid strong { color: var(--red-dark); }
.belief-grid p { margin: .4rem 0 0; color: var(--muted); }

.news-section { background: var(--paper); }
.news-heading { align-items: end; }
.news-heading .text-link { width: fit-content; color: var(--red); }
.news-grid { display: grid; gap: 1.1rem; }
.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7,20,46,.06);
  transition: transform .45s var(--ease), box-shadow .45s ease;
}
.news-card:hover { transform: translateY(-7px); box-shadow: 0 26px 60px rgba(7,20,46,.13); }
.news-image { position: relative; display: block; height: 220px; margin: .55rem; overflow: hidden; border-radius: 23px; background: var(--cream); }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.news-card:hover .news-image img { transform: scale(1.055); }
.news-body { padding: .8rem 1.35rem 1.4rem; }
.news-meta { display: flex; align-items: center; gap: .7rem; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.news-meta span { padding: .3rem .52rem; border-radius: 999px; background: var(--pink); color: var(--red-dark); }
.news-body h3 { font-size: 1.22rem; line-height: 1.2; letter-spacing: -.02em; }
.news-body h3 a { text-decoration: none; }
.news-body > p:not(.news-meta) { color: var(--muted); font-size: .88rem; }
.arrow-link { color: var(--red); font-size: .82rem; font-weight: 850; text-decoration: none; }

.local-photo {
  position: relative;
  height: 340px;
  margin: 0 .75rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}
.local-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.03); transform: scale(1.02); }
.local-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,20,46,.88), rgba(7,20,46,.1)); }
.local-photo-overlay { position: absolute; z-index: 2; left: clamp(1.4rem, 7vw, calc((100% - var(--max)) / 2 + 1rem)); top: 50%; transform: translateY(-50%); color: var(--white); }
.local-photo-overlay.is-visible { transform: translateY(-50%); }
.local-photo-overlay p { margin-bottom: .15rem; color: #ff7593; font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.local-photo-overlay strong { display: block; max-width: 650px; font-size: clamp(2.25rem, 8vw, 5rem); font-weight: 880; letter-spacing: -.05em; line-height: .95; }

.contact-section { padding: 5.2rem 0; }
.contact-grid {
  display: grid;
  gap: 2rem;
  padding: clamp(1.6rem, 6vw, 4.5rem);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 15%, rgba(188, 49, 129, .48), transparent 34%),
    linear-gradient(135deg, #111d42, #07142e 70%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.contact-copy > p { max-width: 570px; color: rgba(255,255,255,.72); font-size: 1rem; }
.button-light { background: var(--white); color: var(--navy); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.button-light:hover { box-shadow: 0 20px 36px rgba(0,0,0,.23); }
.mail-link { display: block; margin-top: 1.4rem; color: rgba(255,255,255,.72); font-weight: 700; overflow-wrap: anywhere; }

.site-footer { margin-top: 5rem; padding: 3.8rem 0 6.5rem; background: var(--navy); color: var(--white); }
.footer-grid { display: grid; gap: 2.2rem; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: .65rem; }
.footer-grid a { width: fit-content; color: rgba(255,255,255,.62); text-decoration: none; font-size: .86rem; transition: color .25s ease, transform .25s ease; }
.footer-grid a:hover { color: #ff7593; transform: translateX(3px); }
.footer-brand img { width: 225px; height: auto; filter: invert(1); }
.footer-brand p { margin: .8rem 0 0; color: rgba(255,255,255,.5); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2.6rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: .7rem; }
.mobile-election-cta {
  position: fixed;
  z-index: 70;
  left: 1rem;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-between;
  padding: .85rem 1.05rem;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 14px 38px rgba(7,20,46,.25);
  backdrop-filter: blur(16px);
}

.legal-page { min-height: 100vh; padding: 3rem 1rem; background: linear-gradient(135deg, var(--cream), #eee8f0); }
.legal-page > * { max-width: 850px; margin-inline: auto; }
.legal-page > a { display: block; margin-bottom: 3rem; color: var(--red); font-weight: 800; }
.legal-page h1 { margin-bottom: 1.5rem; font-size: clamp(3.4rem, 13vw, 7rem); }
.legal-card { padding: clamp(1.35rem, 5vw, 3.2rem); border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-lg); background: rgba(255,255,255,.82); box-shadow: var(--shadow-soft); backdrop-filter: blur(18px); }
.legal-card h2 { margin-top: 2rem; }
.legal-placeholder { padding: 1rem; border-radius: 14px; background: #fff2b3; border: 1px solid #e4c253; }

@keyframes menuIn { from { opacity: 0; transform: translateY(-10px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes gridIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes drift { to { transform: translate(30px, -24px) scale(1.08); } }
@keyframes pulseGlow { 50% { transform: translate(-50%, -50%) scale(1.09); opacity: .7; } }

@media (min-width: 680px) {
  .brand { width: 205px; }
  .hero-grid { min-height: 820px; padding-top: 9.5rem; }
  .hero-showcase { min-height: 630px; }
  .showcase-card { width: 420px; }
  .showcase-meta { bottom: 4px; }
  .candidate-grid { grid-auto-flow: initial; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; padding-right: 0; }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-card:first-child { grid-column: span 2; display: grid; grid-template-columns: 1.1fr 1fr; }
  .news-card:first-child .news-image { height: auto; min-height: 320px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 960px) {
  .nav-shell { min-height: 72px; }
  .mobile-menu { display: none; }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: .12rem;
    padding: .3rem;
    border: 1px solid rgba(255,255,255,.68);
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 10px 34px rgba(7,20,46,.12);
    backdrop-filter: blur(22px) saturate(1.45);
  }
  .hero { min-height: 780px; }
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr); align-items: center; gap: 3rem; min-height: 740px; padding: 8rem 0 2.5rem; }
  .hero h1 { font-size: clamp(5rem, 7.7vw, 7.5rem); }
  .hero-showcase { min-height: 635px; }
  .showcase-card { top: 66px; width: 450px; }
  .showcase-previous { transform: translateX(-69%) translateY(45px) rotate(-8deg) scale(.82); }
  .showcase-next { transform: translateX(-31%) translateY(37px) rotate(8deg) scale(.86); }
  .section { padding-block: 7.5rem; }
  .section-heading { grid-template-columns: 1.35fr .65fr; align-items: end; }
  .section-heading h2, .priorities-intro h2, .contact-section h2 { font-size: clamp(4.7rem, 6.8vw, 6.8rem); }
  .candidate-tabs { width: 560px; }
  .candidate-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
  .priorities-section { margin-inline: 1rem; }
  .priorities-section .section-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 7vw; align-items: start; }
  .priorities-intro { position: sticky; top: 120px; margin-bottom: 0; }
  .belief-grid { grid-template-columns: 1.4fr .6fr; align-items: end; }
  .belief-grid > div { border-top: 0; border-left: 1px solid rgba(7,20,46,.16); padding: 1.2rem 0 0 2rem; }
  .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .news-card:first-child { grid-column: auto; display: block; }
  .news-card:first-child .news-image { height: 220px; min-height: 0; }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .local-photo { margin-inline: 1rem; }
  .mobile-election-cta { display: none; }
  .site-footer { padding-bottom: 3.2rem; }
}

@media (min-width: 1240px) {
  .candidate-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .mobile-election-cta, .hero-actions, .contact-section, .site-footer, .scroll-progress { display: none; }
  .hero, .priorities-section { color: #000; background: #fff; box-shadow: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
