/* ==========================================================================
   Cross to Crown Ministries — Main Stylesheet
   "The Signal" design — Inter typeface, black/white/royal-blue palette
   ========================================================================== */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────────────────── */
:root {
  --black:        #0D0D0D;
  --black-2:      #161616;
  --black-3:      #1C1C1C;
  --white:        #FFFFFF;
  --grey-bg:      #F2F0ED;
  --grey-light:   #E8E5E0;
  --grey-med:     #BEBAB3;
  --grey-text:    #5A5750;
  --grey-dark:    #3A3835;
  --blue:         #1B4FD8;
  --blue-hover:   #1641B0;
  --blue-mid:     #3B6FFF;
  --blue-light:   #EEF2FF;
  --red-live:     #E53E3E;
  --red-bg:       rgba(229,62,62,0.10);
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --inner-width:  1140px;
  --radius:       10px;
  --radius-sm:    6px;
  --transition:   0.15s ease;
}

/* ─── RESET & BASE ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.75;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-hover); }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* Screen reader only */
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Skip link */
.ctc-skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--blue); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; z-index: 9999;
  transition: top var(--transition);
}
.ctc-skip-link:focus { top: 16px; }

/* ─── LAYOUT HELPERS ─────────────────────────────────────────────────────── */
.ctc-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 48px;
}
.ctc-accent { color: var(--blue-mid); }

.ctc-section { width: 100%; }
.ctc-section--white { background: var(--white); padding: 72px 0; border-top: 1px solid var(--grey-light); }
.ctc-section--grey  { background: var(--grey-bg); padding: 72px 0; border-top: 1px solid var(--grey-light); border-bottom: 1px solid var(--grey-light); }
.ctc-section--black { background: var(--black); padding: 88px 0; }

.ctc-section-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.ctc-section-bar__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
}
.ctc-section--black .ctc-section-bar__title { color: var(--white); }
.ctc-section-bar__link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  transition: color var(--transition);
}
.ctc-section-bar__link:hover { color: var(--blue-hover); }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.ctc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1;
}
.ctc-btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.ctc-btn--blue:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--white);
}
.ctc-btn--white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.ctc-btn--white:hover { background: rgba(255,255,255,0.88); color: var(--black); }
.ctc-btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.25);
}
.ctc-btn--outline-white:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }
.ctc-btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--grey-light);
}
.ctc-btn--outline-dark:hover { border-color: var(--black); }

/* ─── LIVE INDICATORS ───────────────────────────────────────────────────── */
@keyframes ctc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(229,62,62,0.5); }
  50%       { opacity: 0.7; transform: scale(1.2); box-shadow: 0 0 0 4px rgba(229,62,62,0); }
}
.ctc-live-pip {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--red-live);
  border-radius: 50%;
  animation: ctc-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 2px;
  position: relative;
  top: -1px;
}

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */
.ctc-nav {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 62px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.ctc-nav__inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ctc-nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.ctc-nav__crown { display: flex; align-items: center; }
.ctc-nav__crown-icon {
  display: block;
  width: 56px;
  height: 39px;
  background-image: url('/wp-content/themes/crosstocrown-theme/assets/images/ctc-crown.png');
  background-size: 56px 39px;
  background-repeat: no-repeat;
  filter: invert(1);
  mix-blend-mode: lighten;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.ctc-nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.ctc-nav__wordmark-main {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.ctc-nav__wordmark-sub {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.ctc-nav__center {
  display: flex;
  align-items: center;
  gap: 2px;
}
.ctc-nav__link {
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.ctc-nav__link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.ctc-nav__link--watch { display: flex; align-items: center; }
.ctc-nav__right { display: flex; align-items: center; gap: 10px; }
.ctc-nav__members-btn {
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
}
.ctc-nav__members-btn:hover { background: var(--blue-hover); color: var(--white); }
.ctc-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.ctc-nav__hamburger:hover { background: rgba(255,255,255,0.08); }
.ctc-nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ─── MOBILE DRAWER ─────────────────────────────────────────────────────── */
.ctc-mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--black-2);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ctc-mobile-drawer.is-open { transform: translateX(0); }
.ctc-mobile-drawer__inner {
  padding: 20px 24px 40px;
}
.ctc-mobile-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  margin-left: auto;
  transition: background var(--transition), color var(--transition);
}
.ctc-mobile-drawer__close:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.ctc-mobile-drawer__link {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  font-weight: 600;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
  text-decoration: none;
}
.ctc-mobile-drawer__link:hover { color: var(--white); }
.ctc-mobile-drawer__link--sub {
  font-size: 14px;
  font-weight: 500;
  padding-left: 16px;
  color: rgba(255,255,255,0.50);
}
.ctc-mobile-drawer__link--highlight {
  color: var(--blue-mid);
  font-weight: 700;
}
.ctc-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ctc-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.ctc-hero {
  background: var(--black);
  padding: 72px 0 64px;
}
.ctc-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 56px;
  align-items: center;
}
.ctc-hero__status-row { margin-bottom: 22px; }
.ctc-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-bg);
  border: 1px solid rgba(229,62,62,0.30);
  color: #FC8181;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 4px;
}
.ctc-live-pill__dot {
  width: 6px; height: 6px;
  background: var(--red-live);
  border-radius: 50%;
  animation: ctc-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.ctc-upcoming-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 4px;
}
.ctc-hero__heading {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.ctc-hero__subhead {
  color: rgba(255,255,255,0.55);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
}
.ctc-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ctc-hero__platforms {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
.ctc-hero__platforms-label {
  color: rgba(255,255,255,0.28);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 6px;
  white-space: nowrap;
}
.ctc-platform-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.50);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.ctc-platform-chip:hover { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.80); }

/* Hero embed */
.ctc-hero__embed-shell {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.70), 0 0 0 1px rgba(255,255,255,0.06);
}
.ctc-hero__embed-shell iframe {
  width: 100%; height: 100%;
  display: block;
}
.ctc-embed-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red-live);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.ctc-embed-badge__dot {
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: ctc-pulse 1.6s ease-in-out infinite;
}

/* ─── SCHEDULE STRIP ────────────────────────────────────────────────────── */
.ctc-strip {
  background: var(--black-3);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 11px 0;
}
.ctc-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.ctc-strip__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.ctc-strip__item {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  gap: 7px;
}
.ctc-strip__item:first-child { padding-left: 0; }
.ctc-strip__item:last-child  { border-right: none; }
.ctc-strip__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.ctc-strip__dot--live {
  background: var(--red-live);
  animation: ctc-pulse 1.6s ease-in-out infinite;
}
.ctc-strip__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ctc-strip__right a {
  color: rgba(255,255,255,0.35);
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.ctc-strip__right a:hover { color: rgba(255,255,255,0.70); }

/* ─── VIDEO GRID ─────────────────────────────────────────────────────────── */
.ctc-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ctc-vid-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ctc-vid-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-2px); }
.ctc-vid-card__thumb-link { display: block; }
.ctc-vid-card__thumb {
  aspect-ratio: 16 / 9;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.ctc-vid-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ctc-vid-card__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.22);
}
.ctc-vid-card__play-btn {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.90);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.15s, background 0.15s;
}
.ctc-vid-card:hover .ctc-vid-card__play-btn { transform: scale(1.08); background: var(--white); }
.ctc-vid-card__info { padding: 14px 16px 16px; }
.ctc-vid-series-tag {
  display: inline-flex;
  align-items: center;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.ctc-vid-card__title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.ctc-vid-card__title a { color: var(--black); text-decoration: none; }
.ctc-vid-card__title a:hover { color: var(--blue); }
.ctc-vid-card__date {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-med);
  margin-top: 5px;
}

/* ─── SERIES SPOTLIGHT ───────────────────────────────────────────────────── */
.ctc-spotlight {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: center;
}
.ctc-spotlight__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ctc-spotlight__eyebrow-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-mid);
  white-space: nowrap;
}
.ctc-spotlight__eyebrow-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 80px;
}
.ctc-spotlight__heading {
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.ctc-spotlight__desc {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}
.ctc-spotlight__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.ctc-stat__val {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.ctc-stat__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.ctc-spotlight__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Book spine art */
.ctc-book-spine {
  width: 170px;
  height: 240px;
  background: linear-gradient(160deg, #1a2a4a, #0d1b35);
  border-radius: 3px 10px 10px 3px;
  box-shadow: -6px 8px 24px rgba(0,0,0,0.5), inset -4px 0 10px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  text-align: center;
}
.ctc-book-spine__cross {
  font-size: 42px;
  color: rgba(27,79,216,0.25);
  line-height: 1;
  margin-bottom: 10px;
}
.ctc-book-spine__title {
  font-size: 17px;
  font-weight: 900;
  color: rgba(255,255,255,0.90);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ctc-book-spine__sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ─── SCHEDULE TABLE ─────────────────────────────────────────────────────── */
.ctc-schedule-table {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ctc-sched-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--grey-light);
  gap: 24px;
  transition: background var(--transition);
}
.ctc-sched-row:last-child { border-bottom: none; }
.ctc-sched-row:hover { background: #FAFAF9; }
.ctc-sched-row--today { background: var(--blue-light); }
.ctc-sched-row--today:hover { background: var(--blue-light); }
.ctc-sched-row__day {
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
}
.ctc-today-tag {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.ctc-sched-row__time {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-text);
  margin-top: 3px;
}
.ctc-sched-row__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.ctc-sched-row__type {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 4px;
}
.ctc-sched-row__yt {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.80;
  transition: opacity var(--transition);
}
.ctc-sched-row__yt:hover { opacity: 1; }

/* ─── FILTER PILLS ───────────────────────────────────────────────────────── */
.ctc-filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ctc-fpill {
  background: transparent;
  border: 1.5px solid var(--grey-light);
  color: var(--grey-text);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  letter-spacing: 0.01em;
}
.ctc-fpill:hover:not(.ctc-fpill--on) { border-color: var(--blue); color: var(--blue); }
.ctc-fpill--on { background: var(--black); border-color: var(--black); color: var(--white); }

/* ─── SERIES LIBRARY GRID ────────────────────────────────────────────────── */
.ctc-library-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ctc-lib-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--grey-light);
  text-decoration: none;
}
.ctc-lib-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-2px); }
.ctc-lib-tile {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  overflow: hidden;
}
.ctc-lib-tile__cross {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 28px;
  color: rgba(255,255,255,0.07);
  line-height: 1;
}
.ctc-lib-tile__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
}
.ctc-lib-tile__eps {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
.ctc-lib-tile__content { position: relative; z-index: 1; }

/* ─── BOOKS ──────────────────────────────────────────────────────────────── */
.ctc-books-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ctc-book-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.ctc-book-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.ctc-book-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 4px 8px 28px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  gap: 6px;
}
.ctc-book-cover-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  box-shadow: 4px 8px 28px rgba(0,0,0,0.15);
  display: block;
}
.ctc-book-cover__cross { font-size: 28px; color: rgba(27,79,216,0.30); line-height: 1; }
.ctc-book-cover__title {
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,0.90);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ctc-book-cover__edition {
  display: inline-block;
  background: rgba(27,79,216,0.25);
  color: #7EB0FF;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
}
.ctc-book-cover__author {
  font-size: 10.5px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.ctc-book-cat {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.ctc-book-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.ctc-book-edition {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
}
.ctc-book-blurb {
  font-size: 13.5px;
  color: var(--grey-text);
  line-height: 1.65;
  margin-bottom: 14px;
}
.ctc-book-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}
.ctc-book-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}
.ctc-book-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}
.ctc-book-link:hover { color: var(--blue-hover); }

/* ─── PODCAST SECTION ───────────────────────────────────────────────────── */
.ctc-podcast-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--grey-light);
}
.ctc-podcast-art-inner {
  width: 180px; height: 180px;
  background: linear-gradient(145deg, var(--black), #1a1a2a);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 4px 8px 28px rgba(0,0,0,0.2);
}
.ctc-podcast-art__cross { font-size: 32px; color: rgba(27,79,216,0.30); margin-bottom: 8px; }
.ctc-podcast-art__title {
  font-size: 14px; font-weight: 900; color: var(--white);
  letter-spacing: -0.01em; line-height: 1.2;
}
.ctc-podcast-art__sub {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.35);
  letter-spacing: 0.10em; text-transform: uppercase; margin-top: 6px;
}
.ctc-podcast-card__desc {
  font-size: 16px;
  color: var(--grey-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ctc-podcast-platforms__label {
  font-size: 11px; font-weight: 700; color: var(--grey-text);
  letter-spacing: 0.08em; text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.ctc-podcast-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ctc-podcast-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition);
}
.ctc-podcast-badge:hover { background: var(--black-3); color: var(--white); }
.ctc-podcast-badge--spotify { background: #1DB954; }
.ctc-podcast-badge--spotify:hover { background: #18a34a; }

/* ─── PARTNER SECTION ───────────────────────────────────────────────────── */
.ctc-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ctc-partner-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 18px;
}
.ctc-partner-heading {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.ctc-partner-desc {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.ctc-partner-benefits {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ctc-partner-benefits li {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}
.ctc-benefit-check {
  width: 20px; height: 20px;
  background: rgba(27,79,216,0.20);
  border: 1px solid rgba(27,79,216,0.40);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #7EB0FF;
  margin-top: 1px;
}
.ctc-partner-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.ctc-partner-np {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  font-weight: 600;
}
.ctc-partner-np a { color: rgba(255,255,255,0.40); }
.ctc-partner-np a:hover { color: rgba(255,255,255,0.65); }
.ctc-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ctc-tier-box {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
}
.ctc-tier-box:hover { border-color: var(--blue); background: rgba(27,79,216,0.08); }
.ctc-tier-box--highlight { border-color: var(--blue); background: rgba(27,79,216,0.10); }
.ctc-tier-pop-tag {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--blue);
  color: white;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
}
.ctc-tier-num {
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.ctc-tier-mo {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ─── CHURCH MAP CARD ────────────────────────────────────────────────────── */
.ctc-church-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ctc-church-card__eyebrow {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.ctc-church-card__heading {
  font-size: 30px; font-weight: 900;
  color: var(--black); letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 14px;
}
.ctc-church-card__desc {
  font-size: 15px; color: var(--grey-text);
  line-height: 1.7; margin-bottom: 24px;
}
.ctc-church-card__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.ctc-church-card__note {
  font-size: 12px; color: var(--grey-med); line-height: 1.5;
}
.ctc-church-card__note a { color: var(--grey-text); text-decoration: underline; }
.ctc-map-preview {
  height: 200px;
  background: linear-gradient(145deg, #1a2a1a, #2a3a2a);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--grey-light);
}
.ctc-map-preview__inner { text-align: center; }
.ctc-map-pin { font-size: 40px; margin-bottom: 8px; }
.ctc-map-preview__label {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.55); line-height: 1.4;
  letter-spacing: 0.02em;
}

/* ─── ABOUT SNIPPET ──────────────────────────────────────────────────────── */
.ctc-about-flex {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 52px;
  align-items: center;
}
.ctc-about-photo {
  width: 200px;
}
.ctc-about-photo__inner {
  width: 200px; height: 240px;
  background: var(--black-2);
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.ctc-about-photo__avatar {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ctc-about-photo__name {
  font-size: 14px; font-weight: 800;
  color: var(--black); letter-spacing: -0.01em;
  text-align: center;
}
.ctc-about-photo__role {
  font-size: 11px; font-weight: 600;
  color: var(--grey-text); letter-spacing: 0.06em;
  text-transform: uppercase; text-align: center; margin-top: 3px;
}
.ctc-about-copy__eyebrow {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.ctc-about-copy__heading {
  font-size: 32px; font-weight: 900;
  color: var(--black); letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 16px;
}
.ctc-about-copy__quote {
  font-size: 17px; font-style: italic;
  color: var(--grey-dark); line-height: 1.6;
  border-left: 3px solid var(--blue);
  padding-left: 20px; margin-bottom: 18px;
  font-weight: 400;
}
.ctc-about-copy__body {
  font-size: 15px; color: var(--grey-text);
  line-height: 1.75; margin-bottom: 22px;
}
.ctc-about-copy__link {
  color: var(--blue); font-size: 14px;
  font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color var(--transition);
}
.ctc-about-copy__link:hover { color: var(--blue-hover); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.ctc-footer { background: var(--black); padding: 64px 0 32px; }
.ctc-footer__inner { max-width: var(--inner-width); margin: 0 auto; padding: 0 48px; }
.ctc-footer__signup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 48px;
}
.ctc-footer__signup-copy h3 {
  font-size: 21px; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em; margin-bottom: 5px;
}
.ctc-footer__signup-copy p { color: rgba(255,255,255,0.40); font-size: 14px; }
.ctc-footer__signup-form { display: flex; gap: 8px; flex-shrink: 0; }
.ctc-footer__email-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  width: 240px; outline: none;
  transition: border-color var(--transition);
}
.ctc-footer__email-input::placeholder { color: rgba(255,255,255,0.25); }
.ctc-footer__email-input:focus { border-color: var(--blue); }
.ctc-footer__signup-btn {
  background: var(--blue); color: var(--white);
  font-family: var(--font); font-size: 13.5px; font-weight: 700;
  padding: 11px 22px; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: background var(--transition);
}
.ctc-footer__signup-btn:hover { background: var(--blue-hover); }
.ctc-footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.ctc-footer__logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px; text-decoration: none;
}
.ctc-footer__logo span {
  font-size: 14px; font-weight: 800;
  color: var(--white); letter-spacing: -0.01em;
}
.ctc-footer__brand p {
  color: rgba(255,255,255,0.35); font-size: 13px;
  line-height: 1.7; margin-bottom: 18px; max-width: 250px;
}
.ctc-footer__socials { display: flex; gap: 8px; }
.ctc-footer__social {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.ctc-footer__social:hover {
  background: var(--blue); color: white; border-color: var(--blue);
}
.ctc-footer__col h4 {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 16px;
}
.ctc-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.ctc-footer__col ul li a {
  color: rgba(255,255,255,0.50); font-size: 13.5px;
  font-weight: 500; text-decoration: none;
  transition: color var(--transition);
}
.ctc-footer__col ul li a:hover { color: rgba(255,255,255,0.85); }
.ctc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.ctc-footer__bottom p,
.ctc-footer__bottom a {
  color: rgba(255,255,255,0.20); font-size: 12px;
  font-weight: 500; text-decoration: none;
  transition: color var(--transition);
}
.ctc-footer__bottom a:hover { color: rgba(255,255,255,0.50); }

/* ─── MOBILE BOTTOM NAV ──────────────────────────────────────────────────── */
.ctc-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 10px 0 max(14px, env(safe-area-inset-bottom));
  z-index: 200;
}
.ctc-bottom-nav__row { display: flex; justify-content: space-around; }
.ctc-bottom-nav__item {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2px 12px;
  transition: color var(--transition);
}
.ctc-bottom-nav__item.is-active { color: var(--blue-mid); }
.ctc-bottom-nav__item:hover { color: rgba(255,255,255,0.70); }
.ctc-bottom-nav__icon { font-size: 20px; line-height: 1; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ctc-inner,
  .ctc-nav__inner,
  .ctc-footer__inner { padding: 0 32px; }
  .ctc-library-grid { grid-template-columns: repeat(3, 1fr); }
  .ctc-footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .ctc-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .ctc-hero__subhead { max-width: 100%; }
  .ctc-spotlight { grid-template-columns: 1fr; }
  .ctc-spotlight__art { display: none; }
  .ctc-partner-grid { grid-template-columns: 1fr; gap: 48px; }
  .ctc-church-card { grid-template-columns: 1fr; }
  .ctc-church-card__right { display: none; }
  .ctc-footer__signup-row { flex-direction: column; align-items: flex-start; }
  .ctc-footer__signup-form { width: 100%; }
  .ctc-footer__email-input { flex: 1; width: auto; }
  .ctc-nav__center { display: none; }
  .ctc-nav__hamburger { display: flex; }
}

@media (max-width: 720px) {
  .ctc-inner,
  .ctc-nav__inner,
  .ctc-footer__inner { padding: 0 20px; }
  .ctc-section--white,
  .ctc-section--grey  { padding: 52px 0; }
  .ctc-section--black { padding: 64px 0; }
  .ctc-hero { padding: 48px 0 40px; }
  .ctc-video-grid { grid-template-columns: 1fr; }
  .ctc-books-row { grid-template-columns: 1fr; }
  .ctc-library-grid { grid-template-columns: repeat(2, 1fr); }
  .ctc-about-flex { grid-template-columns: 1fr; }
  .ctc-podcast-card { grid-template-columns: 1fr; gap: 24px; }
  .ctc-podcast-card__left { display: flex; justify-content: center; }
  .ctc-footer__cols { grid-template-columns: 1fr; }
  .ctc-sched-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 20px; }
  .ctc-sched-row__yt { display: none; }
  .ctc-church-card { padding: 28px; }
  .ctc-bottom-nav { display: block; }
  footer.ctc-footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .ctc-hero__btns .ctc-btn--white { display: none; }
  .ctc-hero__heading { font-size: 34px; }
  .ctc-tier-grid { grid-template-columns: 1fr 1fr; }
  .ctc-books-row .ctc-book-item { padding: 20px; }
}

/* ════════════════════════════════════════════════════
   INNER PAGE STYLES
   Added for page templates: series, books, partners,
   podcast, churches, about, contact, faq, login, etc.
════════════════════════════════════════════════════ */

/* ─── PAGE HERO (inner pages) ──────────────────────────────────────────────── */
.ctc-page-hero {
  padding: 36px 0 28px;
}
.ctc-page-hero + * { /* remove double spacing when hero meets section */
  margin-top: 0;
}

/* ─── GENERIC PAGE CONTENT ──────────────────────────────────────────────────── */
.ctc-inner-page {
  padding: 64px 0;
  min-height: 60vh;
}
.ctc-container--narrow {
  max-width: 780px;
}
.ctc-page-content__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.ctc-page-content__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}
.ctc-page-content__body {
  line-height: 1.85;
  color: var(--body);
}
.ctc-page-content__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
}
.ctc-page-content__body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2rem 0 0.5rem;
}
.ctc-page-content__body p {
  margin: 0 0 1.125rem;
}
.ctc-page-content__body ul,
.ctc-page-content__body ol {
  margin: 0 0 1.125rem;
  padding-left: 1.5rem;
  line-height: 1.85;
}
.ctc-page-content__body a {
  color: var(--blue);
  text-decoration: underline;
}

/* ─── POST ENTRY (index.php fallback) ──────────────────────────────────────── */
.ctc-post-entry {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.ctc-post-entry__title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}
.ctc-post-entry__meta {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0 0 1.5rem;
}
.ctc-not-found {
  text-align: center;
  padding: 4rem 0;
}
.ctc-not-found h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

/* ─── SERIES ARCHIVE PAGE ───────────────────────────────────────────────────── */
.ctc-series-archive .ctc-series-library-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.ctc-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* ─── BOOKS PAGE ────────────────────────────────────────────────────────────── */
.ctc-books-page-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.ctc-book-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.ctc-book-card:last-child {
  border-bottom: none;
}
.ctc-book-card__cover {
  aspect-ratio: 2/3;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.18);
}
.ctc-book-card__cover-cross {
  font-size: 2rem;
  color: rgba(255,255,255,0.35);
}
.ctc-book-card__cover-title {
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
}
.ctc-book-card__cover-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 500;
}
.ctc-book-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
}
.ctc-book-card__subtitle {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0 0 0.5rem;
}
.ctc-book-card__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 1rem;
}
.ctc-book-card__desc {
  color: var(--body-muted);
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

/* ─── PARTNER PAGE TIER CARDS ───────────────────────────────────────────────── */
.ctc-tier-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ctc-tier-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
.ctc-tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.ctc-tier-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.ctc-tier-card__price {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.ctc-tier-card__period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}
.ctc-tier-card__desc {
  color: var(--body-muted);
  font-size: 0.9375rem;
  margin: 0;
}
.ctc-tier-card__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.ctc-tier-card__perks li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.5;
}
.ctc-tier-card__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ─── PODCAST PAGE ───────────────────────────────────────────────────────────── */
.ctc-podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ctc-podcast-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity var(--transition);
}
.ctc-podcast-badge:hover { opacity: 0.85; }
.ctc-podcast-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--badge-color, #fff);
  flex-shrink: 0;
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────────────────────── */
.ctc-about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.ctc-about-grid__photo {
  position: sticky;
  top: 90px;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────────── */
.ctc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.ctc-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.ctc-contact-item__icon {
  width: 40px;
  height: 40px;
  background: var(--grey);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.ctc-contact-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 3px;
}
.ctc-contact-item__value {
  color: var(--body);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
}
a.ctc-contact-item__value:hover { color: var(--blue); }

/* ─── CONTACT FORM ────────────────────────────────────────────────────────── */
.ctc-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ctc-form-group { display: flex; flex-direction: column; gap: 6px; }
.ctc-form-label { font-size: 0.875rem; font-weight: 600; color: var(--body); }
.ctc-form-input {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--body);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.ctc-form-input:focus { border-color: var(--blue); }
.ctc-form-textarea { resize: vertical; min-height: 140px; }

/* ─── FAQ ACCORDION ──────────────────────────────────────────────────────────── */
.ctc-faq-list { display: flex; flex-direction: column; gap: 0; }
.ctc-faq-item {
  border-bottom: 1px solid var(--border);
}
.ctc-faq-item:first-child { border-top: 1px solid var(--border); }
.ctc-faq-item__q {
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--body);
}
.ctc-faq-item__q::-webkit-details-marker { display: none; }
.ctc-faq-item__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--blue);
  transition: transform var(--transition);
}
.ctc-faq-item[open] .ctc-faq-item__q::after {
  content: '−';
}
.ctc-faq-item__a {
  padding: 0 0 1.25rem;
  color: var(--body-muted);
  line-height: 1.75;
}
.ctc-faq-item__a p { margin: 0; }

/* ─── NAV SCROLLED STATE ─────────────────────────────────────────────────────── */
.ctc-nav.is-scrolled {
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}

/* ─── INNER PAGE RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ctc-book-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .ctc-book-card__cover { max-width: 200px; }
  .ctc-about-grid { grid-template-columns: 1fr; }
  .ctc-about-grid__photo { position: static; }
  .ctc-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .ctc-page-hero { padding: 60px 0 40px; }
  .ctc-tier-grid { grid-template-columns: 1fr; }
  .ctc-podcast-platforms { gap: 8px; }
  .ctc-podcast-badge { font-size: 12px; padding: 8px 14px; }
}

/* Container centering — added fix */
.ctc-container {
  margin: 0 auto;
  padding: 0 48px;
}


/* ── Church directory: region grouping ──────────────────────────────────── */
.ctc-region-section {
  margin-bottom: 2rem;
}
.ctc-region-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-neutral-500, #6b7280);
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-neutral-200, #e5e7eb);
}
.ctc-region-section--intl {
  margin-top: 0.5rem;
}

/* ── Church directory: disclaimer note ──────────────────────────────────── */
.ctc-disclaimer {
  font-size: 0.85rem;
  color: var(--color-neutral-600, #4b5563);
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
}
.ctc-disclaimer a {
  color: inherit;
  text-decoration: underline;
}


/* =====================================================
   CTC CHURCH STATE PAGES
   ===================================================== */

.ctc-state-page { max-width: 900px; margin: 0 auto; padding: 2rem 1.25rem; }

.ctc-state-hero { margin-bottom: 1.5rem; }
.ctc-state-title { font-size: 1.75rem; margin: 0 0 0.25rem; }
.ctc-state-sub { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-neutral-500, #6b7280); margin: 0; }

.ctc-map { height: 380px; border-radius: 6px; margin-bottom: 1.5rem;
  border: 1px solid var(--color-neutral-200, #e5e7eb); }

.ctc-state-layout { display: flex; flex-direction: column; gap: 0; }

.ctc-church-list { margin-bottom: 2rem; }
.ctc-loading { color: var(--color-neutral-500, #6b7280); font-style: italic; }
.ctc-error { color: #dc2626; }
.ctc-empty { color: var(--color-neutral-500, #6b7280); }

.ctc-churches { list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0; }

.ctc-church-item { padding: 0.9rem 0; border-bottom: 1px solid var(--color-neutral-100, #f3f4f6); }
.ctc-church-item:last-child { border-bottom: none; }

.ctc-church-name { font-weight: 600; font-size: 1rem; }
.ctc-church-name a { color: inherit; text-decoration: none; }
.ctc-church-name a:hover { text-decoration: underline; }
.ctc-church-loc { font-size: 0.85rem; color: var(--color-neutral-500, #6b7280); margin-top: 0.15rem; }
.ctc-church-pastor { font-size: 0.85rem; color: var(--color-neutral-600, #4b5563); margin-top: 0.1rem; }
.ctc-church-desc { font-size: 0.85rem; color: var(--color-neutral-600, #4b5563);
  margin: 0.35rem 0 0; line-height: 1.5; }

.ctc-submit-strip { background: var(--color-neutral-50, #f9fafb);
  border: 1px solid var(--color-neutral-200, #e5e7eb);
  border-radius: 6px; padding: 1rem 1.25rem; text-align: center; }
.ctc-submit-strip p { margin: 0; font-size: 0.9rem; }
.ctc-submit-link-btn { font-weight: 600; color: var(--color-primary, #1d4ed8); text-decoration: none; }
.ctc-submit-link-btn:hover { text-decoration: underline; }

/* =====================================================
   CTC SUBMIT-A-CHURCH PAGE
   ===================================================== */

.ctc-submit-page { max-width: 700px; margin: 0 auto; padding: 2rem 1.25rem; }

.ctc-submit-header { margin-bottom: 1.75rem; }
.ctc-submit-header h1 { font-size: 1.75rem; margin: 0 0 0.5rem; }
.ctc-submit-intro { font-size: 0.9rem; color: var(--color-neutral-600, #4b5563);
  line-height: 1.6; margin: 0; }

.ctc-submit-form { display: flex; flex-direction: column; gap: 1.1rem; }

.ctc-field { display: flex; flex-direction: column; gap: 0.3rem; }
.ctc-field label { font-size: 0.85rem; font-weight: 600;
  color: var(--color-neutral-700, #374151); }
.ctc-req { color: #dc2626; }
.ctc-field input, .ctc-field textarea {
  border: 1px solid var(--color-neutral-300, #d1d5db);
  border-radius: 4px; padding: 0.5rem 0.65rem; font-size: 0.95rem;
  width: 100%; box-sizing: border-box; transition: border-color 0.15s;
  font-family: inherit; background: #fff; }
.ctc-field input:focus, .ctc-field textarea:focus {
  outline: none; border-color: var(--color-primary, #1d4ed8);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.1); }
.ctc-field textarea { resize: vertical; min-height: 80px; }

.ctc-field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.ctc-field-note { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--color-neutral-500, #6b7280);
  margin: 0; padding-top: 0.25rem; }

.ctc-submit-msg { font-size: 0.9rem; padding: 0.65rem 0.9rem; border-radius: 4px;
  display: none; line-height: 1.4; }
.ctc-submit-msg:not(:empty) { display: block; }
.ctc-msg-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.ctc-msg-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.ctc-btn-submit { align-self: flex-start; background: var(--color-primary, #1d4ed8);
  color: #fff; font-size: 0.95rem; font-weight: 600; padding: 0.6rem 1.5rem;
  border: none; border-radius: 4px; cursor: pointer; transition: background 0.15s; }
.ctc-btn-submit:hover { background: var(--color-primary-dark, #1e40af); }
.ctc-btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }


/* Homepage church map markers */
.ctc-cm { cursor: pointer; }
.ctc-md {
  width: 14px;
  height: 14px;
  background-color: #3B6FFF;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
  margin-top: 2px;
}












/* -- One-time gift link (below tier grid) -- */
.ctc-onetime-wrap {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.85rem;
}
.ctc-onetime-wrap a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.ctc-onetime-wrap a:hover {
  color: rgba(255,255,255,0.9);
}