/* ========================================================================
   SHCA Homepage v4 — "A neighbourhood is something you DO"
   Brand brief applied: verbs as signature, three-door audience routing,
   $20 as "the key", partners named after what they sponsor.
   ======================================================================== */

.home-v2 {
  background-color: #faf5ea;
  color: #1d3749;
  overflow-x: hidden;
}

/* ========================================================================
   HEADER — redesigned to match v4 brand
   ======================================================================== */
.home-v2 .site-header {
  background: rgba(250, 245, 234, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1.5px solid rgba(29, 55, 73, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
/* Mobile: kill backdrop-filter so it doesn't create a containing block
   that traps the position:fixed .main-nav overlay inside the header. */
@media (max-width: 1024px) {
  .home-v2 .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #faf5ea;
  }
}
.home-v2 .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.home-v2 .site-logo img {
  height: 42px;
  width: auto;
  display: block;
}
.home-v2 .main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.home-v2 .main-nav > a,
.home-v2 .main-nav .nav-dropdown > a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1d3749;
  text-decoration: none;
  padding: 8px 2px;
  position: relative;
  transition: color 0.2s;
}
.home-v2 .main-nav > a:hover,
.home-v2 .main-nav .nav-dropdown:hover > a { color: #f2664c; }
.home-v2 .main-nav > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 2px;
  background: #f2664c;
  transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-v2 .main-nav > a:hover::after { right: 0; }

.home-v2 .nav-dropdown { position: relative; }
.home-v2 .nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #faf5ea;
  border: 1.5px solid rgba(29, 55, 73, 0.12);
  border-radius: 10px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(29, 55, 73, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.home-v2 .nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(2px);
}
.home-v2 .nav-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: #1d3749;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.home-v2 .nav-dropdown .dropdown-menu a:hover { background: #eef9fa; color: #f2664c; }

.home-v2 .header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.home-v2 .header-social {
  display: flex;
  gap: 10px;
}
.home-v2 .header-social a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s, transform 0.2s;
}
.home-v2 .header-social a:hover { background: #eef9fa; transform: translateY(-1px); }
.home-v2 .header-social a svg,
.home-v2 .header-social a img {
  width: 16px;
  height: 16px;
  color: #1d3749;
  fill: currentColor;
  opacity: 0.78;
  display: block;
  transition: opacity 0.2s, color 0.2s;
}
.home-v2 .header-social a:hover svg { color: #f2664c; opacity: 1; }
.home-v2 .btn-login {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  background: #1d3749;
  color: #faf5ea;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.home-v2 .btn-login:hover { background: #f2664c; transform: translateY(-1px); }

/* Mobile nav — rules now live in style.css (.site-nav-mobile block). */

/* Grain texture for tactility */
.home-v2::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.22 0 0 0 0 0.29 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.home-v2 > * { position: relative; z-index: 2; }

/* ========================================================================
   DESIGN SYSTEM — the verb mechanic (signature move)
   ======================================================================== */
.verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 0 0.12em;
  font-size: 0.92em;
  transform: rotate(-1.5deg);
  transform-origin: center bottom;
}
.verb::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -0.1em;
  height: 10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='10' viewBox='0 0 100 10' preserveAspectRatio='none'><path fill='none' stroke='%23f2664c' stroke-width='2.5' stroke-linecap='round' d='M2 5 Q 12.5 1, 25 5 T 50 5 T 75 5 T 98 5'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 10px;
  background-position: 0 100%;
}

/* Meta-line (small caps label, used throughout) */
.meta-line {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #2f9da7;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.home-v2 .btn-bold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 999px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 2.5px solid transparent;
  transition: transform 0.18s, box-shadow 0.18s, background-color 0.18s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.home-v2 .btn-bold--primary { background: #1d3749; color: #faf5ea; }
.home-v2 .btn-bold--primary:hover { background: #f2664c; transform: translate(-2px, -2px); box-shadow: 4px 4px 0 #1d3749; }
.home-v2 .btn-bold--outline { background: transparent; color: #1d3749; border-color: #1d3749; }
.home-v2 .btn-bold--outline:hover { background: #1d3749; color: #faf5ea; transform: translate(-2px, -2px); box-shadow: 4px 4px 0 #f2664c; }
.home-v2 .btn-bold__price {
  display: inline-block;
  background: #dfd91f;
  color: #1d3749;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  margin-left: 6px;
}
.home-v2 .btn-bold--primary .btn-bold__price { background: #dfd91f; color: #1d3749; }

/* ========================================================================
   1 · HERO — shortened, photo bigger, emotional
   ======================================================================== */
.hero-v4 {
  padding: 40px 0 70px;
  position: relative;
}
.hero-v4::after {
  content: '';
  position: absolute;
  top: -50px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(223, 217, 31, 0.3) 0%, transparent 55%);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}
.hero-v4 .hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.hero-v4 .hero-kicker {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: #2f9da7;
  margin-bottom: 30px;
  display: inline-block;
}
.hero-v4 h1 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1d3749;
  margin: 0 0 26px;
}
.hero-v4 h1 .verb {
  font-size: 1em;
  line-height: 0.9;
  vertical-align: baseline;
}
/* Event-takeover hero: giant live count of registered driveways for the
   garage-sale weekend swap. Set as block + own line so it owns visual
   weight on the homepage during the 3-day window. */
.hero-v4 h1 .bignum {
  display: block;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  font-size: clamp(110px, 17vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: #f2664c;
  font-feature-settings: "tnum";
  margin: 0 0 18px;
}
.hero-v4 h1 .bigword {
  display: block;
  line-height: 0.95;
  margin-bottom: 8px;
}
.hero-v4 .hero-sub {
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: #1d3749;
  margin: 0 0 36px;
  max-width: 540px;
}
.hero-v4 .hero-sub strong { font-weight: 700; }
.hero-v4 .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-v4 .hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: #7a7a7a;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero-v4 .hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-v4 .hero-meta span::before {
  content: '';
  width: 8px; height: 8px;
  background: #f2664c;
  border-radius: 50%;
  display: inline-block;
}

.hero-v4 .hero-photo {
  position: relative;
  transform: rotate(1.5deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  margin-right: -40px;
}
.hero-v4 .hero-photo:hover { transform: rotate(0); }
.hero-v4 .hero-photo img {
  width: 100%;
  height: clamp(420px, 62vh, 640px);
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 14px 14px 0 #1d3749, 16px 16px 50px rgba(29, 55, 73, 0.2);
  display: block;
}
.hero-v4 .hero-photo .photo-label {
  position: absolute;
  bottom: 20px; left: 20px;
  background: #faf5ea;
  color: #1d3749;
  padding: 8px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
}
/* Event-campaign live-data pill: sits next to the photo label, only
   appears when a date-window swap (garage sale, cleanup, etc.) sets
   live data. Bg coral so it reads as the "actionable" sibling to the
   passive photo label, and the arrow makes it obviously clickable. */
.hero-v4 .hero-photo .photo-link {
  position: absolute;
  bottom: 20px; left: 20px;
  transform: translateY(-44px);
  background: #f2664c;
  color: #faf5ea;
  padding: 8px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(29, 55, 73, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-v4 .hero-photo .photo-link:hover {
  transform: translateY(-46px);
  box-shadow: 0 8px 18px rgba(29, 55, 73, 0.24);
}
.hero-v4 .hero-photo .photo-link[hidden] { display: none; }

/* ========================================================================
   1.4 · UPCOMING EVENTS STRIP — editorial calendar spread, no outer box.
   Each card has a different brand-coloured "tape" stripe + slight rotation
   jitter so they read as hand-placed posters, not a uniform table.
   ======================================================================== */
.home-events {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 40px 24px;
}
.home-events-inner {
  background: transparent;
  border: 0;
  padding: 0;
  position: relative;
}

/* Three-colour stripe motif above the header, echoing the brand */
.home-events-inner::before {
  content: "";
  display: block;
  width: 220px;
  height: 3px;
  margin-bottom: 18px;
  background: linear-gradient(
    to right,
    #f2664c 0 33.33%,
    #dfd91f 33.33% 66.66%,
    #2f9da7 66.66% 100%
  );
}

.home-events-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 0;
  border: 0;
}
.home-events-kicker {
  display: block;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2f9da7;
  margin-bottom: 8px;
}
.home-events h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #1d3749;
  margin: 0;
}
.home-events h2 .verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  font-size: 0.92em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
  margin-left: 4px;
  position: relative;
}
.home-events h2 .verb::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 4px;
  height: 6px;
  background: rgba(242,102,76,0.22);
  border-radius: 999px;
  transform: rotate(-1deg);
  z-index: -1;
}
.home-events-all {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1d3749;
  text-decoration: none;
  border-bottom: 2px solid #f2664c;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color 0.15s ease, transform 0.15s ease;
}
.home-events-all:hover { color: #f2664c; transform: translateX(2px); }

.home-events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Each card — unique top "tape" colour, slight hand-placed rotation */
.home-event-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px 18px;
  background: #fff;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s ease;
  box-shadow:
    0 1px 0 rgba(29,55,73,0.06),
    0 10px 24px -16px rgba(29,55,73,0.28);
  overflow: hidden;
}
/* Top tape stripe — different colour per card */
.home-event-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
}
.home-event-card:nth-child(1)::before { background: linear-gradient(90deg, #f2664c 0%, #ef9173 100%); }
.home-event-card:nth-child(2)::before { background: linear-gradient(90deg, #2f9da7 0%, #4cbac3 100%); }
.home-event-card:nth-child(3)::before { background: linear-gradient(90deg, #dfd91f 0%, #ede884 100%); }
.home-event-card:nth-child(4)::before { background: linear-gradient(90deg, #1d3749 0%, #345370 100%); }

/* Slight rotation jitter so the row feels hand-placed, not a spreadsheet */
.home-event-card:nth-child(1) { transform: rotate(-0.6deg); }
.home-event-card:nth-child(2) { transform: rotate(0.5deg); }
.home-event-card:nth-child(3) { transform: rotate(-0.4deg); }
.home-event-card:nth-child(4) { transform: rotate(0.6deg); }

.home-event-card:hover {
  transform: translateY(-4px) rotate(0deg);
  box-shadow:
    0 1px 0 rgba(29,55,73,0.08),
    0 22px 40px -18px rgba(29,55,73,0.4);
}

/* Date pill — fixed 68px so single days ("06") and ranges ("9–10") align */
.home-event-card .dd-date {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 68px;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  font-feature-settings: "lnum","tnum";
  box-shadow: 0 2px 0 rgba(29,55,73,0.10), 0 0 0 1px rgba(29,55,73,0.08);
  transition: transform 0.22s ease;
}
.home-event-card:hover .dd-date {
  transform: scale(1.06) rotate(-2deg);
}
.home-event-card .dd-mon {
  padding: 4px 0 3px;
  background: #1d3749;
  color: #faf5ea;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.home-event-card .dd-day {
  padding: 6px 2px 7px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 21px;
  font-weight: 900;
  color: #1d3749;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.home-event-card .dd-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.home-event-card .dd-name {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 15.5px;
  font-weight: 800;
  color: #1d3749;
  line-height: 1.18;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}
.home-event-card:hover .dd-name { color: #f2664c; }
.home-event-card .dd-sub {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 12.5px;
  color: #7a7a7a;
  line-height: 1.35;
}

/* Subtle "→" reveal on hover, bottom-right of each card */
.home-event-card::after {
  content: "→";
  position: absolute;
  right: 14px;
  bottom: 8px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  font-size: 14px;
  color: #f2664c;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.home-event-card:hover::after { opacity: 1; transform: translateX(0); }

@media (max-width: 1024px) {
  .home-events-grid { grid-template-columns: repeat(2, 1fr); }
  .home-event-card:nth-child(1), .home-event-card:nth-child(3) { transform: rotate(-0.5deg); }
  .home-event-card:nth-child(2), .home-event-card:nth-child(4) { transform: rotate(0.5deg); }
}
@media (max-width: 700px) {
  .home-events { padding: 36px 20px 12px; }
  .home-events-grid { grid-template-columns: 1fr; gap: 14px; }
  .home-event-card { transform: none !important; }
  .home-event-card:hover { transform: translateY(-2px) !important; }
}

/* ========================================================================
   1.5 · SURVEY CALLOUT — prominent ask below the hero
   ======================================================================== */
.sv-callout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 40px 0;
}
.sv-callout-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px 32px;
  background: linear-gradient(135deg, #1d3749 0%, #2a4a5e 100%);
  color: #faf5ea;
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s;
  box-shadow: 0 10px 28px -16px rgba(29,55,73,0.3);
}
.sv-callout-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(223,217,31,0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(242,102,76,0.15), transparent 55%);
  pointer-events: none;
}
.sv-callout-inner > * { position: relative; z-index: 1; }
.sv-callout-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -16px rgba(29,55,73,0.45);
}
.sv-callout-kicker {
  font-family: 'Roboto Slab', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #dfd91f;
  white-space: nowrap;
  padding: 8px 14px;
  border: 1.5px solid rgba(223,217,31,0.4);
  border-radius: 999px;
}
.sv-callout-inner h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #faf5ea;
  margin: 0 0 4px;
}
.sv-callout-inner h2 em {
  font-family: 'Pacifico', cursive;
  font-style: normal;
  font-weight: 400;
  color: #dfd91f;
  font-size: 0.92em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.sv-callout-inner p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(250,245,234,0.78);
  margin: 0;
  max-width: 640px;
}
.sv-callout-arrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d3749;
  background: #dfd91f;
  padding: 12px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.sv-callout-inner:hover .sv-callout-arrow {
  background: #f2664c;
  color: #faf5ea;
}
@media (max-width: 900px) {
  .sv-callout { padding: 4px 20px 0; }
  .sv-callout-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 24px;
  }
  .sv-callout-kicker { justify-self: start; }
  .sv-callout-arrow { justify-self: stretch; text-align: center; }
}

/* ========================================================================
   2 · THREE DOORS — audience routing
   ======================================================================== */
.doors {
  padding: 100px 40px;
  max-width: 1320px;
  margin: 0 auto;
}
.doors-head { max-width: 720px; margin-bottom: 56px; }
.doors-head .meta-line { margin-bottom: 18px; display: block; }
.doors-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #1d3749;
  margin: 0;
}
.doors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.door {
  display: flex;
  flex-direction: column;
  padding: 38px 32px 34px;
  background: #fff;
  border: 2px solid #1d3749;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s;
  min-height: 320px;
  position: relative;
}
.door:hover { transform: translate(-5px, -5px); box-shadow: 10px 10px 0 #1d3749; }
.door--teal { background: #eef9fa; }
.door--yellow { background: #faf1a6; border-color: #1d3749; }
.door-num {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #f2664c;
  margin-bottom: 26px;
}
.door h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1d3749;
  margin: 0 0 14px;
}
.door p {
  font-size: 15px;
  line-height: 1.55;
  color: #4a5868;
  margin: 0 0 auto;
}
.door .door-cta {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #f2664c;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ========================================================================
   3 · WHAT WE DO — the 5 verbs
   ======================================================================== */
.what-we-do {
  padding: 100px 40px;
  max-width: 1320px;
  margin: 0 auto;
  border-top: 2px solid rgba(29, 55, 73, 0.12);
}
.what-we-do-head {
  margin-bottom: 60px;
  max-width: 820px;
}
.what-we-do-head .meta-line { margin-bottom: 18px; display: block; }
.what-we-do-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #1d3749;
  margin: 0;
}
.verbs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1.5px solid #1d3749;
}
.verbs-list li {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 60px;
  gap: 30px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1.5px solid rgba(29, 55, 73, 0.15);
  transition: background 0.2s;
}
.verbs-list li:hover { background: rgba(242, 102, 76, 0.04); }
.verbs-list .v-num {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #2f9da7;
  padding-top: 12px;
}
.verbs-list .v-verb {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #1d3749;
}
.verbs-list .v-verb .verb {
  font-size: 0.88em;
  padding: 0 0.1em;
}
.verbs-list .v-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #4a5868;
  padding-top: 18px;
  max-width: 540px;
}
.verbs-list .v-arrow {
  text-align: right;
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: 32px;
  color: #1d3749;
  padding-top: 18px;
  transition: transform 0.25s;
}
.verbs-list li:hover .v-arrow { transform: translateX(8px); color: #f2664c; }

/* ========================================================================
   3.25 · RECENTLY — specific numbers from recent activity
   ======================================================================== */
.recently {
  background: #1d3749;
  color: #faf5ea;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.recently::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(223, 217, 31, 0.15), transparent 65%);
  pointer-events: none;
}
.recently-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.recently .meta-line { color: #dfd91f; display: block; margin-bottom: 14px; }
.recently h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #faf5ea;
  margin: 0;
}
.recently h3 em { color: #dfd91f; font-style: italic; }
.recently-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.recently-stat .n {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #dfd91f;
  display: block;
  font-feature-settings: "lnum", "tnum";
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 10px;
}
.recently-stat .n::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: rgba(223, 217, 31, 0.45);
}
.recently-stat .l {
  font-family: 'Open Sans', sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(250, 245, 234, 0.72);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ========================================================================
   3.35 · PORTRAITS — The neighbours who make this place
   ======================================================================== */
.portraits {
  padding: 110px 40px 70px;
  max-width: 1320px;
  margin: 0 auto;
}
.portraits-head { max-width: 720px; margin-bottom: 60px; }
.portraits-head .meta-line { display: block; margin-bottom: 16px; }
.portraits-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1d3749;
  margin: 0;
}
.portraits-head h2 em { color: #f2664c; font-style: italic; }

.portraits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.portrait {
  position: relative;
  padding: 36px 30px 32px;
  background: #fff;
  border: 2px solid #1d3749;
  border-radius: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.portrait:nth-child(1) { transform: rotate(-0.8deg); }
.portrait:nth-child(2) { transform: rotate(0.6deg); }
.portrait:nth-child(3) { transform: rotate(-0.4deg); }
.portrait:hover { transform: rotate(0) translateY(-4px); box-shadow: 6px 6px 0 #1d3749; }
.portrait .pt-num {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #2f9da7;
  margin-bottom: 14px;
  display: block;
}
.portrait .pt-quote {
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #1d3749;
  margin: 0 0 20px;
  flex: 1;
}
.portrait .pt-quote::before {
  content: '"';
  font-family: 'Roboto Slab', serif;
  font-size: 64px;
  line-height: 0;
  vertical-align: -0.28em;
  color: #f2664c;
  margin-right: 4px;
}
.portrait .pt-who {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #4a5868;
  margin: 0 0 16px;
  padding-top: 14px;
  border-top: 1.5px solid rgba(29, 55, 73, 0.12);
}
.portrait .pt-who strong { color: #1d3749; font-weight: 700; }
.portrait .pt-link {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #f2664c;
  text-decoration: none;
  border-bottom: 2px solid #f2664c;
  padding-bottom: 2px;
  align-self: flex-start;
}

/* ========================================================================
   3.5 · WHY MEMBER — emotional pull, between verbs and NBD
   ======================================================================== */
.why-member {
  padding: 80px 40px 30px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.why-member::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(242, 102, 76, 0.1) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}
.why-member .wm-kicker {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-size: clamp(24px, 2.6vw, 34px);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 8px;
}
.why-member h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #1d3749;
  margin: 8px 0 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.why-member h2 em { color: #f2664c; font-style: italic; }
.why-member .wm-body {
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: #1d3749;
  max-width: 640px;
  margin: 0 auto 32px;
}
.why-member .wm-body strong { font-weight: 700; color: #f2664c; }

/* ========================================================================
   4 · NEIGHBOUR DAY POSTER — "save the date, stapled to a telephone pole"
   ======================================================================== */
.nd-poster {
  background:
    radial-gradient(ellipse at 18% 20%, rgba(242, 102, 76, 0.06), transparent 52%),
    radial-gradient(ellipse at 82% 80%, rgba(47, 157, 167, 0.05), transparent 60%),
    #faf5ea;
  padding: 110px 24px 120px;
  position: relative;
  overflow: hidden;
  margin: 80px 0 0;
}
/* tiny scattered dots, like bulletin-board pinholes */
.nd-poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 28%, rgba(29,55,73,0.10) 1.5px, transparent 2px),
    radial-gradient(circle at 86% 72%, rgba(29,55,73,0.08) 1.5px, transparent 2px),
    radial-gradient(circle at 38% 88%, rgba(242,102,76,0.12) 1.2px, transparent 1.8px),
    radial-gradient(circle at 72% 16%, rgba(47,157,167,0.1) 1.2px, transparent 1.8px);
  background-size: 100% 100%;
  pointer-events: none;
}

.nd-poster .nd-poster-paper {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  background: #dfd91f;
  color: #1d3749;
  padding: 64px 56px 56px;
  transform: rotate(-0.6deg);
  box-shadow:
    0 2px 0 rgba(29,55,73,0.08),
    0 18px 40px -12px rgba(29,55,73,0.22),
    0 40px 80px -20px rgba(29,55,73,0.15);
  /* torn-paper top & bottom edges via SVG mask */
  --tear: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='12' viewBox='0 0 800 12' preserveAspectRatio='none'><path fill='%23dfd91f' d='M0 0 L20 4 L40 1 L65 5 L90 2 L115 6 L140 3 L165 5 L190 2 L215 6 L240 3 L265 5 L290 2 L315 6 L340 3 L365 5 L390 2 L415 6 L440 3 L465 5 L490 2 L515 6 L540 3 L565 5 L590 2 L615 6 L640 3 L665 5 L690 2 L715 6 L740 3 L765 5 L790 2 L800 4 L800 12 L0 12 Z'/></svg>");
}
/* paper grain */
.nd-poster .nd-poster-paper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.14'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.55;
}

/* Tape corners */
.nd-poster .nd-tape {
  position: absolute;
  width: 92px;
  height: 26px;
  background: rgba(250, 245, 234, 0.72);
  box-shadow:
    0 1px 4px rgba(29,55,73,0.12),
    inset 0 0 0 1px rgba(29,55,73,0.06);
  z-index: 3;
}
.nd-poster .nd-tape--tl { top: -12px; left: 36px; transform: rotate(-6deg); }
.nd-poster .nd-tape--tr { top: -10px; right: 48px; transform: rotate(5deg); }

/* Edition / stamp details */
.nd-poster .nd-edition {
  position: absolute;
  top: 18px;
  left: 40px;
  font-family: 'Roboto Slab', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(29,55,73,0.65);
  font-weight: 700;
}
.nd-poster .nd-stamp {
  position: absolute;
  top: 28px;
  right: 44px;
  font-family: 'Roboto Slab', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1d3749;
  padding: 6px 12px;
  border: 1.5px solid #1d3749;
  border-radius: 4px;
  transform: rotate(4deg);
  background: rgba(250,245,234,0.3);
  font-weight: 700;
}

.nd-poster .nd-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: flex-start;
  z-index: 2;
}

/* Date column — stacked block monogram */
.nd-poster .nd-date-col { text-align: left; }
.nd-poster .nd-kicker {
  font-family: 'Pacifico', cursive;
  font-size: clamp(24px, 2.8vw, 34px);
  color: #f2664c;
  transform: rotate(-2.5deg);
  display: inline-block;
  margin-bottom: 18px;
  position: relative;
}
.nd-poster .nd-date-block {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.82;
  padding: 6px 0 18px;
  border-top: 4px solid #1d3749;
  border-bottom: 4px solid #1d3749;
  margin-bottom: 22px;
}
.nd-poster .nd-month {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(32px, 3.8vw, 48px);
  letter-spacing: 0.04em;
  color: #f2664c;
  margin-top: 12px;
  margin-bottom: 4px;
}
.nd-poster .nd-day {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(140px, 18vw, 240px);
  letter-spacing: -0.05em;
  color: #1d3749;
  line-height: 0.82;
}
.nd-poster .nd-when {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.nd-poster .nd-dow {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: #1d3749;
  padding: 5px 10px;
  background: #1d3749;
  color: #dfd91f;
  border-radius: 3px;
}
.nd-poster .nd-time {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: clamp(18px, 2.1vw, 22px);
  color: #1d3749;
}
.nd-poster .nd-where {
  font-size: 14px;
  color: #1d3749;
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
}
.nd-poster .nd-where small {
  display: block;
  font-weight: 500;
  font-size: 13px;
  opacity: 0.75;
  margin-top: 2px;
}

/* Body column */
.nd-poster .nd-body { padding-top: 20px; }
.nd-poster .nd-body h2 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  color: #1d3749;
  margin: 0 0 20px;
  line-height: 0.98;
  letter-spacing: -0.028em;
}
.nd-poster .nd-body h2 .verb {
  color: #f2664c;
  font-size: 0.95em;
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-2deg);
}
/* override default verb underline color for poster */
.nd-poster .nd-body h2 .verb::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='10' viewBox='0 0 100 10' preserveAspectRatio='none'><path fill='none' stroke='%23f2664c' stroke-width='2.8' stroke-linecap='round' d='M2 5 Q 12.5 1, 25 5 T 50 5 T 75 5 T 98 5'/></svg>");
}
.nd-poster .nd-lede {
  font-size: 17px;
  line-height: 1.58;
  color: #1d3749;
  margin: 0 0 24px;
  font-weight: 500;
  max-width: 540px;
}

.nd-poster .nd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.nd-poster .nd-pills li {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  background: #faf5ea;
  color: #1d3749;
  border: 1.5px solid #1d3749;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.nd-poster .nd-fine {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1d3749;
  margin: 0 0 26px;
  padding: 10px 0 0;
  border-top: 1.5px dashed rgba(29,55,73,0.3);
}

.nd-poster .nd-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.nd-poster .btn-nd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #1d3749;
  color: #faf5ea;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid #1d3749;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
}
.nd-poster .btn-nd:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #f2664c;
  background: #f2664c;
  border-color: #f2664c;
  color: #fff;
}
.nd-poster .btn-nd--outline {
  background: transparent;
  color: #1d3749;
  border-color: #1d3749;
}
.nd-poster .btn-nd--outline:hover {
  background: #1d3749;
  color: #faf5ea;
  box-shadow: 4px 4px 0 #f2664c;
}

/* ========================================================================
   5 · WHAT THE KEY OPENS — member benefits
   ======================================================================== */
.key-opens {
  padding: 110px 40px 100px;
  max-width: 1320px;
  margin: 0 auto;
}
.key-head { max-width: 740px; margin-bottom: 60px; }
.key-head .meta-line { display: block; margin-bottom: 16px; }
.key-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #1d3749;
  margin: 0 0 18px;
}
.key-head p {
  font-size: 17px;
  line-height: 1.55;
  color: #4a5868;
  margin: 0;
  max-width: 600px;
}
/* Magazine split: editorial list on the left, sticky CTA keycard on the right.
   Solves the old 3×2 imbalance (5 cells + 1 dark) by taking the conversion card
   out of the grid entirely. */
.key-split {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  column-gap: 72px;
  align-items: start;
  border-top: 1px solid rgba(29,55,73,0.22);
  padding-top: 12px;
}
.key-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.key-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 24px;
  padding: 32px 0 30px;
  border-bottom: 1px solid rgba(29,55,73,0.14);
  transition: background 0.2s;
}
.key-item:last-child { border-bottom: 1px solid rgba(29,55,73,0.22); }
.key-item:hover h3 { color: #f2664c; }
.key-item .kc-num {
  font-family: 'Roboto Slab', serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #f2664c;
  display: block;
  padding-top: 6px;
  font-feature-settings: "lnum", "tnum";
}
.key-item .kc-num::before {
  content: 'No.';
  color: rgba(29,55,73,0.45);
  font-weight: 600;
  margin-right: 2px;
}
.key-item .kc-body { min-width: 0; }
.key-item h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: #1d3749;
  margin: 0 0 8px;
  text-wrap: balance;
  transition: color 0.2s;
}
.key-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5868;
  margin: 0 0 10px;
  max-width: 52ch;
}
.key-item .kc-link {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: #1d3749;
  text-decoration: none;
  border-bottom: 1.5px solid #f2664c;
  padding-bottom: 2px;
  letter-spacing: 0.04em;
}
.key-item .kc-link:hover { color: #f2664c; }

/* Right-side sticky conversion card */
.key-cta {
  position: sticky;
  top: 100px;
  align-self: start;
}
.key-cta-inner {
  background: transparent;
  color: #1d3749;
  padding: 8px 0 0;
  position: relative;
}
.key-cta-inner > * { position: relative; }
.key-cta-label {
  font-family: 'Roboto Slab', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2664c;
  display: block;
  margin-bottom: 18px;
}
.key-cta-inner h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #1d3749;
  margin: 0 0 26px;
  text-wrap: balance;
}
.key-cta-inner h3 em {
  font-family: 'Pacifico', cursive;
  font-style: normal;
  font-weight: 400;
  color: #f2664c;
  font-size: 0.9em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.key-cta-inner .member-card {
  margin: 0 0 22px;
  max-width: 100%;
}
.key-cta-inner .mb-keycard {
  margin: 14px auto 24px;
}
.key-cta-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin: 0 0 14px;
  font-feature-settings: "lnum", "tnum";
}
.key-cta-inner .btn-key {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: #1d3749;
  color: #faf5ea;
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.key-cta-inner .btn-key:hover {
  transform: translateY(-2px);
  background: #f2664c;
  color: #faf5ea;
  box-shadow: 0 8px 22px -10px rgba(242,102,76,0.6);
}
.key-cta-fine {
  font-size: 12px;
  color: #7a7a7a;
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.5;
}
.key-cta-fine a {
  color: #f2664c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Membership card visual (in the CTA cell) --- */
.member-card {
  background: linear-gradient(135deg, #f2664c 0%, #e0533a 100%);
  color: #faf5ea;
  border-radius: 12px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(250, 245, 234, 0.08) inset;
  transform: rotate(-1.5deg);
  margin: 20px 0 24px;
  aspect-ratio: 1.58 / 1;
  max-width: 320px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.member-card:hover { transform: rotate(0) scale(1.02); }
.member-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(223, 217, 31, 0.22), transparent 70%);
}
.member-card .mc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.member-card .mc-brand {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.member-card .mc-brand small {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 3px;
  color: rgba(250, 245, 234, 0.75);
}
.member-card .mc-chip {
  width: 32px; height: 24px;
  background: linear-gradient(135deg, #dfd91f 0%, #c8c200 100%);
  border-radius: 4px;
  position: relative;
}
.member-card .mc-chip::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(29, 55, 73, 0.22);
  border-radius: 2px;
}
.member-card .mc-name {
  font-family: 'Pacifico', cursive;
  font-size: 18px;
  color: #faf5ea;
  margin: 0 0 4px;
  line-height: 1;
  opacity: 0.9;
}
.member-card .mc-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(250, 245, 234, 0.7);
}
.member-card .mc-foot .mc-year { color: #dfd91f; }

/* ========================================================================
   6 · NEWS DESK + NEWSLETTER
   ======================================================================== */
.news-desk {
  padding: 40px 40px 0;
  max-width: 1320px;
  margin: 0 auto;
  border-top: 2px solid rgba(29, 55, 73, 0.12);
  padding-top: 80px;
}
.news-desk .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.news-desk .head .meta-line { display: block; margin-bottom: 10px; }
.news-desk .head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  color: #1d3749;
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.news-desk .head > a {
  color: #1d3749;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding-bottom: 4px;
  border-bottom: 2px solid #f2664c;
}
/* Three equal editorial cards — same aspect, matched heights, balanced rhythm.
   Lead story gets a kicker and bolder type weight, not bigger size. */
.news-desk .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 0;
  border-top: 1px solid rgba(29,55,73,0.22);
  padding-top: 36px;
}
.news-desk .story-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding-right: 40px;
  border-right: 1px solid rgba(29,55,73,0.12);
}
.news-desk .story-card:last-child { border-right: 0; padding-right: 0; }
.news-desk .story-card .img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef9fa;
  margin-bottom: 18px;
  border-radius: 2px;
}
.news-desk .story-card.big,
.news-desk .story-card:not(.big) { display: grid; grid-row: auto; padding-left: 0; }
.news-desk .story-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.news-desk .story-card:hover img { transform: scale(1.035); }
.news-desk .story-card .date {
  font-family: 'Roboto Slab', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f2664c;
  margin: 0 0 8px;
  font-feature-settings: "lnum", "tnum";
}
.news-desk .story-card.big .date::before {
  content: 'Lead Story · ';
  color: rgba(29,55,73,0.55);
  letter-spacing: 0.14em;
}
.news-desk .story-card h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  color: #1d3749;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  font-size: 21px;
  text-wrap: balance;
}
.news-desk .story-card.big h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}
.news-desk .story-card h3 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.news-desk .story-card h3 a:hover { color: #f2664c; }
.news-desk .story-card p {
  font-size: 14.5px;
  line-height: 1.58;
  color: #4a5868;
  margin: 0;
  max-width: 38ch;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-desk .story-card.big p { font-size: 15px; -webkit-line-clamp: 5; }

/* NEWSLETTER — dark band */
.newsletter-v4 {
  padding: 100px 40px 120px;
  max-width: 1320px;
  margin: 60px auto 0;
}
.newsletter-row {
  background: #1d3749;
  color: #faf5ea;
  padding: 56px 56px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter-row::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(223, 217, 31, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-row .nl-text .script {
  font-family: 'Pacifico', cursive;
  font-size: clamp(22px, 2.4vw, 32px);
  transform: rotate(-2deg);
  display: inline-block;
  color: #dfd91f;
  margin-bottom: 0;
  line-height: 1;
}
.newsletter-row h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #faf5ea;
  margin: 10px 0 14px;
}
.newsletter-row h2 .verb { color: #dfd91f; }
.newsletter-row h2 .verb::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='10' viewBox='0 0 100 10' preserveAspectRatio='none'><path fill='none' stroke='%23dfd91f' stroke-width='2.5' stroke-linecap='round' d='M2 5 Q 12.5 1, 25 5 T 50 5 T 75 5 T 98 5'/></svg>");
}
.newsletter-row .nl-text p { font-size: 15px; color: rgba(250, 245, 234, 0.8); margin: 0; line-height: 1.55; }
.newsletter-row form { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.newsletter-row input[type=email] {
  padding: 18px 24px;
  border-radius: 999px;
  border: 2.5px solid #faf5ea;
  background: transparent;
  color: #faf5ea;
  font-family: inherit;
  font-size: 15px;
}
.newsletter-row input[type=email]::placeholder { color: rgba(250, 245, 234, 0.55); }
.newsletter-row input[type=email]:focus { outline: 3px solid rgba(223, 217, 31, 0.5); outline-offset: 2px; }
.newsletter-row button {
  padding: 18px 30px;
  border-radius: 999px;
  background: #f2664c;
  color: #faf5ea;
  border: 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.newsletter-row button:hover { background: #dfd91f; color: #1d3749; transform: translate(-2px, -2px); box-shadow: 4px 4px 0 #0d1d27; }
.newsletter-row .fineprint { font-size: 12px; color: rgba(250, 245, 234, 0.5); margin: 0; }

/* ========================================================================
   FOOTER — redesigned to match v4
   ======================================================================== */
.home-v2 .site-footer {
  background: #1d3749;
  color: #faf5ea;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.home-v2 .site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, #f2664c 0%, #dfd91f 33%, #56c5cf 66%, #f2664c 100%);
}
.home-v2 .site-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Signoff banner — the emotional capstone */
.home-v2 .site-footer .footer-signoff {
  padding: 80px 0 40px;
  text-align: center;
}
.home-v2 .site-footer .footer-signoff .script {
  font-family: 'Pacifico', cursive;
  color: #dfd91f;
  font-size: clamp(22px, 2.4vw, 32px);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 4px;
}
.home-v2 .site-footer .footer-signoff h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #faf5ea;
  margin: 8px 0 0;
}
.home-v2 .site-footer .footer-signoff h2 .verb {
  color: #dfd91f;
  font-size: 0.95em;
}
.home-v2 .site-footer .footer-signoff h2 .verb::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='10' viewBox='0 0 100 10' preserveAspectRatio='none'><path fill='none' stroke='%23dfd91f' stroke-width='2.5' stroke-linecap='round' d='M2 5 Q 12.5 1, 25 5 T 50 5 T 75 5 T 98 5'/></svg>");
}
.home-v2 .site-footer .land-acknowledgment {
  padding: 24px 0 48px;
  max-width: 960px;
  margin: 0 auto;
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(250, 245, 234, 0.55);
  text-align: center;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.home-v2 .site-footer .footer-grid {
  padding: 50px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}
.home-v2 .site-footer .footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 18px;
}
.home-v2 .site-footer .footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 245, 234, 0.7);
  max-width: 320px;
  margin: 0;
}
.home-v2 .site-footer .footer-links h4,
.home-v2 .site-footer .footer-contact h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dfd91f;
  margin: 0 0 16px;
}
.home-v2 .site-footer .footer-links a {
  display: block;
  color: rgba(250, 245, 234, 0.82);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.15s, transform 0.15s;
}
.home-v2 .site-footer .footer-links a:hover { color: #f2664c; transform: translateX(3px); }
.home-v2 .site-footer .footer-contact p {
  color: rgba(250, 245, 234, 0.75);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 12px;
}
.home-v2 .site-footer .footer-contact p strong { color: #faf5ea; font-weight: 600; }
.home-v2 .site-footer .footer-contact a {
  color: rgba(250, 245, 234, 0.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 245, 234, 0.3);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.home-v2 .site-footer .footer-contact a:hover { color: #f2664c; border-color: #f2664c; }
.home-v2 .site-footer .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.home-v2 .site-footer .footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 245, 234, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.home-v2 .site-footer .footer-social a:hover {
  background: #f2664c;
  border-color: #f2664c;
  transform: translateY(-2px);
}
.home-v2 .site-footer .footer-social a svg,
.home-v2 .site-footer .footer-social a img {
  width: 18px; height: 18px;
  color: #faf5ea;
  fill: currentColor;
  display: block;
  opacity: 0.95;
  transition: color 0.2s;
}
.home-v2 .site-footer .footer-social a:hover svg { color: #faf5ea; }
.home-v2 .site-footer .footer-social a img { filter: brightness(0) invert(1); }

.home-v2 .site-footer .footer-bottom {
  padding: 24px 0;
  border-top: 1.5px solid rgba(250, 245, 234, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.home-v2 .site-footer .footer-bottom p {
  color: rgba(250, 245, 234, 0.5);
  font-size: 12px;
  margin: 0;
}
.home-v2 .site-footer .footer-bottom .cred {
  color: rgba(250, 245, 234, 0.4);
  font-size: 11px;
}

/* ========================================================================
   SUB-PAGE BRAND OVERRIDES
   Applies when any inner page has class="home-v2" on body.
   Reskins .page-hero, .page-content, .btn, cards, etc. to v4 vocabulary.
   ======================================================================== */

/* Page hero — adopts the membership-hero aesthetic site-wide:
   cream canvas, yellow+teal radial gradients, generous padding, italic serif lede.
   margin-top:0 kills the legacy gap inherited from style.css (header is sticky,
   no offset needed — this lets the cream run right up under the header). */
.home-v2 .page-hero {
  margin-top: 0;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(223,217,31,0.16), transparent 58%),
    radial-gradient(ellipse at 88% 92%, rgba(47,157,167,0.1), transparent 62%),
    #faf5ea;
  padding: 88px 0 72px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(29,55,73,0.12);
}
.home-v2 .page-hero::after {
  content: '';
  position: absolute;
  left: 40px; right: 40px; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #f2664c 0%, #dfd91f 50%, #2f9da7 100%);
  opacity: 0.35;
  pointer-events: none;
}
.home-v2 .page-hero .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.home-v2 .page-hero h1 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.032em;
  color: #1d3749;
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 16ch;
}
.home-v2 .page-hero h1 .verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  font-size: 0.9em;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-2deg);
}
.home-v2 .page-hero p {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: clamp(17px, 1.75vw, 21px);
  line-height: 1.5;
  color: #4a5868;
  margin: 6px 0 0;
  max-width: 640px;
  font-weight: 400;
}

/* Pages that use inline bg-image heroes: keep image visible but blend with cream tone */
.home-v2 .page-hero[style*="position: relative"] {
  padding: 110px 0 96px;
  margin-bottom: 24px;
}
.home-v2 .page-hero[style*="position: relative"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,245,234,0.55) 0%, rgba(250,245,234,0.85) 100%);
  pointer-events: none;
}
.home-v2 .page-hero[style*="position: relative"] .container { position: relative; z-index: 1; }
.home-v2 .page-hero[style*="position: relative"] h1,
.home-v2 .page-hero[style*="position: relative"] p { color: #1d3749; }

/* Page content container — typography upgrade */
.home-v2 .page-content {
  padding: 30px 0 80px;
}
.home-v2 .page-content .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.home-v2 .page-content h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #1d3749;
  margin: 0 0 20px;
}
.home-v2 .page-content h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #1d3749;
}
.home-v2 .page-content p {
  font-size: 16px;
  line-height: 1.65;
  color: #4a5868;
}

/* Primary button on sub-pages — match v4 btn-bold--primary */
.home-v2 .page-content .btn-primary,
.home-v2 .page-content .btn.btn-primary,
.home-v2 .page-hero .btn-primary {
  background: #1d3749 !important;
  color: #faf5ea !important;
  border: 2.5px solid #1d3749 !important;
  border-radius: 999px !important;
  padding: 16px 28px !important;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s !important;
}
.home-v2 .page-content .btn-primary:hover,
.home-v2 .page-content .btn.btn-primary:hover {
  background: #f2664c !important;
  border-color: #f2664c !important;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #1d3749;
}

/* Section header (generic) */
.home-v2 .section-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 720px;
}
.home-v2 .section-header h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #1d3749;
  margin: 0 0 12px;
}
.home-v2 .section-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5868;
  margin: 0;
}

/* News/event/facility cards — cleaner */
.home-v2 .news-card,
.home-v2 .event-card,
.home-v2 .facility-card {
  background: #fff;
  border: 1.5px solid rgba(29, 55, 73, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.home-v2 .news-card:hover,
.home-v2 .event-card:hover,
.home-v2 .facility-card:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 #1d3749;
}
.home-v2 .facility-card.off-season:hover {
  transform: none;
  box-shadow: none;
}
.home-v2 .news-card h4,
.home-v2 .event-card h4,
.home-v2 .facility-card h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #1d3749;
  line-height: 1.2;
}
.home-v2 .news-card h4 a,
.home-v2 .event-card h4 a { color: inherit; text-decoration: none; }
.home-v2 .news-card h4 a:hover { color: #f2664c; }
.home-v2 .news-date,
.home-v2 .event-date {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2f9da7;
}
.home-v2 .read-more {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #f2664c;
  text-decoration: none;
  border-bottom: 2px solid #f2664c;
  padding-bottom: 2px;
}

/* Board cards on about page */
.home-v2 .board-card {
  background: #fff;
  border: 1.5px solid rgba(29, 55, 73, 0.1);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
}
.home-v2 .board-card:hover { transform: translateY(-3px); }
.home-v2 .board-card h4 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  color: #1d3749;
  margin: 14px 0 4px;
}
.home-v2 .board-card .position {
  font-size: 13px;
  color: #2f9da7;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Membership benefits / benefit cards (keep existing but match palette) */
.home-v2 .benefit-card {
  background: #fff;
  border: 1.5px solid rgba(29, 55, 73, 0.1);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
}
.home-v2 .benefit-card h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  color: #1d3749;
  font-size: 20px;
  margin: 12px 0 8px;
}
.home-v2 .benefit-icon { font-size: 36px; line-height: 1; margin-bottom: 12px; }

/* FAQ */
.home-v2 .faq-item {
  border: 0;
  border-bottom: 1.5px solid rgba(29, 55, 73, 0.12);
  background: transparent;
  padding: 0;
}
.home-v2 .faq-question {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 18px;
  color: #1d3749;
  padding: 22px 0;
}
.home-v2 .faq-answer p { font-size: 15px; line-height: 1.65; }

/* Events list (shared with events.html) */
.home-v2 .event-list-item {
  background: #fff;
  border: 1.5px solid rgba(29, 55, 73, 0.1);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-v2 .event-list-item:hover { transform: translateY(-2px); box-shadow: 4px 4px 0 #1d3749; }
.home-v2 .event-list-item h4 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  color: #1d3749;
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.home-v2 .event-date-box {
  background: #1d3749;
  color: #faf5ea;
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-v2 .event-date-box .month {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #dfd91f;
}
.home-v2 .event-date-box .day {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: "lnum", "tnum";
  color: #faf5ea;
}

/* Contact page */
.home-v2 .contact-form label {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1d3749;
}
.home-v2 .contact-form input,
.home-v2 .contact-form textarea,
.home-v2 .contact-form select {
  border: 1.5px solid rgba(29, 55, 73, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  background: #fff;
  color: #1d3749;
  width: 100%;
}
.home-v2 .contact-form input:focus,
.home-v2 .contact-form textarea:focus,
.home-v2 .contact-form select:focus {
  outline: 3px solid rgba(47, 157, 167, 0.25);
  border-color: #2f9da7;
}
.home-v2 .emergency-contacts {
  background: #1d3749;
  color: #faf5ea;
  padding: 22px 24px;
  border-radius: 12px;
  margin-top: 20px;
}
.home-v2 .emergency-contacts h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dfd91f;
  margin: 0 0 14px;
}
.home-v2 .emergency-contacts li {
  font-size: 14px;
  color: rgba(250, 245, 234, 0.9);
  padding: 6px 0;
  border-bottom: 1px solid rgba(250, 245, 234, 0.12);
  list-style: none;
}
.home-v2 .emergency-contacts li:last-child { border-bottom: 0; }
.home-v2 .emergency-contacts strong { color: #faf5ea; }

/* Membership CTA (legacy class) — reskin to navy block */
.home-v2 .membership-cta {
  background: #1d3749;
  color: #faf5ea;
  padding: 44px 36px;
  border-radius: 14px;
  margin: 40px 0;
  text-align: center;
}
.home-v2 .membership-cta h2 { color: #faf5ea; }
.home-v2 .membership-cta p { color: rgba(250, 245, 234, 0.8); font-size: 16px; }
.home-v2 .membership-cta .btn-primary {
  background: #f2664c !important;
  border-color: #f2664c !important;
}
.home-v2 .membership-cta .btn-primary:hover {
  background: #dfd91f !important;
  border-color: #dfd91f !important;
  color: #1d3749 !important;
}

/* Highlights grid */
.home-v2 .highlights {
  padding: 60px 0 20px;
}
.home-v2 .highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-v2 .highlight-item {
  background: #fff;
  border: 1.5px solid rgba(29, 55, 73, 0.1);
  border-radius: 12px;
  padding: 26px 24px;
}
.home-v2 .highlight-icon { font-size: 32px; line-height: 1; margin-bottom: 12px; }
.home-v2 .highlight-item h4 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  color: #1d3749;
  margin: 0 0 8px;
}

/* Responsive for sub-page classes */
@media (max-width: 1024px) {
  .home-v2 .page-hero .container,
  .home-v2 .page-content .container { padding: 0 24px; }
  .home-v2 .about-intro { grid-template-columns: 1fr !important; gap: 32px !important; }
  .home-v2 .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .home-v2 .board-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .home-v2 .membership-benefits { grid-template-columns: 1fr !important; gap: 14px !important; }
  .home-v2 .facilities-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .home-v2 .features-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .home-v2 .highlights-grid { grid-template-columns: 1fr 1fr; }
  .home-v2 .events-news-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .home-v2 .event-list-item { grid-template-columns: 70px 1fr; gap: 16px; padding: 18px 22px; }
  .home-v2 .event-list-item h4 { font-size: 19px; }
  .home-v2 .event-date-box { min-height: 68px; padding: 10px 8px; }
  .home-v2 .event-date-box .day { font-size: 28px; }
}
@media (max-width: 560px) {
  .home-v2 .board-grid { grid-template-columns: 1fr !important; }
  .home-v2 .highlights-grid { grid-template-columns: 1fr; }
  .home-v2 .page-hero { padding: 56px 0 44px; }
  .home-v2 .page-hero h1 { font-size: clamp(36px, 10vw, 56px); }
  .home-v2 .page-hero p { font-size: 16px; }
  .home-v2 .event-list-item { grid-template-columns: 1fr; }
  .home-v2 .event-date-box { max-width: 120px; }
}

/* ========================================================================
   Reveals
   ======================================================================== */
.fade-in { opacity: 0; transform: translateY(16px); animation: fi 0.9s ease-out forwards; }
.fade-in[data-d="1"] { animation-delay: 0.08s; }
.fade-in[data-d="2"] { animation-delay: 0.18s; }
.fade-in[data-d="3"] { animation-delay: 0.28s; }
.fade-in[data-d="4"] { animation-delay: 0.38s; }
@keyframes fi { to { opacity: 1; transform: translateY(0); } }

[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ========================================================================
   Responsive — aggressive mobile optimization
   ======================================================================== */
@media (max-width: 1024px) {
  .home-v2 .header-inner { padding: 14px 24px; }
  .home-v2 .main-nav,
  .home-v2 .header-actions .header-social { display: none; }
  .home-v2 .mobile-toggle { display: flex; order: 99; }
  .home-v2 .header-actions { gap: 10px; }
  .home-v2 .btn-login { padding: 8px 16px; font-size: 13px; }

  .hero-v4 { padding: 30px 0 60px; }
  .hero-v4 .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .hero-v4 .hero-photo { margin-right: 0; order: -1; }
  .hero-v4 .hero-photo img { height: clamp(260px, 46vh, 380px); }
  .hero-v4 h1 { font-size: clamp(40px, 9vw, 68px); margin-bottom: 20px; }
  .hero-v4 .hero-sub { font-size: 17px; margin-bottom: 26px; }
  .hero-v4 .hero-meta { gap: 18px; font-size: 12px; margin-top: 24px; }

  .doors { padding: 60px 24px; }
  .doors-grid { grid-template-columns: 1fr; gap: 14px; }
  .door { min-height: auto; padding: 28px 24px 26px; }
  .door:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #1d3749; }

  .what-we-do { padding: 70px 24px; }
  .verbs-list li { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .verbs-list .v-num { padding-top: 0; font-size: 10px; }
  .verbs-list .v-verb { font-size: clamp(30px, 7.5vw, 44px); }
  .verbs-list .v-desc { padding-top: 0; font-size: 15px; }
  .verbs-list .v-arrow { text-align: left; font-size: 24px; padding-top: 0; }

  .recently { padding: 44px 24px; margin-top: 60px; }
  .recently-inner { grid-template-columns: 1fr; gap: 24px; }
  .recently-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }

  .portraits { padding: 70px 24px 40px; }
  .portraits-head h2 { font-size: clamp(30px, 7vw, 52px); }
  .portraits-grid { grid-template-columns: 1fr; gap: 24px; }
  .portrait { min-height: auto; padding: 28px 24px 26px; }
  .portrait:nth-child(n) { transform: rotate(-0.5deg); }

  .why-member { padding: 60px 24px 10px; }
  .why-member h2 { font-size: clamp(30px, 7vw, 52px); }
  .why-member .wm-body { font-size: 17px; }

  .nd-poster { padding: 60px 16px 80px; }
  .nd-poster .nd-poster-paper { padding: 80px 28px 40px; transform: rotate(-0.3deg); }
  .nd-poster .nd-edition { top: 16px; left: 20px; font-size: 10px; }
  .nd-poster .nd-stamp { top: 18px; right: 20px; font-size: 10px; padding: 5px 9px; }
  .nd-poster .nd-tape--tl { left: 20px; width: 70px; }
  .nd-poster .nd-tape--tr { right: 20px; width: 70px; }
  .nd-poster .nd-inner { grid-template-columns: 1fr; gap: 28px; }
  .nd-poster .nd-date-col { padding-top: 0; }
  .nd-poster .nd-day { font-size: clamp(110px, 30vw, 180px); }
  .nd-poster .nd-body { padding-top: 0; }
  .nd-poster .nd-body h2 { font-size: clamp(36px, 8vw, 52px); }
  .nd-poster .nd-lede { font-size: 15px; }

  .key-opens { padding: 70px 24px 60px; }
  .key-head h2 { font-size: clamp(34px, 8vw, 56px); }
  .key-split { grid-template-columns: 1fr; row-gap: 40px; }
  .key-cta { position: static; }
  .key-item { padding: 24px 0 24px; column-gap: 16px; grid-template-columns: 44px 1fr; }
  .key-item h3 { font-size: 20px; }

  .news-desk { padding: 60px 24px 20px; }
  .news-desk .head { margin-bottom: 28px; }
  .news-desk .head h2 { font-size: clamp(30px, 7vw, 48px); }
  .news-desk .news-grid { grid-template-columns: 1fr; row-gap: 32px; padding-top: 28px; }
  .news-desk .story-card { padding-right: 0; border-right: 0; padding-bottom: 28px; border-bottom: 1px solid rgba(29,55,73,0.12); }
  .news-desk .story-card:last-child { border-bottom: 0; padding-bottom: 0; }
  .news-desk .story-card .img-wrap { aspect-ratio: 16 / 10; }
  .story-card.big h3 { font-size: 24px; }

  .newsletter-v4 { padding: 60px 24px 80px; margin-top: 30px; }
  .newsletter-row { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
  .newsletter-row h2 { font-size: clamp(28px, 7vw, 44px); }

  .home-v2 .site-footer .container { padding: 0 24px; }
  .home-v2 .site-footer .footer-signoff { padding: 60px 0 48px; }
  .home-v2 .site-footer .footer-signoff h2 { font-size: clamp(32px, 8vw, 56px); }
  .home-v2 .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 0 32px; }
  .home-v2 .site-footer .footer-about { grid-column: 1 / -1; }
  .home-v2 .site-footer .land-acknowledgment { padding: 28px 0; font-size: 13px; }
}

@media (max-width: 560px) {
  .key-cta-inner { padding: 28px 22px 26px; }
  .home-v2 .site-footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .home-v2 .site-footer .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; padding: 20px 0; }

  .hero-v4 .hero-meta { gap: 14px; }
  .hero-v4 .hero-meta span { font-size: 11px; }
  .home-v2 .btn-bold { padding: 14px 24px; font-size: 14px; width: 100%; justify-content: center; }
  .hero-v4 .hero-actions { flex-direction: column; width: 100%; gap: 10px; }

  .nd-poster .nd-actions { flex-direction: column; width: 100%; }
  .nd-poster .btn-nd { justify-content: center; width: 100%; }
  .nd-poster .nd-pills li { font-size: 12px; padding: 5px 10px; }
}

/* ========================================================================
   BOARD SECTION (v4) — polaroid / scrapbook aesthetic
   ======================================================================== */
.home-v2 .board-section {
  max-width: 1240px;
  margin: 60px auto 0;
  padding: 0 24px;
  position: relative;
}
.home-v2 .board-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.home-v2 .board-head .meta-line {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2664c;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.home-v2 .board-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #1d3749;
  margin: 0 0 16px;
}
.home-v2 .board-head h2 .verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  font-size: 0.88em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.home-v2 .board-head .board-intro {
  color: #575863;
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}
.home-v2 .board-head .board-intro a { color: #f2664c; font-weight: 600; }

/* Grid — gives polaroid room to breathe, slightly wider minmax */
.home-v2 .board-grid-v4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 36px 24px;
  padding: 10px 0 40px;
}

/* Polaroid card — white frame, photo, handwritten name at bottom */
.home-v2 .board-card-v4 {
  background: #fff;
  padding: 14px 14px 18px;
  box-shadow:
    0 1px 0 rgba(29,55,73,0.06),
    0 12px 24px -8px rgba(29,55,73,0.18),
    0 26px 50px -18px rgba(29,55,73,0.12);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}
/* Each card gets a slight rotation using nth-child variations */
.home-v2 .board-card-v4:nth-child(4n+1) { transform: rotate(-1.4deg); }
.home-v2 .board-card-v4:nth-child(4n+2) { transform: rotate(1.2deg); }
.home-v2 .board-card-v4:nth-child(4n+3) { transform: rotate(-0.6deg); }
.home-v2 .board-card-v4:nth-child(4n+4) { transform: rotate(1.6deg); }

.home-v2 .board-card-v4.has-qa,
.home-v2 .board-card-v4.has-bio { cursor: pointer; }
.home-v2 .board-card-v4.has-qa:hover,
.home-v2 .board-card-v4.has-bio:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(29,55,73,0.06),
    0 20px 40px -10px rgba(29,55,73,0.22),
    0 40px 80px -20px rgba(29,55,73,0.18);
  z-index: 5;
}

/* Yellow tape on top of some cards */
.home-v2 .board-card-v4::before {
  content: '';
  position: absolute;
  top: -8px;
  width: 54px;
  height: 18px;
  background: rgba(223, 217, 31, 0.85);
  box-shadow: 0 1px 3px rgba(29,55,73,0.1);
  pointer-events: none;
}
.home-v2 .board-card-v4:nth-child(4n+1)::before { left: 20px; transform: rotate(-8deg); }
.home-v2 .board-card-v4:nth-child(4n+2)::before { right: 24px; transform: rotate(6deg); background: rgba(47, 157, 167, 0.75); }
.home-v2 .board-card-v4:nth-child(4n+3)::before { left: 50%; margin-left: -27px; transform: rotate(2deg); background: rgba(242, 102, 76, 0.75); }
.home-v2 .board-card-v4:nth-child(4n+4)::before { right: 20px; transform: rotate(-4deg); }

.home-v2 .board-card-v4 .photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2f0e6;
  position: relative;
  margin-bottom: 22px;
}
.home-v2 .board-card-v4 .photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Keep the face when a portrait photo is squared off — shoulders
     can crop, foreheads can't. */
  object-position: center 18%;
  display: block;
  filter: grayscale(0.05) contrast(1.04) sepia(0.05);
  transition: filter 0.25s, transform 0.4s;
}
.home-v2 .board-card-v4.has-qa:hover .photo-wrap img,
.home-v2 .board-card-v4.has-bio:hover .photo-wrap img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.03);
}

.home-v2 .board-card-v4 .card-body {
  text-align: center;
  padding: 0 8px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.home-v2 .board-card-v4 .role {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2f9da7;
  font-weight: 700;
  margin: 0;
  min-height: 2.4em; /* keep two-line and one-line roles aligned across the row */
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-v2 .board-card-v4 .name {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  font-weight: 400;
  color: #1d3749;
  margin: 6px 0 0;
  line-height: 1.15;
  letter-spacing: 0;
}
.home-v2 .board-card-v4 .meet-cta {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f2664c;
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.home-v2 .board-card-v4.has-qa:hover .meet-cta,
.home-v2 .board-card-v4.has-bio:hover .meet-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Open seat (TBD → Apply) variant */
.home-v2 .board-card-v4--open {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}
.home-v2 .board-card-v4--open .photo-wrap--open {
  background:
    repeating-linear-gradient(45deg, rgba(242,102,76,0.08) 0 12px, transparent 12px 24px),
    #faf5ea;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(242,102,76,0.45);
}
.home-v2 .board-card-v4--open .open-badge {
  text-align: center;
  font-family: 'Roboto Slab', serif;
  color: #f2664c;
}
.home-v2 .board-card-v4--open .open-badge span {
  display: block;
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.home-v2 .board-card-v4--open .open-badge small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1d3749;
  margin-top: 6px;
  opacity: 0.7;
}
.home-v2 .board-card-v4--open .name--apply {
  color: #f2664c;
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.005em;
}
.home-v2 .board-card-v4--open:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(29,55,73,0.06),
    0 20px 40px -10px rgba(29,55,73,0.22),
    0 40px 80px -20px rgba(29,55,73,0.18);
}
.home-v2 .board-card-v4--open:hover .photo-wrap--open {
  border-color: #f2664c;
}
.home-v2 .board-card-v4--open .meet-cta {
  color: #2f9da7;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 1;
  transform: none;
}

/* Q&A modal */
.board-qa-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29,55,73,0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}
.board-qa-overlay.open { display: flex; }
.board-qa-modal {
  background: #faf5ea;
  border-radius: 14px;
  max-width: 640px;
  width: 100%;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(29,55,73,0.3);
}
.board-qa-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.85);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  color: #1d3749;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.board-qa-close:hover { background: #f2664c; color: #fff; }

.board-qa-hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: stretch;
  background: #fff;
  gap: 0;
}
.board-qa-hero .photo-col {
  width: 100%;
  aspect-ratio: 4 / 5;       /* taller, fits a typical headshot without decapitating */
  overflow: hidden;
  background: #f2f0e6;
}
.board-qa-hero .photo-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%; /* preserve forehead → chin, lose shoulder if needed */
  display: block;
}
.board-qa-hero .name-col {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.board-qa-hero .role-badge {
  display: inline-block;
  background: #eef9fa;
  color: #1d7680;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.board-qa-hero h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 28px;
  font-weight: 800;
  color: #1d3749;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.board-qa-list {
  padding: 24px 28px 32px;
}
.board-qa-item + .board-qa-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(29,55,73,0.15);
}
.board-qa-item .q {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  color: #1d3749;
  font-size: 16px;
  margin: 0 0 8px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.board-qa-item .q::before {
  content: "Q — ";
  color: #f2664c;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.board-qa-item .a {
  color: #1d3749;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.board-qa-bio {
  padding: 24px 32px 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #1d3749;
}
.board-qa-contact {
  padding: 16px 28px 24px;
  border-top: 1px dashed rgba(29,55,73,0.2);
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #575863;
}
.board-qa-contact strong { color: #1d3749; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }
.board-qa-contact a { color: #f2664c; font-weight: 600; text-decoration: none; }
.board-qa-contact a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .board-qa-hero { grid-template-columns: 1fr; }
  .board-qa-hero .photo-col {
    aspect-ratio: 4/3;        /* keep the head — was 16/9 which decapitated portraits */
    max-height: 56vh;
  }
  .board-qa-hero .photo-col img { object-position: center 22%; }
  .board-qa-hero .name-col { padding: 20px 22px 4px; }
  .board-qa-hero h3 { font-size: 24px; }
  .board-qa-list { padding: 20px 22px 28px; }
  .board-qa-bio { padding: 18px 22px 8px; font-size: 14px; }
  .board-qa-contact { padding: 14px 22px 20px; }

  .home-v2 .board-grid-v4 { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .home-v2 .board-card-v4 { padding: 10px 10px 14px; }
  .home-v2 .board-card-v4 .name { font-size: 18px; }
  .home-v2 .board-card-v4 .role { font-size: 9px; letter-spacing: 0.15em; }
  /* Dampen rotation on mobile so cards don't overlap */
  .home-v2 .board-card-v4:nth-child(4n+1) { transform: rotate(-0.8deg); }
  .home-v2 .board-card-v4:nth-child(4n+2) { transform: rotate(0.7deg); }
  .home-v2 .board-card-v4:nth-child(4n+3) { transform: rotate(-0.4deg); }
  .home-v2 .board-card-v4:nth-child(4n+4) { transform: rotate(1deg); }
  .home-v2 .board-card-v4::before { width: 42px; height: 14px; top: -6px; }
  /* Always show CTA on mobile (no hover) */
  .home-v2 .board-card-v4.has-qa .meet-cta,
  .home-v2 .board-card-v4.has-bio .meet-cta { opacity: 1; transform: none; }
}

/* ========================================================================
   MEMBERSHIP PAGE (v4)
   ======================================================================== */

/* ----- HERO ----- */
.home-v2 .mb-hero {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(223,217,31,0.15), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(47,157,167,0.08), transparent 60%),
    #faf5ea;
  padding: 80px 32px 100px;
  position: relative;
  overflow: hidden;
}
.home-v2 .mb-hero-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}
.home-v2 .mb-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2664c;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}
.home-v2 .mb-hero-text h1 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.032em;
  color: #1d3749;
  margin: 0 0 22px;
}
.home-v2 .mb-hero-text h1 .verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  font-size: 0.92em;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-2deg);
}
.home-v2 .mb-lede {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.52;
  color: #1d3749;
  max-width: 560px;
  margin: 0 0 28px;
  font-weight: 500;
}
.home-v2 .mb-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.home-v2 .mb-nano {
  font-size: 12px;
  color: #7a7a7a;
  letter-spacing: 0.03em;
  font-weight: 500;
  margin: 0;
}

/* Member keycard illustration */
.home-v2 .mb-hero-card {
  display: flex;
  justify-content: center;
}
.home-v2 .mb-keycard {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1d3749 0%, #2a4a5e 100%);
  border-radius: 14px;
  padding: 22px 24px;
  color: #faf5ea;
  position: relative;
  box-shadow:
    0 8px 28px -4px rgba(29,55,73,0.3),
    0 24px 60px -18px rgba(29,55,73,0.25);
  transform: rotate(-3deg);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.home-v2 .mb-keycard::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(223,217,31,0.22), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(242,102,76,0.15), transparent 45%);
  pointer-events: none;
}
.home-v2 .mb-hero:hover .mb-keycard { transform: rotate(-1.5deg) scale(1.02); }
.home-v2 .mb-keycard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}
.home-v2 .mb-keycard-label { color: #dfd91f; }
.home-v2 .mb-keycard-est { color: rgba(250,245,234,0.6); }
.home-v2 .mb-keycard-mid {
  position: absolute;
  bottom: 22px;
  left: 24px;
}
.home-v2 .mb-keycard-name {
  font-family: 'Pacifico', cursive;
  font-size: 24px;
  color: rgba(250,245,234,0.45);
  margin: 0 0 2px;
  font-style: italic;
}
.home-v2 .mb-keycard-hood {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,245,234,0.7);
  font-weight: 600;
  margin: 0;
}
.home-v2 .mb-keycard-seal {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  background: rgba(250,245,234,0.95);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.home-v2 .mb-keycard-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f2664c 0%, #dfd91f 50%, #2f9da7 100%);
}

/* ----- WHAT IT FUNDS (transparency) ----- */
.home-v2 .mb-funds {
  background: #1d3749;
  color: #faf5ea;
  padding: 100px 32px 90px;
  position: relative;
}
.home-v2 .mb-funds-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.home-v2 .mb-funds-head .meta-line {
  color: #dfd91f;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.home-v2 .mb-funds-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #faf5ea;
  margin: 0 0 18px;
}
.home-v2 .mb-funds-head h2 .verb {
  color: #dfd91f;
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  font-size: 0.9em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.home-v2 .mb-intro {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250,245,234,0.85);
  margin: 0;
}
.home-v2 .mb-funds-grid {
  max-width: 1200px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.home-v2 .mb-fund-cell {
  background: rgba(250,245,234,0.04);
  border: 1px solid rgba(250,245,234,0.12);
  border-radius: 10px;
  padding: 26px 24px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.home-v2 .mb-fund-cell:hover {
  transform: translateY(-4px);
  border-color: rgba(223,217,31,0.5);
  background: rgba(250,245,234,0.07);
}
.home-v2 .mb-fund-cell--accent {
  background: linear-gradient(135deg, rgba(223,217,31,0.12), rgba(242,102,76,0.08));
  border-color: rgba(223,217,31,0.35);
}
.home-v2 .mb-fund-pct {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 900;
  color: #dfd91f;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
}
.home-v2 .mb-fund-cell h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  font-weight: 700;
  color: #faf5ea;
  margin: 0 0 8px;
  line-height: 1.2;
}
.home-v2 .mb-fund-cell p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250,245,234,0.75);
  margin: 0;
}
.home-v2 .mb-funds-foot {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: rgba(250,245,234,0.5);
  text-align: center;
  font-style: italic;
}

/* ----- WHAT THE KEY OPENS (benefits grid) ----- */
.home-v2 .mb-opens {
  padding: 100px 32px 90px;
  background: #fff;
  max-width: none;
}
.home-v2 .mb-opens-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.home-v2 .mb-opens-head .meta-line {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2664c;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.home-v2 .mb-opens-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #1d3749;
  margin: 0;
}
.home-v2 .mb-opens-head h2 .verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  font-size: 0.9em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
/* Editorial ledger: uniform rows, hairline rules, serial numerals.
   Three columns × two rows with perfectly matched cells — balance via uniformity. */
.home-v2 .mb-opens-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 48px;
  row-gap: 0;
  border-top: 1px solid rgba(29,55,73,0.18);
}
.home-v2 .mb-open {
  background: transparent;
  border-radius: 0;
  padding: 28px 0 32px;
  position: relative;
  border: 0;
  border-bottom: 1px solid rgba(29,55,73,0.12);
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  row-gap: 4px;
  align-items: baseline;
  transition: none;
}
.home-v2 .mb-open:hover { transform: none; box-shadow: none; }
.home-v2 .mb-open:hover h3 { color: #f2664c; }
/* remove extra rule where a row already has the ledger top border */
.home-v2 .mb-opens-grid > .mb-open:nth-last-child(-n+3) { border-bottom: 1px solid rgba(29,55,73,0.18); }
.home-v2 .mb-open-num {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 12px;
  font-weight: 800;
  color: #f2664c;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  grid-row: 1 / span 3;
  padding-top: 4px;
  font-feature-settings: "lnum", "tnum";
}
.home-v2 .mb-open-num::before { content: 'No.'; color: rgba(29,55,73,0.5); font-weight: 600; margin-right: 2px; }
.home-v2 .mb-open h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1d3749;
  margin: 0;
  line-height: 1.18;
  letter-spacing: -0.01em;
  grid-column: 2;
  transition: color 0.2s;
  text-wrap: balance;
}
.home-v2 .mb-open p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5868;
  margin: 6px 0 10px;
  grid-column: 2;
  max-width: 38ch;
}
.home-v2 .mb-open-link {
  color: #1d3749;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-decoration: none;
  grid-column: 2;
  border-bottom: 1.5px solid #f2664c;
  padding-bottom: 2px;
  align-self: start;
  justify-self: start;
}
.home-v2 .mb-open-link:hover { color: #f2664c; }

/* ----- WHY IT MATTERS (emotional centre) ----- */
.home-v2 .mb-why {
  background: #faf5ea;
  padding: 120px 32px 110px;
  position: relative;
  overflow: hidden;
}
.home-v2 .mb-why::before,
.home-v2 .mb-why::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.home-v2 .mb-why::before {
  top: 8%; left: 4%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(242,102,76,0.15), transparent 70%);
  border-radius: 50%;
}
.home-v2 .mb-why::after {
  bottom: 10%; right: 6%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(47,157,167,0.15), transparent 70%);
  border-radius: 50%;
}
.home-v2 .mb-why-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.home-v2 .mb-why-kicker {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 14px;
  transform: rotate(-2deg);
  display: inline-block;
}
.home-v2 .mb-why h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #1d3749;
  margin: 0 0 32px;
}
.home-v2 .mb-why-accent {
  color: #f2664c;
}
.home-v2 .mb-why-body {
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.58;
  color: #1d3749;
  margin: 0 0 22px;
  font-weight: 400;
}
.home-v2 .mb-why-body strong {
  font-weight: 800;
  color: #1d3749;
  background: linear-gradient(transparent 60%, rgba(223,217,31,0.5) 60%);
  padding: 0 2px;
}

/* ----- TIERS ----- */
.home-v2 .mb-tiers {
  padding: 100px 32px;
  background: #fff;
}
.home-v2 .mb-tiers-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.home-v2 .mb-tiers-head .meta-line {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2664c;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.home-v2 .mb-tiers-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #1d3749;
  margin: 0 0 16px;
}
.home-v2 .mb-tiers-head h2 .verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  font-size: 0.88em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.home-v2 .mb-tiers-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.home-v2 .mb-tier {
  background: #faf5ea;
  border-radius: 14px;
  padding: 32px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.home-v2 .mb-tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -10px rgba(29,55,73,0.16);
}
.home-v2 .mb-tier--featured {
  background: #1d3749;
  color: #faf5ea;
  border-color: #dfd91f;
  transform: scale(1.03);
}
.home-v2 .mb-tier--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 22px 42px -12px rgba(29,55,73,0.3);
}
.home-v2 .mb-tier-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #dfd91f;
  color: #1d3749;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}
.home-v2 .mb-tier-head {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(29,55,73,0.2);
}
.home-v2 .mb-tier--featured .mb-tier-head { border-bottom-color: rgba(250,245,234,0.25); }
.home-v2 .mb-tier-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a7a7a;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.home-v2 .mb-tier--featured .mb-tier-label { color: rgba(250,245,234,0.6); }
.home-v2 .mb-tier-price {
  margin: 0 0 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.home-v2 .mb-tier-amt {
  font-family: 'Roboto Slab', serif;
  font-size: 52px;
  font-weight: 900;
  color: #1d3749;
  letter-spacing: -0.03em;
  line-height: 1;
}
.home-v2 .mb-tier--featured .mb-tier-amt { color: #dfd91f; }
.home-v2 .mb-tier-per {
  color: #7a7a7a;
  font-size: 14px;
  font-weight: 600;
}
.home-v2 .mb-tier--featured .mb-tier-per { color: rgba(250,245,234,0.7); }
.home-v2 .mb-tier-name {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1d3749;
  margin: 6px 0 0;
  letter-spacing: 0.01em;
}
.home-v2 .mb-tier--featured .mb-tier-name { color: #faf5ea; }
.home-v2 .mb-tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.home-v2 .mb-tier-list li {
  font-size: 14px;
  line-height: 1.5;
  color: #1d3749;
  padding: 8px 0 8px 24px;
  position: relative;
}
.home-v2 .mb-tier--featured .mb-tier-list li { color: rgba(250,245,234,0.88); }
.home-v2 .mb-tier-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: #f2664c;
  font-weight: 800;
  font-size: 14px;
}
.home-v2 .mb-tier--featured .mb-tier-list li::before { color: #dfd91f; }
.home-v2 .mb-tier-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: #fff;
  color: #1d3749;
  border: 2px solid #1d3749;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-bottom: 14px;
}
.home-v2 .mb-tier-cta:hover {
  background: #1d3749;
  color: #faf5ea;
}
.home-v2 .mb-tier-cta--primary {
  background: #f2664c;
  color: #fff;
  border-color: #f2664c;
}
.home-v2 .mb-tier-cta--primary:hover {
  background: #fff;
  color: #f2664c;
}
.home-v2 .mb-tier--featured .mb-tier-cta {
  background: #dfd91f;
  color: #1d3749;
  border-color: #dfd91f;
}
.home-v2 .mb-tier--featured .mb-tier-cta:hover {
  background: #faf5ea;
  border-color: #faf5ea;
}
.home-v2 .mb-tier-fine {
  font-size: 12px;
  color: #7a7a7a;
  line-height: 1.5;
  margin: 0;
}
.home-v2 .mb-tier--featured .mb-tier-fine { color: rgba(250,245,234,0.55); }

/* ----- FAQ ----- */
.home-v2 .mb-faq {
  padding: 90px 32px 100px;
  background: #faf5ea;
}
.home-v2 .mb-faq-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.home-v2 .mb-faq-head .meta-line {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2664c;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.home-v2 .mb-faq-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #1d3749;
  margin: 0;
}
.home-v2 .mb-faq-head h2 .verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  font-size: 0.88em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.home-v2 .mb-faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.home-v2 .mb-faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(29,55,73,0.05);
  transition: box-shadow 0.2s;
}
.home-v2 .mb-faq-item[open] {
  box-shadow: 0 4px 14px rgba(29,55,73,0.1);
}
.home-v2 .mb-faq-item summary {
  font-family: 'Roboto Slab', serif;
  font-size: 17px;
  font-weight: 700;
  color: #1d3749;
  cursor: pointer;
  list-style: none;
  padding-right: 32px;
  position: relative;
  line-height: 1.35;
}
.home-v2 .mb-faq-item summary::-webkit-details-marker { display: none; }
.home-v2 .mb-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 24px;
  color: #f2664c;
  transition: transform 0.25s;
  font-weight: 400;
}
.home-v2 .mb-faq-item[open] summary::after {
  transform: rotate(45deg);
}
.home-v2 .mb-faq-item p {
  font-size: 15px;
  line-height: 1.65;
  color: #575863;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(29,55,73,0.12);
}
.home-v2 .mb-faq-item a { color: #f2664c; font-weight: 600; }

/* ----- FINAL CTA ----- */
.home-v2 .mb-final {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(242,102,76,0.25), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(223,217,31,0.25), transparent 55%),
    #1d3749;
  padding: 110px 32px 110px;
  text-align: center;
  color: #faf5ea;
  position: relative;
  overflow: hidden;
}
.home-v2 .mb-final-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.home-v2 .mb-final-kicker {
  font-family: 'Pacifico', cursive;
  color: #dfd91f;
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 14px;
  transform: rotate(-2deg);
  display: inline-block;
}
.home-v2 .mb-final h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #faf5ea;
  margin: 0 0 36px;
}
.home-v2 .mb-final h2 .verb {
  color: #dfd91f;
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  font-size: 0.92em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.home-v2 .mb-final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.home-v2 .mb-final-alt {
  font-size: 14px;
  color: rgba(250,245,234,0.7);
  margin: 0;
}
.home-v2 .mb-final-alt a {
  color: #dfd91f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mobile membership */
@media (max-width: 900px) {
  .home-v2 .mb-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .home-v2 .mb-hero-card { order: -1; }
  .home-v2 .mb-keycard { transform: rotate(-2deg); max-width: 320px; }
  .home-v2 .mb-opens-grid { grid-template-columns: 1fr; }
  .home-v2 .mb-opens-grid > .mb-open:nth-last-child(-n+3) { border-bottom: 1px solid rgba(29,55,73,0.12); }
  .home-v2 .mb-opens-grid > .mb-open:last-child { border-bottom: 1px solid rgba(29,55,73,0.18); }
  .home-v2 .mb-tiers-grid { grid-template-columns: 1fr; gap: 20px; }
  .home-v2 .mb-tier--featured { transform: none; }
  .home-v2 .mb-tier--featured:hover { transform: translateY(-6px); }
}
@media (max-width: 560px) {
  .home-v2 .mb-hero { padding: 60px 20px 70px; }
  .home-v2 .mb-funds, .home-v2 .mb-opens, .home-v2 .mb-why, .home-v2 .mb-tiers, .home-v2 .mb-faq, .home-v2 .mb-final {
    padding-left: 20px; padding-right: 20px;
  }
  .home-v2 .mb-why { padding-top: 80px; padding-bottom: 80px; }
  .home-v2 .mb-hero-actions, .home-v2 .mb-final-actions { flex-direction: column; width: 100%; }
  .home-v2 .mb-hero-actions .btn-bold, .home-v2 .mb-final-actions .btn-bold { width: 100%; justify-content: center; }
  .home-v2 .mb-keycard-name { font-size: 20px; }
  .home-v2 .mb-tier-amt { font-size: 42px; }
}

/* ========================================================================
   UNIVERSAL EDITORIAL POLISH
   — Utility layer applied site-wide for thoughtful typographic detail
   ======================================================================== */

/* All display headlines: better line balance */
.home-v2 h1, .home-v2 h2, .home-v2 h3,
.home-v2 .hero-v4 h1,
.home-v2 .page-hero h1 {
  text-wrap: balance;
}

/* Any element explicitly numeric — use tabular + lining numerals */
.home-v2 [data-numeric],
.home-v2 .num,
.home-v2 .stat .num,
.home-v2 .ndp-stat .num,
.home-v2 .mb-tier-amt,
.home-v2 .mb-fund-pct,
.home-v2 .nd-date .nd-month,
.home-v2 .nd-date .nd-day,
.home-v2 .sh-glance .num,
.home-v2 .r-stat strong {
  font-feature-settings: "lnum", "tnum";
  font-variant-numeric: tabular-nums lining-nums;
}

/* Upgrade any .meta-line to have flanking hairlines when wrapped in <span>  */
.home-v2 .meta-line--flanked {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.home-v2 .meta-line--flanked::before,
.home-v2 .meta-line--flanked::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

/* Drop cap — apply `.editorial-dropcap` to a paragraph */
.home-v2 .editorial-dropcap::first-letter {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  float: left;
  font-size: 3.4em;
  line-height: 0.88;
  padding: 4px 10px 0 0;
  color: #f2664c;
  margin-top: 4px;
}

/* Editorial section mark — § or ¶ hairline between major pieces */
.home-v2 .editorial-mark {
  text-align: center;
  padding: 28px 0;
  color: rgba(29, 55, 73, 0.28);
  font-family: 'Roboto Slab', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1;
}
.home-v2 .editorial-mark::before { content: '§'; }
.home-v2 .editorial-mark--para::before { content: '¶'; }
.home-v2 .editorial-mark--dot::before { content: '·  ·  ·'; letter-spacing: 0.3em; font-size: 18px; }

/* Italic serif photo caption (replace overlay chips where used) */
.home-v2 .editorial-caption {
  display: block;
  font-family: 'Roboto Slab', Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: #7a7a7a;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

/* Hanging punctuation */
.home-v2 p, .home-v2 li { hanging-punctuation: first allow-end last; }

/* Generic "No. 01" serial treatment */
.home-v2 .editorial-serial {
  font-family: 'Roboto Slab', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  color: #7a7a7a;
  letter-spacing: 0.01em;
  font-feature-settings: "lnum";
}
.home-v2 .editorial-serial em {
  font-style: normal;
  font-weight: 900;
  color: #f2664c;
  margin-right: 6px;
  letter-spacing: 0;
}

/* Long-form body — consistent reading measure */
.home-v2 .editorial-prose {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #1d3749;
}
.home-v2 .editorial-prose p { margin: 0 0 18px; }
.home-v2 .editorial-prose p + p { text-indent: 1.4em; }  /* subtle indent on continuations */
.home-v2 .editorial-prose p:first-child { text-indent: 0; }

/* Visible but restrained link style in body */
.home-v2 .editorial-prose a {
  color: #1d3749;
  border-bottom: 1px solid #f2664c;
  padding-bottom: 1px;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}
.home-v2 .editorial-prose a:hover { color: #f2664c; }

/* Tighten focus on primary buttons for crispness */
.home-v2 .btn:focus-visible, .home-v2 .btn-bold:focus-visible,
.home-v2 a:focus-visible, .home-v2 button:focus-visible {
  outline: 2px solid #f2664c;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ========================================================================
   EVENTS PAGE — editorial treatment
   ======================================================================== */
.home-v2 .events-featured {
  max-width: 1000px;
  margin: 0 auto 20px;
  border-top: 2px solid #1d3749;
  border-bottom: 1px solid rgba(29,55,73,0.15);
  padding: 40px 0 52px;
}
.home-v2 .ef-meta { text-align: center; margin-bottom: 22px; color: #f2664c; }
.home-v2 .ef-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 0 8px;
}
.home-v2 .ef-date {
  border-right: 1px solid rgba(29,55,73,0.12);
  padding-right: 28px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.home-v2 .ef-month {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #f2664c;
  margin-bottom: -4px;
}
.home-v2 .ef-day {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(90px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #1d3749;
  font-feature-settings: "lnum", "tnum";
}
.home-v2 .ef-time {
  font-family: 'Roboto Slab', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #7a7a7a;
  margin-top: 10px;
}
.home-v2 .ef-copy h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #1d3749;
  margin: 0 0 14px;
}
.home-v2 .ef-copy h2 .verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  font-size: 0.92em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.home-v2 .ef-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: #575863;
  margin: 0 0 14px;
  max-width: 58ch;
}
.home-v2 .ef-venue {
  font-family: 'Roboto Slab', Georgia, serif;
  font-style: italic;
  color: #7a7a7a !important;
  font-size: 14px !important;
}
.home-v2 .ef-actions { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 20px; }
.home-v2 .ef-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1d3749;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 2px solid #f2664c;
  padding-bottom: 3px;
  transition: color 0.15s, border-color 0.15s;
}
.home-v2 .ef-cta:hover { color: #f2664c; }
.home-v2 .ef-cta-secondary {
  color: #7a7a7a;
  font-family: 'Roboto Slab', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  text-decoration: none;
}
.home-v2 .ef-cta-secondary:hover { color: #1d3749; }

@media (max-width: 700px) {
  .home-v2 .ef-grid { grid-template-columns: 1fr; gap: 18px; }
  .home-v2 .ef-date { text-align: left; align-items: flex-start; padding: 0; border-right: 0; border-bottom: 1px solid rgba(29,55,73,0.12); padding-bottom: 14px; }
}

.home-v2 .events-list-head {
  max-width: 1000px;
  margin: 50px auto 28px;
  text-align: center;
}
.home-v2 .events-list-head .meta-line { color: #f2664c; display: inline-flex; margin-bottom: 10px; }
.home-v2 .events-list-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 42px);
  color: #1d3749;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Event list items — unified polish */
.home-v2 .events-list {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid rgba(29,55,73,0.12);
}
.home-v2 .events-list .event-list-item {
  border-bottom: 1px solid rgba(29,55,73,0.1);
  padding: 28px 8px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: start;
  transition: background 0.2s;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}
.home-v2 .events-list .event-list-item:hover { background: rgba(29,55,73,0.025); }
.home-v2 .events-list .event-date-box {
  width: 96px;
  padding: 14px 10px 16px;
  background: #fff !important;
  border: 1px solid rgba(29,55,73,0.15);
  border-radius: 4px;
  text-align: center;
}
.home-v2 .events-list .event-date-box .month {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f2664c;
  margin-bottom: 4px;
}
.home-v2 .events-list .event-date-box .day {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1d3749;
  font-feature-settings: "lnum", "tnum";
}
.home-v2 .events-list .event-list-item h4 {
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
  font-weight: 800;
  color: #1d3749;
  margin: 0 0 8px;
  line-height: 1.25;
  letter-spacing: -0.012em;
}
.home-v2 .events-list .event-list-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #575863;
  margin: 0 0 8px;
  max-width: 62ch;
}
.home-v2 .events-list .event-location {
  font-family: 'Roboto Slab', Georgia, serif;
  font-style: italic;
  font-size: 13px !important;
  color: #7a7a7a !important;
}
/* Featured (Neighbour Day) event item */
.home-v2 .events-list .event-list-item[style*="border: 2px solid"] {
  border: none !important;
  background: linear-gradient(90deg, rgba(242,102,76,0.06) 0%, transparent 55%) !important;
  border-bottom: 1px solid rgba(29,55,73,0.1) !important;
}
.home-v2 .events-list .event-list-item[style*="background: var(--color-primary)"] {
  background: #f2664c !important;
}
.home-v2 .events-list .event-list-item[style*="background: var(--color-primary)"] .month { color: #dfd91f; }
.home-v2 .events-list .event-list-item[style*="background: var(--color-primary)"] .day { color: #fff; }

@media (max-width: 640px) {
  .home-v2 .events-list .event-list-item { grid-template-columns: 72px 1fr; gap: 20px; padding: 22px 4px; }
  .home-v2 .events-list .event-date-box { width: 72px; padding: 10px 6px 12px; }
  .home-v2 .events-list .event-date-box .day { font-size: 30px; }
}

/* ========================================================================
   FACILITIES PAGE — editorial polish
   ======================================================================== */
.home-v2 .facility-card {
  border-radius: 8px !important;
  overflow: hidden;
  border: 1px solid #efe8d6 !important;
  box-shadow: none !important;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.home-v2 .facility-card:hover {
  transform: translateY(-4px);
  border-color: #dfd91f !important;
  box-shadow: 0 14px 30px -10px rgba(29,55,73,0.14) !important;
}
.home-v2 .facility-card .editorial-serial {
  margin-bottom: 8px;
  display: block;
}
.home-v2 .facility-card h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 12px !important;
}
.home-v2 .facility-card .card-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #575863;
}
.home-v2 .facility-card .facility-note {
  font-family: 'Roboto Slab', Georgia, serif;
  font-style: italic;
  font-size: 13px !important;
  color: #7a7a7a !important;
  border-top: 1px dashed rgba(29,55,73,0.15);
  padding-top: 12px;
  margin-top: 14px !important;
  margin-bottom: 16px !important;
}
.home-v2 .facility-card .btn {
  font-size: 14px !important;
  padding: 10px 18px !important;
}

/* Nearby — editorial dl layout */
.home-v2 .facility-nearby {
  max-width: 1000px;
  margin: 50px auto 20px;
}
.home-v2 .facility-nearby-head {
  text-align: center;
  margin-bottom: 36px;
}
.home-v2 .facility-nearby-head .meta-line { color: #f2664c; margin-bottom: 12px; display: inline-flex; }
.home-v2 .facility-nearby-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 42px);
  color: #1d3749;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.home-v2 .facility-nearby-head p {
  font-family: 'Roboto Slab', Georgia, serif;
  font-style: italic;
  color: #7a7a7a;
  font-size: 15px;
  margin: 0;
}
.home-v2 .facility-nearby-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(29,55,73,0.12);
}
.home-v2 .facility-nearby-list .fn-item {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(29,55,73,0.12);
}
.home-v2 .facility-nearby-list .fn-item:nth-child(odd) {
  border-right: 1px solid rgba(29,55,73,0.12);
}
.home-v2 .facility-nearby-list dt {
  font-family: 'Roboto Slab', serif;
  font-size: 17px;
  font-weight: 800;
  color: #1d3749;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.home-v2 .facility-nearby-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #575863;
}
@media (max-width: 700px) {
  .home-v2 .facility-nearby-list { grid-template-columns: 1fr; }
  .home-v2 .facility-nearby-list .fn-item:nth-child(odd) { border-right: 0; }
}

/* ========================================================================
   SPONSORSHIP — why-partner section
   ======================================================================== */
.home-v2 .sponsor-why {
  max-width: 1060px;
  margin: 50px auto 30px;
}
.home-v2 .sw-head {
  text-align: center;
  margin-bottom: 40px;
}
.home-v2 .sw-head .meta-line { color: #f2664c; margin-bottom: 14px; display: inline-flex; }
.home-v2 .sw-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(28px, 3.8vw, 42px);
  color: #1d3749;
  margin: 0;
  letter-spacing: -0.02em;
}
.home-v2 .sw-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(29,55,73,0.12);
  border-bottom: 1px solid rgba(29,55,73,0.12);
}
.home-v2 .sw-item {
  padding: 32px 28px;
}
.home-v2 .sw-item + .sw-item {
  border-left: 1px solid rgba(29,55,73,0.12);
}
.home-v2 .sw-item .editorial-serial { margin-bottom: 12px; display: block; }
.home-v2 .sw-item h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
  font-weight: 800;
  color: #1d3749;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: 20ch;
}
.home-v2 .sw-item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #575863;
  margin: 0;
}
@media (max-width: 780px) {
  .home-v2 .sw-list { grid-template-columns: 1fr; }
  .home-v2 .sw-item + .sw-item { border-left: 0; border-top: 1px solid rgba(29,55,73,0.12); }
}

/* ========================================================================
   VOLUNTEERS PAGE — editorial featured + openings
   ======================================================================== */
.home-v2 .vol-featured {
  max-width: 900px;
  margin: 10px auto 0;
  border-top: 2px solid #f2664c;
  border-bottom: 1px solid rgba(29,55,73,0.15);
  padding: 30px 0 38px;
  position: relative;
}
.home-v2 .vol-featured-flag {
  font-family: 'Roboto Slab', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #f2664c;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.home-v2 .vol-featured-title {
  font-family: 'Roboto Slab', serif !important;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 46px) !important;
  color: #1d3749 !important;
  margin: 0 0 14px !important;
  letter-spacing: -0.022em !important;
  line-height: 1.05 !important;
  text-wrap: balance;
}
.home-v2 .vol-featured-title .verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  font-size: 0.86em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.home-v2 .vol-featured-lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: #1d3749;
  margin: 0 0 22px;
  max-width: 58ch;
}
.home-v2 .vol-featured-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid rgba(29,55,73,0.12);
  border-bottom: 1px solid rgba(29,55,73,0.12);
}
.home-v2 .vol-featured-meta > div {
  padding: 14px 18px;
  border-right: 1px solid rgba(29,55,73,0.08);
  border-bottom: 1px solid rgba(29,55,73,0.08);
}
.home-v2 .vol-featured-meta > div:nth-child(3n) { border-right: 0; }
.home-v2 .vol-featured-meta > div:nth-last-child(-n+3) { border-bottom: 0; }
.home-v2 .vol-featured-meta dt {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a7a7a;
  font-weight: 700;
  margin-bottom: 4px;
}
.home-v2 .vol-featured-meta dd {
  margin: 0;
  font-size: 14px;
  color: #1d3749;
  font-weight: 600;
  line-height: 1.4;
}
.home-v2 .vol-featured-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
.home-v2 .vol-cta-primary {
  background: #f2664c;
  color: #fff;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.home-v2 .vol-cta-primary:hover { background: #1d3749; }
.home-v2 .vol-cta-secondary {
  color: #1d3749;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 2px solid #1d3749;
  padding-bottom: 3px;
  transition: color 0.15s, border-color 0.15s;
}
.home-v2 .vol-cta-secondary:hover { color: #f2664c; border-color: #f2664c; }
.home-v2 .vol-featured-contact {
  font-family: 'Roboto Slab', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #7a7a7a;
  margin: 0;
}
.home-v2 .vol-featured-contact a { color: #f2664c; }

.home-v2 .vol-board-head {
  text-align: center;
  max-width: 680px;
  margin: 20px auto 36px;
}
.home-v2 .vol-board-head .meta-line { color: #f2664c; margin-bottom: 12px; display: inline-flex; }
.home-v2 .vol-board-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(28px, 3.8vw, 42px);
  color: #1d3749;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.home-v2 .vol-board-head p {
  font-size: 15px;
  color: #7a7a7a;
  line-height: 1.55;
  margin: 0;
}

.home-v2 .position-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 28px 0 !important;
  border-top: 1px solid rgba(29,55,73,0.12) !important;
  border-radius: 0 !important;
}
.home-v2 .position-card:last-child { border-bottom: 1px solid rgba(29,55,73,0.12); }
.home-v2 .position-card .editorial-serial { margin-bottom: 10px; display: block; }
.home-v2 .position-card h3 {
  font-family: 'Roboto Slab', serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #1d3749 !important;
  letter-spacing: -0.015em !important;
  margin: 0 0 10px !important;
}
.home-v2 .position-card p { font-size: 15px; color: #575863; line-height: 1.6; margin: 0 0 12px; }
.home-v2 .position-card ul { padding-left: 20px; margin: 0 0 18px; font-size: 14.5px; color: #1d3749; line-height: 1.7; }
.home-v2 .position-card li { margin-bottom: 4px; }

.home-v2 .vol-other {
  margin: 70px auto 0;
  max-width: 700px;
  text-align: center;
  padding: 48px 24px;
  background: rgba(47, 157, 167, 0.07);
  border-radius: 12px;
}
.home-v2 .vol-other .meta-line { color: #2f9da7; display: inline-flex; margin-bottom: 12px; }
.home-v2 .vol-other h3 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(24px, 2.8vw, 32px);
  color: #1d3749;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.home-v2 .vol-other p { font-size: 15px; color: #575863; line-height: 1.6; margin: 0 0 18px; max-width: 48ch; margin-left: auto; margin-right: auto; }

@media (max-width: 640px) {
  .home-v2 .vol-featured-meta { grid-template-columns: 1fr 1fr; }
  .home-v2 .vol-featured-meta > div:nth-child(3n) { border-right: 1px solid rgba(29,55,73,0.08); }
  .home-v2 .vol-featured-meta > div:nth-child(2n) { border-right: 0; }
}

/* =========================================================================
   SPONSORSHIP PAGE — funding mission block (leads the page)
   ========================================================================= */
.sp-mission {
  background: #faf5ea;
  padding: 80px 0 70px;
  border-bottom: 1px solid rgba(29,55,73,0.14);
}
.sp-mission .container { max-width: 1100px; }
.sp-mission-inner { text-align: center; }
.sp-mission-kicker {
  font-family: 'Roboto Slab', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #2f9da7;
  margin: 0 0 16px;
}
.sp-mission-head {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.028em;
  color: #1d3749;
  margin: 0 0 26px;
  text-wrap: balance;
}
.sp-mission-head .verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  font-size: 0.88em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.sp-mission-lede {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.58;
  color: #4a5868;
  max-width: 64ch;
  margin: 0 auto 48px;
}
.sp-mission-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid rgba(29,55,73,0.18);
  border-bottom: 1px solid rgba(29,55,73,0.18);
}
.sp-mission-split > div {
  padding: 26px 22px;
  text-align: left;
  border-right: 1px solid rgba(29,55,73,0.1);
}
.sp-mission-split > div:last-child { border-right: 0; }
.sp-mission-split dt {
  font-family: 'Roboto Slab', serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2664c;
  margin-bottom: 10px;
}
.sp-mission-split dd {
  font-size: 14px;
  line-height: 1.55;
  color: #1d3749;
  margin: 0;
  font-feature-settings: "lnum", "tnum";
}
.sp-mission-split dd strong {
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  font-weight: 900;
  color: #1d3749;
  display: inline-block;
  margin-right: 6px;
  line-height: 1;
}
@media (max-width: 720px) {
  .sp-mission-split { grid-template-columns: 1fr; }
  .sp-mission-split > div { border-right: 0; border-bottom: 1px solid rgba(29,55,73,0.1); }
  .sp-mission-split > div:last-child { border-bottom: 0; }
}

/* =========================================================================
   EDITORIAL BANNER — wide photo + italic serif caption, reusable
   ========================================================================= */
.editorial-banner {
  max-width: 1200px;
  margin: 56px auto 16px;
  padding: 0 24px;
}
.editorial-banner-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16 / 9;
  background: #eef9fa;
  box-shadow: 0 18px 48px -24px rgba(29,55,73,0.3);
}
.editorial-banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.editorial-banner:hover .editorial-banner-frame img { transform: scale(1.02); }
.editorial-banner figcaption {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  color: #7a7a7a;
  text-align: center;
  margin: 16px auto 0;
  max-width: 56ch;
}
@media (max-width: 600px) {
  .editorial-banner { margin: 36px auto 12px; padding: 0 16px; }
  .editorial-banner-frame { aspect-ratio: 4 / 3; }
}

/* =========================================================================
   SHARED MODAL — used by classifieds posting + about photo upload
   (previously inline in classifieds.html; promoted to global in v1.1)
   ========================================================================= */
.clf-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29,55,73,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.clf-modal-overlay.open { display: flex; }
.clf-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 580px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.clf-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 24px;
  color: #7a7a7a;
  cursor: pointer;
  width: 32px;
  height: 32px;
  line-height: 1;
}
.clf-modal-close:hover { color: #1d3749; }
.clf-modal h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 28px;
  color: #1d3749;
  margin: 0 0 6px;
}
.clf-modal .sub {
  color: #7a7a7a;
  font-size: 14px;
  margin: 0 0 24px;
}
.clf-modal .rules {
  background: #faf5ea;
  border-left: 3px solid #f2664c;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 13px;
  color: #575863;
  line-height: 1.5;
  margin-bottom: 20px;
}
.clf-modal .rules strong { color: #1d3749; }
.clf-form .field { margin-bottom: 18px; }
.clf-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1d3749;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.clf-form label .opt { color: #a0a0a0; font-weight: 400; }
.clf-form input[type="text"],
.clf-form input[type="email"],
.clf-form input[type="file"],
.clf-form textarea,
.clf-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e3dcc6;
  border-radius: 6px;
  background: #faf5ea;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #1d3749;
  transition: border-color 0.15s, background 0.15s;
}
.clf-form input:focus,
.clf-form textarea:focus,
.clf-form select:focus {
  outline: 0;
  border-color: #f2664c;
  background: #fff;
}
.clf-form textarea { resize: vertical; min-height: 110px; }
.clf-form .hint { font-size: 12px; color: #a0a0a0; margin: 4px 0 0; }
.clf-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .clf-form .row { grid-template-columns: 1fr; } }
.clf-form .honeypot { position: absolute; left: -9999px; top: -9999px; }
.btn-submit,
.clf-form .btn-submit {
  background: #f2664c;
  color: #fff;
  padding: 14px 28px;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  width: 100%;
  margin-top: 10px;
}
.btn-submit:hover:not(:disabled),
.clf-form .btn-submit:hover:not(:disabled) { background: #1d3749; }
.btn-submit:disabled,
.clf-form .btn-submit:disabled { opacity: 0.5; cursor: wait; }
.status-msg {
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 14px;
  display: none;
}
.status-msg.success { display: block; background: #eaf7ed; color: #1a5a2a; border-left: 3px solid #2a8540; }
.status-msg.error { display: block; background: #fdecec; color: #8b1f1f; border-left: 3px solid #c8482f; }
.status-msg.review { display: block; background: #fff9c2; color: #7e6a0a; border-left: 3px solid #dfd91f; }
@media (max-width: 640px) {
  .clf-modal { padding: 28px 20px; }
  .clf-modal h2 { font-size: 22px; }
}

/* =========================================================================
   ABOUT PAGE — Photo-of-the-day feature strip (above the mosaic)
   ========================================================================= */
.about-frame-potd {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 32px 0;
  border-top: 2px solid #1d3749;
  border-bottom: 1px solid rgba(29,55,73,0.14);
}
.af-potd-figure { margin: 0; }
.af-potd-img {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: #eef9fa;
}
.af-potd-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.af-potd-figure:hover img { transform: scale(1.03); }
.af-potd-meta { padding: 0 12px; }
.af-potd-kicker {
  display: inline-block;
  font-family: 'Roboto Slab', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f2664c;
  padding-bottom: 4px;
  border-bottom: 2px solid #f2664c;
  margin-bottom: 18px;
}
.af-potd-caption {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: #1d3749;
  margin: 0 0 12px;
  text-wrap: balance;
}
.af-potd-credit {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 14px;
  color: #4a5868;
  margin: 0;
}
@media (max-width: 800px) {
  .about-frame-potd { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================================
   ABOUT PAGE — Community In Action mosaic + photo submission
   ========================================================================= */
.about-frame {
  background: #faf5ea;
  padding: 100px 0 110px;
}
.about-frame .container { max-width: 1280px; }
.about-frame-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.about-frame-head .meta-line {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #2f9da7;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-frame-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1d3749;
  margin: 0 0 20px;
}
.about-frame-head .verb {
  font-family: 'Pacifico', cursive;
  color: #f2664c;
  font-weight: 400;
  font-size: 0.85em;
  display: inline-block;
  transform: rotate(-2deg);
  letter-spacing: 0;
}
.about-frame-lede {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: #4a5868;
  max-width: 56ch;
  margin: 0 auto;
}
.about-frame-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.af-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: #1d3749;
}
.af-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.af-tile:hover img { transform: scale(1.04); }
.af-tile figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.4;
  color: #faf5ea;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.af-tile:hover figcaption { opacity: 1; transform: translateY(0); }
.af-tile--lead { grid-column: span 4; grid-row: span 2; }
.af-tile--tall { grid-column: span 2; grid-row: span 2; }
.af-tile:not(.af-tile--lead):not(.af-tile--tall) { grid-column: span 2; grid-row: span 1; }

/* Submission card — editorial end-note */
.af-submit {
  grid-column: span 2;
  grid-row: span 1;
  background: #1d3749;
  color: #faf5ea;
  padding: 28px 26px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.af-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 120% -20%, rgba(223,217,31,0.18), transparent 60%),
    radial-gradient(circle at -10% 110%, rgba(242,102,76,0.14), transparent 55%);
  pointer-events: none;
}
.af-submit > * { position: relative; }
.af-submit-kicker {
  font-family: 'Roboto Slab', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dfd91f;
  display: block;
  margin-bottom: 12px;
}
.af-submit h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #faf5ea;
  margin: 0 0 14px;
}
.af-submit p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(250,245,234,0.78);
  margin: 0 0 18px;
}
.af-submit-btn {
  display: inline-block;
  align-self: flex-start;
  background: #dfd91f;
  color: #1d3749;
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s, background 0.2s, color 0.2s;
}
.af-submit-btn:hover {
  transform: translateY(-2px);
  background: #f2664c;
  color: #faf5ea;
}
.af-submit-fine {
  font-size: 11.5px;
  color: rgba(250,245,234,0.5);
  margin: 14px 0 0;
}
.af-submit-fine a { color: #dfd91f; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 900px) {
  .about-frame-mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  .af-tile--lead { grid-column: span 4; grid-row: span 2; }
  .af-tile--tall { grid-column: span 2; grid-row: span 1; }
  .af-tile:not(.af-tile--lead):not(.af-tile--tall) { grid-column: span 2; }
  .af-submit { grid-column: span 4; grid-row: span 1; padding: 24px 22px; }
  .af-submit h3 { font-size: 22px; }
}
@media (max-width: 560px) {
  .about-frame { padding: 60px 0 70px; }
  .about-frame-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 12px; }
  .af-tile--lead, .af-tile--tall, .af-tile:not(.af-tile--lead):not(.af-tile--tall), .af-submit {
    grid-column: span 2; grid-row: auto;
  }
  .af-tile--lead { grid-row: span 1; }
  .af-tile figcaption { opacity: 1; transform: none; }
}

/* =========================================================================
   CONTACT PAGE — prominent email hero
   ========================================================================= */
.contact-direct {
  background: #faf5ea;
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(29,55,73,0.14);
}
.contact-direct .container { max-width: 1100px; }
.contact-direct-inner { text-align: center; }
.contact-direct-kicker {
  font-family: 'Roboto Slab', serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #2f9da7;
  margin: 0 0 18px;
}
.contact-direct-email {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #1d3749;
  margin: 0 0 24px;
  hanging-punctuation: first;
}
.contact-direct-email a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(transparent 80%, rgba(242,102,76,0.25) 80%);
  transition: background-image 0.25s, color 0.25s;
}
.contact-direct-email a:hover {
  color: #f2664c;
  background-image: linear-gradient(transparent 65%, rgba(242,102,76,0.2) 65%);
}
.contact-direct-lede {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: #4a5868;
  max-width: 56ch;
  margin: 0 auto 40px;
}
.contact-direct-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid rgba(29,55,73,0.18);
  border-bottom: 1px solid rgba(29,55,73,0.18);
}
.contact-direct-meta > div {
  padding: 24px 22px;
  text-align: left;
  border-right: 1px solid rgba(29,55,73,0.1);
}
.contact-direct-meta > div:last-child { border-right: 0; }
.contact-direct-meta .cd-label {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2664c;
  margin-bottom: 6px;
}
.contact-direct-meta p {
  font-size: 14px;
  line-height: 1.55;
  color: #1d3749;
  margin: 0;
  font-feature-settings: "lnum", "tnum";
}
@media (max-width: 720px) {
  .contact-direct-meta { grid-template-columns: 1fr; }
  .contact-direct-meta > div { border-right: 0; border-bottom: 1px solid rgba(29,55,73,0.1); }
  .contact-direct-meta > div:last-child { border-bottom: 0; }
}

/* =========================================================================
   NEWS ARCHIVE PAGE — editorial layout (supersedes old .news-card boxes)
   ========================================================================= */
.news-archive { background: #faf5ea; padding: 60px 0 80px; }
.news-archive .container { max-width: 1200px; }

/* Featured — horizontal magazine card, full-width top */
.news-featured { margin-bottom: 72px; }
.news-featured-link {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  column-gap: 56px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-top: 2px solid #1d3749;
  border-bottom: 1px solid rgba(29,55,73,0.14);
  padding: 40px 0 48px;
}
.news-featured-img {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: #eef9fa;
}
.news-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.news-featured-link:hover .news-featured-img img { transform: scale(1.035); }
.news-featured-body { padding: 8px 0; }
.news-featured-kicker {
  font-family: 'Roboto Slab', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2664c;
  margin: 0 0 20px;
  font-feature-settings: "lnum", "tnum";
}
.news-featured-title {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #1d3749;
  margin: 0 0 18px;
  text-wrap: balance;
  hanging-punctuation: first;
}
.news-featured-summary {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: #4a5868;
  margin: 0 0 24px;
  max-width: 46ch;
}
.news-featured-cta {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1d3749;
  border-bottom: 2px solid #f2664c;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.news-featured-link:hover .news-featured-title { color: #f2664c; }
.news-featured-link:hover .news-featured-cta { color: #f2664c; }

/* Archive section head */
.news-archive-head {
  max-width: 1200px;
  margin: 0 auto 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(29,55,73,0.22);
}
.news-archive-head .meta-line {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2f9da7;
  font-weight: 700;
  margin-bottom: 6px;
}
.news-archive-head h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: #1d3749;
  margin: 0;
}

/* Archive grid — uniform 3-col, matched heights, clean hairline rules */
.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 48px;
}
.archive-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 0;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(29,55,73,0.12);
}
.archive-card-img {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 16px;
  background: #eef9fa;
}
.archive-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.archive-card-img:hover img { transform: scale(1.04); }
.archive-card-date {
  font-family: 'Roboto Slab', serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f2664c;
  margin: 0 0 6px;
  font-feature-settings: "lnum", "tnum";
}
.archive-card-title {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #1d3749;
  margin: 0 0 8px;
  text-wrap: balance;
}
.archive-card-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.archive-card-title a:hover { color: #f2664c; }
.archive-card-summary {
  font-size: 14px;
  line-height: 1.58;
  color: #4a5868;
  margin: 0;
  max-width: 34ch;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 980px) {
  .news-featured-link { grid-template-columns: 1fr; row-gap: 28px; padding: 28px 0 36px; }
  .news-archive-grid { grid-template-columns: repeat(2, 1fr); column-gap: 32px; row-gap: 40px; }
}
@media (max-width: 620px) {
  .news-archive-grid { grid-template-columns: 1fr; }
  .news-featured-title { font-size: clamp(28px, 7vw, 38px); }
}

/* ============================================================
   App-feel enhancements (2026-06)
   Staggered card reveals, tactile press feedback, and a tighter
   mobile rhythm. Appended last so it layers over the section
   styles above. Pairs with initStagger() / revealStagger() in
   js/main.js. Mirrors the existing [data-reveal] hide-then-show
   pattern, so behaviour stays consistent and reduced-motion safe.
   ============================================================ */

/* --- Staggered child reveal: grid/list children rise in sequence
       as their container scrolls into view (the "app feed" feel). --- */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1),
              transform .7s cubic-bezier(.22, 1, .36, 1);
}
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1) { transition-delay: .04s; }
[data-stagger].in > *:nth-child(2) { transition-delay: .10s; }
[data-stagger].in > *:nth-child(3) { transition-delay: .16s; }
[data-stagger].in > *:nth-child(4) { transition-delay: .22s; }
[data-stagger].in > *:nth-child(5) { transition-delay: .28s; }
[data-stagger].in > *:nth-child(6) { transition-delay: .34s; }
[data-stagger].in > *:nth-child(7) { transition-delay: .40s; }
[data-stagger].in > *:nth-child(8) { transition-delay: .46s; }
@media (prefers-reduced-motion: reduce) {
  [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- Tactile press feedback: interactive cards/buttons dip on tap,
       like a native control. Pointer-fine devices keep their hover. --- */
.home-event-card, .door, .story-card, .sv-callout-inner,
.btn-bold, .btn-nd, .btn-key {
  -webkit-tap-highlight-color: transparent;
}
.home-event-card:active, .door:active, .sv-callout-inner:active,
.btn-bold:active, .btn-nd:active, .btn-key:active {
  transform: scale(0.98);
  transition: transform .08s ease;
}

/* News desk now lives near the top of the page — drop the old
   "foot of page" top divider + oversized top padding. */
.news-desk { border-top: 0; padding-top: 56px; }

/* --- Mobile rhythm: tighten the long desktop paddings on phones so
       the page reads as a compact app screen, not a tall scroll. --- */
@media (max-width: 700px) {
  .home-events { padding: 36px 20px 12px; }
  .news-desk   { padding: 28px 20px 0; }
  .sv-callout  { padding: 4px 20px 0; }
  .doors       { padding: 52px 20px; }
  .what-we-do  { padding: 52px 20px; }
  .recently    { padding: 40px 20px; }
  .portraits   { padding: 52px 20px 36px; }
  .nd-poster   { padding: 44px 16px 52px; }
  .key-opens   { padding: 52px 20px 60px; }

  /* News stacks to a single column with comfortable dividers. */
  .news-desk .news-grid { grid-template-columns: 1fr; row-gap: 28px; }
  .news-desk .story-card {
    border-right: 0; padding-right: 0;
    border-bottom: 1px solid rgba(29, 55, 73, 0.12);
    padding-bottom: 24px;
  }
  .news-desk .story-card:last-child { border-bottom: 0; padding-bottom: 0; }
  .news-desk .head { margin-bottom: 28px; }
}
