/* next-north-van.html styles — new page added Sept 2026.
   Content and section order come from next-north-van-full-page-mockup.png
   (Mike's reference). Colour treatment deliberately departs from that
   mockup's flat dark-evergreen hero/"We're here to listen" blocks: per
   Mike's request, this page is styled to match the home page's testimonials
   panel instead (light snow backgrounds, the exact --pine -> --evergreen
   gradient used by .tp-lower for the two "dark" moments rather than a flat
   solid, glacier/lake/pale-pine accents). The mockup's coral RSVP button was
   also swapped for the locked brand palette's glacier blue - the site's
   colour rule (CLAUDE.md) is greens/blues/whites only, no red - rather than
   reproduced literally.

   Header/nav/footer rules below are copied verbatim from the other inner
   pages (issues.css etc.) so this page matches sitewide chrome exactly. */
:root {
  /* Theme locked July 9, 2026 — "Super, Natural North Van" (see theme-preview.html) */
  --evergreen: #17362b;
  --pine: #2f5d4a;
  --glacier: #2c7f94;
  --glacier-dark: #1f6376;
  --lake: #24586e;
  --pale-pine: #9fc7bd;
  --ice: #eceee6;
  --snow: #f8f6f1;
  --white: #ffffff;
  --ink: #2b3a36;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Newsreader', Georgia, serif;
  --font-ui: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--snow);
  line-height: 1.65;
  text-wrap: pretty;
}
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(23, 54, 43, 0.08);
}
.header-inner {
  /* Sept 2026: nav left-aligned next to the logo (was justify-content:
     space-between, which left too little room on the right once "Next
     North Van" was added to #site-nav, wrapping Volunteer/Donate to a
     second line). .header-cta gets margin-left:auto below to pin it right. */
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: flex-start; align-items: center;
  height: 84px; flex-wrap: wrap; gap: 1.75rem;
}
.wordmark {
  display: flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  letter-spacing: -.01em; color: var(--evergreen); text-decoration: none;
}
.wordmark .mark { color: var(--glacier); font-size: 1.1rem; }
.wordmark span { font-weight: 400; font-style: italic; color: var(--pine); }

#site-nav { display: flex; align-items: center; gap: 2px; }
nav a {
  color: var(--ink); text-decoration: none;
  font-family: var(--font-ui); font-size: .9rem; font-weight: 500;
  padding: .55rem .75rem; border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
nav a:hover { background: var(--ice); }
nav a.active { color: var(--evergreen); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.hdr-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: .9rem; font-weight: 600;
  padding: .65rem 1.15rem; border-radius: 999px; text-decoration: none;
  border: 1.5px solid transparent;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.hdr-btn:hover { transform: translateY(-1px); }
.hdr-btn.ghost { background: transparent; border-color: rgba(23,54,43,.14); color: var(--evergreen); }
.hdr-btn.ghost:hover { background: var(--ice); }
.hdr-btn.solid { background: var(--glacier); color: var(--white); }
.hdr-btn.solid:hover { background: var(--glacier-dark); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid rgba(23,54,43,.14); border-radius: 10px;
  cursor: pointer; width: 42px; height: 42px; padding: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--evergreen); border-radius: 2px; }
@media (max-width: 760px) {
  .header-inner { height: auto; padding: .85rem 1.25rem; }
  .nav-toggle { display: flex; }
  .header-cta { order: 2; }
  .header-cta .hdr-btn { display: none; }
  #site-nav { order: 3; display: none; width: 100%; flex-direction: column; gap: .15rem; margin-top: .5rem; }
  #site-nav.open { display: flex; }
  nav a { padding: .65rem 1rem; }
}

/* ===== Shared page tokens ===== */
.nnv-wrap { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.nnv-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-ui); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--glacier-dark);
  margin-bottom: .9rem;
}
.nnv-eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--glacier); display: inline-block; }
.nnv-eyebrow.on-dark { color: var(--pale-pine); }
.nnv-eyebrow.on-dark::before { background: var(--pale-pine); }

/* ===== Hero =====
   Light two-column hero (snow background, not dark evergreen) — the main
   departure from the mockup. Photo sits in a rounded frame with a pale-pine
   swoosh peeking from behind its left edge, echoing the small treatment used
   on the new Priorities-page panel rather than a full-bleed dark photo band. */
.nnv-hero { background: var(--snow); padding: 3.5rem 0 3rem; overflow: hidden; }
.nnv-hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center;
}
.nnv-invited { font-family: var(--font-ui); font-size: .95rem; font-style: italic; color: var(--pine); margin-bottom: .75rem; }
.nnv-hero .nnv-brand-label {
  font-family: var(--font-ui); font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--lake);
  margin-bottom: .5rem;
}
.nnv-hero .nnv-tag {
  font-family: var(--font-ui); font-size: .92rem; color: var(--glacier-dark);
  margin-bottom: 1.1rem;
}
.nnv-hero h1 {
  font-family: var(--font-display); font-weight: 500; color: var(--evergreen);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem); line-height: 1.12; margin-bottom: 1rem;
}
.nnv-hero .nnv-lede { font-size: 1.12rem; max-width: 42ch; margin-bottom: 1.75rem; }
.nnv-hero .btn-row { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; margin-bottom: .9rem; }
.nnv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 1.02rem; font-weight: 600; text-decoration: none;
  background: var(--glacier); color: var(--white);
  padding: .85rem 1.7rem; border-radius: 999px; border: none; cursor: pointer;
  transition: background .15s ease;
}
.nnv-btn:hover { background: var(--glacier-dark); }
.nnv-btn.outline { background: transparent; border: 1.5px solid var(--glacier); color: var(--glacier-dark); }
.nnv-btn.outline:hover { background: var(--ice); }
.nnv-fine-print { font-family: var(--font-ui); font-size: .86rem; color: var(--pine); }

.nnv-hero-media { position: relative; }
.nnv-hero-media::before {
  /* pale-pine swoosh, echoes the priorities-panel treatment */
  content: ""; position: absolute; left: -34px; top: 6%; bottom: 6%; width: 78px;
  background: var(--pale-pine); border-radius: 46% 54% 52% 48% / 50% 48% 52% 50%;
  z-index: 0;
}
.nnv-hero-media img {
  position: relative; z-index: 1;
  width: 100%; height: 320px; object-fit: cover; display: block;
  border-radius: 20px; box-shadow: 0 20px 46px -18px rgba(23, 54, 43, .35);
}
@media (max-width: 900px) {
  .nnv-hero-grid { grid-template-columns: 1fr; }
  .nnv-hero-media { order: -1; }
  .nnv-hero-media::before { left: -18px; width: 46px; }
  .nnv-hero-media img { height: 260px; }
}

/* ===== "You're invited" info section ===== */
.nnv-invite-section { background: var(--snow); padding: 3rem 0 3.5rem; border-top: 1px solid rgba(23,54,43,.08); }
.nnv-invite-grid { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: start; }
.nnv-date-card {
  background: var(--evergreen); color: var(--white);
  border-radius: 10px; padding: 1.35rem 1.5rem; min-width: 150px; text-align: left;
}
.nnv-date-card .dc-label {
  font-family: var(--font-ui); font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pale-pine); margin-bottom: .5rem;
}
.nnv-date-card .dc-day {
  font-family: var(--font-display); font-weight: 600; font-size: 3rem; line-height: 1;
}
.nnv-date-card .dc-month {
  font-family: var(--font-ui); font-weight: 700; font-size: 1.15rem; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: .5rem;
}
.nnv-date-card .dc-sub { font-family: var(--font-ui); font-size: .78rem; color: rgba(255,255,255,.7); }
.nnv-invite-copy h2 {
  font-family: var(--font-display); font-weight: 500; color: var(--evergreen);
  font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .85rem; line-height: 1.25;
}
.nnv-invite-copy > p { max-width: 52ch; margin-bottom: 1.5rem; }
.nnv-info-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  padding: 1.5rem 0; border-top: 1px solid rgba(23,54,43,.12); border-bottom: 1px solid rgba(23,54,43,.12);
  margin-bottom: 1.75rem;
}
.nnv-info-row .info-item { padding-left: 1.25rem; border-left: 2px solid var(--glacier); }
.nnv-info-row .info-label {
  font-family: var(--font-ui); font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--glacier-dark); margin-bottom: .4rem;
}
.nnv-info-row .info-val { font-family: var(--font-ui); font-size: .95rem; color: var(--ink); font-weight: 500; }
.nnv-invite-cta { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.nnv-invite-cta .nnv-fine-print { max-width: 22ch; }
@media (max-width: 760px) {
  .nnv-invite-grid { grid-template-columns: 1fr; }
  .nnv-info-row { grid-template-columns: 1fr; gap: 1.1rem; }
}

/* ===== "The bigger picture" — numbered list ===== */
.nnv-picture-section { background: var(--white); padding: 4rem 0; }
.nnv-picture-top { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; margin-bottom: 2.25rem; }
.nnv-picture-top h2 {
  font-family: var(--font-display); font-weight: 500; color: var(--evergreen);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); line-height: 1.3;
}
.nnv-picture-top p { padding-top: .35rem; }
.nnv-numbered { border-top: 1px solid rgba(23,54,43,.1); }
.nnv-numbered .row {
  display: grid; grid-template-columns: 3.5rem 16rem 1fr; gap: 1.5rem; align-items: baseline;
  padding: 1.35rem 0; border-bottom: 1px solid rgba(23,54,43,.1);
}
.nnv-numbered .row .n { font-family: var(--font-ui); font-weight: 700; font-size: 1rem; color: var(--glacier); }
.nnv-numbered .row h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--evergreen); }
.nnv-numbered .row p { font-size: .96rem; color: var(--ink); opacity: .85; }
@media (max-width: 760px) {
  .nnv-picture-top { grid-template-columns: 1fr; }
  .nnv-numbered .row { grid-template-columns: 1fr; gap: .4rem; }
}

/* ===== "We're here to listen" — dark band =====
   Uses the exact --pine -> --evergreen gradient the home page testimonials
   panel uses for its .tp-lower tray (see index.css), instead of a flat
   --evergreen fill, per Mike's request to match that panel's styling. */
.nnv-listen-band {
  background: linear-gradient(180deg, var(--pine) 0%, var(--evergreen) 100%);
  color: var(--ice);
  padding: 4rem 0;
}
.nnv-listen-band h2 {
  font-family: var(--font-display); font-weight: 500; color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1rem;
}
.nnv-listen-band p { max-width: 56ch; font-size: 1.08rem; color: rgba(236,238,230,.92); margin-bottom: 1.75rem; }
.nnv-listen-rule { width: 100%; height: 1px; background: rgba(255,255,255,.16); margin-bottom: 1.5rem; }
.nnv-listen-tags {
  font-family: var(--font-ui); font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pale-pine);
}

/* ===== "Can't make it?" perspective form ===== */
/* #share: QR-code deep link target (Sept 2026), same section as
   .nnv-perspective-section below - scroll-margin-top keeps the anchored
   scroll from landing the heading directly under the sticky header (84px
   tall on desktop, roughly that on mobile too), giving it a little
   breathing room above. Paired with the fallback script near </body>. */
#share { scroll-margin-top: 100px; }
.nnv-perspective-section { background: var(--white); padding: 4rem 0; }
.nnv-perspective-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.nnv-perspective-copy h2 {
  font-family: var(--font-display); font-weight: 500; color: var(--evergreen);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 1rem; line-height: 1.3;
}
.nnv-perspective-copy p { max-width: 40ch; }
.nnv-question-card { background: var(--ice); border-radius: 12px; padding: 2rem 2.25rem; }
.nnv-question-card .nnv-eyebrow { color: var(--glacier-dark); }
.nnv-question-card h3 {
  font-family: var(--font-display); font-weight: 500; color: var(--evergreen);
  font-size: 1.35rem; line-height: 1.35; margin-bottom: 1.25rem;
}
.nnv-question-card textarea {
  width: 100%; min-height: 6rem; resize: vertical;
  padding: .8rem .9rem; border: 1px solid rgba(23,54,43,.16); border-radius: 8px;
  font-family: inherit; font-size: 1rem; background: var(--white); margin-bottom: .6rem;
}
.nnv-question-card .qc-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.nnv-question-card .qc-count { font-family: var(--font-ui); font-size: .82rem; color: var(--pine); }
@media (max-width: 800px) {
  .nnv-perspective-grid { grid-template-columns: 1fr; }
}

/* ===== "Hosted by" band ===== */
.nnv-hosted-band { background: var(--ice); border-top: 1px solid rgba(23,54,43,.08); padding: 2.75rem 0; }
.nnv-hosted-row { display: flex; align-items: center; gap: 1.5rem; }
.nnv-hosted-avatar {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
  background: var(--evergreen); color: var(--pale-pine);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
}
.nnv-hosted-copy .nnv-eyebrow { margin-bottom: .35rem; }
.nnv-hosted-copy h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--evergreen); margin-bottom: .3rem; }
.nnv-hosted-copy p { font-size: .95rem; color: var(--ink); opacity: .85; max-width: 60ch; }

/* confirmation / error states for the perspective form, matching site convention */
.nnv-confirmation {
  display: none; background: var(--evergreen); color: var(--ice);
  border-radius: 8px; padding: 1rem 1.25rem; margin-top: 1rem; font-size: .95rem;
}
.nnv-confirmation.is-visible { display: block; }
.nnv-question-card form.is-hidden { display: none; }
.nnv-error-note {
  display: none; background: #fbeaea; color: #6b2323; border: 1px solid #e2b6b6;
  border-radius: 8px; padding: .85rem 1.1rem; margin-top: 1rem; font-size: .9rem;
}
.nnv-error-note.is-visible { display: block; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Footer — copied verbatim from the rest of the site. */
.site-footer {
  background: var(--evergreen); color: var(--pale-pine);
  padding: 3.5rem 1.5rem 1.75rem;
  font-family: var(--font-ui);
}
.foot-grid {
  max-width: 1160px; margin: 0 auto 2.75rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
}
.site-footer .wordmark { color: var(--white); }
.site-footer .wordmark .mark, .site-footer .wordmark span { color: var(--pale-pine); }
.foot-brand p { margin-top: 1rem; max-width: 32ch; color: var(--pale-pine); font-size: .95rem; }
.foot-col h4 {
  color: var(--white); font-family: var(--font-ui); font-size: .78rem;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: .6rem; }
.foot-col a { color: var(--pale-pine); text-decoration: none; font-family: var(--font-ui); font-size: .92rem; }
.foot-col a:hover { color: var(--white); }
.foot-col .yt-slot { display: none; }
.foot-bottom {
  max-width: 1160px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.foot-bottom a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 2px; }
.foot-bottom a:hover { color: var(--white); }
.foot-copyright { margin: 0 1rem; }
.foot-privacy { margin: 0 1rem; }
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .foot-copyright, .foot-privacy { margin: 0; }
}
