/* ---- Fonts (self-hosted) ----
   Headings: Acumin Pro (the original's licensed Adobe typeface).
   Body: Poppins (the original body weight is Light/300). */
@font-face { font-family:"acumin-pro"; src:url("/assets/fonts/acumin-regular.woff2") format("woff2"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"acumin-pro"; src:url("/assets/fonts/acumin-bold.woff2") format("woff2"); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:"acumin-pro"; src:url("/assets/fonts/acumin-italic.woff2") format("woff2"); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:"acumin-pro"; src:url("/assets/fonts/acumin-bolditalic.woff2") format("woff2"); font-weight:700; font-style:italic; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("/assets/fonts/poppins-300.woff2") format("woff2"); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("/assets/fonts/poppins-400.woff2") format("woff2"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("/assets/fonts/poppins-500.woff2") format("woff2"); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("/assets/fonts/poppins-600.woff2") format("woff2"); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("/assets/fonts/poppins-700.woff2") format("woff2"); font-weight:700; font-style:normal; font-display:swap; }

:root {
  --ink: #14140f;
  --bg: #f4f6ea;
  --dark: #111110;
  --muted: #5c5c52;
  --line: #d7d9c8;
  --container: 1080px;
  --heading: "acumin-pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 1.05rem;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2.25rem); }
.container.narrow { max-width: 640px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; padding: .75rem 1rem; z-index: 100; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---- Hero (dark desert banner) ---- */
.hero {
  background:
    linear-gradient(180deg, rgba(22,17,10,.34) 0%, rgba(22,17,10,.46) 100%),
    #100f0d url("/assets/img/hero-bighorn.webp") center 42% / cover no-repeat;
  color: #fff;
  min-height: 88vh;
  display: flex;
}
.hero-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.hero-logo { width: clamp(180px, 20vw, 220px); height: auto; }
.hero-intro {
  font-family: var(--heading);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.1vw, 2.5rem);
  line-height: 1.26;
  letter-spacing: -0.005em;
  max-width: 22ch;
  margin: auto 0;   /* centers vertically in the space under the logo */
}

/* ---- Sections ---- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: #eef1de; }
.section-heading {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 0 0 1.6rem;
}
.section-heading.center { text-align: center; }
.section-heading.light { font-weight: 500; }
.lead { font-weight: 300; font-size: 1.12rem; line-height: 1.6; margin: 0 0 1.6rem; color: #2c2c24; }
.lead:last-child { margin-bottom: 0; }
.lead a, .changes-list a { color: #1a1a14; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.lead a:hover, .changes-list a:hover { color: #000; }
.lead strong { font-weight: 600; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--dark); color: #fff;
  font-family: var(--heading); font-weight: 600; font-size: 1.02rem;
  letter-spacing: .01em;
  padding: .95rem 2.1rem; border-radius: 4px; text-decoration: none;
  border: none; cursor: pointer; transition: background .15s ease, transform .05s ease;
}
.btn:hover { background: #33322c; }
.btn:active { transform: translateY(1px); }

/* ---- Two-column split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split-text { order: 1; }                       /* default: text left … */
.split-media { order: 2; margin: 0; }           /* … media right (Join) */
.split--media-left .split-media { order: 1; }   /* flip: media left (Changes) */
.split--media-left .split-text { order: 2; }
.split-media img { width: 100%; border-radius: 4px; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: clamp(1.75rem, 5vw, 2.5rem); }
  .split-text, .split-media { order: 0; }
}

/* ---- Changes list ---- */
.changes-list {
  list-style: none; margin: 0 0 2rem; padding: 0;
  font-weight: 300; font-size: 1.1rem; line-height: 1.55;
}
.changes-list li { position: relative; padding-left: 1.5rem; margin: 0 0 1.1rem; }
.changes-list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: .42rem; height: .42rem; border-radius: 50%; background: var(--ink);
}
.cta-row { margin: 0; }

/* ---- Videos — one featured, then a row of two, then a row of three ---- */
.videos { display: flex; flex-direction: column; gap: clamp(1.25rem, 3vw, 2rem); }
.video-row { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.video-row.two { grid-template-columns: repeat(2, 1fr); }
.video-row.three { grid-template-columns: repeat(3, 1fr); }
.video-embed { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: 6px; overflow: hidden; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 720px) {
  .video-row.two, .video-row.three { grid-template-columns: 1fr; }
}

/* ---- Press (centered, two balanced columns) ---- */
.press-grid { list-style: none; margin: 1rem 0 0; padding: 0; column-count: 2; column-gap: clamp(2rem, 6vw, 5rem); }
.press-item { break-inside: avoid; text-align: center; margin: 0 0 clamp(1.75rem, 4vw, 2.6rem); }
.press-title {
  font-family: var(--heading); font-weight: 500; font-size: 1.32rem; line-height: 1.3;
  text-decoration: underline; text-underline-offset: 3px; color: var(--ink);
}
.press-title:hover { color: #000; }
.press-outlet { display: block; margin-top: .55rem; color: var(--muted); font-size: 1rem; }
@media (max-width: 640px) { .press-grid { column-count: 1; } }

/* ---- Signup form ---- */
.signup-form { margin-top: 1.75rem; }
.signup-form .field { margin-bottom: 1.1rem; }
.signup-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.signup-form label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .4rem; }
.signup-form .req { color: var(--muted); font-weight: 400; font-size: .85rem; }
.signup-form input, .signup-form textarea {
  width: 100%; font: inherit; font-weight: 400; font-size: 1rem; padding: .8rem .9rem;
  border: 1.5px solid #c9ccb6; border-radius: 5px; background: #fbfcf5; color: var(--ink);
}
.signup-form textarea { resize: vertical; }
.signup-form input:focus, .signup-form textarea:focus {
  outline: 2px solid var(--dark); outline-offset: 1px; border-color: var(--dark);
}
.hp-field { position: absolute; left: -5000px; }
.submit-row { margin-top: 1.4rem; }
.signup-status { margin: 1rem 0 0; font-weight: 500; min-height: 1.3em; }
.signup-status.is-success { color: #2f6a2a; }
.signup-status.is-error { color: #b3402a; }
/* Join: image sits top-right, doesn't stretch */
.join-media img { border-radius: 4px; }

/* ---- Closing (statement over the City Hall image) ---- */
.closing {
  background:
    linear-gradient(90deg, rgba(18,22,30,.55) 0%, rgba(18,22,30,.34) 60%, rgba(18,22,30,.22) 100%),
    #23262c url("/assets/img/press-cityhall.webp") center 40% / cover no-repeat;
  color: #fff;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.closing-statement {
  font-family: var(--heading); font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem); line-height: 1.24;
  letter-spacing: -0.005em; color: #fff; text-align: left; max-width: 20ch; margin: 0;
}

/* ---- Footer (cream: logo · email us · past emails) ---- */
.site-footer { background: var(--bg); color: var(--ink); padding: clamp(2.5rem, 6vw, 4rem) 0; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(1.5rem, 5vw, 3rem); }
.footer-logo { width: clamp(150px, 15vw, 185px); height: auto; }
.footer-email { font-family: var(--heading); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; justify-self: center; }
.footer-emails { margin: 0; text-align: right; font-weight: 300; max-width: 22ch; }
.footer-emails a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.5rem; }
  .footer-email { justify-self: center; }
  .footer-emails { text-align: center; }
}

@media (max-width: 640px) {
  .signup-form .field-row { grid-template-columns: 1fr; gap: 0; }
}
