/* =============================================================================
   PAGE-SPECIFIC BLOCKS
   ========================================================================== */

/* ---- Home: Who We Are ---------------------------------------------------- */
.who {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 1rem + 2.4vw, 3rem);
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}
.who__icon {
  display: grid;
  place-items: center;
  flex: none;
  color: var(--gold-500);
}
.who__icon .icon { width: 96px; height: 96px; stroke-width: 1.35; }
.who__body {
  padding-left: clamp(1.25rem, 0.8rem + 1.6vw, 2.25rem);
  border-left: 2px solid var(--border);
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--ink-muted);
}

/* ---- Split block: text one side, photo the other ------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__body > *:last-child { margin-bottom: 0; }
.split__media img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.split__title {
  margin: 0 0 var(--space-4);
  font-size: var(--fs-h2);
  text-transform: uppercase;
  color: var(--green-600);
}
.split__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-2);
  font-family: var(--font-head);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.split__text { color: var(--ink-muted); line-height: 1.78; }

/* Framed photo with a gold offset edge ------------------------------------ */
.framed { position: relative; }
.framed::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 3px solid var(--gold-500);
  border-radius: var(--radius-md);
  z-index: -1;
}
.framed img { position: relative; }

/* ---- Mission / Vision pair ---------------------------------------------- */
.mv {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}
.mv__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--green-600);
  color: #fff;
}
.mv__item--gold { background: var(--gold-500); color: var(--ink-strong); }
.mv__badge {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.mv__item--gold .mv__badge { background: rgba(18,32,22,0.12); }
.mv__badge .icon { width: 26px; height: 26px; }
.mv__label {
  margin: 0 0 var(--space-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.85;
}
.mv__text {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
  color: inherit;
}

/* ---- Scripture pair ------------------------------------------------------ */
.scriptures { display: grid; gap: var(--space-4); margin-top: var(--space-5); }

/* ---- Values grid --------------------------------------------------------- */
.values-note {
  max-width: 68ch;
  margin: var(--space-6) auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* ---- Large decorative icon panel ---------------------------------------- */
.icon-panel {
  display: grid;
  place-items: center;
  padding: clamp(2rem, 1.2rem + 2.6vw, 3.25rem);
  border-radius: var(--radius-lg);
  background: var(--green-100);
  color: var(--green-600);
}
.icon-panel .icon { width: clamp(84px, 9vw, 120px); height: clamp(84px, 9vw, 120px); stroke-width: 1.3; }

/* ---- Notice banner ------------------------------------------------------- */
.notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius);
  background: var(--gold-tint);
  border: 1px dashed var(--gold-500);
  font-family: var(--font-head);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--gold-700);
}
.notice .icon { width: 20px; height: 20px; flex: none; }

/* ---- Publication card (books & tracts) ----------------------------------- */
.pub { padding: 0; overflow: hidden; }
.pub__cover {
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
}
/* The covers are 3D product renders on white — show them whole, not cropped. */
.pub__cover img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4%;
  transition: transform var(--dur-slow) var(--ease-out);
}
.pub:hover .pub__cover img { transform: scale(1.05); }
.pub__body { padding: var(--space-5); }
.pub__title {
  margin: 0 0 var(--space-2);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--green-600);
}
.pub__text { margin: 0; font-size: 0.9rem; line-height: 1.62; color: var(--ink-muted); }
.pub__tag {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--gold-tint);
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
}

/* ---- Soft panel ---------------------------------------------------------- */
.panel {
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--green-tint);
  border: 1px solid var(--border);
}
.panel--plain { background: var(--surface); }
.panel__title {
  margin: 0 0 var(--space-4);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--green-600);
}

/* ---- Pull quote (founder's words) ---------------------------------------- */
.pull-quote {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  padding-left: clamp(2.75rem, 1.5rem + 4vw, 4.5rem);
  border-radius: var(--radius-lg);
  background: var(--green-600);
  color: #fff;
  text-align: left;
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  left: clamp(0.9rem, 0.4rem + 1.6vw, 1.6rem);
  top: 0.1em;
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-500);
}
.pull-quote__text {
  margin: 0 0 var(--space-3);
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.pull-quote__cite {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold-500);
}

/* ---- Tabs ---------------------------------------------------------------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem;
  border-radius: var(--radius-pill);
  background: var(--green-tint);
  border: 1px solid var(--border);
  max-width: max-content;
  margin-inline: auto;
}
.tab {
  padding: 0.7rem 1.3rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tab:hover { color: var(--green-600); }
.tab.is-active {
  background: var(--green-600);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

/* ---- Group title --------------------------------------------------------- */
.group-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--border);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
}
.group-title .icon { width: 20px; height: 20px; color: var(--gold-500); }

/* ---- Empty state --------------------------------------------------------- */
.empty-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: var(--space-7) var(--space-5);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.93rem;
}
.empty-note .icon { width: 22px; height: 22px; color: var(--gold-500); flex: none; }

/* ---- Meta rows ----------------------------------------------------------- */
.meta-row { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-3); }
.meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.meta .icon { width: 14px; height: 14px; color: var(--gold-500); }

/* ---- Event card ---------------------------------------------------------- */
.event-card, .report-card { padding: 0; overflow: hidden; }
.event-card__media, .report-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--green-tint);
}
.event-card__media img, .report-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;   /* keep faces in frame when cropping */
  transition: transform var(--dur-slow) var(--ease-out);
}
.event-card:hover .event-card__media img,
.report-card:hover .report-card__media img { transform: scale(1.05); }

.date-chip {
  position: absolute;
  left: 0.85rem; top: 0.85rem;
  display: grid;
  place-items: center;
  min-width: 56px;
  padding: 0.5rem 0.55rem;
  border-radius: var(--radius);
  background: var(--gold-500);
  color: var(--ink-strong);
  font-family: var(--font-head);
  line-height: 1.05;
  box-shadow: var(--shadow);
}
.date-chip strong { font-size: 1.35rem; font-weight: 800; }
.date-chip span {
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.11em; text-transform: uppercase;
}

.event-card__type {
  position: absolute;
  right: 0.85rem; top: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(9, 60, 28, 0.88);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.event-card__body, .report-card__body { padding: var(--space-5); display: grid; gap: var(--space-3); }
.event-card__title, .report-card__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.012em;
  color: var(--green-600);
}
.report-card__title a { color: inherit; }
.report-card__title a:hover { color: var(--gold-600); }
.event-card__meta { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.event-card__meta li {
  display: flex; align-items: center; gap: 0.5rem;
  margin: 0; font-size: 0.82rem; color: var(--ink-muted);
}
.event-card__meta .icon { width: 15px; height: 15px; color: var(--gold-500); flex: none; }
.event-card__text, .report-card__text {
  margin: 0; font-size: 0.9rem; line-height: 1.62; color: var(--ink-muted);
}

/* ---- Newsletter edition -------------------------------------------------- */
.edition {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(1.5rem, 1rem + 2.4vw, 3rem);
  align-items: center;
  padding: clamp(1.4rem, 1rem + 1.8vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--green-tint);
  border: 1px solid var(--border);
}
.edition__cover img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.edition__title {
  margin: 0 0 var(--space-3);
  font-size: var(--fs-h3);
  text-transform: uppercase;
  color: var(--green-600);
}
.edition__text { margin: 0; color: var(--ink-muted); line-height: 1.72; }

.subscribe-card { text-align: left; }

/* Responsive rules for these blocks live in responsive.css. */

/* ---- Contact cards ------------------------------------------------------- */
.contact-card {
  align-items: center;
  gap: var(--space-3);
  text-align: center;
  color: inherit;
}
.contact-card:hover { color: inherit; }
.contact-card__label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-card__value {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-600);
  word-break: break-word;
}
.contact-card__value--sm { font-size: 0.9rem; font-weight: 600; color: var(--ink-muted); }
.icon-badge--wa { background: #25D366; }
.icon-badge--wa .icon { fill: currentColor; stroke: none; }
.icon-badge--big { width: 84px; height: 84px; margin-inline: auto; }
.icon-badge--big .icon { width: 40px; height: 40px; }

/* ---- Location cards ------------------------------------------------------ */
.location-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
}
.location-card__city {
  margin: 0 0 var(--space-2);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-600);
}
.location-card__text { margin: 0 0 var(--space-3); font-size: 0.92rem; color: var(--ink-muted); }

.socials--lg { justify-content: center; gap: 0.85rem; }
.socials--lg .socials__link {
  width: 52px; height: 52px;
  background: var(--green-600);
  color: #fff;
}
.socials--lg .socials__link:hover { background: var(--gold-500); color: var(--ink-strong); }
.socials--lg .socials__link .icon { width: 22px; height: 22px; }

/* ---- Single report page -------------------------------------------------- */
.report__title {
  margin: 0 0 var(--space-3);
  font-size: var(--fs-h1);
  text-transform: uppercase;
  color: var(--green-600);
}
.report__media {
  margin: var(--space-5) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.report__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 30%; }
.report__body { font-size: 1rem; line-height: 1.82; color: var(--ink-muted); }
.report__body p { margin-bottom: var(--space-4); }

/* ---- 404 ----------------------------------------------------------------- */
.error-code {
  margin: 0 0 var(--space-3);
  font-family: var(--font-head);
  font-size: clamp(4rem, 2rem + 10vw, 7.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--green-100);
}

/* -----------------------------------------------------------------------------
   "GIVEN FREE OF CHARGE" — the bold statement band on Outreach Materials
   -------------------------------------------------------------------------- */
.free-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.75rem, 1.8rem + 3.4vw, 4.25rem);
  background:
    radial-gradient(120% 130% at 12% 0%, rgba(19, 122, 51, 0.55), transparent 62%),
    linear-gradient(115deg, var(--green-800) 0%, var(--green-600) 58%, var(--green-700) 100%);
  color: #fff;
  text-align: center;
}
/* A wide gold sweep across the band, echoing the hero curve. */
.free-band::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -46%;
  height: 82%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(248, 188, 14, 0.22), transparent 70%);
  pointer-events: none;
}
.free-band__inner { position: relative; z-index: 1; }

.free-band__stamp {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--green-900);
  box-shadow: 0 0 0 8px rgba(248, 188, 14, 0.18);
}
.free-band__stamp .icon { width: 30px; height: 30px; stroke-width: 2.2; }

.free-band__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 0.32rem 0.9rem;
  border: 1px solid rgba(248, 188, 14, 0.6);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.free-band__title {
  margin: 0 0 var(--space-4);
  font-size: clamp(1.5rem, 0.9rem + 2.9vw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}
.free-band__title span   { display: block; font-size: 0.62em; letter-spacing: 0.06em; opacity: 0.9; }
.free-band__title strong { display: block; color: var(--gold-500); font-weight: 800; }

.free-band__text {
  max-width: 56ch;
  margin: 0 auto;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.08rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

/* -----------------------------------------------------------------------------
   DISPLAY LINE — the elegant statement under a heading
   (Support the Harvest Every Month · Gospel Revolution Campaign)
   -------------------------------------------------------------------------- */
.display-line {
  position: relative;
  margin: 0 0 var(--space-5);
  padding-bottom: var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.05rem + 1.1vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.005em;
  color: var(--green-600);
}
.display-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold-500);
}

/* A featured report uses a landscape image instead of a portrait cover. */
.edition__cover--wide img { aspect-ratio: 4 / 3; object-fit: cover; }
.edition__title a { color: inherit; }
.edition__title a:hover { color: var(--gold-600); }
.edition .meta-row { margin-bottom: var(--space-3); }

/* Photographs from a single outreach report */
.report__shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-6);
}
@media (max-width: 620px) {
  .report__shots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
