:root {
  /* From evangelism photos: Light of the World navy, sunburst gold, red shirts, beach sand */
  --ink: #121820;
  --ink-soft: #3a4550;
  --paper: #f5efe4;
  --paper-2: #ebe3d4;
  --navy: #0a1628;
  --navy-mid: #132840;
  --gold: #e8b923;
  --gold-soft: #f2d56b;
  --gold-deep: #7a5220;
  --signal-red: #c62828;
  --sand: #d9c7a8;
  --line: rgba(18, 24, 32, 0.12);
  --max: 68rem;
  --font-display: "Source Sans 3", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-prose: "Source Serif 4", Georgia, "Times New Roman", serif;
  /* Expand Heaven wordmark + street-sign boards ONLY */
  --font-brand: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --font-scripture: var(--font-prose);
  --font-prayer: var(--font-prose);
  --hero-photo: url("../images/street-king-repent.jpg");
  --mission-photo: url("../images/street-conversation.jpg");
  --band-photo: url("../images/witness-table.jpg");
  --field-1: url("../images/street-king-repent.jpg");
  --field-2: url("../images/street-conversation.jpg");
  --field-3: url("../images/witness-table.jpg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(232, 185, 35, 0.12), transparent 55%),
    linear-gradient(180deg, #e8eef4 0%, var(--paper) 28%, var(--paper-2) 100%);
  line-height: 1.55;
  min-height: 100vh;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: var(--navy-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--signal-red);
}

.shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: white;
  padding: 0.5rem 0.75rem;
}

.serve-all-bar {
  margin: 0;
  padding: 0.45rem 1rem;
  text-align: center;
  background: var(--signal-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(245, 239, 228, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

/* Wordmark typography — every visible “Expand Heaven” uses this font stack */
.site-brand,
.brand-sign-text,
.brand-mark,
.footer-brand {
  font-family: var(--font-brand);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.05;
}

.brand-sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 15.5rem);
  padding: 0.42rem 1.35rem 0.48rem;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1;
  color: #0a0a0a;
  background:
    radial-gradient(ellipse 80% 120% at 50% 0%, rgba(255, 255, 255, 0.5), transparent 55%),
    linear-gradient(180deg, #fff176 0%, #ffea00 45%, #f9a825 100%);
  border: 3px solid #0a0a0a;
  box-shadow:
    3px 4px 0 #0a0a0a,
    6px 8px 0 rgba(198, 40, 40, 0.3),
    0 0 0 1px #fff inset,
    0 10px 22px rgba(10, 22, 40, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  filter: saturate(1.15) contrast(1.05);
}

.brand-sign:hover {
  color: #0a0a0a;
  transform: rotate(0deg) translateY(-2px);
  box-shadow:
    4px 6px 0 #0a0a0a,
    8px 10px 0 rgba(198, 40, 40, 0.35),
    0 0 0 1px #fff inset,
    0 14px 26px rgba(10, 22, 40, 0.32);
  filter: saturate(1.25) contrast(1.08);
}

.brand-sign-text {
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  letter-spacing: 0.16em;
  white-space: nowrap;
  color: #b71c1c;
  -webkit-text-stroke: 0.4px #0a0a0a;
  text-shadow:
    0 1px 0 #fff59d,
    1px 2px 0 rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

/* Full-bleed field photo hero */
.hero {
  position: relative;
  min-height: min(92vh, 46rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f8f6f2;
}

.hero-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.72) 45%, rgba(10, 22, 40, 0.88) 100%),
    var(--hero-photo) center / cover no-repeat;
  transform-origin: center;
  animation: sky-shift 22s ease-in-out infinite alternate;
}

.hero-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(232, 185, 35, 0.22), transparent 60%);
  pointer-events: none;
}

@keyframes sky-shift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  animation: rise 0.9s ease-out both;
}

.brand-mark {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  max-width: 22ch;
  color: var(--gold-soft);
  letter-spacing: -0.01em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 36ch;
  font-size: 1.08rem;
  color: rgba(248, 246, 242, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-soft);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: #f8f6f2;
  border-color: rgba(248, 246, 242, 0.45);
}

.btn-ghost:hover {
  background: rgba(248, 246, 242, 0.12);
  color: #fff;
}

/* Mission band — beach cross / outdoor witness */
.mission-band {
  position: relative;
  min-height: 18rem;
  display: grid;
  align-items: center;
  color: #f8f6f2;
  overflow: hidden;
}

.mission-band-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.55) 55%, rgba(10, 22, 40, 0.35) 100%),
    var(--mission-photo) center / cover no-repeat;
}

.mission-band-inner {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  max-width: 34rem;
}

.mission-band h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mission-band p {
  margin: 0;
  color: rgba(248, 246, 242, 0.88);
  font-size: 1.05rem;
}

.field-strip {
  margin: 0;
  background: var(--navy);
}

.field-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 720px) {
  .field-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.field-shot {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.field-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.field-shot:hover img {
  transform: scale(1.04);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  position: relative;
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
}

.section-sunburst {
  position: relative;
  color: #f8f6f2;
  overflow: hidden;
}

.section-sunburst-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.82), rgba(10, 22, 40, 0.9)),
    var(--band-photo) center / cover no-repeat;
}

.section-sunburst .shell,
.section-sunburst .section-head,
.section-sunburst .eyebrow a,
.section-sunburst .plain-list a,
.section-sunburst .plain-list span {
  position: relative;
  z-index: 1;
}

.section-sunburst .section-head p,
.section-sunburst .plain-list span,
.section-sunburst .eyebrow a {
  color: rgba(248, 246, 242, 0.78);
}

.section-sunburst .plain-list a {
  color: #fff;
}

.section-sunburst .plain-list li + li {
  border-top-color: rgba(248, 246, 242, 0.18);
}

.section-sunburst .eyebrow a:hover,
.section-sunburst .plain-list a:hover {
  color: var(--gold-soft);
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  line-height: 1.15;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.section-head p,
.page-intro {
  margin: 0;
  color: var(--ink-soft);
  max-width: 42ch;
}

.page-hero {
  padding: 3rem 0 1.25rem;
  animation: rise 0.7s ease-out both;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.page-intro {
  margin-top: 0.75rem;
  font-size: 1.08rem;
}

.crumb {
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.crumb a:hover {
  color: var(--signal-red);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.eyebrow a {
  color: var(--ink-soft);
  text-decoration: none;
}

.eyebrow a:hover {
  color: var(--ink);
}

.topic-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .topic-rail {
    grid-template-columns: 1fr 1fr;
  }
}

.topic-link {
  display: block;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.25s ease;
}

.topic-link:hover {
  padding-left: 0.35rem;
}

.topic-title,
.topic-link-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.topic-summary,
.topic-link-summary {
  display: block;
  color: var(--ink-soft);
}

.latest-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .latest-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.plain-list,
.content-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plain-list li + li,
.content-list li + li {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.plain-list a,
.content-list .list-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.015em;
}

.plain-list span,
.list-summary {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.content-list a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.content-list time {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.empty {
  color: var(--ink-soft);
}

.empty code,
.footer-note code {
  font-size: 0.9em;
  background: rgba(18, 24, 32, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Scripture highlight — gold panel, always. Markdown `>` → blockquote in .prose */
.prose blockquote,
.prayer-body blockquote,
blockquote.scripture,
.scripture {
  margin: 1.35rem 0;
  padding: 1rem 1.15rem 1.05rem 1.2rem;
  background:
    linear-gradient(135deg, rgba(255, 241, 180, 0.55), rgba(255, 248, 220, 0.95)),
    linear-gradient(180deg, #fff8e1 0%, #f5e6b8 100%);
  border: 1px solid rgba(184, 134, 11, 0.35);
  border-left: 5px solid var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 6px 18px rgba(10, 22, 40, 0.06);
  color: var(--ink);
  font-family: var(--font-scripture);
  font-size: 1.08em;
  font-weight: 500;
  font-style: italic;
  line-height: 1.65;
  position: relative;
}

.prose blockquote::before,
.prayer-body blockquote::before,
blockquote.scripture::before,
.scripture::before {
  content: "Scripture";
  display: block;
  margin: 0 0 0.45rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  opacity: 0.9;
}

.prose blockquote p,
.prayer-body blockquote p,
blockquote.scripture p,
.scripture p {
  margin: 0;
}

.prose blockquote p + p,
.prayer-body blockquote p + p,
.scripture p + p {
  margin-top: 0.65rem;
}

.prose {
  max-width: 42rem;
  font-family: var(--font-prose);
  font-size: 1.1rem;
  line-height: 1.7;
  padding-bottom: 3rem;
}

.prose .gospel-colors {
  display: flex;
  gap: 0.45rem;
  margin: 1.5rem 0 2rem;
  max-width: 22rem;
}

.prose .gc {
  flex: 1;
  aspect-ratio: 1;
  border: 2px solid #0a0a0a;
  box-shadow: 2px 2px 0 rgba(10, 22, 40, 0.25);
}

.prose .gc-gold {
  background: linear-gradient(160deg, #ffe566, #f0c000);
}

.prose .gc-dark {
  background: #1a1a1a;
}

.prose .gc-red {
  background: linear-gradient(160deg, #e53935, #b71c1c);
}

.prose .gc-white {
  background: #fafafa;
}

.prose .gc-green {
  background: linear-gradient(160deg, #66bb6a, #2e7d32);
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 2rem;
}

/* Prayer text highlight — larger serif, always inside the CTA panel */
.prayer-body {
  font-family: var(--font-prayer);
  font-size: 1.28rem;
  line-height: 1.75;
  font-weight: 500;
}

/* Prayers — call-to-action treatment */
.list-page--prayers {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(198, 40, 40, 0.18), transparent 55%),
    linear-gradient(180deg, #0a1628 0%, #132840 42%, #1a2433 100%);
  color: #f8f6f2;
  padding-bottom: 3rem;
}

.list-page--prayers .page-hero--prayer-cta h1,
.list-page--prayers .page-intro {
  color: #f8f6f2;
}

.list-page--prayers .page-intro {
  opacity: 0.88;
}

.prayer-kicker {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.prayer-kicker--light {
  color: var(--gold-soft);
}

.section--prayer-cta {
  background: transparent;
  padding-top: 1rem;
}

.content-list--prayers li + li {
  border-top-color: rgba(248, 246, 242, 0.16);
}

.content-list--prayers .list-title {
  color: #fff;
}

.content-list--prayers .list-summary,
.content-list--prayers time {
  color: rgba(248, 246, 242, 0.72);
}

.content-list--prayers a:hover .list-title {
  color: var(--gold-soft);
}

.list-kicker {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.plain-list .list-kicker {
  margin-top: 0;
  margin-bottom: 0.2rem;
}

.content-list--prayers .list-kicker,
.section-sunburst .plain-list .list-kicker {
  color: var(--gold);
}

.prayer-page {
  position: relative;
  isolation: isolate;
  min-height: 70vh;
  padding-bottom: 4rem;
  color: #f8f6f2;
}

.prayer-page-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 45% at 80% 10%, rgba(232, 185, 35, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(198, 40, 40, 0.22), transparent 55%),
    linear-gradient(165deg, #071018 0%, #0a1628 40%, #1a1020 100%);
}

.prayer-hero {
  padding: 3rem 0 1.5rem;
}

.prayer-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.prayer-date {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
}

.crumb--on-dark,
.page-intro--on-dark {
  color: rgba(248, 246, 242, 0.78);
}

.crumb--on-dark a {
  color: var(--gold-soft);
  text-decoration: none;
}

.crumb--on-dark a:hover {
  color: #fff;
}

.prayer-cta-panel {
  margin-top: 0.5rem;
  padding: 1.75rem 1.5rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 220, 0.98), rgba(245, 230, 184, 0.96));
  border: 3px solid #0a0a0a;
  outline: 2px solid var(--signal-red);
  outline-offset: 3px;
  box-shadow:
    4px 6px 0 rgba(0, 0, 0, 0.45),
    0 18px 40px rgba(0, 0, 0, 0.35);
  color: var(--ink);
  max-width: 40rem;
}

.prayer-page--featured .prayer-cta-panel {
  max-width: 46rem;
}

.prayer-feature {
  display: block;
  margin: 0 0 2.25rem;
  padding: 1.5rem 1.35rem 1.25rem;
  max-width: 40rem;
  text-decoration: none;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 220, 0.98), rgba(245, 230, 184, 0.96));
  border: 3px solid #0a0a0a;
  outline: 2px solid var(--signal-red);
  outline-offset: 3px;
  box-shadow:
    4px 6px 0 rgba(0, 0, 0, 0.45),
    0 18px 40px rgba(0, 0, 0, 0.35);
}

.prayer-feature + .prayer-feature {
  margin-top: -1rem;
}

.prayer-feature-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
}

.prayer-feature-summary {
  display: block;
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.prayer-feature time {
  display: block;
  margin-top: 0.65rem;
  color: var(--gold-deep);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.prayer-feature:hover .prayer-feature-title {
  color: var(--signal-red);
}

.prayer-rebuke {
  margin: 1.6rem 0;
  padding: 0.85rem 0.75rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal-red);
  border-top: 3px solid var(--signal-red);
  border-bottom: 3px solid var(--signal-red);
  background: rgba(198, 40, 40, 0.07);
}

.prayer-body strong {
  font-weight: 700;
  color: var(--navy);
}

.prayer-cta-label {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal-red);
}

.prayer-cta-panel .prayer-body {
  margin: 0;
  color: var(--ink);
}

.prayer-cta-panel .prayer-body p:first-child {
  margin-top: 0;
}

.prayer-cta-panel .prayer-body p:last-child {
  margin-bottom: 0;
}

.prayer-cta-foot {
  margin: 1.35rem 0 0;
  padding-top: 1rem;
  border-top: 2px solid rgba(18, 24, 32, 0.12);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy-mid);
}

.article-prayer-band {
  position: relative;
  isolation: isolate;
  margin-top: 2.5rem;
  padding: 3rem 0 3.5rem;
  color: #f8f6f2;
}

.article-prayer-band-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 45% at 80% 10%, rgba(232, 185, 35, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(198, 40, 40, 0.22), transparent 55%),
    linear-gradient(165deg, #071018 0%, #0a1628 40%, #1a1020 100%);
}

.article-prayer-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.article-prayer-band .prayer-cta-panel {
  margin-top: 1.25rem;
}

.article-prayer-more {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
}

.article-prayer-more a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 600;
}

.article-prayer-more a:hover {
  color: #fff;
}

.video-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.08);
}

.video-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  overflow: hidden;
}

.video-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.video-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent currentColor;
}

.video-card:hover .video-play,
.video-card:focus-visible .video-play {
  background: var(--signal-red);
  color: #fff;
}

.video-card-body {
  display: block;
  padding: 1rem 1.1rem 1.15rem;
}

.video-card .list-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.video-card:hover .list-title,
.video-card:focus-visible .list-title {
  color: var(--navy-mid);
}

.video-frame {
  position: relative;
  width: min(100%, 820px);
  aspect-ratio: 16 / 9;
  margin: 0.5rem 0 2rem;
  background: var(--navy);
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reading {
  padding-bottom: 2rem;
}

.site-footer {
  border-top: 1px solid transparent;
  padding: 2.5rem 0;
  margin-top: 0;
  background: var(--navy);
  color: rgba(248, 246, 242, 0.85);
}

.footer-brand {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--gold-soft);
}

.footer-note {
  margin: 0;
  color: rgba(248, 246, 242, 0.7);
  font-size: 0.95rem;
}

.footer-note code {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 78vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sky {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-inner,
  .page-hero {
    animation: none;
  }

  .ev-sign--tilt-left,
  .ev-sign--tilt-right,
  .ev-sign:hover {
    transform: none;
  }
}

/* Evangelistic street signs on list pages */
.page-hero--signs {
  padding-bottom: 2.5rem;
}

.sign-row {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0 0;
  align-items: end;
}

@media (min-width: 720px) {
  .sign-row {
    grid-template-columns: 1.35fr 1fr;
    gap: 1.75rem;
  }
}

.ev-sign {
  margin: 0;
  position: relative;
  filter: drop-shadow(0 14px 28px rgba(10, 22, 40, 0.28));
  transition: transform 0.35s ease;
}

.ev-sign--tilt-left {
  transform: rotate(-2.2deg);
}

.ev-sign--tilt-right {
  transform: rotate(2.4deg);
}

.ev-sign:hover {
  transform: rotate(0deg) translateY(-3px);
}

.ev-sign-photo {
  width: 100%;
  height: 100%;
  max-height: 16rem;
  object-fit: cover;
  object-position: center;
  border: 4px solid #0a0a0a;
  background: #111;
  aspect-ratio: 4 / 3;
}

.ev-sign-face {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 11rem;
  padding: 1.35rem 1.1rem;
  text-align: center;
  border: 5px solid #0a0a0a;
  font-family: var(--font-brand);
  text-transform: uppercase;
  line-height: 1.05;
}

.ev-sign--navy .ev-sign-face {
  background:
    radial-gradient(circle at 50% 40%, rgba(242, 213, 107, 0.22), transparent 45%),
    linear-gradient(160deg, #0a1628 0%, #132840 55%, #071018 100%);
  color: #f2d56b;
}

.ev-sign--yellow .ev-sign-face {
  background: linear-gradient(180deg, #ffe566 0%, #f0c000 100%);
  color: #0a0a0a;
}

.ev-sign--red .ev-sign-face {
  background: linear-gradient(180deg, #e53935 0%, #b71c1c 100%);
  color: #fff;
}

.ev-sign--king .ev-sign-face {
  background: linear-gradient(180deg, #ffe566 0%, #f0c000 100%);
  color: #0d47a1;
}

.ev-sign--king .ev-sign-line--main {
  color: #0d47a1;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
}

.ev-sign--king .ev-sign-eyebrow::before {
  content: "♛ ";
}

.ev-sign--sunburst .ev-sign-face {
  background:
    repeating-conic-gradient(from 0deg at 50% 50%, #ffcc33 0deg 12deg, #ff9800 12deg 24deg);
  color: #c62828;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.ev-sign--sunburst .ev-sign-face::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.ev-sign-eyebrow {
  margin: 0;
  font-size: clamp(0.7rem, 1.6vw, 0.85rem);
  letter-spacing: 0.18em;
  opacity: 0.85;
  font-family: var(--font-body);
  font-weight: 700;
}

.ev-sign-line {
  margin: 0;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
}

.ev-sign-line--main {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
}

.ev-sign--navy .ev-sign-line--main {
  color: #fff;
}

.ev-sign--sunburst .ev-sign-line--main {
  color: #b71c1c;
}

.ev-sign-ref {
  margin: 0.55rem 0 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

@media (max-width: 719px) {
  .ev-sign--tilt-left,
  .ev-sign--tilt-right {
    transform: none;
  }

  .ev-sign:hover {
    transform: translateY(-2px);
  }
}
