/* ==========================================================================
   LOVE YOUR ACTUAL NEIGHBOR — Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   ROOT VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --bg:        #FFFDF8;
  --text:      #1F2937;
  --muted:     #6B7280;
  --accent:    #D97706;
  --glow:      #F6C453;
  --ink:       #0B1F2A;
  --navy:      #1F3556;
  --navy-mid:  #162C48;
  --white:     #FFFFFF;
  --border:    #E5E7EB;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s14: 3.5rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Layout */
  --max-wide: 1200px;
  --max-mid:  900px;
  --max-text: 680px;
  --nav-h:    72px;
  --radius:   12px;
}

/* --------------------------------------------------------------------------
   RESETS & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }

/* --------------------------------------------------------------------------
   CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  padding-inline: var(--s8);
  margin-inline: auto;
}
.container--wide { max-width: var(--max-wide); }
.container--mid  { max-width: var(--max-mid); }
.container--text { max-width: var(--max-text); }

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.25s,
    transform 0.15s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

/* Primary amber */
.btn--primary {
  background: var(--accent);
  color: var(--white);
  padding: 0.8em 1.75em;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.btn--primary:hover {
  background: var(--glow);
  color: var(--ink);
}

/* Glow variant */
.btn--glow:hover {
  box-shadow:
    0 0 0 4px rgba(246, 196, 83, 0.35),
    0 8px 28px rgba(217, 119, 6, 0.45);
}

/* Large */
.btn.btn--lg {
  padding: 1em 2.25em;
  font-size: 1.05rem;
  border-radius: 10px;
}

/* Nav CTA */
.btn--nav {
  background: var(--accent);
  color: var(--white);
  padding: 0.55em 1.2em;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 7px;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn--nav:hover {
  background: var(--glow);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
}

/* Block Builders button */
.btn--block-builder {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85em 1.75em;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.12);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn--block-builder:hover {
  background: var(--navy-mid);
  box-shadow: 0 6px 24px rgba(11, 31, 42, 0.4), 0 0 0 3px rgba(246, 196, 83, 0.3);
  transform: translateY(-2px);
}
.btn--block-builder svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.btn--block-builder:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
  background: rgba(11, 31, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.nav__inner {
  max-width: var(--max-wide);
  margin-inline: auto;
  height: 100%;
  padding-inline: var(--s8);
  display: flex;
  align-items: center;
  gap: var(--s6);
}

/* Logo */
.nav__brand { display: flex; align-items: center; text-decoration: none; }

.nav__logo-clip {
  width: 130px;
  height: 52px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.nav__logo-img {
  position: absolute;
  width: 127px;
  height: 127px;
  top: -43px;
  left: -5px;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s6);
  margin-inline-start: auto;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--white); }

/* Project Porchlight dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.nav__dropdown-trigger:hover {
  color: var(--white);
}
.nav__dropdown-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-inline: 4px solid transparent;
  border-block-start: 5px solid currentColor;
  margin-block-start: 2px;
  transition: transform 0.2s;
}
.nav__dropdown-trigger--active,
.nav__dropdown:hover .nav__dropdown-trigger {
  color: var(--white);
}
.nav__dropdown-menu {
  position: absolute;
  inset-block-start: 100%;
  inset-inline-start: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  margin: 0;
  padding: var(--s2);
  list-style: none;
  background: rgba(11,31,42,0.98);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.nav__dropdown--open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.nav__dropdown-link {
  display: block;
  padding: 0.5em 0.75em;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav__dropdown-link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.nav__dropdown-link--active {
  color: var(--white);
  font-weight: 700;
}

/* Mobile CTA auto-margin on desktop */
#nav-cta { margin-inline-start: var(--s3); }

/* Hamburger (hidden on desktop) */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: var(--s2);
  margin-inline-start: auto;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   PHOTO SLOTS (placeholders)
   -------------------------------------------------------------------------- */
.photo-slot {
  width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e8e2d8 0%, #d6cfc2 100%);
  border: 2px dashed #b0a898;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-slot--hero { min-height: 400px; }
.photo-slot--local { min-height: 360px; }

.photo-slot__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  color: #7a7060;
  font-size: 0.8rem;
  text-align: center;
  padding: var(--s8);
  position: relative;
  z-index: 1;
}
.photo-slot__content svg { opacity: 0.5; }
.photo-slot__content code {
  font-size: 0.75rem;
  background: rgba(0,0,0,0.07);
  padding: 2px 6px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.s-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--nav-h) + var(--s20)) var(--s24);
  overflow: hidden;
}

.s-hero__bg {
  position: absolute;
  inset: 0;
}

.s-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.s-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 31, 42, 0.91) 0%,
    rgba(11, 31, 42, 0.75) 45%,
    rgba(11, 31, 42, 0.30) 75%,
    rgba(11, 31, 42, 0.15) 100%
  );
}

.s-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.s-hero__h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-block-end: var(--s6);
}

.s-hero__sub {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--glow);
  letter-spacing: -0.01em;
  margin-block-end: var(--s5);
  line-height: 1.4;
}

.s-hero__body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-block-end: var(--s10);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   RELATABILITY
   -------------------------------------------------------------------------- */
.s-relatable {
  background: var(--bg);
  padding-block: var(--s24);
}

.s-relatable__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.lead-soft {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.3;
}

.lead-strong {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-block-start: var(--s3);
  margin-block-end: var(--s10);
}

.s-relatable__items { display: flex; flex-direction: column; gap: var(--s6); }

.relatable-item {
  padding-block: var(--s5);
  border-block-start: 1px solid var(--border);
}
.relatable-item:first-child { border-block-start: none; }

.relatable-item__a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  margin-block-end: var(--s1);
}

.relatable-item__b {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.s-relatable__visual { border-radius: var(--radius); overflow: hidden; }

.s-relatable__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   STATS
   -------------------------------------------------------------------------- */
.s-stats {
  background: var(--ink);
  padding-block: var(--s24);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
  text-align: center;
}

.stat {
  padding: var(--s12) var(--s8);
  cursor: default;
  transition: transform 0.3s ease;
  border-radius: var(--radius);
}
.stat:hover { transform: translateY(-6px); }

.stat--divided {
  border-inline: 1px solid rgba(255,255,255,0.08);
}

.stat__num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--glow);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-block-end: var(--s4);
  transition: text-shadow 0.3s ease;
}
.stat:hover .stat__num {
  text-shadow:
    0 0 20px rgba(246, 196, 83, 1),
    0 0 50px rgba(246, 196, 83, 0.6),
    0 0 90px rgba(246, 196, 83, 0.3);
}

.stat__sup {
  font-size: 60%;
  vertical-align: super;
  font-weight: 700;
}

.stat__label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 240px;
  margin-inline: auto;
}

.stat__icon {
  display: flex;
  justify-content: center;
  margin-block-end: var(--s4);
  color: var(--glow);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.stat:hover .stat__icon {
  filter:
    drop-shadow(0 0 12px rgba(246, 196, 83, 0.9))
    drop-shadow(0 0 30px rgba(246, 196, 83, 0.5));
  transform: scale(1.12);
}

/* --------------------------------------------------------------------------
   HOPE
   -------------------------------------------------------------------------- */
.s-hope {
  background: var(--bg);
  padding-block: var(--s24);
}

.s-hope__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.s-hope__visual { border-radius: var(--radius); overflow: hidden; }

.s-hope__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.s-hope__h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-block-end: var(--s8);
}

.s-hope__line {
  font-size: 1.1rem;
  color: var(--muted);
  margin-block-end: var(--s3);
}

.s-hope__em {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   VALUES
   -------------------------------------------------------------------------- */
.s-values {
  background: var(--navy);
  padding-block: var(--s24);
}

.s-values__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.s-values__tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--glow);
  margin-block-end: var(--s4);
}

.s-values__h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-block-end: var(--s6);
}

.s-values__body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 480px;
}

.s-values__visual { border-radius: var(--radius); overflow: hidden; }

.s-values__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   HOW IT WORKS
   -------------------------------------------------------------------------- */
.s-how { background: var(--bg); }

/* Section header with image */
.s-how__header {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding-block: var(--s20);
  overflow: hidden;
}

.s-how__header-bg { position: absolute; inset: 0; }

.s-how__header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.s-how__header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 31, 42, 0.95) 0%,
    rgba(11, 31, 42, 0.80) 60%,
    rgba(11, 31, 42, 0.60) 100%
  );
}

.s-how__header-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.s-how__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-block-end: var(--s6);
}

.s-how__intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  max-width: 640px;
  margin-inline: auto;
}

/* Cards area */
.s-how__cards {
  padding-block: var(--s20);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--s10) var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.how-card::after {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--glow));
  opacity: 0;
  transition: opacity 0.3s;
}

.how-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}
.how-card:hover::after { opacity: 1; }

.how-card__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--glow);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.how-card__h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.how-card__body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

/* --------------------------------------------------------------------------
   PRIMARY CTA
   -------------------------------------------------------------------------- */
.s-cta {
  background: var(--navy);
  padding-block: var(--s24);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.s-cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(246, 196, 83, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.s-cta__inner { position: relative; z-index: 1; }

.s-cta__h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-block-end: var(--s6);
}

.s-cta__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-block-end: var(--s10);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   BLOCK BUILDERS (SECONDARY)
   -------------------------------------------------------------------------- */
.s-secondary {
  background: var(--bg);
  padding-block: var(--s24);
}

.s-secondary__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

.s-secondary__visual { overflow: hidden; min-height: 420px; }

.s-secondary__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.s-secondary__content {
  background: var(--ink);
  padding: var(--s14) var(--s12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s4);
}

.s-secondary__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glow);
}

.s-secondary__h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.s-secondary__body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   LOCAL
   -------------------------------------------------------------------------- */
.s-local {
  background: var(--bg);
  padding-block: var(--s24);
}

.s-local__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s14);
  align-items: center;
}

.s-local__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

.s-local__h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-block-end: var(--s6);
}

.s-local__body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-block-end: var(--s4);
}

.s-local__aside {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   CLOSE
   -------------------------------------------------------------------------- */
.s-close {
  background: var(--ink);
  padding-block: var(--s24);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.s-close__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 60%, rgba(246, 196, 83, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.s-close__inner { position: relative; z-index: 1; }

.s-close__h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-block-end: var(--s10);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: rgba(5, 15, 22, 0.98);
  padding-block: var(--s12);
  border-block-start: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s8);
  justify-content: space-between;
}

.footer__brand { display: flex; flex-direction: column; gap: var(--s4); }

.footer__logo-clip {
  width: 130px;
  height: 52px;
  overflow: hidden;
  position: relative;
}

.footer__logo-img {
  position: absolute;
  width: 127px;
  height: 127px;
  top: -43px;
  left: -5px;
  opacity: 0.65;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s6) var(--s8);
  align-items: center;
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s;
}
.footer__link:hover { color: rgba(255,255,255,0.90); }

.footer__link--cta {
  color: var(--glow);
  font-weight: 600;
}
.footer__link--cta:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   RESPONSIVE — TABLET (≤ 900px)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {

  /* Nav: always show background on mobile so logo blends cleanly */
  .nav {
    background: rgba(11, 31, 42, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  /* Nav mobile */
  .nav__links {
    display: none;
    position: fixed;
    inset-block-start: var(--nav-h);
    inset-inline: 0;
    background: rgba(11, 31, 42, 0.99);
    backdrop-filter: blur(12px);
    padding: var(--s8) var(--s8) var(--s10);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s5);
    border-block-start: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }
  .nav.nav--open .nav__links { display: flex; }
  .nav__link { font-size: 1rem; }
  .nav__toggle { display: flex; }
  #nav-cta { display: none; }

  /* Dropdown on mobile: inline expand */
  .nav__dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .nav__dropdown-trigger {
    font-size: 1rem;
  }
  .nav__dropdown-menu {
    position: static;
    inset-inline-start: auto;
    transform: none !important;
    width: 100%;
    min-width: 0;
    margin-block-start: var(--s2);
    margin-inline-start: 0;
    padding: 0 0 0 var(--s5);
    border: none;
    box-shadow: none;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.25s ease;
  }
  .nav__dropdown.nav__dropdown--open .nav__dropdown-menu {
    max-height: 300px;
  }
  .nav__dropdown-link {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    padding: 0.35em 0;
  }
  .nav__dropdown-trigger[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  /* Layouts */
  .s-relatable__layout,
  .s-hope__layout,
  .s-values__layout,
  .s-local__grid,
  .s-secondary__card {
    grid-template-columns: 1fr;
  }

  .s-relatable__visual { order: -1; }
  .s-hope__visual { order: 2; }

  .s-relatable__img,
  .s-hope__img,
  .s-values__img { height: 300px; }

  .s-secondary__visual { min-height: 280px; }
  .s-secondary__content { padding: var(--s10) var(--s8); }

  .how-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat--divided {
    border-inline: none;
    border-block: 1px solid rgba(255,255,255,0.08);
  }

  /* Footer */
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — MOBILE (≤ 560px)
   -------------------------------------------------------------------------- */
@media (max-width: 560px) {
  .container { padding-inline: var(--s4); }

  .s-hero { padding-block: calc(var(--nav-h) + var(--s14)) var(--s16); }
  .s-hero__body { display: none; }

  .s-relatable,
  .s-hope,
  .s-values,
  .s-how__cards,
  .s-secondary,
  .s-local,
  .s-cta,
  .s-close {
    padding-block: var(--s16);
  }

  .s-how__header { min-height: 240px; padding-block: var(--s14); }

  .btn.btn--lg { font-size: 0.95rem; padding: 0.9em 1.75em; }

  .footer__nav { flex-direction: column; gap: var(--s3); }
}

/* ==========================================================================
   WHY COMMUNITY PAGE
   ========================================================================== */

/* Active nav link */
.nav__link--active {
  color: var(--white) !important;
  font-weight: 700;
  position: relative;
}
.nav__link--active::after {
  content: '';
  position: absolute;
  inset-block-end: -4px;
  inset-inline: 0;
  height: 2px;
  background: var(--glow);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.wc-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--nav-h) + var(--s20)) var(--s20);
  overflow: hidden;
}

.wc-hero__bg { position: absolute; inset: 0; }

.wc-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.wc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 31, 42, 0.96) 0%,
    rgba(11, 31, 42, 0.72) 45%,
    rgba(11, 31, 42, 0.35) 100%
  );
}

.wc-hero__inner { position: relative; z-index: 1; }

.wc-hero__copy { max-width: 740px; }

.wc-hero__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glow);
  margin-block-end: var(--s4);
}

.wc-hero__h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-block-end: var(--s6);
}

.wc-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.65;
}

/* ---------- Shared type ---------- */
.wc-section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-block-end: var(--s4);
}
.wc-section-tag--light { color: var(--glow); }

.wc-h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-block-end: var(--s6);
}
.wc-h2--light { color: var(--white); }
.wc-h2--accent { color: var(--accent); }

.wc-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-block-end: var(--s4);
}
.wc-body--em {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

/* ---------- This Is Happening Here ---------- */
.wc-happening {
  background: var(--bg);
  padding-block: var(--s24);
}

.wc-happening__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.wc-callout {
  display: flex;
  align-items: center;
  gap: var(--s6);
  margin-block-start: var(--s10);
  padding: var(--s6) var(--s8);
  background: var(--white);
  border-radius: var(--radius);
  border-inline-start: 4px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.wc-callout__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}

.wc-callout__pct {
  font-size: 60%;
  font-weight: 900;
}

.wc-callout__label {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
}

.wc-happening__visual { border-radius: var(--radius); overflow: hidden; }

.wc-happening__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

/* ---------- More Than a Social Issue ---------- */
.wc-more {
  background: var(--ink);
  padding-block: var(--s24);
}

.wc-more__header {
  max-width: 640px;
  margin-block-end: var(--s14);
}

.wc-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.wc-impact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: var(--s10) var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: background 0.3s, transform 0.3s;
}
.wc-impact-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.wc-impact-card__icon {
  color: var(--glow);
  margin-block-end: var(--s2);
}

.wc-impact-card__h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.wc-impact-card__stat {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.wc-impact-card__stat span {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--glow);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1.1;
  margin-block-end: var(--s1);
}

.wc-impact-card__body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  flex: 1;
}

/* ---------- Numbers (reuses .s-stats) ---------- */
.wc-numbers__label {
  text-align: center;
  margin-block-end: var(--s8);
}

/* ---------- This Matters in Utah ---------- */
.wc-utah {
  background: var(--navy);
  padding-block: var(--s24);
}

.wc-utah__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.wc-utah__visual { border-radius: var(--radius); overflow: hidden; }

.wc-utah__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

.wc-utah__copy .wc-h2 { color: var(--white); }
.wc-utah__copy .wc-body { color: rgba(255,255,255,0.62); }
.wc-utah__copy .wc-body--em { color: var(--glow); }

/* ---------- The Pattern ---------- */
.wc-pattern {
  position: relative;
  min-height: 420px;
  padding-block: var(--s24);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.wc-pattern__bg { position: absolute; inset: 0; }

.wc-pattern__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.wc-pattern__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 42, 0.82);
}

.wc-pattern__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(246, 196, 83, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.wc-pattern__inner {
  position: relative;
  z-index: 2;
}

.wc-pattern__icon {
  color: var(--glow);
  display: flex;
  justify-content: center;
  margin-block-end: var(--s6);
}

.wc-pattern__h2 {
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-block-end: var(--s6);
}

.wc-pattern__body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
}

/* ---------- Footnotes ---------- */
.wc-footnotes {
  background: var(--bg);
  padding-block: var(--s14);
  border-block-start: 1px solid var(--border);
}

.wc-footnotes__h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-block-end: var(--s5);
}

.wc-footnotes__list {
  list-style: decimal;
  padding-inline-start: 1.25em;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.wc-footnotes__list li {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.wc-footnotes__list a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wc-footnotes__list a:hover { color: var(--text); }

/* Footnote reference links (superscripts in body) */
.wc-h2 sup,
.wc-callout sup,
.wc-impact-card sup,
.wc-utah sup,
.stat__label sup {
  font-size: 0.65rem;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
}
.wc-fn-ref {
  color: var(--accent);
  text-decoration: none;
}
.wc-fn-ref:hover { text-decoration: underline; }
.wc-impact-card .wc-fn-ref,
.wc-utah .wc-fn-ref { color: var(--glow); }

/* ---------- Why Community responsive ---------- */
@media (max-width: 900px) {
  .wc-happening__layout,
  .wc-utah__layout {
    grid-template-columns: 1fr;
  }
  .wc-happening__visual { order: -1; }
  .wc-happening__img,
  .wc-utah__img { height: 300px; }

  .wc-impact-grid { grid-template-columns: 1fr; }
  .wc-impact-card { flex-direction: row; gap: var(--s6); align-items: flex-start; }
  .wc-impact-card__icon { flex-shrink: 0; }
}

@media (max-width: 560px) {
  .wc-hero { padding-block: calc(var(--nav-h) + var(--s14)) var(--s14); min-height: 70vh; }
  .wc-happening,
  .wc-more,
  .wc-utah,
  .wc-pattern,
  .wc-footnotes { padding-block: var(--s16); }
  .wc-impact-card { flex-direction: column; }
}

/* ==========================================================================
   PROJECT PORCHLIGHT PAGE
   ========================================================================== */

/* ---------- Shared page tokens ---------- */
.pp-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-block-end: var(--s4);
}
.pp-tag--light { color: var(--glow); }

.pp-h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-block-end: var(--s6);
}

.pp-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-block-end: var(--s4);
}
.pp-body--em {
  font-weight: 700;
  color: var(--glow);
  font-size: 1.1rem;
}

/* ---------- Hero ---------- */
.pp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: calc(var(--nav-h) + var(--s20)) var(--s20);
  overflow: hidden;
  background-color: #0d1c28;
}

.pp-hero__bg { position: absolute; inset: 0; }

.pp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.pp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 31, 42, 0.90) 0%,
    rgba(11, 31, 42, 0.65) 45%,
    rgba(11, 31, 42, 0.30) 75%,
    rgba(11, 31, 42, 0.15) 100%
  );
}

.pp-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 60%, rgba(246, 196, 83, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.pp-hero__inner {
  position: relative;
  z-index: 2;
}

.pp-hero__copy { max-width: 780px; }

.pp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glow);
  background: rgba(246,196,83,0.12);
  border: 1px solid rgba(246,196,83,0.25);
  padding: 0.35em 0.9em;
  border-radius: 100px;
  margin-block-end: var(--s6);
}

.pp-hero__light-icon { font-style: normal; }

.pp-hero__h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-block-end: var(--s6);
}
.pp-hero__h1 em {
  font-style: normal;
  color: var(--glow);
}

.pp-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.70);
  max-width: 560px;
  line-height: 1.65;
  margin-block-end: var(--s10);
}

.pp-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s5);
}

.pp-hero__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.pp-hero__link:hover { color: var(--white); }

.pp-hero__scroll {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  z-index: 2;
  animation: pp-bounce 2s ease-in-out infinite;
}
@keyframes pp-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Premise ---------- */
.pp-premise {
  background: var(--bg);
  padding-block: var(--s24);
}

.pp-premise__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.pp-premise__h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-block-end: var(--s6);
}

.pp-premise__body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-block-end: var(--s4);
}
.pp-premise__body:last-of-type { margin-block-end: var(--s10); }

.pp-premise__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

/* ---------- Homes Section ---------- */
.pp-homes {
  background: var(--navy);
  padding-block: var(--s24);
  position: relative;
  overflow: hidden;
}

.pp-homes__bg-accent {
  position: absolute;
  inset-block-start: -120px;
  inset-inline-end: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(246,196,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pp-homes__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s14);
  align-items: center;
  position: relative;
  z-index: 1;
}

.pp-homes__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.pp-homes__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

.pp-homes__badge {
  position: absolute;
  inset-block-end: var(--s6);
  inset-inline-start: var(--s6);
  background: rgba(11,31,42,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(246,196,83,0.3);
  border-radius: 8px;
  padding: 0.6em 1em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--glow);
  display: flex;
  align-items: center;
  gap: 0.5em;
}

/* ---------- Commitments ---------- */
.pp-commits {
  background: var(--bg);
  padding-block: var(--s24);
}

.pp-commits__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-block-end: var(--s14);
}

.pp-commits__h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-block-end: var(--s4);
}

.pp-commits__sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.pp-commits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}

.pp-commit-card {
  border-radius: 20px;
  padding: var(--s12) var(--s8) var(--s10);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.pp-commit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pp-commit-card--join    { background: var(--ink); }
.pp-commit-card--say-yes { background: var(--navy); }
.pp-commit-card--bread   { background: var(--navy-mid); }

.pp-commit-card__num {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(246,196,83,0.20);
  position: absolute;
  inset-block-start: var(--s4);
  inset-inline-end: var(--s6);
}

.pp-commit-card__icon {
  color: var(--glow);
  margin-block-end: var(--s2);
}

.pp-commit-card__h3 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}

.pp-commit-card__body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  flex: 1;
}

/* ---------- What You Receive (shared) ---------- */
.pp-receives {
  padding-block: var(--s24);
}
.pp-receives--homes   { background: var(--ink); }
.pp-receives--builders { background: var(--bg); }

.pp-receives__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}
.pp-receives__layout--flip .pp-receives__copy { order: 2; }
.pp-receives__layout--flip .pp-receives__visual { order: 1; }

.pp-receives__h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-block-end: var(--s3);
}
.pp-receives--homes   .pp-receives__h2 { color: var(--white); }
.pp-receives--builders .pp-receives__h2 { color: var(--text); }

.pp-receives__sub {
  font-size: 0.9rem;
  margin-block-end: var(--s6);
}
.pp-receives--homes   .pp-receives__sub { color: rgba(255,255,255,0.45); }
.pp-receives--builders .pp-receives__sub { color: var(--muted); }

.pp-receives__visual { border-radius: var(--radius); overflow: hidden; }
.pp-receives__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

/* Perks list */
.pp-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.pp-perk {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}

.pp-perk__icon {
  flex-shrink: 0;
  margin-block-start: 2px;
  color: var(--glow);
}
.pp-receives--builders .pp-perk__icon { color: var(--accent); }

.pp-perk strong {
  display: block;
  font-size: 0.95rem;
  margin-block-end: 2px;
}
.pp-receives--homes .pp-perk strong { color: var(--white); }
.pp-receives--builders .pp-perk strong { color: var(--text); }

.pp-perk p {
  font-size: 0.875rem;
  line-height: 1.55;
}
.pp-receives--homes   .pp-perk p { color: rgba(255,255,255,0.50); }
.pp-receives--builders .pp-perk p { color: var(--muted); }

/* ---------- Signup Forms ---------- */
.pp-signup {
  padding-block: var(--s24);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pp-signup--homes    { background: var(--navy); }
.pp-signup--builders { background: var(--ink); }

.pp-signup__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(246,196,83,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pp-signup__glow--blue {
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(31,53,86,0.6) 0%, transparent 70%);
}

.pp-signup__inner { position: relative; z-index: 1; }

.pp-signup__icon {
  display: flex;
  justify-content: center;
  color: var(--glow);
  margin-block-end: var(--s6);
}
.pp-signup__icon--blue { color: rgba(246,196,83,0.6); }

.pp-signup__h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-block-end: var(--s4);
}

.pp-signup__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  max-width: 560px;
  margin-inline: auto;
  margin-block-end: var(--s10);
}

/* Form */
.pp-form {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  text-align: left;
  max-width: 560px;
  margin-inline: auto;
}

.pp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.pp-form__field { display: flex; flex-direction: column; gap: var(--s2); }

.pp-form__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.04em;
}

.pp-form__optional {
  font-weight: 400;
  color: rgba(255,255,255,0.35);
}

.pp-form__input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.75em 1em;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--white);
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.pp-form__input::placeholder { color: rgba(255,255,255,0.30); }
.pp-form__input:focus {
  outline: none;
  border-color: var(--glow);
  background: rgba(255,255,255,0.10);
}

.pp-form__textarea {
  resize: vertical;
  min-height: 90px;
}

.pp-form__submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1em;
}

.pp-form__submit--builder {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1em;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.pp-form__submit--builder:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--glow);
  transform: translateY(-2px);
}
.pp-form__submit--builder svg {
  transition: transform 0.2s;
}
.pp-form__submit--builder:hover svg { transform: translateX(4px); }

.pp-form__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.30);
  line-height: 1.55;
  text-align: center;
}

/* ---------- Neighborhood Groups ---------- */
.pp-groups {
  background: var(--bg);
  padding-block: var(--s24);
}

.pp-groups__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}

.pp-groups__copy .pp-tag { color: var(--accent); }
.pp-groups__copy .pp-h2 { color: var(--text); }
.pp-groups__copy .pp-body { color: var(--muted); }
.pp-groups__copy .pp-body--em { color: var(--accent); }

.pp-groups__img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
  margin-block-end: var(--s6);
}

.pp-activities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
  list-style: none;
}

.pp-activity {
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.55em 1em;
  color: var(--text);
  cursor: default;
  user-select: none;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.pp-activity::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.pp-activity--more {
  background: rgba(217,119,6,0.08);
  border-color: rgba(217,119,6,0.3);
  color: var(--accent);
  font-weight: 700;
  pointer-events: auto;
  cursor: default;
}
.pp-activity--more::before { background: var(--accent); }

/* ---------- Divider (Block Builders intro) ---------- */
.pp-divider {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--s24);
  text-align: center;
  overflow: hidden;
}

.pp-divider__bg { position: absolute; inset: 0; }

.pp-divider__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.pp-divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 31, 42, 0.75) 0%,
    rgba(11, 31, 42, 0.88) 50%,
    rgba(11, 31, 42, 0.75) 100%
  );
}

.pp-divider__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(246,196,83,0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.pp-divider__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-text);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s6);
}

.pp-divider__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glow);
  background: rgba(246,196,83,0.12);
  border: 1px solid rgba(246,196,83,0.25);
  padding: 0.35em 1em;
  border-radius: 100px;
}

.pp-divider__text {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.pp-divider__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  line-height: 1.65;
}

/* ---------- Block Builders ---------- */
.pp-builders {
  background: var(--ink);
  padding-block: var(--s24);
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.pp-builders__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s14);
  align-items: center;
}

.pp-builders__methods {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
  margin-block-start: var(--s8);
}
.pp-builders__cta {
  margin-block-start: var(--s8);
}

.pp-method {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  padding: var(--s5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: background 0.2s;
}
.pp-method:hover { background: rgba(255,255,255,0.07); }

.pp-method__icon {
  flex-shrink: 0;
  color: var(--glow);
  margin-block-start: 2px;
}

.pp-method__h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-block-end: var(--s2);
}

.pp-method__body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.6;
}

.pp-builders__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.pp-builders__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

.pp-builders__img-caption {
  position: absolute;
  inset-block-end: var(--s6);
  inset-inline: var(--s6);
  background: rgba(11,31,42,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(246,196,83,0.2);
  border-radius: 8px;
  padding: 0.65em 1em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--glow);
  text-align: center;
}

/* ---------- Starting in Lindon ---------- */
.pp-lindon {
  background: var(--navy);
  padding-block: var(--s24);
}

.pp-lindon__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s14);
  align-items: center;
}

.pp-lindon__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

/* ---------- Final Invitation ---------- */
.pp-final {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--s24);
  overflow: hidden;
  text-align: center;
}

.pp-final__bg { position: absolute; inset: 0; }

.pp-final__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.pp-final__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,42,0.88);
}

.pp-final__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(246,196,83,0.15) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.pp-final__inner {
  position: relative;
  z-index: 2;
}

.pp-final__h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-block-end: var(--s6);
}

.pp-final__body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  margin-block-end: var(--s6);
}

.pp-final__tagline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--glow);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-block-end: var(--s10);
}

.pp-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s4);
}

.pp-final__btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1em 2.25em;
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.pp-final__btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* ---------- Project Porchlight responsive ---------- */
@media (max-width: 900px) {
  .pp-premise__layout,
  .pp-homes__layout,
  .pp-receives__layout,
  .pp-receives__layout--flip,
  .pp-groups__layout,
  .pp-builders__layout,
  .pp-lindon__layout { grid-template-columns: 1fr; }

  .pp-receives__layout--flip .pp-receives__copy { order: unset; }
  .pp-receives__layout--flip .pp-receives__visual { order: unset; }

  .pp-commits__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .pp-homes__img,
  .pp-receives__img,
  .pp-builders__img,
  .pp-premise__img,
  .pp-lindon__img { height: 300px; }

  .pp-divider { min-height: 50vh; }
  .pp-activities { grid-template-columns: 1fr 1fr; }
  .pp-form__row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .pp-hero { padding-block: calc(var(--nav-h) + var(--s16)) var(--s16); min-height: 85vh; }
  .pp-premise,
  .pp-homes,
  .pp-commits,
  .pp-receives,
  .pp-signup,
  .pp-groups,
  .pp-builders,
  .pp-lindon,
  .pp-final { padding-block: var(--s16); }

  .pp-hero__h1 { font-size: 3rem; }
  .pp-final { min-height: auto; }
}

/* ==========================================================================
   TEAM PAGE
   ========================================================================== */
.team-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--nav-h) + var(--s20)) var(--s20);
  overflow: hidden;
}
.team-hero__bg { position: absolute; inset: 0; }
.team-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.team-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,42,0.95) 0%, rgba(11,31,42,0.6) 100%);
}
.team-hero__inner { position: relative; z-index: 1; }
.team-hero__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glow);
  margin-block-end: var(--s4);
}
.team-hero__h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-block-end: var(--s4);
}
.team-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
}

.team-story {
  background: var(--bg);
  padding-block: var(--s24);
}
.team-story__p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-block-end: var(--s5);
}
.team-story__p--em {
  font-weight: 600;
  color: var(--text);
}

.team-members {
  background: var(--navy);
  padding-block: var(--s24);
}
.team-members__h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  text-align: center;
  margin-block-end: var(--s14);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s8);
}
.team-card {
  text-align: center;
}
.team-card__img-wrap {
  width: 100%;
  max-width: 220px;
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-block-end: var(--s4);
  background: rgba(255,255,255,0.08);
}
.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-block-end: var(--s1);
}
.team-card__role {
  font-size: 0.85rem;
  color: var(--glow);
  font-weight: 500;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s6); }
}

/* ==========================================================================
   JOIN / PORCHLIGHT HOME SIGNUP PAGE
   ========================================================================== */
.join-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--nav-h) + var(--s16)) var(--s16);
  overflow: hidden;
}
.join-hero__bg { position: absolute; inset: 0; }
.join-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.join-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,42,0.92) 0%, rgba(11,31,42,0.5) 100%);
}
.join-hero__inner { position: relative; z-index: 1; }
.join-hero__h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-block-end: var(--s3);
}
.join-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}

.join-form-section {
  background: var(--bg);
  padding-block: var(--s24);
}
.join-learn-more {
  max-width: 640px;
  margin-inline: auto;
  margin-block-end: var(--s6);
  font-size: 0.95rem;
  color: var(--muted);
}
.join-learn-more a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.join-learn-more a:hover {
  color: var(--accent-dark);
}
.join-form {
  max-width: 640px;
  margin-inline: auto;
}
.join-fieldset {
  border: none;
  padding: 0;
  margin-block-end: var(--s12);
  padding-block-end: var(--s12);
  border-block-end: 1px solid var(--border);
}
.join-fieldset:last-of-type { border-block-end: none; }
.join-legend {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-block-end: var(--s5);
}
.join-legend-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-block-end: var(--s4);
  line-height: 1.5;
}
.join-required { color: var(--accent); }
.join-optional { font-weight: 400; color: var(--muted); font-size: 0.85rem; }
.join-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.join-form__field {
  margin-block-end: var(--s4);
}
.join-form__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-block-end: var(--s1);
}
.join-form__field input[type="text"],
.join-form__field input[type="email"],
.join-form__field input[type="tel"],
.join-form__field textarea {
  width: 100%;
  padding: 0.65em 1em;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.2s;
}
.join-form__field textarea {
  resize: vertical;
  min-height: 100px;
}
.join-form__field input:focus {
  outline: none;
  border-color: var(--accent);
}
.join-radio-group,
.join-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.join-radio,
.join-checkbox {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
}
.join-radio input,
.join-checkbox input[type="checkbox"],
.join-checkbox input[type="radio"] {
  flex-shrink: 0;
}
.join-checkbox--other,
.join-radio--other {
  flex-wrap: wrap;
}
.join-inline-text {
  flex: 1;
  min-width: 120px;
  padding: 0.4em 0.75em;
  font-family: var(--font);
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.join-checkbox-group--single .join-radio { display: flex; }
.join-commitment-text {
  font-size: 0.95rem;
  color: var(--muted);
  margin-block-end: var(--s3);
}
.join-commitment-list {
  list-style: disc;
  padding-inline-start: 1.25em;
  margin-block-end: var(--s5);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}
.join-commitment-list li { margin-block-end: var(--s1); }
.join-checkbox--large {
  align-items: flex-start;
}

.join-checkbox--large span,
.join-checkbox--large input {
  margin-block-start: 2px;
}
.join-checkbox--large span { flex: 1; }
.join-fieldset--commitment {
  background: rgba(217,119,6,0.06);
  padding: var(--s6);
  border-radius: var(--radius);
  border: 1px solid rgba(217,119,6,0.2);
  overflow: auto;
}
.join-fieldset--commitment .join-legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-block-end: var(--s4);
}
.join-sticker-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--s6);
}
.join-sticker-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}

@media (max-width: 480px) {
  .join-sticker-wrap { flex-direction: column; align-items: center; }
  .join-sticker-img { width: 100px; height: 100px; }
}

.join-submit {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 1.05rem;
  padding: 1em 2em;
}
.join-submit--builder {
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}
.join-submit--builder:hover {
  background: var(--navy-mid);
  border-color: var(--glow);
  color: var(--white);
}
.join-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Submit wrapper: error message below button */
.join-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.join-submit__error {
  font-size: 0.9rem;
  color: #b91c1c;
  line-height: 1.5;
}
.join-submit__error a {
  color: #b91c1c;
  font-weight: 600;
  text-decoration: underline;
}
.join-field-error {
  margin-top: var(--s3);
  font-size: 0.875rem;
  color: #b91c1c;
  font-weight: 500;
  line-height: 1.5;
}

/* Loading spinner */
.join-submit__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.join-success {
  max-width: 640px;
  margin-inline: auto;
  padding: var(--s12) var(--s8);
  text-align: center;
  background: rgba(217,119,6,0.05);
  border: 1px solid rgba(217,119,6,0.2);
  border-radius: var(--radius);
}
.join-success--builder {
  background: rgba(31,53,86,0.05);
  border-color: rgba(31,53,86,0.2);
}
.join-hero--grants .join-hero__img { object-position: center 35%; }
.join-success--grants {
  background: rgba(217,119,6,0.05);
  border-color: rgba(217,119,6,0.2);
}

/* Photo strip on grant application page */
.ga-photo-strip {
  overflow: hidden;
  height: 220px;
}
.ga-photo-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
}
.ga-photo-strip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 600px) {
  .ga-photo-strip { height: 140px; }
  .ga-photo-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .ga-photo-strip__img:nth-child(n+3) { display: none; }
}
.join-success__icon {
  color: var(--accent);
  margin-block-end: var(--s4);
}
.join-success--builder .join-success__icon {
  color: var(--navy);
}
.join-success__h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-block-end: var(--s4);
}
.join-success__body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-block-end: var(--s8);
  max-width: 480px;
  margin-inline: auto;
}

@media (max-width: 600px) {
  .join-form__row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-hero {
  position: relative;
  background: var(--ink);
  padding-block: var(--s24) var(--s20);
  text-align: center;
  overflow: hidden;
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(246,196,83,0.15), transparent 70%);
  pointer-events: none;
}
.contact-hero__inner {
  position: relative;
}
.contact-hero__h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-block-end: var(--s4);
}
.contact-hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
}

.contact-body {
  background: var(--bg);
  padding-block: var(--s24);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--s6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s8);
  margin-block-end: var(--s10);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-card__icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-block-start: 4px;
}
.contact-card__h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-block-end: var(--s2);
}
.contact-card__email {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}
.contact-card__email:hover {
  color: var(--navy);
}

.contact-expand {
  margin-block-end: var(--s10);
  padding-block-end: var(--s10);
  border-block-end: 1px solid var(--border);
}
.contact-expand__h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-block-end: var(--s4);
  line-height: 1.35;
}
.contact-expand__body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.contact-expand__body a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-expand__body a:hover {
  color: var(--navy);
}

.contact-links {
  text-align: center;
}
.contact-links__text {
  font-size: 1rem;
  color: var(--muted);
  margin-block-end: var(--s6);
}
.contact-links__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  justify-content: center;
}

@media (max-width: 560px) {
  .contact-card { flex-direction: column; gap: var(--s4); }
  .contact-links__btns { flex-direction: column; align-items: stretch; }
  .contact-links__btns .btn { justify-content: center; }
}

/* ==========================================================================
   NAV DROPDOWN: "More communities coming soon" label
   ========================================================================== */
.nav__dropdown-soon {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  padding: 0.4em 0;
  letter-spacing: 0.02em;
  font-style: italic;
  cursor: default;
  user-select: none;
}

/* ==========================================================================
   LINDON PAGE  (ln- prefix)
   ========================================================================== */

/* ---- Shared tag / eyebrow ---- */
.ln-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--glow);
  margin-block-end: var(--s4);
}
.ln-tag--light {
  color: var(--accent);
}

/* ---- Hero ---- */
.ln-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ln-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ln-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.ln-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,42,0.82) 0%,
    rgba(11,31,42,0.55) 50%,
    rgba(11,31,42,0.35) 100%
  );
}
.ln-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 80%, rgba(246,196,83,0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.ln-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--nav-h, 80px) + var(--s16)) var(--s16);
}
.ln-hero__copy {
  max-width: 640px;
}
.ln-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--glow);
  margin-block-end: var(--s4);
}
.ln-hero__h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-block-end: var(--s6);
  letter-spacing: -0.02em;
}
.ln-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-block-end: var(--s8);
  max-width: 500px;
}
.ln-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
}
.ln-hero__scroll {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  animation: ln-bounce 2s ease-in-out infinite;
}
@keyframes ln-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- Challenge Section ---- */
.ln-challenge {
  padding-block: var(--s20);
  background: var(--bg);
}
.ln-challenge__inner {
  text-align: center;
}
.ln-challenge__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-block-end: var(--s4);
}
.ln-challenge__h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-block-end: var(--s8);
  letter-spacing: -0.015em;
}
.ln-challenge__body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-block-end: var(--s5);
}
.ln-challenge__body--em {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
  margin-block-start: var(--s8);
}

/* ---- Assets Section ---- */
.ln-assets {
  padding-block: var(--s20);
  background: linear-gradient(180deg, #f0ede6 0%, var(--bg) 100%);
}
.ln-assets__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-block-end: var(--s16);
}
.ln-assets__h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-block-end: var(--s5);
  letter-spacing: -0.015em;
}
.ln-assets__sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}
.ln-assets__sub em {
  color: var(--navy);
  font-style: italic;
  font-weight: 600;
}

/* ---- Asset Cards ---- */
.ln-assets__grid {
  display: flex;
  flex-direction: column;
  gap: var(--s12);
}
.ln-asset-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(11,31,42,0.07);
}
.ln-asset-card--flip .ln-asset-card__visual {
  order: 2;
}
.ln-asset-card--flip .ln-asset-card__copy {
  order: 1;
}
.ln-asset-card__visual {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ln-asset-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ln-asset-card:hover .ln-asset-card__img {
  transform: scale(1.04);
}
.ln-asset-card__copy {
  padding: var(--s10) var(--s10) var(--s10) var(--s8);
}
.ln-asset-card--flip .ln-asset-card__copy {
  padding: var(--s10) var(--s8) var(--s10) var(--s10);
}
.ln-asset-card__icon {
  color: var(--accent);
  margin-block-end: var(--s4);
}
.ln-asset-card__h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-block-end: var(--s4);
}
.ln-asset-card__body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ---- Divider / Quote ---- */
.ln-divider {
  position: relative;
  padding-block: var(--s20);
  overflow: hidden;
}
.ln-divider__bg {
  position: absolute;
  inset: 0;
}
.ln-divider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ln-divider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,42,0.76);
}
.ln-divider__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(246,196,83,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.ln-divider__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: var(--s8);
}
.ln-divider__quote {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-block-end: var(--s6);
  border: none;
  padding: 0;
}
.ln-divider__quote em {
  font-style: normal;
  color: var(--glow);
  font-weight: 600;
}
.ln-divider__attr {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ---- Vision Section ---- */
.ln-vision {
  padding-block: var(--s20);
  background: var(--bg);
}
.ln-vision__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}
.ln-vision__h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-block-end: var(--s6);
  letter-spacing: -0.02em;
}
.ln-vision__body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-block-end: var(--s5);
}
.ln-vision__body--em {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
}
.ln-vision__stats {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}
.ln-stat {
  background: var(--white);
  border-radius: 16px;
  padding: var(--s8);
  box-shadow: 0 2px 20px rgba(11,31,42,0.06);
  border-left: 4px solid var(--glow);
}
.ln-stat__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-block-end: var(--s2);
  letter-spacing: -0.02em;
}
.ln-stat__label {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---- Photo Feature ---- */
.ln-photo-feature {
  overflow: hidden;
}
.ln-photo-feature__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.ln-photo-feature__cell {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ln-photo-feature__cell--tall {
  grid-row: 1 / 3;
  aspect-ratio: unset;
}
.ln-photo-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ln-photo-feature__cell:hover .ln-photo-feature__img {
  transform: scale(1.04);
}
.ln-photo-feature__placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, #d4cfc7 0%, #b8b2a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s6);
}
.ln-photo-feature__placeholder span {
  font-size: 0.85rem;
  color: #6b6660;
  font-style: italic;
}

/* ---- Roles Section ---- */
.ln-roles {
  padding-block: var(--s20);
  background: linear-gradient(180deg, #f5f2ec 0%, var(--bg) 100%);
}
.ln-roles__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-block-end: var(--s14);
}
.ln-roles__h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-block-end: var(--s5);
  letter-spacing: -0.015em;
}
.ln-roles__h2 em {
  color: var(--navy);
  font-style: italic;
}
.ln-roles__sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}
.ln-roles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  align-items: stretch;
}
.ln-role-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,31,42,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ln-role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11,31,42,0.12);
}
.ln-role-card--learn {
  background: var(--white);
}
.ln-role-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ln-role-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ln-role-card:hover .ln-role-card__img {
  transform: scale(1.05);
}
.ln-role-card__badge {
  position: absolute;
  bottom: var(--s4);
  left: var(--s4);
  background: rgba(11,31,42,0.82);
  color: var(--glow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--s2) var(--s3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: var(--s2);
  backdrop-filter: blur(6px);
}
.ln-role-card__badge--builder {
  color: #93c5fd;
}
.ln-role-card__badge--learn {
  color: #86efac;
}
.ln-role-card__copy {
  padding: var(--s8) var(--s8) var(--s10);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  flex: 1;
}
.ln-role-card__h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.ln-role-card__body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.ln-role-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.ln-role-card__list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-inline-start: var(--s5);
  position: relative;
  line-height: 1.5;
}
.ln-role-card__list li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent);
  font-weight: 700;
}
.ln-role-card .btn {
  align-self: stretch;
  justify-content: center;
  gap: var(--s2);
  display: inline-flex;
  align-items: center;
  margin-block-start: auto;
  text-align: center;
}

/* ---- Final CTA ---- */
.ln-cta {
  position: relative;
  padding-block: var(--s20);
  background: linear-gradient(155deg, var(--ink) 0%, var(--navy) 100%);
  overflow: hidden;
  text-align: center;
}
.ln-cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(246,196,83,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ln-cta__inner {
  position: relative;
  z-index: 1;
}
.ln-cta__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-block-end: var(--s3);
}
.ln-cta__h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-block-end: var(--s6);
  letter-spacing: -0.03em;
}
.ln-cta__body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-block-end: var(--s10);
}
.ln-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  justify-content: center;
  margin-block-end: var(--s8);
}
.ln-cta__contact {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}
.ln-cta__contact a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ln-cta__contact a:hover {
  color: var(--glow);
}

/* ---- Lindon Responsive ---- */
@media (max-width: 1024px) {
  .ln-roles__grid {
    grid-template-columns: 1fr 1fr;
  }
  .ln-role-card--learn {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .ln-asset-card {
    grid-template-columns: 1fr;
  }
  .ln-asset-card--flip .ln-asset-card__visual { order: 0; }
  .ln-asset-card--flip .ln-asset-card__copy  { order: 0; }
  .ln-asset-card__visual { aspect-ratio: 16/9; }
  .ln-asset-card__copy,
  .ln-asset-card--flip .ln-asset-card__copy {
    padding: var(--s7);
  }
  .ln-vision__layout {
    grid-template-columns: 1fr;
  }
  .ln-photo-feature__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ln-photo-feature__cell--tall { grid-row: auto; aspect-ratio: 4/3; }
  .ln-roles__grid { grid-template-columns: 1fr; }
  .ln-role-card--learn { grid-column: auto; }
  .ln-role-card__copy { padding: var(--s7) var(--s7) var(--s8); }
}
@media (max-width: 600px) {
  .ln-hero__actions { flex-direction: column; }
  .ln-hero__actions .btn { justify-content: center; }
  .ln-cta__btns { flex-direction: column; align-items: center; }
  .ln-cta__btns .btn { width: 100%; max-width: 320px; justify-content: center; }
}


/* ==========================================================================
   BLOCK PARTY GRANTS PAGE  (.bp-*)
   ========================================================================== */

/* ── Hero ── */
.bp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--nav-h) + var(--s20)) var(--s20);
  overflow: hidden;
}
.bp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.bp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(11,31,42,0.82) 0%,
    rgba(11,31,42,0.55) 55%,
    rgba(11,31,42,0.2) 100%
  );
}
.bp-hero__inner {
  position: relative;
  z-index: 1;
}
.bp-hero__copy { max-width: 620px; }
.bp-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glow);
  margin-block-end: var(--s4);
}
.bp-hero__h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-block-end: var(--s6);
  letter-spacing: -0.02em;
}
.bp-hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-block-end: var(--s10);
  max-width: 520px;
}
.bp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
}

/* ── Why Block Parties ── */
.bp-why {
  padding-block: var(--s24);
  background: var(--bg);
}
.bp-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}
.bp-why__h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-block: var(--s4) var(--s6);
}
.bp-why__body {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-block-end: var(--s5);
}
.bp-why__body--em {
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: var(--s5);
  margin-block-end: 0;
}
.bp-why__visual {
  position: relative;
}
.bp-why__img-stack {
  position: relative;
  display: grid;
}
.bp-why__img--main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.16);
}
.bp-why__img--accent {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 52%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--bg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

/* ── Grant Details ── */
.bp-grants {
  padding-block: var(--s24);
  background: #f0f4ff;
}
.bp-grants__header {
  text-align: center;
  margin-block-end: var(--s16);
}
.bp-grants__h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-block: var(--s4) var(--s4);
}
.bp-grants__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.65;
}
.bp-grants__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-block-end: var(--s16);
}
.bp-grant-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--s8);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bp-grant-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.bp-grant-card__icon {
  color: var(--accent);
  flex-shrink: 0;
}
.bp-grant-card__h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.bp-grant-card__body {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.bp-grant-card__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Apply CTA banner */
.bp-grants__cta {
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
}
.bp-grants__cta-inner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: var(--s16) var(--s12);
}
.bp-grants__cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.bp-grants__cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11,31,42,0.88) 0%,
    rgba(11,31,42,0.72) 55%,
    rgba(11,31,42,0.3) 100%
  );
}
.bp-grants__cta-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.bp-grants__cta-h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-block-end: var(--s4);
}
.bp-grants__cta-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-block-end: var(--s5);
}
.bp-grants__cta-note {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-block-end: var(--s6);
}
.bp-grants__cta-note a { color: var(--glow); text-decoration: underline; text-underline-offset: 2px; }
.bp-grants__apply-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  margin-block-end: var(--s4);
}
.bp-grants__coming-soon {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.bp-grants__coming-soon a { color: rgba(255,255,255,0.65); text-decoration: underline; text-underline-offset: 2px; }

/* ── Steps ── */
.bp-steps {
  padding-block: var(--s24);
  background: var(--bg);
}
.bp-steps__header {
  text-align: center;
  margin-block-end: var(--s14);
}
.bp-steps__h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-block-start: var(--s4);
}
.bp-steps__grid {
  display: flex;
  align-items: center;
  gap: var(--s4);
  max-width: 900px;
  margin-inline: auto;
}
.bp-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--s8);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
}
.bp-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-block-end: var(--s5);
}
.bp-step__h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-block-end: var(--s3);
}
.bp-step__body {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}
.bp-step__connector {
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ── Planning Tips ── */
.bp-planning {
  padding-block: var(--s24);
  background: var(--navy);
}
.bp-planning__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}
.bp-planning .ln-tag {
  background: rgba(246,196,83,0.15);
  color: var(--glow);
  border-color: rgba(246,196,83,0.3);
}
.bp-planning__h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-block: var(--s4) var(--s6);
}
.bp-planning__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-block-end: var(--s10);
}
.bp-tip {
  display: flex;
  gap: var(--s5);
  padding-block: var(--s6);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.bp-tip:first-of-type { border-top: 1px solid rgba(255,255,255,0.1); }
.bp-tip__icon {
  flex-shrink: 0;
  color: var(--glow);
  margin-top: 2px;
}
.bp-tip__h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-block-end: var(--s2);
}
.bp-tip__body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.bp-tip__coming-soon {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--glow);
  font-style: italic;
  margin-top: var(--s2);
  opacity: 0.8;
}
.bp-planning__visual {
  position: sticky;
  top: calc(var(--nav-h) + var(--s8));
}
.bp-planning__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ── Invitation Downloads ── */
.bp-invites {
  padding-block: var(--s24);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.bp-invites__header {
  text-align: center;
  margin-block-end: var(--s14);
}
.bp-invites__h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-block: var(--s4) var(--s4);
}
.bp-invites__sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.65;
}
.bp-invites__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}
.bp-invite-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bp-invite-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}
.bp-invite-card__preview {
  background: linear-gradient(135deg, var(--ink) 0%, var(--navy) 100%);
  padding: var(--s10) var(--s6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  min-height: 130px;
  justify-content: center;
}
.bp-invite-card__preview--2 {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}
.bp-invite-card__preview--3 {
  background: linear-gradient(135deg, #0369a1 0%, #0891b2 100%);
}
.bp-invite-card__preview--4 {
  background: linear-gradient(135deg, #b45309 0%, var(--accent) 100%);
}
.bp-invite-card__icon {
  color: rgba(255,255,255,0.8);
}
.bp-invite-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.bp-invite-card__body {
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  flex: 1;
}
.bp-invite-card__h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.bp-invite-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.bp-invite-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-size: 0.875rem;
  padding: var(--s3) var(--s5);
  margin-top: var(--s2);
}
.bp-tip__link {
  color: var(--glow);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .bp-invites__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .bp-invites__grid { grid-template-columns: 1fr; }
}

/* ── Final CTA ── */
.bp-cta {
  padding-block: var(--s24);
  background: var(--ink);
  text-align: center;
}
.bp-cta__inner {}
.bp-cta__icon {
  color: var(--glow);
  margin-inline: auto;
  margin-block-end: var(--s6);
}
.bp-cta__h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-block-end: var(--s6);
}
.bp-cta__body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-block-end: var(--s10);
}
.bp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  justify-content: center;
  margin-block-end: var(--s8);
}
.bp-cta__question {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
}
.bp-cta__question a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bp-why__inner { grid-template-columns: 1fr; }
  .bp-why__img--accent { display: none; }
  .bp-grants__grid { grid-template-columns: 1fr 1fr; }
  .bp-planning__inner { grid-template-columns: 1fr; }
  .bp-planning__visual { position: static; }
  .bp-planning__img { aspect-ratio: 16 / 9; }
  .bp-steps__grid { flex-direction: column; }
  .bp-step__connector { transform: rotate(90deg); }
  .bp-hero__actions { flex-direction: column; }
  .bp-hero__actions .btn { justify-content: center; }
  .bp-cta__actions { flex-direction: column; align-items: center; }
  .bp-cta__actions .btn { width: 100%; max-width: 340px; justify-content: center; }
  .bp-grants__cta-inner { padding: var(--s10) var(--s8); }
}
@media (max-width: 600px) {
  .bp-grants__grid { grid-template-columns: 1fr; }
  .bp-grants__cta-inner { min-height: 480px; padding: var(--s8) var(--s6); }
}
