/* ============================================================
   Tokens — warm, trust-forward palette
============================================================ */
:root{
  --parchment: #F6F1E7;
  --card: #EDE4D3;
  --navy: #1F3040;
  --navy-soft: #3C5266;
  --terracotta: #B5602E;
  --terracotta-deep: #8F4B22;
  --sage: #8A9A7E;
  --ink: #23201A;

  --font-display: "Fraunces", serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1120px;
  --radius: 6px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.6;
}
h1,h2,h3{
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 1em; }
a{ color: inherit; }
img{ max-width:100%; display:block; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.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;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation: none !important; transition: none !important; }
}

/* ============================================================
   Sticky section rail
============================================================ */
.section-rail{
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section-rail a{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
  text-decoration:none;
}
.rail-dot{
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(31,48,64,0.28);
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink:0;
}
.rail-label{
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy-soft);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.section-rail a:hover .rail-label,
.section-rail a.active .rail-label{
  opacity: 1;
  transform: translateX(0);
}
.section-rail a.active .rail-dot{
  background: var(--terracotta);
  transform: scale(1.35);
}
@media (max-width: 1300px){
  .section-rail{ display:none; }
}

/* ============================================================
   Stats
============================================================ */
.stats{ padding: 40px 0; }
.stats-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(180px, 260px));
  justify-content: center;
  gap: 56px;
  text-align:center;
}
.stat-number{
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label{
  color: var(--navy-soft);
  font-size: 0.95rem;
  margin: 0;
}
@media (max-width: 720px){
  .stats-grid{ grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   Scroll reveal
============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; }
}

/* ============================================================
   Section divider — quiet hairline, no road motif
============================================================ */
.section-divider{
  height: 1px;
  background: rgba(31,48,64,0.12);
  max-width: var(--wrap);
  margin: 0 auto;
}

/* ============================================================
   Header
============================================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,241,231,0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(31,48,64,0.1);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 76px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--navy);
}
.brand-mark{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1rem;
  background: var(--navy);
  color: var(--parchment);
  width: 40px; height:40px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition: transform 0.35s ease;
}
.brand:hover .brand-mark{ transform: rotate(-8deg) scale(1.06); }
.brand-name{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.brand-name-last{
  color: var(--terracotta);
  font-weight: 700;
}
.nav{
  display:flex;
  align-items:center;
  gap: 28px;
}
.nav a{
  text-decoration:none;
  font-weight:600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding-bottom: 2px;
}
.nav a::after{
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav a:not(.btn):hover{ color: var(--terracotta); }
.nav a:not(.btn):hover::after{ transform: scaleX(1); }

.social-icons{
  display:flex;
  align-items:center;
  gap: 10px;
}
.social-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--card);
  color: var(--navy);
  font-size: 1.05rem;
  padding-bottom: 0 !important;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.social-icon::after{ content: none !important; }
.social-icon:hover{
  color: var(--terracotta);
  transform: translateY(-3px);
}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:space-between;
  width: 26px; height: 20px;
  background:none; border:none; cursor:pointer; padding:0;
}
.nav-toggle span{
  display:block; height:2px; width:100%;
  background: var(--navy);
}

/* ============================================================
   Buttons
============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap: 6px;
  padding: 12px 26px;
  border-radius: var(--radius);
  text-decoration:none;
  font-weight:700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease;
}
.btn--primary{
  background: var(--terracotta);
  color: var(--parchment);
}
.btn--primary:hover{ background: var(--terracotta-deep); transform: translateY(-1px); }
.btn--ghost{
  border-color: var(--navy);
  color: var(--navy);
}
.btn--ghost:hover{ background: var(--navy); color: var(--parchment); }

.btn--calendar{
  padding: 8px 16px;
  font-size: 0.85rem;
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  background: transparent;
}
.btn--calendar:hover{
  background: var(--terracotta);
  color: var(--parchment);
}
.btn--calendar i{ font-size: 1rem; }
/* ============================================================
   Hero
============================================================ */
.hero{
  background: var(--navy);
  overflow: hidden;
}
.hero-image{
  width: 100%;
  height: auto;
  aspect-ratio: 2035 / 773;
  max-height: 640px;
  object-fit: cover;
  object-position: center bottom;
  display:block;
  transition: transform 8s ease;
}
.hero:hover .hero-image{ transform: scale(1.04); }
.hero-below{
  padding: 32px 24px 40px;
  max-width: 760px;
}
.eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 16px;
}
.hero-lede{
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--parchment);
  margin-bottom: 28px;
}
.hero-actions{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .btn--ghost{
  border-color: var(--parchment);
  color: var(--parchment);
}
.hero .btn--ghost:hover{ background: var(--parchment); color: var(--navy); }

/* ============================================================
   Section shared
============================================================ */
section{ padding: 56px 0; }
.section-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.section-title{
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 720px;
}

/* ============================================================
   Story
============================================================ */
.story-inner{
  display:grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items:start;
}
.story-photo img{
  border-radius: var(--radius);
  border: 3px solid var(--sage);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.story-photo:hover img{
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(31,48,64,0.18);
}
.story-copy p{ color: var(--navy-soft); max-width: 600px; font-size: 1.05rem; }

/* ============================================================
   Priorities / issues
============================================================ */
.issue-list{
  margin-top: 48px;
  display:flex;
  flex-direction: column;
}
.issue{
  display:grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(31,48,64,0.14);
  transition: padding-left 0.35s ease;
}
.issue:hover{ padding-left: 10px; }
.issue:last-child{ border-bottom: 1px solid rgba(31,48,64,0.14); }
.issue-icon{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--card);
  color: var(--terracotta);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.5rem;
  transition: transform 0.35s ease, background 0.35s ease;
}
.issue:hover .issue-icon{
  transform: scale(1.1) rotate(-6deg);
  background: var(--terracotta);
  color: var(--parchment);
}
.issue-body h3{
  font-size: 1.3rem;
  margin-bottom: 0.35em;
}
.issue-body p{
  color: var(--navy-soft);
  max-width: 640px;
  margin-bottom: 0;
}
.priorities-note{
  margin-top: 36px;
  font-size: 1.05rem;
  color: var(--navy-soft);
}
.priorities-note a{
  color: var(--terracotta);
  font-weight: 700;
  text-decoration: none;
}
.priorities-note a:hover{ text-decoration: underline; }

/* ============================================================
   About
============================================================ */
.about-inner{ max-width: 720px; }
.about-copy p{ color: var(--navy-soft); }
.highlight{
  color: var(--terracotta-deep);
  font-weight: 700;
}

/* ============================================================
   Contact
============================================================ */
.contact-inner{
  max-width: 640px;
}
.contact-copy p{ color: var(--navy-soft); max-width: 520px; }
.vote-callout{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy);
  background: var(--card);
  border-left: 4px solid var(--terracotta);
  padding: 18px 22px;
  border-radius: var(--radius);
  max-width: 520px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vote-callout:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(31,48,64,0.16);
}
.calendar-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  color: var(--terracotta);
  text-decoration: none;
  font-size: 0.95rem;
}
.calendar-link:hover{ text-decoration: underline; }
.calendar-link i{ font-size: 1.1rem; }

/* ============================================================
   Add-to-calendar dropdown
============================================================ */
.calendar-menu{
  position: fixed;
  z-index: 200;
  background: var(--parchment);
  border: 1px solid rgba(31,48,64,0.14);
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(31,48,64,0.2);
  padding: 8px;
  min-width: 210px;
  display: none;
}
.calendar-menu.open{ display: block; }
.calendar-menu a{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.calendar-menu a:hover{
  background: var(--card);
  color: var(--terracotta);
}
.contact-list{
  list-style:none;
  margin: 28px 0 0;
  padding:0;
}
.contact-list li{
  display:flex;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(31,48,64,0.14);
  font-size: 0.98rem;
  transition: padding-left 0.3s ease;
}
.contact-list li:hover{ padding-left: 8px; }
.contact-list li span{
  width: 90px;
  flex-shrink:0;
  font-weight:700;
  color: var(--navy);
}
.contact-list li a{
  text-decoration:none;
  color: var(--navy-soft);
}
.contact-list li a:hover{ color: var(--terracotta); }

/* ============================================================
   Footer
============================================================ */
.site-footer{
  background: var(--navy);
  color: rgba(246,241,231,0.7);
  padding: 32px 0;
  font-size: 0.85rem;
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.disclosure{ color: rgba(246,241,231,0.5); }

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 860px){
  .story-inner{ grid-template-columns: 1fr; }
  .story-photo{ max-width: 220px; }
}

@media (max-width: 720px){
  .hero-image{ aspect-ratio: 2400 / 1350; max-height: none; }
  .nav{
    position:absolute;
    top: 76px; left:0; right:0;
    background: var(--parchment);
    flex-direction:column;
    align-items:flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(31,48,64,0.1);
    display:none;
  }
  .nav.open{ display:flex; }
  .nav-toggle{ display:flex; }
  .issue{ grid-template-columns: 48px 1fr; gap: 16px; }
  .issue-icon{ width: 44px; height:44px; font-size: 1.2rem; }
  .hero-lede{ font-size: 1.2rem; }
  .hero-image{ object-position: center bottom; }
}
