/* grok-strata | Pastor Nest design collection
   Inverted bands and a checkerboard of hard tiles. Condensed type, no curves. */

.theme-grok-strata {
  --paper: #EEECE6;
  --ink: #13151C;
  --accent: #B42318;
  --muted: color-mix(in srgb, var(--ink) 66%, var(--paper));
  --line: color-mix(in srgb, var(--ink) 14%, var(--paper));
  --lift: color-mix(in srgb, var(--paper) 9%, var(--ink));
  --fog: color-mix(in srgb, var(--paper) 70%, var(--ink));
  --wall: color-mix(in srgb, var(--ink) 6%, var(--paper));
  --label: #F4F2EC;
  --stone: var(--paper);
  --coal: var(--ink);
  --link: var(--coal);
  --edge: clamp(18px, 5vw, 64px);
  --band-y: clamp(52px, 6.5vw, 96px);
  --display: 'Oswald', 'Space Grotesk', 'Manrope', Arial, sans-serif;
  --body: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  --radius: 0;
  --tile-a-bg: var(--ink);
  --tile-a-fg: var(--paper);
  --tile-a-muted: var(--fog);
  --tile-b-bg: var(--paper);
  --tile-b-fg: var(--ink);
  --tile-b-muted: var(--muted);
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 var(--body);
}
.theme-grok-strata *,
.theme-grok-strata *::before,
.theme-grok-strata *::after { box-sizing: border-box; }
.theme-grok-strata :where(h1, h2, h3, p, a, small, strong, span, blockquote, li, label) { overflow-wrap: anywhere; }
.theme-grok-strata :where(img, iframe, video, input, textarea, select) { max-width: 100%; }
.theme-grok-strata :where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.theme-grok-strata .band-dark :where(a, button, input, select, textarea):focus-visible,
.theme-grok-strata .site-footer :where(a, button):focus-visible {
  outline-color: var(--paper);
}
.theme-grok-strata :where(a, button) { -webkit-tap-highlight-color: color-mix(in srgb, var(--accent) 22%, transparent); }
.theme-grok-strata :where(.eyebrow, .prose, .section-description, .timeline, .hero-kicker, .art-caption):empty { display: none; }

/* ---------- type ---------- */
.theme-grok-strata.site :where(h1, h2, h3) {
  font-family: var(--display);
  font-weight: 600;
  text-wrap: balance;
  letter-spacing: -.02em;
}
.theme-grok-strata.site h1 {
  font-size: clamp(44px, 8.2vw, 118px);
  line-height: .9;
  text-transform: uppercase;
  margin: 8px 0 18px;
}
.theme-grok-strata.site h2 {
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: .95;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.theme-grok-strata.site h3 {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.theme-grok-strata :where(.prose, .section-description) {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.75;
  text-wrap: pretty;
}
.theme-grok-strata .prose p { margin: 0 0 14px; }
.theme-grok-strata .prose p:last-child { margin-bottom: 0; }
.theme-grok-strata .eyebrow {
  font: 500 12px/1.45 var(--body);
  letter-spacing: .04em;
  text-transform: none;
  color: var(--muted);
  margin: 0 0 10px;
}
.theme-grok-strata .small-note { font-size: 13px; color: var(--muted); }
.theme-grok-strata .section-heading > .eyebrow,
.theme-grok-strata .invitation-ribbon .eyebrow,
.theme-grok-strata .pathway-number,
.theme-grok-strata .topic-number { display: none; }

/* ---------- header ---------- */
.theme-grok-strata.site .site-header {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 18px var(--edge);
  gap: 14px 28px;
  align-items: center;
  background: var(--paper);
  border-bottom: 0;
  color: var(--ink);
}
.theme-grok-strata.site .wordmark {
  font: 600 clamp(18px, 1.5vw, 22px)/1.1 var(--display);
  letter-spacing: -.01em;
  gap: 12px;
  align-items: center;
  min-width: 0;
  text-transform: uppercase;
}
.theme-grok-strata.site .brand-symbol {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: var(--accent);
  color: var(--label);
  font: 600 13px/1 var(--display);
  letter-spacing: 0;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin: 0;
}
.theme-grok-strata .site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  font: 500 12px/1.2 var(--body);
  letter-spacing: .04em;
  text-transform: uppercase;
  min-width: 0;
}
.theme-grok-strata .site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--ink);
  border-bottom: 0;
  white-space: nowrap;
  transition: background-color 160ms ease-out, color 160ms ease-out;
}
.theme-grok-strata .site-nav a:hover {
  background: var(--accent);
  color: var(--label);
}
.theme-grok-strata .site-nav a.current {
  background: var(--ink);
  color: var(--paper);
  padding-bottom: 8px;
  font-weight: 600;
}

/* ---------- page rhythm: full-bleed bands ---------- */
.theme-grok-strata.site > .site-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.theme-grok-strata.site.real-site > .site-main { padding-bottom: 0; }
.theme-grok-strata.site .site-main > .block {
  position: relative;
  padding: var(--band-y) var(--edge);
  margin: 0;
}
.theme-grok-strata.real-site .site-main > .block { margin-bottom: 0; }
.theme-grok-strata.site .site-main > .block.space-compact {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
  margin-bottom: 0 !important;
}
.theme-grok-strata.site .site-main > .block.space-spacious {
  padding-top: clamp(72px, 8vw, 128px) !important;
  padding-bottom: clamp(72px, 8vw, 128px) !important;
  margin-bottom: 0 !important;
}
.theme-grok-strata .block > .section-heading {
  margin: 0 0 clamp(22px, 2.5vw, 36px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--band-line, var(--line));
}
.theme-grok-strata .block > .section-heading h2 { margin: 0; }
.theme-grok-strata :where(.about-grid, .topics-layout, .content-grid, .request-intro) > .section-heading {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 22px;
}
.theme-grok-strata .section-end-link { margin-top: 28px; }

/* dark strata */
.theme-grok-strata .block-hero,
.theme-grok-strata .block-sermons,
.theme-grok-strata .block-ministries,
.theme-grok-strata .block-about,
.theme-grok-strata .block-pathways,
.theme-grok-strata .block-contact,
.theme-grok-strata .block-giving,
.theme-grok-strata .block-scripture,
.theme-grok-strata .block-testimonials {
  --band-bg: var(--ink);
  --band-fg: var(--paper);
  --band-muted: var(--fog);
  --band-line: color-mix(in srgb, var(--paper) 18%, transparent);
  --muted: var(--fog);
  --line: color-mix(in srgb, var(--paper) 18%, transparent);
  --link: var(--paper);
  --tile-a-bg: var(--paper);
  --tile-a-fg: var(--ink);
  --tile-a-muted: color-mix(in srgb, var(--ink) 66%, var(--paper));
  --tile-b-bg: var(--lift);
  --tile-b-fg: var(--paper);
  --tile-b-muted: var(--fog);
  background: var(--ink);
  color: var(--paper);
  box-shadow: inset 0 3px 0 var(--accent);
}
.theme-grok-strata.is-enhanced .block-hero,
.theme-grok-strata.is-enhanced .block-sermons,
.theme-grok-strata.is-enhanced .block-ministries,
.theme-grok-strata.is-enhanced .block-about,
.theme-grok-strata.is-enhanced .block-pathways,
.theme-grok-strata.is-enhanced .block-contact,
.theme-grok-strata.is-enhanced .block-giving,
.theme-grok-strata.is-enhanced .block-scripture,
.theme-grok-strata.is-enhanced .block-testimonials { box-shadow: none; }

.theme-grok-strata .block-podcasts,
.theme-grok-strata .block-resources,
.theme-grok-strata .block-gallery,
.theme-grok-strata .block-channels,
.theme-grok-strata .block-booking,
.theme-grok-strata .block-invitation,
.theme-grok-strata .block-blogs,
.theme-grok-strata .block-notes,
.theme-grok-strata .block-events,
.theme-grok-strata .block-faq,
.theme-grok-strata .block-socials,
.theme-grok-strata .block-topics {
  --band-bg: var(--paper);
  --band-fg: var(--ink);
  --band-muted: var(--muted);
  --band-line: var(--line);
  --link: var(--ink);
  --tile-a-bg: var(--ink);
  --tile-a-fg: var(--paper);
  --tile-a-muted: var(--fog);
  --tile-b-bg: var(--paper);
  --tile-b-fg: var(--ink);
  --tile-b-muted: var(--muted);
  background: var(--paper);
  color: var(--ink);
}

.theme-grok-strata .strata-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform-origin: left center;
  pointer-events: none;
  z-index: 2;
}

/* ---------- controls ---------- */
.theme-grok-strata .button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  --paper: var(--label);
  color: var(--paper) !important;
  font: 600 12px/1.3 var(--body);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left;
  transition: background-color 160ms ease-out, border-color 160ms ease-out;
}
.theme-grok-strata .button:hover {
  background: var(--coal);
  border-color: var(--coal);
}
.theme-grok-strata .block-hero .button:hover,
.theme-grok-strata .block-sermons .button:hover,
.theme-grok-strata .block-ministries .button:hover,
.theme-grok-strata .block-about .button:hover,
.theme-grok-strata .block-pathways .button:hover,
.theme-grok-strata .block-contact .button:hover,
.theme-grok-strata .block-giving .button:hover,
.theme-grok-strata .block-scripture .button:hover,
.theme-grok-strata .block-testimonials .button:hover {
  background: var(--stone);
  border-color: var(--stone);
  --paper: var(--coal);
}
.theme-grok-strata :where(.text-link, .quiet-link) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  padding: 0;
  color: var(--link);
  font: 600 12px/1.4 var(--body);
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: inset 0 -1px 0 color-mix(in srgb, var(--link) 40%, transparent);
  transition: box-shadow 160ms ease-out, color 160ms ease-out;
}
.theme-grok-strata :where(.text-link, .quiet-link):hover { box-shadow: inset 0 -1px 0 var(--link); }
.theme-grok-strata :where(.text-link, .quiet-link) span { transition: transform 160ms ease-out; }
.theme-grok-strata :where(.text-link, .quiet-link):hover span { transform: translateX(4px); }
.theme-grok-strata :where(input, select, textarea) {
  font: 400 16px/1.5 var(--body);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
}
.theme-grok-strata :where(input, textarea)::placeholder { color: var(--muted); opacity: 1; }
.theme-grok-strata :where(input, select, textarea):focus { border-color: var(--accent); }

/* ---------- hero ---------- */
.theme-grok-strata.site .block-hero { padding-top: clamp(40px, 5vw, 72px); padding-bottom: 0; }
.theme-grok-strata .hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}
.theme-grok-strata .hero-copy { min-width: 0; }
.theme-grok-strata .hero-copy > .eyebrow {
  color: var(--fog);
  margin-bottom: 16px;
  font: 500 13px/1.4 var(--body);
}
.theme-grok-strata.site .hero-copy h1 { margin: 0 0 18px; max-width: 12ch; }
.theme-grok-strata.site .hero-kicker {
  font: 500 clamp(18px, 2vw, 26px)/1.3 var(--display);
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--paper);
  max-width: 28ch;
  margin: 0 0 20px;
}
.theme-grok-strata.site .hero-copy > .prose {
  max-width: 54ch;
  font-size: 16px;
  color: var(--fog);
}
.theme-grok-strata .hero-actions { gap: 12px 20px; margin-top: 28px; }
.theme-grok-strata .hero-art { min-width: 0; overflow: hidden; }
.theme-grok-strata.site .hero-image {
  display: block;
  width: 100%;
  height: clamp(360px, 38vw, 520px);
  object-fit: cover;
  object-position: center 16%;
  border-radius: 0;
}
.theme-grok-strata .art-caption {
  font: 500 11px/1.5 var(--body);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fog);
  opacity: 1;
  margin: 10px 0 0;
}
.theme-grok-strata .portrait-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  background: var(--lift);
  font: 600 22px/1.2 var(--display);
  text-transform: uppercase;
  color: var(--paper);
}
.theme-grok-strata.site .hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(36px, 4vw, 56px) calc(-1 * var(--edge)) 0;
  padding: 0;
  border: 0;
  font: 600 12px/1.4 var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
}
.theme-grok-strata .hero-meta span {
  padding: 18px 20px;
  min-width: 0;
}
.theme-grok-strata .hero-meta span:nth-child(odd) {
  background: var(--paper);
  color: var(--ink);
}
.theme-grok-strata .hero-meta span:nth-child(even) {
  background: var(--accent);
  color: var(--label);
}

/* ---------- inner pages ---------- */
.theme-grok-strata.site .page-intro {
  padding: clamp(40px, 5vw, 72px) var(--edge) clamp(24px, 3vw, 36px);
  margin: 0;
  border-bottom: 0;
  background: var(--paper);
  color: var(--ink);
}
.theme-grok-strata.site .page-intro h1 {
  font-size: clamp(40px, 7vw, 88px);
  max-width: 16ch;
  margin: 8px 0 16px;
}
.theme-grok-strata.site .page-intro > .eyebrow { color: var(--muted); }
.theme-grok-strata.site .page-intro > .prose { max-width: 58ch; }

/* ---------- about ---------- */
.theme-grok-strata.site .block-about.variant-wide .about-grid {
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 72px);
}
.theme-grok-strata.site .block-about .prose { font-size: 17px; color: var(--fog); }
.theme-grok-strata.site .bio-photo {
  height: 340px;
  object-fit: cover;
  object-position: center 16%;
  background: var(--lift);
  margin-bottom: 24px;
  border-radius: 0;
}
.theme-grok-strata .timeline { border-left: 1px solid var(--line); padding-left: 26px; margin-top: 36px; }
.theme-grok-strata .timeline > div::before {
  background: var(--accent);
  border-radius: 0;
  width: 8px;
  height: 8px;
}
.theme-grok-strata .timeline span { font: 600 12px/1.4 var(--body); color: var(--fog); letter-spacing: .04em; }
.theme-grok-strata .timeline h3 { margin: 8px 0 6px; }

/* ---------- messages: checkerboard ---------- */
.theme-grok-strata.site .message-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 420px;
  margin: 0 0 28px;
  font: 500 12px/1.4 var(--body);
  color: var(--fog);
}
.theme-grok-strata.site .message-search input {
  background: var(--lift);
  color: var(--paper);
  border: 1px solid color-mix(in srgb, var(--paper) 22%, transparent);
}
.theme-grok-strata.site .block-sermons.variant-featured .sermon-list,
.theme-grok-strata .sermon-list {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}
.theme-grok-strata .sermon-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 0;
  min-width: 0;
  border: 0;
  transition: box-shadow 160ms ease-out;
}
.theme-grok-strata .sermon-card[hidden] { display: none; }
.theme-grok-strata .sermon-card:hover { box-shadow: inset 0 0 0 2px var(--accent); }
.theme-grok-strata.site .sermon-visual {
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--coal);
  border-radius: 0;
}
.theme-grok-strata.site .sermon-visual:has(.sermon-thumb)::after { display: none; }
.theme-grok-strata .demo-sermon-art {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 20px;
  color: var(--paper);
  font: 600 18px/1.2 var(--display);
  text-transform: uppercase;
  text-align: center;
}
.theme-grok-strata.site .sermon-visual .video-link {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: 600 11px/1.3 var(--body);
  letter-spacing: .08em;
  text-transform: uppercase;
  gap: 8px;
}
.theme-grok-strata.site .sermon-visual .video-link:hover {
  background: var(--accent);
  color: var(--label);
}
.theme-grok-strata .sermon-content { padding: 22px 20px 24px; min-width: 0; }
.theme-grok-strata .sermon-content .eyebrow { margin-bottom: 10px; }
.theme-grok-strata .sermon-content h3 { margin: 0 0 8px; }
.theme-grok-strata .sermon-content > p:empty { display: none; }
.theme-grok-strata .sermon-content > p:not(.eyebrow) { font-size: 14px; margin: 0 0 10px; }
.theme-grok-strata .sermon-content .prose { font-size: 14px; }
.theme-grok-strata .welcome-film { margin-top: 24px; background: var(--coal); }

/* ---------- podcasts ---------- */
.theme-grok-strata .podcast-list article {
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.theme-grok-strata .podcast-list article:first-child { border-top: 0; padding-top: 0; }
.theme-grok-strata .podcast-icon {
  height: 72px;
  background: var(--ink);
  color: var(--paper);
  font-size: 28px;
  border-radius: 0;
}
.theme-grok-strata .podcast-list h3 { margin: 6px 0 10px; }
.theme-grok-strata .podcast-list p { font-size: 15px; color: var(--muted); max-width: 60ch; }

/* ---------- books: stacked strata ---------- */
.theme-grok-strata.site .book-grid { display: grid; gap: 0; }
.theme-grok-strata.site .book-card {
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  padding: clamp(24px, 3vw, 36px);
  border: 0;
}
.theme-grok-strata.site .book-cover {
  height: 250px;
  background: var(--wall);
  object-fit: cover;
  border-radius: 0;
}
.theme-grok-strata.site .book-cover.placeholder {
  box-shadow: none;
  border: 0;
  padding: 18px;
  font: 600 18px/1.25 var(--display);
  text-transform: uppercase;
  color: inherit;
}
.theme-grok-strata.site .book-card h3 { max-width: 28ch; }
.theme-grok-strata .book-card:nth-child(odd) {
  background: var(--tile-a-bg);
  color: var(--tile-a-fg);
  --muted: var(--tile-a-muted);
  --link: var(--tile-a-fg);
}
.theme-grok-strata .book-card:nth-child(even) {
  background: var(--tile-b-bg);
  color: var(--tile-b-fg);
  --muted: var(--tile-b-muted);
  --link: var(--tile-b-fg);
  box-shadow: inset 0 0 0 1px var(--line);
}

/* ---------- ministries / notes / articles: checker ---------- */
.theme-grok-strata.site .ministry-grid,
.theme-grok-strata.site .resource-grid,
.theme-grok-strata .article-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}
.theme-grok-strata .ministry-grid > article,
.theme-grok-strata .note-card,
.theme-grok-strata .article-card {
  min-width: 0;
  padding: 28px 24px;
  border: 0;
  border-top: 0;
}
.theme-grok-strata .ministry-grid img,
.theme-grok-strata .article-card > img {
  height: 200px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 0;
}
.theme-grok-strata .resource-icon { display: none; }
.theme-grok-strata .article-bottom { font-size: 12px; gap: 12px; }

/* ---------- gallery ---------- */
.theme-grok-strata.site .ministry-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  columns: auto;
}
.theme-grok-strata .ministry-gallery figure { min-width: 0; margin: 0; }
.theme-grok-strata.site .gallery-open {
  height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: var(--wall);
  overflow: hidden;
}
.theme-grok-strata.site .ministry-gallery img {
  display: block;
  width: 100%;
  height: 360px;
  max-height: none;
  object-fit: cover;
  transition: transform 200ms ease-out;
}
.theme-grok-strata .gallery-open:hover img { transform: scale(1.03); }
.theme-grok-strata .ministry-gallery figcaption {
  font-size: 12px;
  line-height: 1.6;
  padding: 12px 16px 20px;
  color: var(--muted);
}
.theme-grok-strata .gallery-masonry { columns: 2; display: block; }
.theme-grok-strata .gallery-masonry figure { break-inside: avoid; }

/* ---------- channels: checkerboard ---------- */
.theme-grok-strata.site .channel-grid,
.theme-grok-strata.real-site .channel-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}
.theme-grok-strata .channel-card {
  padding: 32px 28px;
  border: 0;
  border-top: 0;
  background: none;
  min-width: 0;
  transition: box-shadow 160ms ease-out;
}
.theme-grok-strata .channel-card:hover { box-shadow: inset 0 0 0 2px var(--accent); }
.theme-grok-strata .channel-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--label);
  font-size: 18px;
  margin-bottom: 20px;
}
.theme-grok-strata .channel-card h3 { margin: 8px 0 12px; }
.theme-grok-strata .channel-card > p:not(.eyebrow) { font-size: 15px; max-width: 46ch; color: var(--muted); }
.theme-grok-strata .channel-card .button { margin-top: 20px; }

/* ---------- pathways: 2x2 checker on a dark band ---------- */
.theme-grok-strata .pathway-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border: 0;
}
.theme-grok-strata .pathway {
  padding: 32px 28px;
  border: 0;
  border-right: 0;
  min-width: 0;
  transition: box-shadow 160ms ease-out;
}
.theme-grok-strata .pathway:hover { background: transparent; box-shadow: inset 0 0 0 2px var(--accent); }
.theme-grok-strata .pathway h3 { font-size: clamp(22px, 2.2vw, 32px); margin: 0 0 12px; }
.theme-grok-strata .pathway p { font-size: 14px; }
.theme-grok-strata .pathway-arrow { margin-top: 24px; font-size: 22px; color: inherit; }

/* checker assignment (2-col: ink, stone, stone, ink) */
@media (min-width: 651px) {
  .theme-grok-strata .channel-card:nth-child(4n+1),
  .theme-grok-strata .channel-card:nth-child(4n+4),
  .theme-grok-strata .ministry-grid > article:nth-child(4n+1),
  .theme-grok-strata .ministry-grid > article:nth-child(4n+4),
  .theme-grok-strata .note-card:nth-child(4n+1),
  .theme-grok-strata .note-card:nth-child(4n+4),
  .theme-grok-strata .article-card:nth-child(4n+1),
  .theme-grok-strata .article-card:nth-child(4n+4),
  .theme-grok-strata .pathway:nth-child(4n+1),
  .theme-grok-strata .pathway:nth-child(4n+4),
  .theme-grok-strata .sermon-card:nth-child(4n+1),
  .theme-grok-strata .sermon-card:nth-child(4n+4) {
    background: var(--tile-a-bg);
    color: var(--tile-a-fg);
    --muted: var(--tile-a-muted);
    --link: var(--tile-a-fg);
  }
  .theme-grok-strata .channel-card:nth-child(4n+2),
  .theme-grok-strata .channel-card:nth-child(4n+3),
  .theme-grok-strata .ministry-grid > article:nth-child(4n+2),
  .theme-grok-strata .ministry-grid > article:nth-child(4n+3),
  .theme-grok-strata .note-card:nth-child(4n+2),
  .theme-grok-strata .note-card:nth-child(4n+3),
  .theme-grok-strata .article-card:nth-child(4n+2),
  .theme-grok-strata .article-card:nth-child(4n+3),
  .theme-grok-strata .pathway:nth-child(4n+2),
  .theme-grok-strata .pathway:nth-child(4n+3),
  .theme-grok-strata .sermon-card:nth-child(4n+2),
  .theme-grok-strata .sermon-card:nth-child(4n+3) {
    background: var(--tile-b-bg);
    color: var(--tile-b-fg);
    --muted: var(--tile-b-muted);
    --link: var(--tile-b-fg);
  }
  .theme-grok-strata .block-channels .channel-card:nth-child(4n+2),
  .theme-grok-strata .block-channels .channel-card:nth-child(4n+3),
  .theme-grok-strata .block-blogs .article-card:nth-child(4n+2),
  .theme-grok-strata .block-blogs .article-card:nth-child(4n+3),
  .theme-grok-strata .block-notes .note-card:nth-child(4n+2),
  .theme-grok-strata .block-notes .note-card:nth-child(4n+3) {
    box-shadow: inset 0 0 0 1px var(--line);
  }
}

/* ---------- booking / invitation ---------- */
.theme-grok-strata.real-site .block-booking,
.theme-grok-strata.site .block-booking {
  padding: var(--band-y) var(--edge);
  margin-top: 0;
  background: var(--paper);
  color: var(--ink);
}
.theme-grok-strata .invitation-ribbon {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.theme-grok-strata .invitation-ribbon h2 { margin: 0 0 12px; }
.theme-grok-strata .ribbon-actions { gap: 14px; }
.theme-grok-strata .ribbon-actions small { color: var(--muted); font-size: 12px; }
.theme-grok-strata .request-layout {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
}
.theme-grok-strata .request-intro .section-heading h2 { font-size: clamp(28px, 3vw, 44px); }
.theme-grok-strata .request-steps { margin: 28px 0; }
.theme-grok-strata .request-steps > div { gap: 16px; margin: 18px 0; }
.theme-grok-strata .request-steps b { color: var(--accent); font-size: 12px; }
.theme-grok-strata .request-steps strong { color: var(--ink); }
.theme-grok-strata .request-note {
  border-left: 0;
  border-top: 1px solid var(--line);
  padding: 16px 0 0;
  margin: 28px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.theme-grok-strata .engagement-form {
  padding: 28px;
  background: var(--wall);
  border: 0;
  border-radius: 0;
  min-width: 0;
}
.theme-grok-strata .form-chapter {
  gap: 16px;
  margin: 0 0 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.theme-grok-strata .form-chapter span { color: var(--accent); font: 600 12px var(--body); }
.theme-grok-strata .form-chapter h3 { font: 600 22px/1.2 var(--display); text-transform: uppercase; }
.theme-grok-strata .request-fields { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
.theme-grok-strata .request-fields label { font-size: 13px; color: var(--ink); }
.theme-grok-strata .request-error { color: var(--accent); font-size: 14px; font-weight: 600; }
.theme-grok-strata .request-fineprint { font-size: 12px; color: var(--muted); }
.theme-grok-strata .request-review textarea { background: var(--paper); color: var(--ink); }

/* ---------- events / contact / network ---------- */
.theme-grok-strata .engagement-list article,
.theme-grok-strata .event-list article {
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.theme-grok-strata .date-tile,
.theme-grok-strata .event-date {
  padding: 16px;
  background: var(--wall);
  font: 600 16px/1.3 var(--display);
  text-transform: uppercase;
}
.theme-grok-strata .contact-desk {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
}
.theme-grok-strata .contact-person > img {
  width: 140px;
  height: 168px;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 0;
}
.theme-grok-strata .contact-person h2 { font: 600 clamp(32px, 4vw, 56px)/1 var(--display); text-transform: uppercase; }
.theme-grok-strata .contact-option { padding: 24px 0; border-bottom: 1px solid var(--line); }
.theme-grok-strata .contact-option > span,
.theme-grok-strata .contact-location > span {
  font: 500 11px/1.4 var(--body);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fog);
}
.theme-grok-strata .network-directory { border-top: 1px solid var(--line); }
.theme-grok-strata .network-row {
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 160ms ease-out;
}
.theme-grok-strata .network-row:hover { padding-left: 0; background: var(--wall); }
.theme-grok-strata .network-monogram {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  font: 600 14px var(--display);
}
.theme-grok-strata .network-row strong { font: 600 22px/1.2 var(--display); text-transform: uppercase; }
.theme-grok-strata .social-links { gap: 0; }
.theme-grok-strata .social-card {
  padding: 18px 22px;
  border: 0;
  box-shadow: inset 0 0 0 1px var(--line);
  border-radius: 0;
}

/* ---------- remaining types ---------- */
.theme-grok-strata .topics-layout { grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: clamp(24px, 5vw, 64px); }
.theme-grok-strata .topic-list article { grid-template-columns: minmax(0, 1fr); gap: 0; padding: 24px 0; border-top: 1px solid var(--line); }
.theme-grok-strata .faq-list details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.theme-grok-strata .faq-list summary { font: 600 22px/1.2 var(--display); text-transform: uppercase; list-style: none; }
.theme-grok-strata .quote-grid { gap: 0; }
.theme-grok-strata .quote-grid figure { margin: 0; padding: 28px; border: 0; }
.theme-grok-strata .quote-grid figure:nth-child(odd) { background: var(--ink); color: var(--paper); }
.theme-grok-strata .quote-grid figure:nth-child(even) { background: var(--paper); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.theme-grok-strata blockquote { font: 500 clamp(22px, 2.4vw, 32px)/1.35 var(--display); text-transform: uppercase; margin: 0 0 20px; }
.theme-grok-strata .quote-grid figcaption img { border-radius: 0; }
.theme-grok-strata .verse-display { padding: 28px 0; }
.theme-grok-strata .verse-slide blockquote { color: inherit; }
.theme-grok-strata .verse-controls button {
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  min-width: 44px;
  min-height: 44px;
}
.theme-grok-strata .sample-giving,
.theme-grok-strata .support-panel,
.theme-grok-strata .appointment-panel,
.theme-grok-strata .newsletter-letter,
.theme-grok-strata .availability-note {
  padding: 28px;
  background: var(--wall);
  border: 0;
}
.theme-grok-strata .giving-amounts button {
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  border: 0;
}
.theme-grok-strata .awaiting-content {
  padding: 28px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.theme-grok-strata .content-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(24px, 5vw, 64px); }

/* ---------- footer ---------- */
.theme-grok-strata.site .site-footer {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 40px var(--edge) 32px;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  background: var(--ink);
  color: var(--paper);
  border-top: 0;
  box-shadow: inset 0 3px 0 var(--accent);
  --muted: var(--fog);
  --link: var(--paper);
}
.theme-grok-strata.is-enhanced .site-footer { box-shadow: none; }
.theme-grok-strata .site-footer div { text-align: left; }
.theme-grok-strata .site-footer strong {
  font: 600 clamp(22px, 2.4vw, 32px)/1.1 var(--display);
  text-transform: uppercase;
  color: var(--paper);
}
.theme-grok-strata .site-footer :where(p, small) { font-size: 13px; color: var(--fog); }
.theme-grok-strata .site-footer nav { gap: 8px 18px; }
.theme-grok-strata .site-footer .text-link { color: var(--paper); font-size: 12px; }
.theme-grok-strata .site-footer > small {
  border-top: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
  color: var(--fog);
}

/* ---------- 1000 ---------- */
@media (max-width: 1000px) {
  .theme-grok-strata.site .site-header { align-items: flex-start; }
  .theme-grok-strata .site-nav { justify-content: flex-start; }
  .theme-grok-strata .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 28px; }
  .theme-grok-strata .request-layout,
  .theme-grok-strata.site .block-about.variant-wide .about-grid,
  .theme-grok-strata .topics-layout,
  .theme-grok-strata .contact-desk,
  .theme-grok-strata .content-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .theme-grok-strata .engagement-list article,
  .theme-grok-strata .event-list article { grid-template-columns: 120px minmax(0, 1fr); }
  .theme-grok-strata .engagement-list article > a,
  .theme-grok-strata .event-list article > a { grid-column: 2; }
}

/* ---------- 800: work with the base one-column hero trap ---------- */
@media (max-width: 800px) {
  .theme-grok-strata.site .site-header { padding: 16px var(--edge); gap: 12px; }
  .theme-grok-strata.site .site-main > .block { padding: 44px var(--edge); }
  .theme-grok-strata.site .block-hero { padding-top: 32px; }
  .theme-grok-strata.site .hero-art { max-width: 100%; }
  .theme-grok-strata.site .hero-image { height: min(380px, 58vh) !important; max-height: 70vh; object-fit: cover; }
  .theme-grok-strata.site .hero-copy h1 { font-size: clamp(44px, 12vw, 64px); max-width: none; }
  .theme-grok-strata.site .hero-kicker { font-size: 20px; }
  .theme-grok-strata.site .hero-meta { margin-top: 28px; }
  .theme-grok-strata.site .book-card { grid-template-columns: minmax(0, 140px) minmax(0, 1fr); gap: 20px; }
  .theme-grok-strata .invitation-ribbon { grid-template-columns: minmax(0, 1fr); }
  .theme-grok-strata.site .site-footer { grid-template-columns: minmax(0, 1fr); padding: 32px var(--edge); }
  .theme-grok-strata .site-footer nav { justify-content: flex-start; }
  .theme-grok-strata.site .page-intro { padding: 32px var(--edge) 20px; }
}

/* ---------- 650: one-column checker becomes stripes ---------- */
@media (max-width: 650px) {
  .theme-grok-strata .site-nav {
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    gap: 4px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .theme-grok-strata .site-nav::-webkit-scrollbar { display: none; }
  .theme-grok-strata.site .brand-symbol { display: grid; }
  .theme-grok-strata .hero-actions { flex-direction: column; align-items: stretch; gap: 8px; }
  .theme-grok-strata .hero-actions .button,
  .theme-grok-strata .hero-actions .quiet-link { width: 100%; justify-content: center; }
  .theme-grok-strata.site .hero-meta { grid-template-columns: minmax(0, 1fr); }
  .theme-grok-strata.site .hero-image { height: min(310px, 55vh) !important; max-height: 70vh; }
  .theme-grok-strata.site .sermon-list,
  .theme-grok-strata.site .block-sermons.variant-featured .sermon-list,
  .theme-grok-strata.site .ministry-grid,
  .theme-grok-strata.site .resource-grid,
  .theme-grok-strata .article-grid,
  .theme-grok-strata.site .ministry-gallery,
  .theme-grok-strata.site .channel-grid,
  .theme-grok-strata.real-site .channel-grid,
  .theme-grok-strata .pathway-grid,
  .theme-grok-strata .request-fields,
  .theme-grok-strata .quote-grid { grid-template-columns: minmax(0, 1fr); }
  .theme-grok-strata.site .book-card { grid-template-columns: minmax(0, 1fr); }
  .theme-grok-strata.site .book-cover { width: 160px; max-width: 100%; height: 220px; }
  .theme-grok-strata.site .ministry-gallery img { height: auto; max-height: 420px; object-fit: contain; }
  .theme-grok-strata .gallery-masonry { columns: 1; }
  .theme-grok-strata .podcast-list article { grid-template-columns: 52px minmax(0, 1fr); gap: 16px; }
  .theme-grok-strata .podcast-icon { height: 52px; font-size: 22px; }
  .theme-grok-strata .request-fields .span-two { grid-column: auto; }
  .theme-grok-strata .request-fields .flexible-date { padding-top: 0; }
  .theme-grok-strata .engagement-form { padding: 20px 16px; }
  .theme-grok-strata .engagement-list article,
  .theme-grok-strata .event-list article { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .theme-grok-strata .engagement-list article > a,
  .theme-grok-strata .event-list article > a { grid-column: auto; }
  .theme-grok-strata .network-row { grid-template-columns: 40px minmax(0, 1fr); gap: 14px; }
  .theme-grok-strata .network-action { display: none; }
  .theme-grok-strata .network-monogram { width: 40px; height: 40px; }

  .theme-grok-strata .channel-card:nth-child(odd),
  .theme-grok-strata .ministry-grid > article:nth-child(odd),
  .theme-grok-strata .note-card:nth-child(odd),
  .theme-grok-strata .article-card:nth-child(odd),
  .theme-grok-strata .pathway:nth-child(odd),
  .theme-grok-strata .sermon-card:nth-child(odd) {
    background: var(--tile-a-bg);
    color: var(--tile-a-fg);
    --muted: var(--tile-a-muted);
    --link: var(--tile-a-fg);
  }
  .theme-grok-strata .channel-card:nth-child(even),
  .theme-grok-strata .ministry-grid > article:nth-child(even),
  .theme-grok-strata .note-card:nth-child(even),
  .theme-grok-strata .article-card:nth-child(even),
  .theme-grok-strata .pathway:nth-child(even),
  .theme-grok-strata .sermon-card:nth-child(even) {
    background: var(--tile-b-bg);
    color: var(--tile-b-fg);
    --muted: var(--tile-b-muted);
    --link: var(--tile-b-fg);
  }
  .theme-grok-strata .block-channels .channel-card:nth-child(even),
  .theme-grok-strata .block-blogs .article-card:nth-child(even),
  .theme-grok-strata .block-notes .note-card:nth-child(even) {
    box-shadow: inset 0 0 0 1px var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-grok-strata *,
  .theme-grok-strata *::before,
  .theme-grok-strata *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .theme-grok-strata .button:hover,
  .theme-grok-strata .gallery-open:hover img,
  .theme-grok-strata :where(.text-link, .quiet-link):hover span { transform: none; }
}
