/* ---------- design tokens ---------- */
:root {
  --cream:        #f5efe2;
  --cream-soft:   #faf6ec;
  --sand:         #ece3cd;
  --leaf:         #6f8a5a;
  --leaf-dark:    #4f6b3e;
  --leaf-soft:    #cfd9bf;
  --terracotta:   #c97a52;
  --mustard:      #d9a441;
  --sky:          #6b87a3;
  --ink:          #2a2a26;
  --ink-soft:     #5a5a52;
  --hair:         #d9d1bc;
  --white:        #ffffff;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(40,30,10,.06);
  --shadow:    0 4px 14px rgba(40,30,10,.08);
  --shadow-lg: 0 16px 40px rgba(40,30,10,.12);

  --max-w: 1200px;

  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(2rem, 5vw + 1rem, 3.25rem); line-height: 1.05; }
h2 { font-size: clamp(1.4rem, 1.5vw + 1rem, 1.9rem); }
h3 { font-size: 1.1rem; }
p  { margin: 0; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

/* ---------- top utility bar ---------- */
.topbar {
  background: var(--cream-soft);
  border-bottom: 1px solid var(--hair);
  font-size: .85rem;
  color: var(--ink-soft);
}
.topbar .container {
  display: flex; justify-content: flex-end; gap: 18px;
  padding-block: 8px;
}
.topbar a { display: inline-flex; align-items: center; gap: 6px; padding: 4px 2px; }
.topbar a:hover { color: var(--leaf-dark); }
@media (max-width: 640px) { .topbar { display: none; } }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 239, 226, .92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hair);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { height: 48px; width: auto; flex: 0 0 auto; display: block; }
.brand-text { line-height: 1.05; }
.brand-text .b1 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 1.1rem; letter-spacing: .02em; color: var(--ink);
}
.brand-text .b2 { font-size: .72rem; color: var(--ink-soft); letter-spacing: .12em; text-transform: uppercase; }

.tagline {
  display: none;
  text-align: center; flex: 1; min-width: 0;
}
.tagline .t1 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ink); }
.tagline .t2 { font-size: .78rem; color: var(--leaf-dark); letter-spacing: .14em; text-transform: uppercase; }
@media (min-width: 900px) { .tagline { display: block; } }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; border-radius: var(--radius-sm);
  color: var(--ink-soft); font-size: .65rem;
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { background: var(--sand); color: var(--leaf-dark); }
.icon-btn .lbl { display: none; }
@media (min-width: 700px) { .icon-btn .lbl { display: block; } }

/* nav */
.nav-toggle { display: inline-flex; }
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.nav {
  background: var(--cream-soft);
  border-bottom: 1px solid var(--hair);
}
.nav-list {
  list-style: none; margin: 0; padding: 0;
  display: none;
  flex-direction: column;
}
.nav-list.open { display: flex; }
.nav-list a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--hair);
  font-weight: 500; color: var(--ink);
}
.nav-list li:last-child a { border-bottom: 0; }
.nav-list a.active { color: var(--leaf-dark); }
.nav-list a:hover { color: var(--leaf-dark); }

@media (min-width: 900px) {
  .nav-list { display: flex !important; flex-direction: row; gap: 4px; padding-block: 6px; }
  .nav-list a { border: 0; padding: 10px 14px; border-radius: 8px; }
  .nav-list a.active { background: var(--leaf); color: var(--white); }
  .nav-list a:hover { background: var(--sand); }
  .nav-list a.active:hover { background: var(--leaf-dark); color: var(--white); }
}

/* ---------- layout ---------- */
main { padding-block: 24px 48px; }
.grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px)  { .grid { grid-template-columns: 2fr 1fr; } }
@media (min-width: 1100px) { .grid { grid-template-columns: 2fr 1fr 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hair);
}
.card-head h2 { font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.card-head .link { font-size: .85rem; color: var(--leaf-dark); font-weight: 600; }
.card-head .link:hover { text-decoration: underline; }
.card-body { padding: 14px 18px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  min-height: 320px;
  display: flex; align-items: flex-end;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.45) 100%),
    linear-gradient(160deg, #b9c8d3 0%, #d9c79a 55%, #b89977 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400' preserveAspectRatio='xMidYMid slice'><defs><linearGradient id='s' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23c8d4dc'/><stop offset='1' stop-color='%23e6d5ab'/></linearGradient></defs><rect width='800' height='400' fill='url(%23s)'/><circle cx='620' cy='110' r='38' fill='%23f2c66b' opacity='.85'/><path d='M0,310 C140,250 230,290 350,260 C470,230 560,290 700,250 L800,260 L800,400 L0,400 Z' fill='%23889a78' opacity='.85'/><path d='M0,340 C160,310 260,340 380,310 C500,280 600,330 800,300 L800,400 L0,400 Z' fill='%236f8a5a'/><g transform='translate(560,140)'><rect x='-6' y='40' width='12' height='90' fill='%235a4a36'/><circle cx='-22' cy='34' r='22' fill='%23c97a52'/><circle cx='14' cy='22' r='24' fill='%23d9a441'/><circle cx='28' cy='52' r='20' fill='%236f8a5a'/><circle cx='-10' cy='10' r='20' fill='%236b87a3'/><circle cx='40' cy='12' r='16' fill='%23c97a52'/></g></svg>");
  background-size: cover; background-position: center;
}
.hero-content { max-width: 640px; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.hero h1 { color: #fff; }
.hero .lede { margin-top: 8px; font-size: 1.05rem; opacity: .95; }
.hero .scripture {
  margin-top: 12px;
  font-family: var(--font-serif); font-style: italic; font-size: 1.05rem;
  opacity: .95;
}
.hero .cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 12px 18px;
  background: var(--leaf); color: var(--white);
  border-radius: 999px; font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .15s ease;
}
.hero .cta:hover { background: var(--leaf-dark); transform: translateY(-1px); }

.hero-arrows { position: absolute; inset: 0; pointer-events: none; }
.hero-arrow {
  pointer-events: auto;
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(255,255,255,.85); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.hero-arrow:hover { background: #fff; }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }
.hero-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.hero-dots span {
  width: 7px; height: 7px; border-radius: 999px;
  background: rgba(255,255,255,.6);
}
.hero-dots span.active { background: var(--white); }

/* ---------- announcements / wards ---------- */
.list { display: flex; flex-direction: column; }
.list-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--hair);
}
.list-item:last-child { border-bottom: 0; }
.leaf-badge {
  flex: 0 0 36px; width: 36px; height: 36px;
  border-radius: 999px; background: var(--leaf-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--leaf-dark);
}
.leaf-badge svg { width: 18px; height: 18px; }
.list-item .ti { font-weight: 600; }
.list-item .meta { color: var(--ink-soft); font-size: .85rem; }

.ward-item {
  display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start;
  padding: 12px 0; border-bottom: 1px dashed var(--hair);
}
.ward-item:last-child { border-bottom: 0; }
.ward-item .pin {
  width: 36px; height: 36px; border-radius: 999px; background: var(--sand);
  display: inline-flex; align-items: center; justify-content: center; color: var(--terracotta);
}
.ward-item .ti { font-weight: 600; }
.ward-item .addr { color: var(--ink-soft); font-size: .9rem; }

/* clickable ward rows */
a.ward-item { color: inherit; transition: background .15s ease; border-radius: 8px; padding-inline: 6px; margin-inline: -6px; }
a.ward-item:hover { background: var(--cream-soft); }
a.ward-item:hover .ti { color: var(--leaf-dark); }

.ward-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.age-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}
.age-badge.young { background: #e3edf3; color: #3f6480; }
.age-badge.older { background: #f4ddcd; color: #a35a36; }

.ward-meta {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: .8rem;
  line-height: 1.4;
}
.ward-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ward-meta svg {
  color: var(--leaf);
  flex-shrink: 0;
}

.section-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--leaf-dark);
  font-weight: 600;
  font-size: .88rem;
}
.section-link:hover { text-decoration: underline; }

/* ---------- wards page (grouped by building) ---------- */
.ward-buildings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
.ward-building {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ward-building-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hair);
}
.ward-bldg-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream-soft);
  color: var(--leaf-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ward-building-head h3 {
  font-size: 1.15rem;
  margin: 0 0 2px;
  line-height: 1.2;
}
.ward-building-head .addr {
  color: var(--ink-soft);
  font-size: .88rem;
  margin: 0;
}
.ward-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ward-row {
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--cream-soft);
  border-left: 4px solid var(--leaf);
}
.ward-row.young { border-left-color: var(--sky); }
.ward-row.older { border-left-color: var(--terracotta); }
.ward-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.ward-row .ward-name {
  font-weight: 700;
  font-size: 1.02rem;
  font-family: var(--font-serif);
}
.ward-row dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 14px;
  margin: 0;
}
.ward-row dt {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
  font-weight: 700;
  align-self: center;
  white-space: nowrap;
}
.ward-row dd {
  margin: 0;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.35;
}

/* ---------- resources page ---------- */
.section-head .section-sub {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: .95rem;
  max-width: 60ch;
}
.contact-dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 14px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--cream-soft);
  border-left: 4px solid var(--leaf);
}
.contact-dl dt {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
  font-weight: 700;
  align-self: center;
  white-space: nowrap;
}
.contact-dl dd {
  margin: 0;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.35;
}

/* ---------- events ---------- */
.events-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 600px) { .events-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.event {
  border: 1px solid var(--hair); border-radius: var(--radius);
  overflow: hidden; background: var(--cream-soft);
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.event:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.event .date {
  text-align: center; padding: 8px 0;
  color: var(--white); font-weight: 700;
}
.event .date .m { display: block; font-size: .7rem; letter-spacing: .15em; }
.event .date .d { display: block; font-family: var(--font-serif); font-size: 1.8rem; line-height: 1; }
.event:nth-child(1) .date { background: var(--terracotta); }
.event:nth-child(2) .date { background: var(--mustard); }
.event:nth-child(3) .date { background: var(--sky); }
.event:nth-child(4) .date { background: var(--leaf); }
.event .body { padding: 12px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.event .body .name { font-weight: 600; font-size: .95rem; }
.event .body .when, .event .body .where { color: var(--ink-soft); font-size: .82rem; }
.event .body .where { margin-top: auto; }

/* ---------- bishopric ---------- */
.bishop-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 520px) { .bishop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .bishop-grid { grid-template-columns: repeat(4, 1fr); } }
.person {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border: 1px solid var(--hair); border-radius: var(--radius);
  background: var(--cream-soft);
}
.avatar {
  width: 52px; height: 52px; border-radius: 999px; flex: 0 0 52px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-family: var(--font-serif);
}
.person:nth-child(1) .avatar { background: var(--leaf); }
.person:nth-child(2) .avatar { background: var(--terracotta); }
.person:nth-child(3) .avatar { background: var(--sky); }
.person:nth-child(4) .avatar { background: var(--mustard); }
.person .role { font-size: .78rem; color: var(--ink-soft); }
.person .name { font-weight: 600; }
.person .contact { display: flex; gap: 10px; margin-top: 4px; color: var(--ink-soft); }
.person .contact a { display: inline-flex; align-items: center; gap: 4px; font-size: .78rem; }
.person .contact a:hover { color: var(--leaf-dark); }
.person .contact svg { width: 14px; height: 14px; }

/* ---------- the gathering place ---------- */
.gathering {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hair);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.gathering-banner {
  position: relative;
  padding: clamp(22px, 4vw, 36px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.18), transparent 50%),
    radial-gradient(circle at 15% 100%, rgba(217,164,65,.35), transparent 55%),
    linear-gradient(135deg, #4f6b3e 0%, #6f8a5a 55%, #b67a52 100%);
}
.gathering-banner .eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  opacity: .9; font-weight: 700;
}
.gathering-banner h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 2.2vw + 1rem, 2.4rem);
  margin-top: 6px;
}
.gathering-banner .lede {
  margin-top: 10px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.08rem;
  max-width: 640px;
}
.gathering-banner .sub {
  margin-top: 6px; opacity: .95;
  max-width: 720px; font-size: .95rem;
}
.gathering-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  font-weight: 600; font-size: .9rem;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn.primary { background: var(--white); color: var(--leaf-dark); box-shadow: var(--shadow); }
.btn.primary:hover { background: var(--cream); transform: translateY(-1px); }
.btn.ghost {
  background: rgba(255,255,255,.12); color: var(--white);
  border: 1px solid rgba(255,255,255,.45);
}
.btn.ghost:hover { background: rgba(255,255,255,.22); }

.gathering-body { padding: clamp(18px, 3vw, 28px); }

.pillars {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: var(--cream-soft);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 16px;
}
.pillar .ic {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 10px;
}
.pillar:nth-child(1) .ic { background: var(--leaf); }
.pillar:nth-child(2) .ic { background: var(--mustard); }
.pillar:nth-child(3) .ic { background: var(--terracotta); }
.pillar .ic svg { width: 18px; height: 18px; }
.pillar h3 { font-size: 1.05rem; }
.pillar p { color: var(--ink-soft); font-size: .9rem; margin-top: 4px; line-height: 1.45; }

.gathering-activities { margin-top: 22px; }
.gathering-activities .label {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft); margin-bottom: 10px;
}
.activities {
  display: grid; gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px)  { .activities { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .activities { grid-template-columns: repeat(6, 1fr); } }
.activity {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 8px; padding: 12px;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  background: var(--white);
  font-size: .82rem; font-weight: 500;
  color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.activity:hover {
  transform: translateY(-2px);
  border-color: var(--leaf-soft);
  box-shadow: var(--shadow);
  color: var(--leaf-dark);
}
.activity .ic {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--leaf-soft); color: var(--leaf-dark);
  display: inline-flex; align-items: center; justify-content: center;
}
.activity .ic svg { width: 16px; height: 16px; }

/* ---------- site map tiles ---------- */
.tiles-section { margin-top: 28px; }
.tiles-section h2 { margin-bottom: 14px; letter-spacing: .14em; font-size: .85rem; text-transform: uppercase; color: var(--ink-soft); font-family: var(--font-sans); font-weight: 700; }
.tiles {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .tiles { grid-template-columns: repeat(4, 1fr); } }
.tile {
  background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.tile-head {
  padding: 8px 12px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--white); background: var(--leaf);
}
.tile:nth-child(3n+1) .tile-head { background: var(--leaf); }
.tile:nth-child(3n+2) .tile-head { background: var(--terracotta); }
.tile:nth-child(3n+3) .tile-head { background: var(--sky); }
.tile-art {
  height: 120px;
  background:
    linear-gradient(180deg, var(--cream-soft) 0%, var(--sand) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--leaf-dark);
}
.tile-art svg { width: 56px; height: 56px; opacity: .55; }
.tile-body { padding: 12px; color: var(--ink-soft); font-size: .88rem; flex: 1; }

/* ---------- features strip ---------- */
.features {
  margin-top: 36px;
  background: var(--cream-soft);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding-block: 22px;
}
.features-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .features-grid { grid-template-columns: repeat(6, 1fr); } }
.feature {
  display: flex; gap: 12px; align-items: flex-start;
}
.feature .ic {
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--hair);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--leaf-dark);
}
.feature .ic svg { width: 18px; height: 18px; }
.feature .ti { font-weight: 600; font-size: .9rem; }
.feature .sub { color: var(--ink-soft); font-size: .8rem; line-height: 1.4; }

/* ---------- footer ---------- */
footer {
  background: var(--cream-soft);
  border-top: 1px solid var(--hair);
  padding-block: 24px;
  color: var(--ink-soft);
}
.footer-inner {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: auto 1fr auto; }
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .tmp {
  width: 36px; height: 36px; border-radius: 8px; background: var(--sand);
  display: inline-flex; align-items: center; justify-content: center; color: var(--leaf-dark);
}
.footer-brand .ft { font-size: .8rem; }
.footer-brand .ft b { display: block; color: var(--ink); font-weight: 700; }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  font-size: .9rem;
}
.footer-links a:hover { color: var(--leaf-dark); }
.socials { display: flex; gap: 8px; justify-content: center; }
.socials a {
  width: 36px; height: 36px; border-radius: 999px; background: var(--white);
  border: 1px solid var(--hair);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--leaf-dark);
}
.socials a:hover { background: var(--leaf); color: var(--white); border-color: var(--leaf); }
.socials svg { width: 16px; height: 16px; }
.copyright {
  text-align: center; margin-top: 12px; font-size: .8rem;
}

/* ---------- utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   Sub-page styles (used by gathering.html and any future detail page)
   =================================================================== */

/* breadcrumbs */
.crumbs {
  padding-block: 18px 4px;
  font-size: .85rem;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.crumbs a { color: var(--leaf-dark); font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span[aria-current] { color: var(--ink); }

/* page hero (sub-page) */
.page-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  padding: clamp(28px, 5vw, 56px) clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.18), transparent 50%),
    radial-gradient(circle at 15% 100%, rgba(217,164,65,.4), transparent 55%),
    linear-gradient(135deg, #4f6b3e 0%, #6f8a5a 55%, #b67a52 100%);
  margin-top: 8px;
}
.page-hero-content { max-width: 720px; }
.page-hero .eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; opacity: .92;
}
.page-hero h1 { color: var(--white); margin-top: 6px; }
.page-hero .lede {
  margin-top: 12px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.15rem; max-width: 640px;
}

/* generic section spacing on sub-pages */
.section { padding-block: clamp(28px, 5vw, 48px); }

/* section heading */
.section-head {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 18px; max-width: 760px;
}
.section-head .kicker {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: var(--leaf-dark);
}
.section-head h2 { font-size: clamp(1.4rem, 1.5vw + 1rem, 1.9rem); line-height: 1.2; }
.section-head .section-link { margin-top: 0; }

/* "What It Is" 3-up cards */
.what-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .what-grid { grid-template-columns: repeat(3, 1fr); } }
.what-card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.what-card .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--leaf-soft); color: var(--leaf-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.what-card .ic svg { width: 22px; height: 22px; }
.what-card h3 { font-size: 1.08rem; }
.what-card p { color: var(--ink-soft); font-size: .92rem; margin-top: 6px; line-height: 1.5; }

/* Weekly rhythm: featured event + recurring schedule */
.rhythm-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .rhythm-grid { grid-template-columns: 2fr 1fr; } }

.featured-event {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.featured-event-tag {
  position: absolute; top: 14px; right: 14px;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: var(--mustard); color: var(--white);
  padding: 4px 10px; border-radius: 999px;
}
.featured-event-date {
  background: var(--leaf); color: var(--white);
  border-radius: var(--radius); padding: 14px 18px;
  text-align: center; min-width: 84px;
}
.featured-event-date .m { display: block; font-size: .72rem; letter-spacing: .14em; font-weight: 700; }
.featured-event-date .d { display: block; font-family: var(--font-serif); font-size: 2.2rem; line-height: 1; }
.featured-event-body h3 { font-size: 1.15rem; }
.featured-event-body .meta { color: var(--leaf-dark); font-weight: 600; font-size: .88rem; margin-top: 4px; }
.featured-event-body p { color: var(--ink-soft); font-size: .95rem; margin-top: 8px; line-height: 1.5; }
.btn.ghost-dark {
  background: var(--cream-soft); color: var(--leaf-dark);
  border: 1px solid var(--hair);
}
.btn.ghost-dark:hover { background: var(--sand); }

.schedule-card {
  background: var(--cream-soft);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.schedule-card h3 { font-size: 1rem; margin-bottom: 10px; }
.schedule-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.schedule-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--hair);
}
.schedule-list li:last-child { border-bottom: 0; }
.schedule-list .day {
  text-align: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--leaf); color: var(--white);
  padding: 6px 0; border-radius: 8px;
}
.schedule-list .row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  font-size: .92rem;
}
.schedule-list .row .title { font-weight: 600; }
.schedule-list .row .when { color: var(--ink-soft); font-size: .82rem; }

/* photo highlights */
.photo-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .photo-grid { grid-template-columns: repeat(4, 1fr); } }
.photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  padding: 14px;
  display: flex; align-items: flex-end;
  color: var(--white); font-weight: 600; font-size: .88rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.55);
  border: 1px solid var(--hair);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.photo:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.photo.p1 { background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55)), linear-gradient(135deg, #6b87a3, #4f6b3e); }
.photo.p2 { background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55)), linear-gradient(135deg, #d9a441, #c97a52); }
.photo.p3 { background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55)), linear-gradient(135deg, #c97a52, #6b87a3); }
.photo.p4 { background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55)), linear-gradient(135deg, #6f8a5a, #d9a441); }

/* FAQ accordion (using <details>) */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .15s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  padding: 14px 18px;
  list-style: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--leaf-dark);
  line-height: 1;
  transition: transform .15s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--leaf-dark); }
.faq .ans {
  padding: 0 18px 16px;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.55;
}

/* location & contact */
.location-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .location-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.map-stub {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), transparent 40%),
    linear-gradient(135deg, var(--cream-soft), var(--sand));
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  color: var(--terracotta);
}
.map-stub svg { width: 64px; height: 64px; opacity: .7; }
.location-info {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.location-info h3 { font-size: 1.2rem; }
.location-info .addr { color: var(--ink-soft); line-height: 1.5; }
.contact-block { margin-top: 6px; border-top: 1px dashed var(--hair); padding-top: 14px; }
.contact-block h4 { font-size: .95rem; }
.contact-block p { color: var(--ink-soft); font-size: .9rem; margin-top: 2px; }
.contact-row { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; font-size: .9rem; }
.contact-row a { display: inline-flex; align-items: center; gap: 6px; color: var(--leaf-dark); font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }

/* ===================================================================
   Homepage hero CTAs (multi-button row)
   =================================================================== */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cta-ghost {
  background: rgba(255,255,255,.15) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: none !important;
}
.cta-ghost:hover { background: rgba(255,255,255,.28) !important; transform: translateY(-1px); }

/* ===================================================================
   Events page
   =================================================================== */

/* "This Week" strip */
.this-week {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .this-week { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .this-week { grid-template-columns: repeat(4, 1fr); } }
.this-week-card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-left: 4px solid var(--leaf);
  border-radius: var(--radius);
  padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.this-week-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.this-week-card strong { font-size: .98rem; }
.this-week-card .meta { color: var(--ink-soft); font-size: .82rem; }

/* type badges (reusable) */
.badge {
  display: inline-flex; align-items: center;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 999px;
  width: fit-content;
}
.badge.t-stake { background: var(--leaf); color: var(--white); }
.badge.t-gp    { background: var(--mustard); color: var(--white); }
.badge.t-ward  { background: var(--terracotta); color: var(--white); }
.badge.t-com   { background: #8a7b5d; color: var(--white); }
.badge.t-serv  { background: #a8954f; color: var(--white); }
.badge.t-soc   { background: var(--sky); color: var(--white); }
.badge.t-devo  { background: #5b7793; color: var(--white); }

/* Filter bar */
.filter-bar {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 12px;
  background: var(--cream-soft);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--hair);
  font-size: .82rem; font-weight: 600;
  color: var(--ink-soft);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.filter-chip:hover { background: var(--sand); color: var(--ink); }
.filter-chip.active {
  background: var(--leaf); color: var(--white); border-color: var(--leaf);
}

/* Ward filter row — sits below the primary type/view row */
.ward-filter-bar {
  justify-content: flex-start;
  gap: 10px;
  margin-top: -10px;
  margin-bottom: 18px;
  padding: 10px 12px;
  background: var(--cream-soft, var(--sand));
}
.ward-filter-bar .filter-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.ward-select {
  flex: 1 1 220px;
  max-width: 320px;
  min-height: 38px;
  padding: 8px 36px 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background-color: var(--white);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%2375706a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 1.5 6 6.5 11 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ward-select:hover { border-color: var(--leaf-soft); }
.ward-select:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(111, 138, 90, .18);
}
.view-toggle { display: flex; gap: 2px; padding: 4px; background: var(--white); border: 1px solid var(--hair); border-radius: 10px; }
.view-btn {
  width: 36px; height: 32px; border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
}
.view-btn svg { width: 18px; height: 18px; }
.view-btn:hover { background: var(--cream-soft); color: var(--ink); }
.view-btn.active { background: var(--leaf); color: var(--white); }

/* Event grid */
.event-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .event-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .event-grid { grid-template-columns: repeat(3, 1fr); } }

.event-grid.list-view { grid-template-columns: 1fr; }
.event-grid.list-view .event-card { flex-direction: row; align-items: stretch; }
.event-grid.list-view .event-card-img { width: 160px; flex: 0 0 160px; min-height: auto; }
@media (max-width: 600px) {
  .event-grid.list-view .event-card { flex-direction: column; }
  .event-grid.list-view .event-card-img { width: auto; flex: 0 0 auto; }
}

.event-card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
  color: inherit;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.event-card-img {
  min-height: 110px;
  padding: 12px;
  display: flex; align-items: flex-start;
}
.event-card-img.tile-leaf    { background: linear-gradient(135deg, #cfd9bf, #6f8a5a); }
.event-card-img.tile-mustard { background: linear-gradient(135deg, #f0d590, #d9a441); }
.event-card-img.tile-sky     { background: linear-gradient(135deg, #c4d3df, #6b87a3); }
.event-card-img.tile-terra   { background: linear-gradient(135deg, #ecb89d, #c97a52); }
.event-card-body { padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.event-card-body .ev-date { color: var(--leaf-dark); font-size: .8rem; font-weight: 700; letter-spacing: .04em; }
.event-card-body h3 { font-size: 1.05rem; margin-top: 2px; }
.event-card-body .ev-loc, .event-card-body .ev-host {
  color: var(--ink-soft); font-size: .85rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.event-card-body .ev-loc svg { width: 13px; height: 13px; }

.empty {
  text-align: center; padding: 40px 20px;
  color: var(--ink-soft); background: var(--cream-soft);
  border: 1px dashed var(--hair); border-radius: var(--radius);
}

.calendar-stub {
  padding: 60px 30px; text-align: center;
  background: var(--cream-soft);
  border: 1px dashed var(--hair);
  border-radius: var(--radius);
  color: var(--ink-soft);
}
.calendar-stub svg { margin-bottom: 14px; opacity: .5; }
.calendar-stub p { margin-bottom: 6px; }
.calendar-stub .btn { margin-top: 14px; }

/* ===================================================================
   Success Formula page
   =================================================================== */
.intro-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .intro-grid { grid-template-columns: 1fr 1fr; } }
.intro-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--cream-soft);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.intro-card .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--leaf); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 44px;
}
.intro-card .ic svg { width: 22px; height: 22px; }
.intro-card p { color: var(--ink); font-size: 1rem; line-height: 1.5; }

/* Three pillars (Gather / Grow / Give) */
.formula-pillars {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .formula-pillars { grid-template-columns: repeat(3, 1fr); } }
.formula-pillar {
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 240px;
  box-shadow: var(--shadow);
}
.pillar-gather { background: linear-gradient(160deg, #6f8a5a, #4f6b3e); }
.pillar-grow   { background: linear-gradient(160deg, #d9a441, #b88433); }
.pillar-give   { background: linear-gradient(160deg, #c97a52, #a35a36); }
.formula-pillar .pillar-head { display: flex; align-items: baseline; gap: 10px; }
.formula-pillar .pillar-num {
  font-family: var(--font-serif); font-size: 2rem;
  opacity: .55; line-height: 1;
}
.formula-pillar h3 { color: var(--white); font-size: 1.5rem; }
.formula-pillar ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.formula-pillar li {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem;
}
.formula-pillar li svg { width: 16px; height: 16px; opacity: .9; flex: 0 0 16px; }

/* Will You? section */
.will-you {
  background: var(--cream-soft);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}
.will-you-head { text-align: center; max-width: 640px; margin: 0 auto 20px; }
.will-you-head .kicker { color: var(--leaf-dark); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.will-you-head h2 { font-family: var(--font-serif); font-size: clamp(2rem, 3vw + 1rem, 2.8rem); margin-top: 6px; }
.will-you-head p { color: var(--ink-soft); margin-top: 8px; }
.will-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .will-grid { grid-template-columns: repeat(3, 1fr); } }
.will-card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border-top: 4px solid var(--leaf);
}
.will-card.w-gather { border-top-color: var(--leaf); }
.will-card.w-grow   { border-top-color: var(--mustard); }
.will-card.w-give   { border-top-color: var(--terracotta); }
.will-card .ic {
  width: 52px; height: 52px; border-radius: 999px;
  margin: 0 auto 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
}
.will-card.w-gather .ic { background: var(--leaf); }
.will-card.w-grow .ic { background: var(--mustard); }
.will-card.w-give .ic { background: var(--terracotta); }
.will-card .ic svg { width: 24px; height: 24px; }
.will-card h3 { font-family: var(--font-serif); font-size: 1.3rem; }
.will-card p { color: var(--ink-soft); margin-top: 8px; font-size: .92rem; }

/* Download card */
.download-card {
  display: flex; gap: 22px;
  background: linear-gradient(135deg, var(--cream-soft), var(--sand));
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.download-icon {
  width: 80px; height: 80px; flex: 0 0 80px;
  border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--hair);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--terracotta);
}
.download-body { flex: 1; min-width: 220px; }
.download-body h3 { font-size: 1.2rem; }
.download-body p { color: var(--ink-soft); margin-top: 6px; }

/* Reflection grid */
.reflection-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .reflection-grid { grid-template-columns: repeat(3, 1fr); } }
.reflection-card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 18px;
}
.reflection-card h4 { font-size: 1rem; margin-bottom: 8px; }
.reflection-card ul { list-style: disc; padding-left: 18px; color: var(--ink-soft); font-size: .92rem; line-height: 1.55; }
.reflection-card li { margin-top: 4px; }
.reflection-card .commitment-row { color: var(--ink-soft); margin-top: 6px; font-size: .92rem; }

/* Related content */
.related-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 16px;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.related-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: var(--leaf-soft); color: var(--leaf-dark);
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.related-card h4 { font-size: 1rem; }
.related-card p { color: var(--ink-soft); font-size: .88rem; margin-top: 6px; line-height: 1.5; }

/* ===================================================================
   New Here? page
   =================================================================== */
.quick-start {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .quick-start { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .quick-start { grid-template-columns: repeat(3, 1fr); } }
.qs-card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  position: relative;
}
.qs-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--leaf-soft); }
.qs-num {
  position: absolute; top: 14px; right: 16px;
  font-family: var(--font-serif); font-size: 1.5rem; line-height: 1;
  color: var(--leaf-soft); font-weight: 700;
}
.qs-card h3 { font-size: 1.05rem; padding-right: 28px; }
.qs-card p { color: var(--ink-soft); font-size: .9rem; line-height: 1.5; }

.prose-card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 760px;
}
.prose-card p { margin-bottom: 12px; line-height: 1.65; }
.prose-card strong { color: var(--leaf-dark); }
.prose-card .section-link { margin-top: 4px; }

.find-ward-card {
  background: linear-gradient(135deg, var(--cream-soft), var(--sand));
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
}
.find-ward-card > p { line-height: 1.55; }
.age-split {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  margin-block: 18px;
}
@media (min-width: 600px) { .age-split { grid-template-columns: 1fr 1fr; } }
.age-split > div {
  background: var(--white); border: 1px solid var(--hair);
  border-radius: var(--radius); padding: 16px;
}
.age-split h4 { font-size: .9rem; color: var(--leaf-dark); letter-spacing: .04em; margin-bottom: 8px; }
.age-split ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-weight: 500; }
.age-split li {
  padding: 6px 0; border-bottom: 1px dashed var(--hair);
}
.age-split li:last-child { border-bottom: 0; }

.sunday-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .sunday-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .sunday-grid { grid-template-columns: repeat(4, 1fr); } }
.sunday-step {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--leaf); color: var(--white);
  font-weight: 700; font-size: .9rem;
  margin-bottom: 10px;
}
.sunday-step h4 { font-size: 1rem; }
.sunday-step p { color: var(--ink-soft); font-size: .88rem; margin-top: 6px; line-height: 1.5; }

.callout {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--leaf-soft);
  border-left: 4px solid var(--leaf);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: .95rem;
}
.callout strong { color: var(--leaf-dark); }

.meet-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .meet-grid { grid-template-columns: repeat(3, 1fr); } }
.meet-card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 20px;
}
.meet-card .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--leaf-soft); color: var(--leaf-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.meet-card .ic svg { width: 22px; height: 22px; }
.meet-card h4 { font-size: 1.05rem; }
.meet-card p { color: var(--ink-soft); font-size: .9rem; margin-top: 6px; line-height: 1.5; }

.contact-callout {
  background: linear-gradient(135deg, #4f6b3e 0%, #6f8a5a 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 800px) { .contact-callout { grid-template-columns: 1fr auto; } }
.contact-callout h3 { color: var(--white); font-size: 1.4rem; }
.contact-callout p { opacity: .92; margin-top: 6px; max-width: 480px; }
.contact-callout .btn.primary { background: var(--white); color: var(--leaf-dark); }
.contact-callout .btn.ghost-dark { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.5); }
.contact-callout .btn.ghost-dark:hover { background: rgba(255,255,255,.28); }
