/* ==========================================================================
   Josh Bull MP — shared design system
   Palette: warm editorial (no blue). Labor red as active accent, deep warm
   charcoal as brand dark, cream background, ochre gold as community warmth.
   ========================================================================== */

:root {
  /* Brand */
  --red:        #C8102E;   /* Labor red — primary accent, CTAs, emphasis */
  --red-dark:   #8C0B21;   /* Deeper red for hover/pressed states */
  --red-wash:   #F9E8EB;   /* Very pale red for backgrounds, pill tags */

  /* Deep warm charcoal replaces navy — authoritative without being Liberal blue */
  --ink-dark:   #1F1612;   /* Almost-black with umber undertone (headings, footer) */
  --ink-mid:    #3A2E27;   /* Warm dark brown-gray (secondary surfaces) */

  /* Text */
  --ink:        #2A211D;   /* Body text, warm dark */
  --ink-soft:   #6B5E55;   /* Secondary text, warm mid-gray */

  /* Surfaces */
  --cream:      #F7F4EE;   /* Page background — warm off-white */
  --cream-2:    #EFEADB;   /* Slightly deeper cream for secondary bands */
  --paper:      #FFFFFF;   /* Cards, panels */
  --line:       #E8DFD1;   /* Borders, dividers — warm */
  --line-dark:  rgba(255,255,255,.12); /* Borders on dark surfaces */

  /* Accents */
  --gold:       #C8962E;   /* Ochre gold — community warmth, secondary accent */
  --gold-wash:  #F5ECD6;   /* Pale gold for tag backgrounds */

  /* Elevation */
  --shadow-sm:  0 1px 2px rgba(31,22,18,.06), 0 2px 6px rgba(31,22,18,.04);
  --shadow-md:  0 4px 12px rgba(31,22,18,.08), 0 12px 32px rgba(31,22,18,.06);
  --shadow-lg:  0 20px 50px rgba(31,22,18,.15);

  /* Radii */
  --radius:     14px;
  --radius-lg:  20px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ink-dark); text-decoration: none; }
a:hover { color: var(--red); }
h1,h2,h3,h4 { font-family: 'Roboto Condensed', 'Inter', sans-serif; letter-spacing: -0.01em; margin: 0 0 0.4em; color: var(--ink-dark); }
h1 { font-weight: 900; }
h2 { font-weight: 800; font-size: clamp(1.6rem, 2.5vw, 2.25rem); }
h3 { font-weight: 700; font-size: 1.2rem; }
p { margin: 0 0 1em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.4rem;
  font-family: inherit;
  font-weight: 600; font-size: .95rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-outline { background: transparent; color: var(--ink-dark); border-color: var(--ink-dark); }
.btn-outline:hover { background: var(--ink-dark); color: #fff; }
.btn-light { background: var(--paper); color: var(--ink-dark); border-color: var(--line); }
.btn-light:hover { background: var(--cream); box-shadow: var(--shadow-sm); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink-dark);
  color: #EFE6DD;
  font-size: .85rem;
}
.announce .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .5rem; padding-bottom: .5rem;
  flex-wrap: wrap; gap: .5rem;
}
.announce a { color: #EFE6DD; }
.announce a:hover { color: #fff; }
.announce .office { opacity: .9; }
.announce .contact a { margin-left: 1rem; }
@media (max-width: 700px) {
  .announce .office { display: none; }
  .announce .contact { margin-left: auto; }
}

/* ---------- Header ---------- */
header.site {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
}
header.site .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem;
  gap: 1.25rem;
  flex-wrap: nowrap;
}
.brand {
  display: flex; align-items: center; gap: .9rem;
  text-decoration: none;
}
.brand .mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-2);
  display: block;
  flex: 0 0 auto;
  box-shadow: 0 0 0 2px var(--red);
  object-fit: cover;
  object-position: center 18%;
}
img.mark { display: block; }
.brand .text h1 { font-size: 1.15rem; margin: 0; line-height: 1.1; color: var(--ink-dark); }
.brand .text p { font-size: .8rem; margin: 0; color: var(--ink-soft); }

nav.primary ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 1.15rem; align-items: center;
  flex-wrap: nowrap;
}
nav.primary ul > li {
  flex: 0 0 auto;
  white-space: nowrap;
}
nav.primary a {
  color: var(--ink-dark); font-weight: 500; font-size: .92rem;
  padding: .4rem 0;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
nav.primary a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
nav.primary a:hover::after,
nav.primary a.current::after { transform: scaleX(1); }
nav.primary a.current { color: var(--red); }

.header-cta { display: flex; align-items: center; gap: .6rem; flex: 0 0 auto; }
.brand { flex: 0 0 auto; }
nav.primary { flex: 0 1 auto; min-width: 0; }
.hamburger { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink-dark); }

@media (max-width: 1200px) {
  nav.primary, .header-cta .btn { display: none; }
  .hamburger { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--ink-dark);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.05);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(31,22,18,.92) 0%, rgba(31,22,18,.78) 45%, rgba(31,22,18,.3) 75%, rgba(31,22,18,0) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 5rem; padding-bottom: 4rem; width: 100%; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red);
  color: #fff;
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  max-width: 780px;
  margin-bottom: 1.2rem;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 620px; color: #F4EDE3;
  margin-bottom: 1.8rem;
}
.hero .cta-row { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Page-header hero (slimmer variant for interior pages) */
.page-hero {
  background: var(--ink-dark);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 0%, rgba(200,16,46,.25), transparent 55%),
              radial-gradient(ellipse at 100% 100%, rgba(200,150,46,.18), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .crumbs {
  font-size: .85rem; color: #C9BEB3; margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.page-hero .crumbs a { color: #C9BEB3; }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero h1 {
  color: #fff; font-size: clamp(2rem, 4vw, 3rem); max-width: 820px; margin-bottom: .5rem;
}
.page-hero .lede { color: #E8DCCF; font-size: 1.1rem; max-width: 720px; margin: 0; }

/* ---------- By the numbers ---------- */
.numbers {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.numbers .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 2.5rem 0;
}
.stat { text-align: center; padding: 1rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900; color: var(--red);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat .lbl {
  font-size: .9rem; color: var(--ink-soft);
  margin-top: .5rem;
}
@media (max-width: 700px) {
  .numbers .grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 1.5rem; }
}

/* ---------- Section shell ---------- */
section.band { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-head { max-width: 760px; margin-bottom: 2.5rem; }
.section-head .kicker,
.kicker {
  font-size: .85rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--red); font-weight: 700;
  margin-bottom: .5rem;
  display: block;
}
.section-head p.dek { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

/* ---------- Priorities / generic card grid ---------- */
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1000px) { .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  { .card-grid-3 { grid-template-columns: 1fr; } .card-grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px)  { .card-grid-4 { grid-template-columns: 1fr; } }

.priority-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid var(--line);
}
.priority-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.priority-card .ph {
  aspect-ratio: 4 / 3;
  background: var(--ink-mid);
  background-size: cover; background-position: center;
  position: relative;
}
.priority-card .ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(31,22,18,.4));
}
.priority-card .ph .tag {
  position: absolute; top: .8rem; left: .8rem;
  background: rgba(255,255,255,.95); color: var(--ink-dark);
  padding: .25rem .65rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  z-index: 2;
}
.priority-card .body { padding: 1.2rem 1.2rem 1.4rem; }
.priority-card h3 { color: var(--ink-dark); margin-bottom: .4rem; }
.priority-card p { font-size: .95rem; color: var(--ink-soft); margin-bottom: .8rem; }
.priority-card .read {
  font-weight: 600; color: var(--red); font-size: .9rem;
  display: inline-flex; align-items: center; gap: .3rem;
}
.priority-card .read:hover { gap: .6rem; color: var(--red-dark); }

/* ---------- Two-column wrap (about-style) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1.1fr; }
@media (max-width: 900px) { .two-col, .two-col.reverse { grid-template-columns: 1fr; } }
.photo-block {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  box-shadow: var(--shadow-md);
  position: relative;
}
.photo-block .caption {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(31,22,18,.85); color: #fff;
  padding: .6rem .9rem; border-radius: 10px;
  font-size: .82rem; backdrop-filter: blur(4px);
}
.sig {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700; color: var(--red);
  font-size: 1.1rem;
  margin-top: 1.5rem;
}
ul.bullets {
  list-style: none; padding: 0; margin: 1.5rem 0;
  display: grid; gap: .6rem;
}
ul.bullets li {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .98rem;
}
ul.bullets li::before {
  content: ""; flex: 0 0 auto;
  width: 22px; height: 22px; margin-top: 2px;
  background: var(--red); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M8.5 13.5L5 10l1.4-1.4L8.5 10.7l5.1-5.1L15 7l-6.5 6.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 18px;
}

/* ---------- News cards ---------- */
.news-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-card .ph {
  aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
  background-color: var(--ink-mid);
}
.news-card .meta {
  display: flex; gap: .8rem; align-items: center;
  padding: 1rem 1.2rem 0;
  font-size: .78rem; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
}
.news-card .meta .pill {
  background: var(--cream);
  color: var(--ink-dark);
  padding: .2rem .55rem; border-radius: 999px;
  font-size: .72rem;
}
.news-card .meta .pill.health   { background: var(--red-wash); color: var(--red-dark); }
.news-card .meta .pill.education { background: var(--gold-wash); color: #7A5A1B; }
.news-card .meta .pill.community { background: #EADFD1; color: #6A4A2A; }
.news-card h3 {
  padding: .6rem 1.2rem 0;
  font-size: 1.15rem; line-height: 1.25;
}
.news-card p {
  padding: 0 1.2rem;
  color: var(--ink-soft); font-size: .95rem;
  flex: 1;
}
.news-card .more {
  padding: 0 1.2rem 1.2rem;
  font-weight: 600; color: var(--red); font-size: .9rem;
}

.head-row {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}

/* ---------- Services / help tiles ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }
.service {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.1rem 1rem;
  display: flex; gap: .85rem; align-items: flex-start;
}
.service .ic {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--red-wash);
  border-radius: 10px;
  color: var(--red);
}
.service .ic svg { width: 22px; height: 22px; }
.service h4 {
  font-family: 'Inter', sans-serif;
  font-size: .98rem; font-weight: 700; color: var(--ink-dark);
  margin: 0 0 .25rem;
}
.service p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ---------- Events ---------- */
.event-list {
  display: grid; gap: .85rem;
}
.event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.3rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 10px;
}
@media (max-width: 700px) { .event { grid-template-columns: auto 1fr; } .event .btn { grid-column: 1 / -1; justify-self: start; } }
.event .date {
  text-align: center;
  padding: .3rem .9rem;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  min-width: 68px;
}
.event .date .d { font-family: 'Roboto Condensed', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--red); line-height: 1; }
.event .date .m { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-dark); font-weight: 700; }
.event h4 { margin: 0 0 .2rem; font-size: 1.05rem; color: var(--ink-dark); font-family: 'Inter', sans-serif; font-weight: 700; }
.event p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

/* ---------- CTA / subscribe block ---------- */
.cta-block {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(200,16,46,.28), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(200,150,46,.22), transparent 60%),
    var(--ink-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-block .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 800px) { .cta-block .wrap { grid-template-columns: 1fr; } }
.cta-block h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.cta-block p { color: #E8DCCF; font-size: 1.05rem; }
.cta-block .kicker { color: #F3B3BA; }

.cta-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
@media (max-width: 500px) { .cta-form .row { grid-template-columns: 1fr !important; } }
.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: #D4C4B4; }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus { outline: 2px solid var(--red); }
.cta-form .btn { width: 100%; justify-content: center; }
.cta-form .privacy { font-size: .78rem; color: #C7B8A9; margin: .75rem 0 0; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute; top: .2rem; left: 1rem;
  font-family: 'Roboto Condensed', serif;
  font-size: 4rem; color: var(--red);
  line-height: 1;
}
.quote p { margin: 1.4rem 0 1rem; font-size: 1rem; color: var(--ink); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: .75rem; }
.quote .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink-mid);
  background-size: cover; background-position: center;
}
.quote .who .name { font-weight: 700; color: var(--ink-dark); font-size: .92rem; }
.quote .who .role { color: var(--ink-soft); font-size: .82rem; }

/* ---------- Prose / long-form ---------- */
.prose {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}
.prose h2 { margin-top: 2.2rem; font-size: 1.5rem; }
.prose h3 { margin-top: 1.6rem; font-size: 1.2rem; }
.prose p { margin: 0 0 1.1rem; }
.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.4rem;
  border-left: 4px solid var(--red);
  background: var(--paper);
  color: var(--ink);
  font-style: italic;
  border-radius: 0 10px 10px 0;
}
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: .4rem; }

/* Archival banner (for maiden speech etc.) */
.archival {
  background: var(--gold-wash);
  border: 1px solid #E6D6A8;
  color: #6B5423;
  padding: .9rem 1.1rem;
  border-radius: 10px;
  font-size: .92rem;
  margin: 0 0 2rem;
}
.archival strong { color: #4A3810; }

/* ---------- Filter chips (updates page) ---------- */
.chips {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 2rem;
}
.chip {
  background: var(--paper); color: var(--ink-dark);
  border: 1px solid var(--line);
  padding: .5rem 1rem; border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  cursor: pointer;
}
.chip:hover { border-color: var(--ink-dark); }
.chip.active { background: var(--ink-dark); color: #fff; border-color: var(--ink-dark); }

/* ---------- Facebook cards ---------- */
.fb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .fb-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .fb-grid { grid-template-columns: 1fr; } }

.fb-grid.-nine {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .fb-grid.-nine { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .fb-grid.-nine { grid-template-columns: 1fr; } }

.fb-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-sm);
}
.fb-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.fb-card-head {
  display: flex; align-items: center; gap: .7rem;
  padding: .9rem 1.1rem .4rem;
}
.fb-card-head img {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; object-position: center 18%;
  box-shadow: 0 0 0 2px var(--red);
  flex-shrink: 0;
}
.fb-card-head .fb-meta { min-width: 0; }
.fb-card-head strong { display: block; font-weight: 700; color: var(--ink-dark); font-size: .95rem; }
.fb-card-head .fb-date {
  color: var(--ink-soft); font-size: .8rem;
  display: inline-flex; align-items: center; gap: .3rem;
}
.fb-card-head .fb-date svg { width: 11px; height: 11px; }

.fb-card-body {
  padding: .5rem 1.1rem .9rem;
  font-size: .94rem;
  color: var(--ink);
  line-height: 1.5;
}
.fb-card-body p { margin: 0; }

.fb-card-media {
  display: block;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
  background: var(--cream-2);
}
.fb-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.fb-card:hover .fb-card-media img { transform: scale(1.03); }

.fb-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 1.1rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--ink-soft);
}
.fb-card-footer .fb-reactions {
  display: inline-flex; align-items: center; gap: .8rem;
}
.fb-card-footer .fb-reactions span {
  display: inline-flex; align-items: center; gap: .3rem;
}
.fb-card-footer a {
  color: var(--red); font-weight: 600;
  display: inline-flex; align-items: center; gap: .2rem;
}
.fb-card-footer a:hover { color: var(--red-dark); }

/* ---------- Follow CTA strip ---------- */
.follow-cta {
  margin-top: 2rem;
  background: linear-gradient(135deg, #1877F2 0%, #166FE5 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex; align-items: center; gap: 1.3rem;
  box-shadow: var(--shadow-md);
}
.follow-cta.-ig {
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
}
.follow-cta .ico {
  width: 54px; height: 54px; flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border-radius: 14px;
  display: grid; place-items: center;
}
.follow-cta .ico svg { width: 30px; height: 30px; color: #fff; }
.follow-cta .copy { flex: 1; min-width: 0; }
.follow-cta .copy strong { display: block; font-size: 1.15rem; font-weight: 700; }
.follow-cta .copy p { margin: .15rem 0 0; font-size: .92rem; opacity: .92; }
.follow-cta .btn {
  background: #fff; color: #1877F2;
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 700; font-size: .9rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.follow-cta.-ig .btn { color: #E1306C; }
.follow-cta .btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
@media (max-width: 600px) {
  .follow-cta { flex-direction: column; text-align: center; }
}

/* Section head with inline CTA on the right */
.section-head.-with-cta {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1rem;
}
.section-head.-with-cta .btn-ghost {
  background: transparent;
  color: var(--ink-dark);
  border: 1px solid var(--line);
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
}
.section-head.-with-cta .btn-ghost:hover {
  border-color: var(--red); color: var(--red);
}

/* ---------- Connect page specifics ---------- */
.connect-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}
@media (max-width: 720px) { .connect-hero-stats { grid-template-columns: 1fr; } }
.stat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.stat-card .num {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-card .label { color: var(--ink-soft); font-size: .9rem; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .6rem;
}
@media (max-width: 720px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
.ig-tile {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cream-2);
  position: relative;
  transition: transform .2s ease;
}
.ig-tile:hover { transform: scale(1.03); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Live Facebook feed (iframe) ---------- */
.fb-live {
  display: grid;
  grid-template-columns: minmax(320px, 500px) 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.fb-live-frame {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  min-height: 760px;
  display: flex;
  justify-content: center;
}
.fb-live-frame iframe {
  border-radius: 8px;
  background: #F0F2F5;
}
.fb-live-aside {
  padding-top: .5rem;
}
.fb-live-aside h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.5rem;
  margin: 0 0 .6rem;
  color: var(--ink-dark);
}
.fb-live-aside p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.fb-live-aside .follow-cta {
  max-width: none;
  margin-top: 1.5rem;
}
.fb-privacy {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: .85rem;
  line-height: 1.5;
}
.fb-privacy small { font-size: .85rem; }
.fb-privacy a { color: var(--red-dark); text-decoration: underline; }
@media (max-width: 880px) {
  .fb-live {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .fb-live-frame { min-height: auto; }
  .fb-live-aside { order: 2; }
}

/* ---------- Footer ---------- */
footer.site {
  background: #15100D;
  color: #D8CDC0;
  padding: 3.5rem 0 0;
  font-size: .92rem;
}
footer.site .grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 800px) { footer.site .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { footer.site .grid { grid-template-columns: 1fr; } }
footer.site h4 {
  color: #fff; font-family: 'Inter', sans-serif;
  font-size: .85rem; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 1rem;
}
footer.site a { color: #D8CDC0; }
footer.site a:hover { color: #fff; }
footer.site ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
footer.site .brand .mark { width: 40px; height: 40px; box-shadow: 0 0 0 2px var(--red); }
footer.site .brand .text h1 { color: #fff; font-size: 1.05rem; }
footer.site .brand .text p { color: #A89B8D; }
.social-row { display: flex; gap: .6rem; margin-top: 1rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #fff;
  transition: background .2s ease;
}
.social-row a:hover { background: var(--red); }
.social-row svg { width: 18px; height: 18px; }

.foot-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 0;
  font-size: .8rem; color: #A89B8D;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.foot-bar .auth { max-width: 600px; }

/* ---------- Utilities ---------- */
.arrow::after { content: " \2192"; display: inline-block; transition: transform .15s ease; }
.arrow:hover::after { transform: translateX(3px); }
.centered { text-align: center; }
.mt-4 { margin-top: 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Help page hero band split (cream) */
.band.help-band {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.band.paper { background: var(--paper); }
.band.cream { background: var(--cream); }
