@import url('colors_and_type.css');

/* =========================================================
   HOPE CHURCH — SITE CSS
   ========================================================= */

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 28px; }

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announce-bar {
  background: var(--hope-navy);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 60;
}
.announce-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px 56px 10px 28px;
  max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.announce-bar a { color: var(--hope-sky); font-weight: 700; text-underline-offset: 3px; }
.announce-bar a:hover { color: #fff; }
.announce-bar-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hope-bright); margin-right: 2px;
}
.announce-bar-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; color: #fff;
  cursor: pointer; font-size: 18px; padding: 4px 8px; border-radius: 4px;
  line-height: 1;
}
.announce-bar-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* =========================================================
   SERVICE TIME STRIP (top bar, above header)
   ========================================================= */
.sunday-strip {
  background: var(--ink-900);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 9px 0;
  position: relative;
  z-index: 55;
}
.sunday-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sunday-strip-left { display: flex; align-items: center; gap: 20px; font-weight: 500; }
.sunday-strip-label {
  font-size: 11px; font-weight: 900; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--hope-sky);
}
.sunday-strip-times { display: flex; align-items: center; gap: 14px; font-variant-numeric: tabular-nums; }
.sunday-strip-times span { color: #fff; font-weight: 700; }
.sunday-strip-times em {
  display: inline-block; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.35); margin: 0 2px 2px 2px;
}
.sunday-strip-right { display: flex; align-items: center; gap: 20px; }
.sunday-strip-right a {
  color: #fff; font-size: 12.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.sunday-strip-right a:hover { color: #fff; text-decoration: none; }

/* =========================================================
   SITE HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-hairline);
}
.site-header.dark {
  background: rgba(26,31,38,0.92);
  border-bottom-color: rgba(255,255,255,0.08);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px; gap: 32px;
}
.brand img { height: 52px; display: block; }
.site-nav { display: flex; gap: 30px; align-items: center; }
.site-nav a {
  color: var(--fg-2); font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em; position: relative; padding: 8px 0;
}
.site-nav a:hover { color: var(--hope-blue); text-decoration: none; }
.site-nav a.active { color: var(--hope-blue); }
.site-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--hope-blue); border-radius: 2px;
}
.site-header.dark .site-nav a { color: #fff; }
.site-header.dark .site-nav a:hover { color: #fff; }
.site-header.dark .site-nav a.active { color: var(--hope-sky); }
.site-header.dark .site-nav a.active::after { background: var(--hope-sky); }
.site-cta { display: flex; align-items: center; gap: 10px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.01em;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out); text-decoration: none; white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-md { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-xl { padding: 18px 34px; font-size: 16px; }

.btn-primary { background: var(--hope-blue); color: #fff; box-shadow: 0 8px 22px rgba(0,130,202,0.28); }
.btn-primary:hover { background: var(--hope-navy); color: #fff; text-decoration: none; }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary { background: #fff; color: var(--hope-blue); border-color: var(--hope-blue); }
.btn-secondary:hover { background: var(--bg-brand-soft); color: var(--hope-navy); text-decoration: none; }

.btn-ghost { background: transparent; color: var(--fg-1); }
.btn-ghost:hover { background: var(--ink-100); text-decoration: none; }

.btn-ghost-on-dark {
  background: rgba(255,255,255,0.1); color: #fff;
  border-color: rgba(255,255,255,0.22); backdrop-filter: blur(8px);
}
.btn-ghost-on-dark:hover { background: rgba(255,255,255,0.22); color: #fff; text-decoration: none; }

.btn-outline-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-on-dark:hover { background: #fff; color: var(--hope-navy); text-decoration: none; }

.btn-icon { width: 18px; height: 18px; display: inline-block; }

/* =========================================================
   SECTION HEADER
   ========================================================= */
.section-header { margin-bottom: 48px; }
.section-header.align-center { text-align: center; }
.section-header .eyebrow { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 14px; font-size: 44px; line-height: 1.08; letter-spacing: -0.015em; }
.section-header .lead { max-width: 620px; font-size: 18px; }
.section-header.align-center .lead { margin-left: auto; margin-right: auto; }

/* =========================================================
   HERO — VARIATION A: classic photo-led full-bleed
   ========================================================= */
.hero-a { position: relative; min-height: 680px; overflow: hidden; color: #fff; isolation: isolate; }
/* Soft vignette at the bottom edge — deepens the blue into a near-
   navy so the hero feels "finished" instead of cropped, and gives
   whatever section follows a graceful handoff. Sits above the photo
   (z:-2) and below content (z:auto). The "GRAY, TENNESSEE" bottom
   strip stays readable because it lands on the darker end of the fade. */
.hero-a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 240px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 18, 40, 0.55) 55%,
    rgba(0, 18, 40, 0.92) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-a-media { position: absolute; inset: 0; z-index: -2; }
.hero-a-photo {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,30,60,0.15) 0%, rgba(0,30,60,0.7) 100%);
  background-size: cover;
  background-position: center 40%;
}
.hero-a-photo.fallback {
  background:
    radial-gradient(1400px 700px at 20% 20%, rgba(107,196,232,0.35), transparent 60%),
    radial-gradient(1000px 600px at 80% 80%, rgba(0,171,248,0.3), transparent 60%),
    linear-gradient(135deg, #001E48 0%, #004A98 45%, #0082CA 100%);
}
.hero-a-photo.fallback::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('icon-white.png');
  background-repeat: no-repeat; background-position: 96% 115%;
  background-size: 640px auto; opacity: 0.06;
}
.hero-a-inner { position: relative; padding: 140px 28px 160px; max-width: 1200px; margin: 0 auto; }
.hero-a-eyebrow { color: var(--hope-sky); margin-bottom: 24px; font-size: 13px; }
.hero-a-title { color: #fff; margin-bottom: 24px; max-width: 900px; font-size: 88px; line-height: 0.96; letter-spacing: -0.025em; font-weight: 900; font-family: var(--font-display); }
.hero-a-title em { font-style: normal; color: var(--hope-sky); }
.hero-a-lead { color: #fff; max-width: 540px; margin-bottom: 40px; font-size: 19px; line-height: 1.55; }
.hero-a-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-a-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.25) 100%);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; font-weight: 700;
  max-width: 1200px; margin: 0 auto;
}
.hero-a-bottom-right { display: flex; gap: 24px; }

/* =========================================================
   HERO — VARIATION B: editorial split
   ========================================================= */
.hero-b { padding: 60px 0 100px; background: #fff; position: relative; }
.hero-b-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.hero-b-copy { padding: 20px 0; }
.hero-b-eyebrow { margin-bottom: 20px; }
.hero-b-title { font-size: 76px; line-height: 0.98; letter-spacing: -0.025em; font-weight: 900; margin-bottom: 28px; font-family: var(--font-display); }
.hero-b-title span { color: var(--hope-blue); display: block; }
.hero-b-lead { font-size: 19px; line-height: 1.6; color: var(--fg-2); max-width: 500px; margin-bottom: 36px; }
.hero-b-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-b-meta { display: flex; gap: 40px; padding-top: 28px; border-top: 1px solid var(--border-hairline); }
.hero-b-meta-item { }
.hero-b-meta-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 6px; }
.hero-b-meta-value { font-size: 18px; font-weight: 800; color: var(--fg-1); }
.hero-b-photo {
  position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0,30,60,0) 40%, rgba(0,30,60,0.45) 100%);
  background-size: cover; background-position: center;
}
.hero-b-photo.fallback {
  background: linear-gradient(160deg, #0082CA 0%, #004A98 100%);
}
.hero-b-photo.fallback::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('icon-white.png');
  background-repeat: no-repeat; background-position: center 45%;
  background-size: 260px auto; opacity: 0.22;
}
.hero-b-photo-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  color: #fff; display: flex; justify-content: space-between; align-items: flex-end;
}
.hero-b-photo-badge .tag {
  background: rgba(255,255,255,0.18); padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* =========================================================
   HERO — VARIATION C: bold faceted
   ========================================================= */
.hero-c {
  position: relative; background: var(--ink-900); color: #fff;
  padding: 80px 0 0; overflow: hidden;
}
.hero-c-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: end; padding-bottom: 80px; }
.hero-c-left { position: relative; z-index: 2; }
.hero-c-eyebrow { color: var(--hope-bright); margin-bottom: 28px; display: inline-flex; align-items: center; gap: 10px; }
.hero-c-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--hope-bright); }
.hero-c-title {
  font-family: var(--font-display);
  font-size: 140px; line-height: 0.88; letter-spacing: -0.035em; font-weight: 900;
  margin-bottom: 36px;
}
.hero-c-title .line { display: block; }
.hero-c-title .line:nth-child(2) { color: var(--hope-bright); padding-left: 48px; }
.hero-c-title .line:nth-child(3) { padding-left: 96px; }
.hero-c-sub { font-size: 20px; color: #fff; max-width: 480px; margin-bottom: 36px; }
.hero-c-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-c-right {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 20px; overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0,30,60,0) 50%, rgba(0,30,60,0.55) 100%);
  background-size: cover; background-position: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.hero-c-right.fallback {
  background: linear-gradient(135deg, var(--hope-blue), var(--hope-navy));
}
.hero-c-right.fallback::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('icon-white.png');
  background-repeat: no-repeat; background-position: center;
  background-size: 180px auto; opacity: 0.22;
}

/* Giant background letters */
.hero-c-bg {
  position: absolute; left: -40px; bottom: -100px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 440px; line-height: 0.8; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.025);
  pointer-events: none; user-select: none;
  z-index: 0;
}

.hero-c-bar {
  background: var(--hope-blue);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; z-index: 2;
}
.hero-c-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-c-bar-label { font-size: 12px; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; }
.hero-c-bar-times { display: flex; gap: 32px; align-items: baseline; }
.hero-c-bar-times b { font-size: 28px; font-weight: 900; letter-spacing: -0.02em; font-family: var(--font-display); }
.hero-c-bar-times s { text-decoration: none; color: #fff; font-size: 14px; margin-left: 4px; }

/* =========================================================
   MISSION BAR (used on all variants — "Love God. Love people. Make disciples.")
   ========================================================= */
.mission-bar {
  background: #fff;
  padding: 72px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-hairline);
}
.mission-bar-eyebrow { color: var(--fg-3); margin-bottom: 20px; font-size: 12px; }
.mission-bar-words {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 1000px; margin: 0 auto;
  text-wrap: balance;
}
.mission-bar-words span { color: var(--hope-blue); }
.mission-bar-words span + span { color: var(--hope-bright); }
.mission-bar-words span + span + span { color: var(--hope-navy); }

/* =========================================================
   SERVICE TIMES BLOCK
   ========================================================= */
.service-times { background: var(--ink-900); color: #fff; padding: 88px 0; position: relative; overflow: hidden; }
.service-times::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px;
  background-image: url('icon-white.png');
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.04; pointer-events: none;
}
.service-times-header { text-align: center; margin-bottom: 56px; position: relative; }
.service-times-header .eyebrow { color: var(--hope-sky); }
.service-times-title { color: #fff; font-size: 52px; margin: 14px 0 0; font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; }
.service-times-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto; position: relative; }
.service-time {
  padding: 36px 30px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--dur-base) var(--ease-out);
  position: relative; overflow: hidden;
}
.service-time:hover { background: rgba(107,196,232,0.1); border-color: rgba(107,196,232,0.4); transform: translateY(-3px); }
.service-time-num {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--font-mono); font-size: 11px;
  color: #fff; letter-spacing: 0.1em;
}
.st-time {
  font-family: var(--font-display); font-size: 56px; font-weight: 900;
  color: var(--hope-sky); letter-spacing: -0.03em; line-height: 1;
}
.st-time s { text-decoration: none; font-size: 24px; color: rgba(107,196,232,0.6); margin-left: 4px; letter-spacing: 0; }
.st-name { font-size: 18px; font-weight: 700; margin-top: 18px; }
.st-desc { font-size: 14px; color: #fff; margin-top: 8px; line-height: 1.55; }

.service-times-foot {
  text-align: center; margin-top: 48px;
  color: #fff; font-size: 14px;
}
.service-times-foot a { color: var(--hope-sky); font-weight: 700; }

/* =========================================================
   NEW HERE
   ========================================================= */
.new-here { padding: 112px 0; background: #fff; }
.new-here-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.new-here-copy h2 { font-size: 56px; line-height: 1.02; letter-spacing: -0.025em; margin: 14px 0 20px; }
.new-here-copy .lead { font-size: 19px; margin-bottom: 32px; max-width: 500px; }
.new-here-checklist { list-style: none; padding: 0; margin: 32px 0 40px; display: flex; flex-direction: column; gap: 14px; }
.new-here-checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--fg-2); }
.new-here-checklist li::before {
  content: ''; width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg-brand-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230082CA' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
  flex-shrink: 0; margin-top: 2px;
}
.new-here-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.new-here-photo {
  position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(0,74,152,0.1), rgba(0,130,202,0.25));
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
.new-here-photo > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.new-here-photo.fallback {
  background: linear-gradient(135deg, var(--hope-navy), var(--hope-blue));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; padding: 24px;
}
.new-here-photo.fallback img { width: 110px; opacity: 0.85; margin-bottom: 20px; }
.new-here-photo.fallback span { font-size: 13px; letter-spacing: 0.04em; }

/* =========================================================
   SERMON / MESSAGES (Subsplash embed area)
   ========================================================= */
.messages-section { padding: 112px 0; background: var(--ink-050); position: relative; }
.messages-section.dark { background: var(--ink-900); color: #fff; }
.messages-section.dark .section-header h2 { color: #fff; }
.messages-section.dark .section-header .lead { color: #fff; }
.messages-section.dark .section-header .eyebrow { color: var(--hope-sky); }

.messages-featured {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
  margin-bottom: 56px;
}
.messages-featured-main {
  aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; position: relative;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  background-size: cover; background-position: center;
  cursor: pointer;
}
.messages-featured-main.fallback {
  background: linear-gradient(135deg, var(--hope-blue), var(--hope-navy));
}
.messages-featured-main.fallback::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('icon-white.png');
  background-repeat: no-repeat; background-position: 85% 90%;
  background-size: 180px auto; opacity: 0.15;
}
.msg-play-big {
  position: absolute; left: 32px; bottom: 32px;
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--hope-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; padding-left: 5px; font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur-base) var(--ease-out);
}
.messages-featured-main:hover .msg-play-big { transform: scale(1.08); }
.messages-featured-meta {
  position: absolute; left: 32px; right: 32px; bottom: 128px;
  color: #fff;
}
.messages-featured-meta .tag {
  display: inline-block; background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px; font-size: 11px;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.messages-featured-meta h3 { font-size: 36px; color: #fff; margin: 0 0 8px; letter-spacing: -0.015em; }
.messages-featured-meta p { font-size: 14px; color: #fff; margin: 0; }

.messages-featured-side { display: flex; flex-direction: column; gap: 14px; }
.msg-list-card {
  display: grid; grid-template-columns: 140px 1fr; gap: 18px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 14px;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.messages-section.dark .msg-list-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.msg-list-card:hover { border-color: var(--hope-blue); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.msg-list-thumb {
  aspect-ratio: 16/10; border-radius: 8px;
  background: linear-gradient(135deg, var(--hope-blue), var(--hope-navy));
  position: relative;
}
.msg-list-thumb::before {
  content: '▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: #fff; font-size: 14px;
}
.msg-list-body { padding: 2px 0; display: flex; flex-direction: column; justify-content: center; }
.msg-list-meta { font-size: 11px; color: var(--fg-3); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.messages-section.dark .msg-list-meta { color: #fff; }
.msg-list-title { font-size: 16px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; color: var(--fg-1); }
.messages-section.dark .msg-list-title { color: #fff; }
.msg-list-speaker { font-size: 13px; color: var(--fg-3); }

/* Grid of message cards (for archive page) */
.messages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.msg-card {
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.msg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--ink-200); }
.msg-thumb { aspect-ratio: 16/9; position: relative; background: linear-gradient(135deg, var(--hope-blue), var(--hope-navy)); }
.msg-thumb.photo-1 { background-image: linear-gradient(150deg, rgba(0,74,152,0.4), rgba(0,30,60,0.2)), linear-gradient(135deg, var(--hope-blue), var(--hope-navy)); }
.msg-thumb.photo-2 { background-image: linear-gradient(150deg, rgba(0,171,248,0.4), rgba(0,130,202,0.2)), linear-gradient(135deg, var(--hope-blue), var(--hope-navy)); }
.msg-thumb-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.msg-series-tag { position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,0.4); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; backdrop-filter: blur(8px); }
.msg-play { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--hope-blue); display: flex; align-items: center; justify-content: center; font-size: 18px; padding-left: 4px; }
.msg-duration { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.65); color: #fff; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.msg-body { padding: 20px 22px 24px; }
.msg-meta { font-size: 12px; color: var(--fg-3); font-weight: 600; letter-spacing: 0.02em; }
.msg-title { margin: 6px 0 4px; font-size: 19px; line-height: 1.3; font-weight: 700; }
.msg-speaker { font-size: 13px; color: var(--fg-2); }

/* =========================================================
   SUBSPLASH EMBED WRAPPER STYLES
   ========================================================= */
.sap-embed-player {
  position: relative; width: 100%; height: 0; padding-top: 56.25%;
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink-900);
}
.sap-embed-player > iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: 0;
}
.subsplash-embed-host {
  width: 100%; min-height: 200px;
  border-radius: 16px;
  overflow: hidden;
}
.subsplash-embed-host iframe { border: 0; width: 100%; display: block; }
.embed-frame {
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}
.embed-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3); margin-top: 12px;
}
.embed-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #2BA564; }

/* =========================================================
   EMBED SLOT (Planning Center placeholder)
   ========================================================= */
.embed-slot {
  border: 2px dashed var(--border-default);
  border-radius: 16px;
  background:
    repeating-linear-gradient(45deg, var(--ink-050), var(--ink-050) 10px, #fff 10px, #fff 20px);
  padding: 56px 32px;
  text-align: center;
  color: var(--fg-3);
  position: relative;
}
.embed-slot-label {
  display: inline-block; background: var(--ink-900); color: #fff;
  padding: 5px 10px; border-radius: 4px; font-size: 10px;
  font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
  position: absolute; top: -11px; left: 24px;
}
.embed-slot-label.subsplash { background: #4A5BDB; }
.embed-slot-label.pco { background: #2F855A; }
.embed-slot-title { font-size: 18px; font-weight: 700; color: var(--fg-1); margin-bottom: 6px; }
.embed-slot-desc { font-size: 14px; margin-bottom: 0; max-width: 420px; margin-left: auto; margin-right: auto; }

/* Fake Subsplash sermon player */
.subsplash-player {
  border-radius: 16px; overflow: hidden;
  background: var(--ink-900); color: #fff;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.subsplash-player-video {
  aspect-ratio: 16/9; position: relative;
  background: linear-gradient(135deg, #0082CA 0%, #001E48 100%);
  display: flex; align-items: center; justify-content: center;
}
.subsplash-player-video::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('icon-white.png');
  background-repeat: no-repeat; background-position: center;
  background-size: 200px auto; opacity: 0.08;
}
.subsplash-play-button {
  position: relative;
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--hope-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; padding-left: 5px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out);
}
.subsplash-play-button:hover { transform: scale(1.06); }
.subsplash-player-info { padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.subsplash-player-info-left h4 { color: #fff; margin: 0 0 4px; font-size: 18px; }
.subsplash-player-info-left p { color: #fff; margin: 0; font-size: 13px; }
.subsplash-badge { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; }

/* =========================================================
   SERMONS PAGE — "Subscribe & Listen" block
   Two podcast cards with Apple / Spotify / RSS pills.
   Reuses .podcast-link-pill from podcast-prayer.css.
   ========================================================= */
.sermons-subscribe-head {
  text-align: center; max-width: 640px; margin: 0 auto 36px;
}
.sermons-subscribe-head .eyebrow { color: var(--hope-blue); }
.sermons-subscribe-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 34px; line-height: 1.1; letter-spacing: -0.02em;
  margin: 10px 0 12px; color: var(--fg-1);
}
.sermons-subscribe-head p { font-size: 16px; line-height: 1.6; color: var(--fg-2); margin: 0; }

.sermons-podcasts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.sermons-podcast-card {
  display: grid; grid-template-columns: 96px 1fr; gap: 20px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-hairline);
  border-radius: 14px; padding: 22px;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.sermons-podcast-card:hover {
  border-color: var(--hope-blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.sermons-podcast-cover {
  aspect-ratio: 1 / 1; width: 96px;
  border-radius: 10px; overflow: hidden;
  background: var(--ink-050);
  box-shadow: var(--shadow-xs);
}
.sermons-podcast-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sermons-podcast-body { display: flex; flex-direction: column; min-width: 0; }
.sermons-podcast-tagline {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--hope-blue);
  margin-bottom: 6px;
}
.sermons-podcast-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; line-height: 1.1; letter-spacing: -0.015em;
  margin: 0 0 8px; color: var(--fg-1);
}
.sermons-podcast-desc {
  font-size: 14.5px; line-height: 1.55; color: var(--fg-2);
  margin: 0 0 14px;
}
.sermons-podcast-links { margin-top: auto; }

@media (max-width: 820px) {
  .sermons-podcasts { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .sermons-podcast-card { grid-template-columns: 72px 1fr; gap: 16px; padding: 18px; }
  .sermons-podcast-cover { width: 72px; }
  .sermons-podcast-name { font-size: 19px; }
}

/* =========================================================
   EVENTS
   ========================================================= */
.events-section { padding: 112px 0; background: #fff; }
.events-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  width: 100%;
  padding: 28px 32px;
  background: var(--ink-050);
  border: 1px solid var(--border-hairline);
  border-radius: 18px;
  text-align: left;
  cursor: pointer;
  font: inherit; color: inherit;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.events-toggle:hover { background: #fff; border-color: var(--ink-300, #c8c9cf); box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06); }
.events-toggle:focus-visible { outline: 2px solid var(--hope-blue); outline-offset: 3px; }
.events-toggle-text { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.events-toggle-text .eyebrow { margin: 0; }
.events-toggle-text h2 { margin: 0; font-size: 36px; line-height: 1.1; letter-spacing: -0.015em; }
.events-toggle-text .lead { margin: 0; max-width: 620px; font-size: 17px; color: var(--fg-2, #4a5060); }
.events-toggle-chevron {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-hairline);
  color: var(--hope-blue);
  transform: rotate(90deg);
  transition: transform 0.22s ease, background 0.18s ease;
}
.events-toggle.is-open .events-toggle-chevron { transform: rotate(-90deg); background: var(--hope-blue); color: #fff; border-color: var(--hope-blue); }
.events-panel { padding-top: 40px; }
.events-panel[hidden] { display: none; }
@media (max-width: 700px) {
  .events-toggle { padding: 20px; gap: 16px; }
  .events-toggle-text h2 { font-size: 26px; }
  .events-toggle-text .lead { font-size: 15px; }
  .events-toggle-chevron { width: 38px; height: 38px; }
}
.events-list { display: flex; flex-direction: column; gap: 12px; }
.event-card {
  display: grid; grid-template-columns: 88px 1fr auto 24px;
  align-items: center; gap: 24px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
}
.event-card:hover { border-color: var(--hope-blue); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.event-date {
  background: var(--bg-brand-soft); color: var(--hope-navy);
  border-radius: 10px; padding: 10px 8px; text-align: center;
}
.event-month { font-size: 11px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.event-day { font-size: 30px; font-weight: 900; line-height: 1; margin-top: 2px; letter-spacing: -0.02em; }
.event-tag { display: inline-block; font-size: 11px; font-weight: 800; color: var(--hope-blue); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
.event-title { margin: 0 0 4px; font-size: 18px; font-weight: 700; }
.event-meta { font-size: 13px; color: var(--fg-3); }
.event-cta { font-size: 12px; color: var(--hope-blue); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.event-chevron { color: var(--ink-400); font-size: 22px; font-weight: 300; }

/* Events grid */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.event-card-big {
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.event-card-big:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.event-card-big-img {
  aspect-ratio: 16/10; background: linear-gradient(135deg, var(--hope-blue), var(--hope-navy));
  position: relative;
}
.event-card-big-img .event-date {
  position: absolute; top: 14px; left: 14px;
  background: #fff; box-shadow: var(--shadow-sm);
}
.event-card-big-body { padding: 22px 24px; }
.event-card-big-body h3 { font-size: 20px; margin: 0 0 6px; }
.event-card-big-body p { font-size: 14px; margin: 0 0 14px; color: var(--fg-3); }

/* =========================================================
   MINISTRIES
   ========================================================= */
.ministries-section { padding: 112px 0; background: var(--ink-050); }
.ministries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ministries-grid.ministries-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ministries-grid.ministries-grid-4 .ministry-card { padding: 28px; }
.ministries-grid.ministries-grid-4 .ministry-card h3 { font-size: 22px; }
.ministry-card {
  background: #fff; border: 1px solid var(--border-hairline);
  border-radius: 18px; padding: 36px;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer; position: relative; overflow: hidden;
}
.ministry-card:hover { border-color: var(--hope-blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ministry-card::before {
  content: ''; position: absolute; left: 0; top: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--hope-sky), var(--hope-blue), var(--hope-navy));
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur-base) var(--ease-out);
}
.ministry-card:hover::before { transform: scaleX(1); }
.ministry-card-age {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hope-blue); margin-bottom: 16px;
}
.ministry-card h3 { font-size: 26px; margin-bottom: 12px; letter-spacing: -0.01em; }
.ministry-card p { font-size: 15px; color: var(--fg-2); margin-bottom: 24px; }
.ministry-card-link {
  font-size: 13px; font-weight: 700; color: var(--hope-blue); letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 6px;
}
.ministry-card-link:hover { color: var(--hope-navy); text-decoration: none; }

/* =========================================================
   SERVE PAGE
   ========================================================= */
.serve-page { padding: 96px 0 128px; }
.serve-page .serve-group + .serve-group { margin-top: 112px; padding-top: 96px; border-top: 1px solid var(--border-hairline); }
.serve-group-head { max-width: 760px; margin-bottom: 48px; }
.serve-group-num {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--hope-blue); margin-bottom: 16px;
}
.serve-group-head h2 { font-size: 44px; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 20px; }
.serve-group-head p { font-size: 17px; line-height: 1.6; color: var(--fg-2); }

@media (max-width: 720px) {
  .serve-page { padding: 64px 0 88px; }
  .serve-page .serve-group + .serve-group { margin-top: 72px; padding-top: 64px; }
  .serve-group-head { margin-bottom: 32px; }
  .serve-group-head h2 { font-size: 32px; }
  .serve-group-head p { font-size: 16px; }
}

/* Wide ministry card (e.g. First Impressions umbrella card with role list) */
.ministry-card-wide { grid-column: 1 / -1; padding: 48px; }
.ministry-card-wide > h3 { font-size: 30px; }
.ministry-card-wide > p { font-size: 16px; max-width: 720px; margin-bottom: 32px; }
.ministry-card-roles {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 28px;
}
.ministry-card-roles li {
  display: flex; flex-direction: column; gap: 4px;
  padding-left: 16px; border-left: 2px solid var(--hope-sky);
}
.ministry-card-roles li strong {
  font-size: 14px; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--hope-navy);
}
.ministry-card-roles li span { font-size: 14px; line-height: 1.5; color: var(--fg-2); }

@media (max-width: 960px) {
  .ministry-card-roles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .ministry-card-wide { padding: 28px; }
  .ministry-card-wide > h3 { font-size: 24px; }
  .ministry-card-roles { grid-template-columns: 1fr; gap: 14px; }
}

/* =========================================================
   CTA BAND (Give / Next Steps)
   ========================================================= */
.cta-band {
  padding: 112px 0;
  background:
    radial-gradient(800px 400px at 80% 50%, rgba(107,196,232,0.2), transparent 60%),
    linear-gradient(135deg, #001E48 0%, #004A98 60%, #0082CA 100%);
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -80px; bottom: -80px;
  width: 360px; height: 360px;
  background-image: url('icon-white.png');
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.06; pointer-events: none;
}
.cta-band .eyebrow { color: var(--hope-sky); }
.cta-band h2 { color: #fff; font-size: 56px; letter-spacing: -0.02em; line-height: 1.05; max-width: 800px; margin: 14px auto 20px; }
.cta-band p { color: #fff; font-size: 18px; max-width: 560px; margin: 0 auto 36px; }
.cta-band-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   APP DOWNLOAD (Subsplash app)
   ========================================================= */
.app-band { padding: 96px 0; background: var(--ink-050); }
.app-band-inner { display: grid; grid-template-columns: 1fr 0.8fr; gap: 64px; align-items: center; }
.app-band-copy h2 { font-size: 44px; letter-spacing: -0.02em; margin-bottom: 16px; }
.app-band-copy p { font-size: 17px; color: var(--fg-2); max-width: 460px; margin-bottom: 28px; }
.app-band-features { list-style: none; padding: 0; margin: 0 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; max-width: 460px; }
.app-band-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--fg-2); }
.app-band-features li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--hope-blue) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat;
  flex-shrink: 0; margin-top: 1px;
}
.app-stores { display: flex; gap: 12px; }
.app-store-btn {
  background: var(--ink-900); color: #fff; padding: 10px 18px;
  border-radius: 10px; display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.app-store-btn:hover { background: var(--ink-800); text-decoration: none; color: #fff; transform: translateY(-1px); }
.app-store-btn svg { flex-shrink: 0; }
.app-store-btn-small { font-size: 10px; letter-spacing: 0.08em; opacity: 0.8; text-transform: uppercase; line-height: 1.2; }
.app-store-btn-big { font-size: 17px; font-weight: 600; margin-top: 1px; letter-spacing: -0.01em; line-height: 1.1; }

.app-phone {
  position: relative; max-width: 280px; margin: 0 auto;
  /* Height comes from the screenshot's natural aspect — forcing a 9:19.5
     bezel made the inner screen narrower than the 1260x2736 screenshot,
     which then got side-cropped by object-fit: cover. */
  background: #0a0a0a;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.35),
    0 0 0 1px rgba(0,0,0,0.5),
    inset 0 0 0 2px #2a2a2a;
}
.app-phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; border-radius: 999px;
  background: #000; z-index: 2;
}
.app-phone-screen {
  width: 100%; border-radius: 34px; overflow: hidden;
  background: #000;
  position: relative;
  color: #fff;
  display: flex; flex-direction: column;
}
.app-phone-screen--image {
  background: #000;
}
.app-phone-screen--image img {
  width: 100%; height: auto; display: block;
}
.app-phone-status { padding: 16px 20px 0; font-size: 11px; font-weight: 700; display: flex; justify-content: space-between; opacity: 0.8; }
.app-phone-brand { padding: 20px 20px 14px; }
.app-phone-brand img { height: 22px; }
.app-phone-cards { padding: 10px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; overflow: hidden; }
.app-phone-card {
  background: rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 14px;
  backdrop-filter: blur(10px);
  font-size: 11px;
}
.app-phone-card .label { font-size: 9px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.app-phone-card .title { font-weight: 700; font-size: 12px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--ink-900); color: #fff; padding-top: 88px; }
.footer-inner {
  display: grid; grid-template-columns: 1.1fr 2.5fr;
  gap: 72px; padding-bottom: 64px;
}
.footer-brand img { width: 180px; display: block; }
.footer-tagline { margin-top: 22px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--hope-sky); line-height: 1.6; }
.footer-address { margin-top: 24px; font-size: 14px; line-height: 1.6; color: #fff; }
.footer-address strong { color: #fff; font-weight: 700; display: block; margin-bottom: 2px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.footer-cols h5 { color: #fff; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 16px; font-weight: 800; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-cols a { color: #fff; }
.footer-cols a:hover { color: #fff; text-decoration: none; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); color: #fff; font-size: 14px; border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover { background: var(--hope-blue); color: #fff; border-color: var(--hope-blue); }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bar-inner { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #fff; gap: 20px; flex-wrap: wrap; }
.footer-bar-links { display: flex; gap: 24px; }
.footer-bar-links a { color: #fff; }
.footer-bar-links a:hover { color: #fff; text-decoration: none; }

/* =========================================================
   PAGE HEADER (subpages)
   ========================================================= */
.page-header {
  padding: 100px 0 80px;
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(107,196,232,0.18), transparent 60%),
    linear-gradient(180deg, var(--ink-900) 0%, #0a1a35 100%);
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.page-header .eyebrow { color: var(--hope-sky); }
.page-header h1 { color: #fff; font-size: 72px; line-height: 1.0; letter-spacing: -0.025em; margin: 16px 0 20px; font-weight: 900; font-family: var(--font-display); }
.page-header .lead { color: #fff; font-size: 19px; max-width: 640px; margin: 0 auto; }

/* =========================================================
   LEGAL / INFO PAGES (Privacy, Accessibility)
   ========================================================= */
.legal-page { padding: 80px 0 120px; background: var(--bg-page); }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-updated {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--fg-3); margin: 0 0 40px;
}
.legal-body { color: var(--fg-1); font-size: 17px; line-height: 1.7; }
.legal-body h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--fg-1); margin: 48px 0 14px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { margin: 0 0 16px; color: var(--fg-1); }
.legal-body ul { margin: 0 0 20px; padding-left: 22px; }
.legal-body ul li { margin-bottom: 8px; color: var(--fg-1); }
.legal-body a { color: var(--hope-blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--hope-navy); }
.legal-contact {
  margin-top: 24px; padding: 22px 26px;
  background: var(--bg-tint); border-left: 3px solid var(--hope-blue);
  border-radius: 6px; font-size: 15px; line-height: 1.7;
}
.legal-contact strong { color: var(--fg-1); }

@media (max-width: 720px) {
  .legal-page { padding: 48px 0 80px; }
  .legal-body { font-size: 16px; }
  .legal-body h2 { font-size: 22px; margin-top: 36px; }
}

/* Visit form */
.visit-section { padding: 80px 0 120px; background: var(--ink-050); }
.visit-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: start; }
.visit-card { background: #fff; border: 1px solid var(--border-hairline); border-radius: 18px; padding: 40px; box-shadow: var(--shadow-sm); }
.visit-card h2 { font-size: 28px; margin-bottom: 6px; letter-spacing: -0.01em; }
.visit-card .sub { font-size: 14px; color: var(--fg-3); margin-bottom: 28px; }
.visit-field { margin-bottom: 18px; }
.visit-field label { display: block; font-size: 11px; font-weight: 800; color: var(--fg-2); margin-bottom: 6px; letter-spacing: 0.08em; text-transform: uppercase; }
.visit-field input, .visit-field select, .visit-field textarea {
  width: 100%; box-sizing: border-box;
  font-family: var(--font-sans); font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--ink-300); border-radius: 10px;
  outline: none; transition: all var(--dur-fast) var(--ease-out);
  background: #fff;
}
.visit-field input:focus, .visit-field select:focus, .visit-field textarea:focus {
  border-color: var(--hope-blue);
  box-shadow: 0 0 0 3px rgba(107,196,232,0.35);
}
.visit-aside { padding-top: 6px; }
.visit-aside h3 { font-size: 24px; margin-bottom: 16px; letter-spacing: -0.01em; }
.visit-expect { display: flex; flex-direction: column; gap: 20px; }
.visit-expect-item { display: grid; grid-template-columns: 40px 1fr; gap: 18px; align-items: flex-start; }
.visit-expect-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--bg-brand-soft); color: var(--hope-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.visit-expect-text { }
.visit-expect-text strong { display: block; font-size: 16px; margin-bottom: 4px; color: var(--fg-1); }
.visit-expect-text p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.55; }
.visit-success {
  background: var(--bg-brand-soft);
  border: 1px solid #B9DEF0; border-radius: 12px;
  padding: 18px 20px; color: var(--hope-navy);
  margin-bottom: 24px; font-weight: 600; font-size: 14px;
}

/* About page */
.about-story { padding: 96px 0; background: #fff; }
.about-story-inner { max-width: 760px; margin: 0 auto; }
.about-story-inner p { font-size: 18px; line-height: 1.7; color: var(--fg-2); margin-bottom: 20px; }
.about-story-inner p.lead-first::first-letter { float: left; font-family: var(--font-display); font-weight: 900; font-size: 88px; line-height: 0.85; padding: 8px 14px 0 0; color: var(--hope-blue); }

/* ---- About: Origin story ---- */
.about-origin { padding: 112px 0; background: #fff; }
.about-origin-inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center;
}
.about-origin-copy .eyebrow { color: var(--hope-blue); margin-bottom: 18px; }
.about-origin-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 28px; max-width: 12ch;
}
.about-origin-copy p { font-size: 17px; line-height: 1.7; color: var(--fg-2); margin: 0 0 18px; }
.about-origin-copy p.lead { font-size: 20px; line-height: 1.6; color: var(--fg-1); margin-bottom: 22px; }
.origin-address-link {
  color: var(--hope-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 600;
}
.origin-address-link:hover { color: var(--hope-navy); text-decoration-thickness: 2px; }
.about-origin-photo { position: relative; }
.about-origin-photo .photo-placeholder { aspect-ratio: 3/2; }

/* ---- About: Vision (dark) ---- */
.about-vision {
  padding: 120px 0;
  background: var(--ink-900);
  color: #fff;
  position: relative; overflow: hidden;
}
.about-vision::before {
  content: ''; position: absolute; right: -160px; top: -160px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,130,202,0.25), transparent 70%);
  pointer-events: none;
}
.about-vision-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
  position: relative;
}
.about-vision-copy .eyebrow { color: var(--hope-sky); margin-bottom: 18px; }
.about-vision-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 52px; line-height: 1.02; letter-spacing: -0.025em;
  color: #fff; margin: 0 0 32px; max-width: 14ch;
}
.about-vision-copy p {
  font-size: 17px; line-height: 1.7;
  color: #fff; margin: 0 0 18px;
}
.about-vision-copy p em { color: #fff; font-style: italic; }

/* Scripture quote */
.scripture-quote {
  position: relative;
  margin: 0 0 32px;
  padding: 0 0 0 28px;
  border-left: 3px solid var(--hope-sky);
  font-family: var(--font-display);
  font-size: 24px; line-height: 1.4;
  letter-spacing: -0.005em;
  color: #fff; font-weight: 400; font-style: italic;
  max-width: 540px;
}
.scripture-quote .open-quote {
  display: none;
}
.scripture-quote cite {
  display: block; margin-top: 14px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--hope-sky); font-style: normal;
}

/* Eyebrow modifier for dark backgrounds */
.eyebrow.on-dark { color: var(--hope-sky); }

/* ---- About: Photo placeholder (shared) ---- */
.photo-placeholder {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--hope-blue), var(--hope-navy));
  box-shadow: var(--shadow-lg);
}
.photo-placeholder > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.photo-placeholder.fallback {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
  text-align: center; padding: 28px;
}
.photo-placeholder.fallback img { width: 90px; opacity: 0.85; margin-bottom: 18px; }
.photo-placeholder.fallback span {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  max-width: 24ch;
}
.photo-placeholder.dark {
  background: linear-gradient(135deg, #1a2540, #0a1429);
  border: 1px solid rgba(255,255,255,0.08);
}
.about-vision-photo .photo-placeholder { aspect-ratio: 4/5; }

/* ---- About: Core values ---- */
.about-values { padding: 112px 0; background: var(--ink-050); }
.about-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; max-width: 1100px; margin: 0 auto;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 16px;
  padding: 32px 30px 30px;
  position: relative;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.value-card:hover { border-color: var(--hope-blue); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.value-num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 900;
  color: var(--hope-blue);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.value-card h3 {
  font-size: 22px; font-weight: 800;
  margin: 0 0 10px; letter-spacing: -0.01em;
}
.value-card p {
  font-size: 15px; line-height: 1.6;
  color: var(--fg-2); margin: 0;
}
.about-values-coda {
  max-width: 720px; margin: 56px auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.45;
  font-style: italic;
  color: var(--fg-2);
  text-wrap: balance;
}

/* ---- About: Mission & Vision ---- */
.about-mission { padding: 120px 0; background: var(--ink-050); position: relative; }
.about-mission-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 72px;
}
.about-mission-header .eyebrow { color: var(--hope-blue); display: inline-block; margin-bottom: 18px; }
.about-mission-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 64px; line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.about-mission-title em {
  font-style: normal; color: var(--hope-blue);
}
.about-mission-intro {
  font-size: 18px; line-height: 1.65;
  color: var(--fg-2);
  max-width: 680px; margin: 0 auto;
  text-wrap: pretty;
}

.mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.mission-pillar {
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.mission-pillar:hover { border-color: var(--hope-blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.mission-pillar-mark {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-brand-soft);
  color: var(--hope-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-family: var(--font-display); font-size: 22px; font-weight: 900;
  letter-spacing: -0.01em;
}
.mission-pillar h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 36px; letter-spacing: -0.025em; line-height: 1.05;
  margin: 0 0 10px;
}
.mission-pillar-refs {
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hope-blue);
  margin-bottom: 18px;
}
.mission-pillar > p {
  font-size: 15.5px; line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 28px;
}
.mission-values {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-hairline);
  display: flex; flex-direction: column; gap: 18px;
}
.mission-values-label {
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 2px;
}
.mission-value h4 {
  font-size: 15px; font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.mission-value p {
  font-size: 13.5px; line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
}
.about-mission-coda {
  max-width: 720px; margin: 72px auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.45;
  font-style: italic;
  color: var(--fg-2);
  text-wrap: balance;
}

/* ---- About: Team CTA banner ---- */
.about-team-cta { padding: 96px 0; background: #fff; }
.about-team-cta-inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center;
}
.about-team-cta-copy .eyebrow { color: var(--hope-blue); margin-bottom: 18px; }
.about-team-cta-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 52px; line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.about-team-cta-copy p {
  font-size: 18px; line-height: 1.65;
  color: var(--fg-2);
  max-width: 480px;
  margin: 0 0 28px;
}
.about-team-cta-photo .photo-placeholder {
  aspect-ratio: 5/4;
}

/* ---- About: Statement of Faith ---- */
.about-faith { padding: 112px 0; background: #fff; }
.about-faith-inner { max-width: 880px; margin: 0 auto; }
.about-faith .section-header { margin-bottom: 28px; }
.about-faith-intro {
  font-size: 19px; line-height: 1.7;
  color: var(--fg-2);
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
  text-wrap: pretty;
}
.about-faith-epigraph {
  position: relative;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  padding: 32px 0;
  margin: 0 auto 64px;
  max-width: 640px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.45;
  font-style: italic;
  color: var(--fg-1);
  text-wrap: balance;
}
.about-faith-epigraph cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--hope-blue); font-style: normal;
}

.doctrines-list { display: flex; flex-direction: column; }
.doctrine {
  border-top: 1px solid var(--border-hairline);
  padding: 0;
}
.doctrine:last-child { border-bottom: 1px solid var(--border-hairline); }

/* Accordion summary (closed state — the clickable title row) */
.doctrine-accordion > summary {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 4px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--dur-fast) var(--ease-out);
}
.doctrine-accordion > summary::-webkit-details-marker { display: none; }
.doctrine-accordion > summary::marker { content: ''; }
.doctrine-accordion > summary:hover { background: rgba(0,130,202,0.03); }
.doctrine-accordion > summary:focus-visible { outline: 2px solid var(--hope-blue); outline-offset: -2px; border-radius: 6px; }

.doctrine-num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 900;
  color: var(--hope-blue);
  letter-spacing: -0.01em;
  line-height: 1;
}
.doctrine-title {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  line-height: 1.3;
}
.doctrine-chevron {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink-050);
  color: var(--fg-2);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.doctrine-accordion[open] > summary .doctrine-chevron {
  transform: rotate(180deg);
  background: var(--bg-brand-soft);
  color: var(--hope-blue);
}
.doctrine-accordion > summary:hover .doctrine-chevron {
  background: var(--bg-brand-soft);
  color: var(--hope-blue);
}

/* Body (visible when open) */
.doctrine-accordion .doctrine-body {
  padding: 0 4px 32px 88px;
}
.doctrine-body > p {
  font-size: 17px; line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 14px;
}
.doctrine-body > p:first-child { margin-top: 4px; }
.doctrine-body > p:last-of-type { margin-bottom: 0; }
.doctrine-refs {
  margin-top: 18px;
  font-size: 13px; line-height: 1.7;
  color: var(--fg-3);
  font-style: italic;
  letter-spacing: 0.01em;
}
.doctrine-sub {
  margin-top: 28px;
  padding: 24px 0 0;
  border-top: 1px dashed var(--border-hairline);
  display: flex; flex-direction: column;
  gap: 28px;
}
.doctrine-sub-item h4 {
  font-size: 16px; font-weight: 800;
  margin: 0 0 10px;
  color: var(--hope-navy);
  letter-spacing: 0.02em;
}
.doctrine-sub-item p {
  font-size: 16px; line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 12px;
}
.doctrine-sub-item p:last-child { margin-bottom: 0; }

.about-beliefs { padding: 96px 0; background: var(--ink-050); }
.about-beliefs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.belief-card { background: #fff; border: 1px solid var(--border-hairline); border-radius: 14px; padding: 30px 32px; }
.belief-card h3 { font-size: 20px; margin-bottom: 10px; }
.belief-card p { font-size: 15px; margin: 0; }

/* Staff */
.staff-section { padding: 96px 0; background: #fff; }
.staff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.staff-card { text-align: center; }
.staff-photo {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--hope-sky), var(--hope-blue));
  margin-bottom: 16px; position: relative;
}
.staff-photo.elder {
  aspect-ratio: 4 / 5;
  background: var(--ink-100) center / cover no-repeat;
}
.team-elders-section { background: var(--ink-050); padding-bottom: 88px; }
.team-elders-section + .team-staff-section { padding-top: 88px; }
.team-support-section { background: var(--ink-050); padding-top: 88px; padding-bottom: 96px; }
.staff-grid.staff-grid-elders {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 28px 22px;
  max-width: 1080px; margin: 0 auto;
  grid-template-columns: none;
}
.staff-grid.staff-grid-elders.staff-grid-support {
  max-width: 780px;
}
.staff-grid.staff-grid-elders .staff-card.elder-card {
  flex: 0 0 calc(25% - 17px); /* 4 across */
  max-width: 240px;
}
.staff-grid.staff-grid-elders.staff-grid-support .staff-card.elder-card {
  flex: 0 0 calc(33.333% - 15px);
  max-width: 240px;
}
.staff-photo::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('icon-white.png');
  background-repeat: no-repeat; background-position: center;
  background-size: 50% auto; opacity: 0.2;
}
.staff-photo.elder::after { display: none; }
.staff-card h4 { font-size: 17px; margin-bottom: 2px; font-weight: 700; }
.staff-card .role { font-size: 13px; color: var(--fg-3); font-weight: 600; letter-spacing: 0.04em; }
.staff-card .elder-email {
  display: inline-block; margin-top: 8px;
  font-size: 12.5px; color: var(--hope-sky);
  text-decoration: none; word-break: break-all;
}
.staff-card .elder-email:hover { text-decoration: underline; }

/* Next steps rails */
.steps-rails { padding: 96px 0; background: var(--ink-050); }
.step-rail {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 28px; align-items: center;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
}
.step-rail:hover { border-color: var(--hope-blue); box-shadow: var(--shadow-sm); }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--hope-blue); line-height: 1; letter-spacing: -0.03em; }
.step-rail-body h3 { font-size: 20px; margin-bottom: 4px; }
.step-rail-body p { font-size: 14px; color: var(--fg-3); margin: 0; }

/* =========================================================
   ADMIN CMS
   ========================================================= */
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: var(--ink-050); }
.admin-sidebar { background: var(--ink-900); color: #fff; padding: 24px 0; border-right: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; }
.admin-brand { padding: 8px 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 16px; }
.admin-brand img { height: 28px; }
.admin-brand .env { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; color: var(--hope-sky); margin-top: 8px; text-transform: uppercase; }
.admin-nav-section { padding: 8px 0; }
.admin-nav-label { padding: 14px 24px 10px; font-size: 10px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; }
.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 24px;
  color: #fff; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all var(--dur-fast) var(--ease-out);
  border-left: 3px solid transparent;
}
.admin-nav-item:hover { background: rgba(255,255,255,0.04); color: #fff; }
.admin-nav-item.active { background: rgba(107,196,232,0.08); color: #fff; border-left-color: var(--hope-sky); }
.admin-nav-item svg { opacity: 0.75; }
.admin-nav-item.active svg { opacity: 1; color: var(--hope-sky); }

.admin-user { margin-top: auto; padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 12px; }
.admin-user-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--hope-sky), var(--hope-blue)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: #fff; }
.admin-user-name { font-size: 13px; font-weight: 700; color: #fff; }
.admin-user-role { font-size: 11px; color: #fff; }

.admin-main { display: flex; flex-direction: column; overflow: hidden; }
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: #fff;
  border-bottom: 1px solid var(--border-hairline);
  position: sticky; top: 0; z-index: 10;
}
.admin-topbar-title { display: flex; align-items: center; gap: 14px; }
.admin-topbar-title h1 { font-size: 20px; margin: 0; letter-spacing: -0.01em; }
.admin-breadcrumb { font-size: 13px; color: var(--fg-3); }
.admin-breadcrumb b { color: var(--fg-1); }
.admin-topbar-actions { display: flex; gap: 10px; align-items: center; }
.admin-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  background: var(--success-bg); color: var(--success);
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
}
.admin-status.draft { background: var(--warning-bg); color: #7a5c16; }
.admin-status.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.admin-content { padding: 32px; overflow-y: auto; }

.admin-card { background: #fff; border: 1px solid var(--border-hairline); border-radius: 14px; padding: 28px; margin-bottom: 20px; }
.admin-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.admin-card-head h3 { margin: 0; font-size: 17px; letter-spacing: -0.005em; }
.admin-card-head .meta { font-size: 12px; color: var(--fg-3); }

.admin-field { margin-bottom: 18px; }
.admin-field label { display: block; font-size: 11px; font-weight: 800; color: var(--fg-2); margin-bottom: 6px; letter-spacing: 0.08em; text-transform: uppercase; }
.admin-field .hint { font-size: 12px; color: var(--fg-3); margin-top: 6px; }
.admin-field input, .admin-field select, .admin-field textarea {
  width: 100%; box-sizing: border-box;
  font-family: var(--font-sans); font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--ink-300); border-radius: 8px;
  outline: none; background: #fff;
  transition: all var(--dur-fast) var(--ease-out);
}
.admin-field input:focus, .admin-field select:focus, .admin-field textarea:focus {
  border-color: var(--hope-blue);
  box-shadow: 0 0 0 3px rgba(107,196,232,0.35);
}
.admin-field textarea { resize: vertical; min-height: 90px; font-family: var(--font-mono); font-size: 13px; line-height: 1.5; }
.admin-field.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-field.two-col > div { margin-bottom: 0; }

.admin-list { display: flex; flex-direction: column; gap: 8px; }
.admin-list-row {
  display: grid; grid-template-columns: 20px 1fr auto;
  align-items: center; gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border-hairline);
  border-radius: 10px; background: #fff;
  cursor: grab;
}
.admin-list-row:hover { border-color: var(--ink-400); }
.admin-list-drag { color: var(--ink-400); cursor: grab; }
.admin-list-title { font-weight: 700; font-size: 14px; }
.admin-list-meta { font-size: 12px; color: var(--fg-3); }
.admin-list-actions { display: flex; gap: 6px; }
.admin-list-btn {
  padding: 5px 10px; border-radius: 6px; border: 1px solid var(--border-hairline);
  font-size: 11px; font-weight: 700; background: #fff; cursor: pointer; color: var(--fg-2);
  letter-spacing: 0.04em;
}
.admin-list-btn:hover { border-color: var(--hope-blue); color: var(--hope-blue); }
.admin-list-btn.danger:hover { border-color: var(--danger); color: var(--danger); }

.admin-toggle { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: var(--ink-050); border-radius: 10px; }
.admin-toggle .switch {
  width: 40px; height: 22px; border-radius: 999px;
  background: var(--ink-300); position: relative; cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}
.admin-toggle .switch::after {
  content: ''; position: absolute; left: 2px; top: 2px;
  width: 18px; height: 18px; border-radius: 50%; background: #fff;
  transition: all var(--dur-fast) var(--ease-out);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.admin-toggle.on .switch { background: var(--hope-blue); }
.admin-toggle.on .switch::after { left: 20px; }
.admin-toggle-label { flex: 1; font-size: 13px; font-weight: 600; }
.admin-toggle-desc { font-size: 12px; color: var(--fg-3); font-weight: 400; margin-top: 2px; }

.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.admin-preview-frame {
  background: var(--ink-050); border: 1px solid var(--border-hairline);
  border-radius: 14px; padding: 18px; margin-top: 20px;
}
.admin-preview-frame-label {
  font-size: 10px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3); margin-bottom: 12px;
}
.admin-preview-frame iframe { width: 100%; border: 1px solid var(--border-hairline); border-radius: 10px; background: #fff; }

.admin-tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--border-hairline); margin-bottom: 24px; }
.admin-tab {
  padding: 10px 16px; font-size: 13px; font-weight: 700;
  color: var(--fg-3); cursor: pointer; position: relative;
  border: 0; background: transparent;
}
.admin-tab:hover { color: var(--fg-1); }
.admin-tab.active { color: var(--hope-blue); }
.admin-tab.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--hope-blue); }

/* =========================================================
   TWEAKS PANEL
   ========================================================= */
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  width: 300px;
  overflow: hidden;
  font-family: var(--font-sans);
}
.tweaks-panel-head {
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--ink-900); color: #fff;
}
.tweaks-panel-head h4 { margin: 0; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 800; color: #fff; }
.tweaks-panel-head button { background: transparent; color: #fff; border: 0; cursor: pointer; font-size: 16px; padding: 0 6px; }
.tweaks-panel-body { padding: 14px 16px 18px; }
.tweak-row { margin-bottom: 14px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-label { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 6px; }
.tweak-seg {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0;
  background: var(--ink-100); padding: 3px; border-radius: 8px;
}
.tweak-seg button {
  padding: 6px 8px; font-size: 12px; font-weight: 700;
  border: 0; background: transparent; color: var(--fg-2); border-radius: 6px; cursor: pointer;
}
.tweak-seg button.active { background: #fff; color: var(--hope-blue); box-shadow: var(--shadow-xs); }
.tweak-row-toggle { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tweak-sw {
  width: 36px; height: 20px; border-radius: 999px;
  background: var(--ink-300); position: relative; cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
  flex-shrink: 0;
}
.tweak-sw::after { content: ''; position: absolute; left: 2px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: all var(--dur-fast) var(--ease-out); box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.tweak-sw.on { background: var(--hope-blue); }
.tweak-sw.on::after { left: 18px; }

.mode-switcher {
  position: fixed; top: 12px; left: 50%; transform: translateX(-50%);
  z-index: 300;
  background: rgba(26,31,38,0.96); backdrop-filter: blur(10px);
  border-radius: 999px; padding: 4px;
  display: flex; gap: 2px; box-shadow: var(--shadow-md);
}
.mode-switcher button {
  padding: 7px 16px; border: 0; background: transparent;
  color: #fff; font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; cursor: pointer;
}
.mode-switcher button.active { background: var(--hope-blue); color: #fff; }
.mode-switcher button:hover:not(.active) { color: #fff; }

/* =========================================================
   UTIL
   ========================================================= */
.section-alt { background: var(--ink-050); }
.text-center { text-align: center; }
.mb-lg { margin-bottom: 56px; }
.chip {
  display: inline-block; padding: 4px 10px; background: var(--bg-brand-soft);
  color: var(--hope-navy); border-radius: 999px; font-size: 11px;
  font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}

/* =========================================================
   MOBILE BURGER + DRAWER (hidden on desktop)
   ========================================================= */
.site-burger {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px; margin: -8px -8px -8px 0;
  color: var(--fg-1); align-items: center; justify-content: center;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
}
.site-burger:hover { background: var(--ink-100); }
.site-header.dark .site-burger { color: #fff; }
.site-header.dark .site-burger:hover { background: rgba(255,255,255,0.08); }
.mobile-menu {
  display: none;
  position: fixed; left: 0; right: 0; top: var(--header-h, 72px); bottom: 0;
  background: #fff;
  z-index: 49;
  overflow-y: auto;
  padding: 8px 0 32px;
  transform: translateY(-8px);
  opacity: 0; pointer-events: none;
  transition: opacity 180ms ease-out, transform 220ms cubic-bezier(.2,.7,.2,1);
}
.site-header.dark .mobile-menu { background: var(--ink-900); color: #fff; }
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu-nav { display: flex; flex-direction: column; padding: 8px 0; }
.mobile-menu-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  font-size: 19px; font-weight: 700; letter-spacing: -0.005em;
  color: var(--fg-1);
  border-bottom: 1px solid var(--border-hairline);
  min-height: 56px;
}
.mobile-menu-nav a:hover { background: var(--ink-050); text-decoration: none; }
.mobile-menu-nav a.active { color: var(--hope-blue); }
.mobile-menu-nav a.active span::before {
  content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hope-blue); margin-right: 10px; vertical-align: middle;
}
.mobile-menu-nav svg { color: var(--ink-400); flex-shrink: 0; }
.site-header.dark .mobile-menu-nav a { color: #fff; border-bottom-color: rgba(255,255,255,0.08); }
.site-header.dark .mobile-menu-nav a:hover { background: rgba(255,255,255,0.04); }
.site-header.dark .mobile-menu-nav a.active { color: var(--hope-sky); }

.mobile-menu-cta { padding: 24px 24px 8px; display: flex; flex-direction: column; }
.mobile-menu-cta .btn { width: 100%; justify-content: center; }

.mobile-menu-foot {
  padding: 28px 24px 8px;
  border-top: 1px solid var(--border-hairline);
  margin-top: 16px;
}
.site-header.dark .mobile-menu-foot { border-top-color: rgba(255,255,255,0.08); }
.mobile-menu-foot-label {
  font-size: 11px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--hope-blue); margin-bottom: 8px;
}
.site-header.dark .mobile-menu-foot-label { color: var(--hope-sky); }
.mobile-menu-foot-times {
  font-family: var(--font-display); font-size: 22px; font-weight: 900;
  letter-spacing: -0.01em; color: var(--fg-1); margin-bottom: 14px;
}
.site-header.dark .mobile-menu-foot-times { color: #fff; }
.mobile-menu-foot-addr {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--fg-2); font-weight: 600;
}
.mobile-menu-foot-addr:hover { color: var(--hope-blue); text-decoration: none; }
.site-header.dark .mobile-menu-foot-addr { color: #fff; }
.site-header.dark .mobile-menu-foot-addr:hover { color: #fff; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet — 960px and below */
@media (max-width: 960px) {
  .hero-a-title { font-size: 60px; }
  .hero-b-title { font-size: 56px; }
  .hero-c-title { font-size: 96px; }
  .hero-b-inner, .hero-c-grid, .new-here-inner, .visit-grid, .app-band-inner, .about-beliefs-grid, .admin-grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .about-origin-inner, .about-vision-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-vision-photo { max-width: 480px; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-mission-title { font-size: 52px; }
  .about-team-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-team-cta-photo { max-width: 480px; }
  .service-times-grid, .events-grid, .ministries-grid { grid-template-columns: 1fr 1fr; }
  .messages-grid { grid-template-columns: 1fr 1fr; }
  .staff-grid { grid-template-columns: repeat(3, 1fr); }
  .staff-grid.staff-grid-elders { grid-template-columns: repeat(4, 1fr); }
  .staff-grid.staff-grid-elders .staff-card.elder-card { flex-basis: calc(33.333% - 15px); }
  .messages-featured { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}

/* Tablet & smaller — collapse desktop nav into burger from 880px down
   (covers iPad portrait at 768px and similar) */
@media (max-width: 880px) {
  :root { --header-h: 64px; }
  /* IMPORTANT — disable backdrop-filter on mobile. backdrop-filter creates a
     new containing block for position:fixed descendants, which clamps the
     fixed-position .mobile-menu (top: 64px; bottom: 0) to the 64px-tall
     header instead of the viewport, collapsing it to zero usable height. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header-inner { height: 64px; gap: 12px; }
  .brand img { height: 40px; }
  .site-nav { display: none; }
  .site-cta { display: none; }
  .site-burger { display: inline-flex; }
  .mobile-menu { display: block; }
}

/* Tablet portrait — between burger threshold (880px) and full desktop (1024px),
   the 8-item nav + CTA pill no longer fits inside the 1200-wide container.
   Hide the "Plan a Visit" CTA in this range; the nav still has "I'm New",
   which goes to the same page, so users aren't blocked. */
@media (min-width: 881px) and (max-width: 1023px) {
  .site-cta { display: none; }
  .site-header-inner { gap: 20px; }
  .site-nav { gap: 22px; }
}

/* Phone & small tablet — 720px and below */
@media (max-width: 720px) {
  /* Containers */
  .container, .container-narrow, .container-wide { padding: 0 20px; }

  /* Section padding shrink */
  .new-here, .messages-section, .events-section, .ministries-section,
  .about-story, .about-beliefs, .about-origin, .about-vision, .about-values, .about-mission, .about-faith, .about-team-cta, .staff-section, .steps-rails,
  .visit-section, .app-band { padding: 64px 0; }
  .service-times, .cta-band { padding: 64px 0; }
  .mission-bar { padding: 48px 0; }

  /* Sunday strip — keep, simplify */
  .sunday-strip { font-size: 12px; padding: 8px 0; }
  .sunday-strip-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .sunday-strip-left { gap: 12px; flex-wrap: wrap; }
  .sunday-strip-right { width: 100%; justify-content: flex-start; gap: 14px; flex-wrap: wrap; }
  .sunday-strip-right a:nth-child(2) { display: none; } /* hide "Watch Live" — addr is enough */
  .sunday-strip-label { font-size: 10px; }

  /* Announcement bar */
  .announce-bar-inner { font-size: 12px; padding: 9px 44px 9px 16px; text-align: left; }

  /* HERO A */
  .hero-a { min-height: 0; }
  .hero-a-inner { padding: 80px 20px 110px; }
  .hero-a-title { font-size: 48px; }
  .hero-a-eyebrow { font-size: 11px; margin-bottom: 16px; }
  .hero-a-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-a-actions .btn { width: 100%; justify-content: center; }
  .hero-a-bottom { padding: 14px 20px; font-size: 10px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-a-bottom-right { gap: 12px; flex-wrap: wrap; }

  /* HERO B */
  .hero-b { padding: 32px 0 64px; }
  .hero-b-title { font-size: 44px; }
  .hero-b-lead { font-size: 16px; }
  .hero-b-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-b-actions .btn { width: 100%; justify-content: center; }
  .hero-b-meta { gap: 24px; }
  .hero-b-meta-value { font-size: 16px; }
  .hero-b-photo { aspect-ratio: 4/3; border-radius: 14px; }

  /* HERO C */
  .hero-c { padding: 48px 0 0; }
  .hero-c-grid { gap: 32px; padding-bottom: 48px; }
  .hero-c-title { font-size: 72px; margin-bottom: 24px; }
  .hero-c-title .line:nth-child(2) { padding-left: 24px; }
  .hero-c-title .line:nth-child(3) { padding-left: 48px; }
  .hero-c-sub { font-size: 16px; }
  .hero-c-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-c-actions .btn { width: 100%; justify-content: center; }
  .hero-c-right { aspect-ratio: 16/10; }
  .hero-c-bg { display: none; } /* hide giant background letters */
  .hero-c-bar { padding: 16px 0; }
  .hero-c-bar-inner { gap: 12px; justify-content: flex-start; padding: 0 20px; }
  .hero-c-bar-label { font-size: 10px; flex: 1 0 100%; }
  .hero-c-bar-times { gap: 20px; }
  .hero-c-bar-times b { font-size: 22px; }

  /* Section header */
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 32px; }
  .section-header .lead { font-size: 16px; }

  /* Service times */
  .service-times-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-time { padding: 24px 22px; }
  .service-times-title { font-size: 34px; }
  .st-time { font-size: 44px; }
  .service-times-foot { margin-top: 32px; font-size: 13px; }
  .service-times-header { margin-bottom: 32px; }

  /* New here */
  .new-here-copy h2 { font-size: 38px; }
  .new-here-copy .lead { font-size: 16px; margin-bottom: 24px; }
  .new-here-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .new-here-actions .btn { width: 100%; justify-content: center; }
  .new-here-photo { aspect-ratio: 4/3; border-radius: 14px; }
  .new-here-photo.fallback img { width: 80px; margin-bottom: 14px; }

  /* Mission bar */
  .mission-bar-words { font-size: clamp(28px, 8vw, 44px); }

  /* Messages */
  .messages-featured-main { aspect-ratio: 16/10; border-radius: 12px; }
  .msg-play-big { width: 56px; height: 56px; left: 20px; bottom: 20px; font-size: 18px; }
  .messages-featured-meta { left: 20px; right: 20px; bottom: 96px; }
  .messages-featured-meta h3 { font-size: 24px; }
  .messages-grid { grid-template-columns: 1fr; gap: 16px; }
  .msg-list-card { grid-template-columns: 110px 1fr; gap: 14px; padding: 10px; }
  .msg-list-title { font-size: 15px; }

  /* Events */
  .event-card { grid-template-columns: 64px 1fr 18px; gap: 14px; padding: 14px 16px; }
  .event-card .event-cta { display: none; } /* row is the CTA; chevron implies it */
  .event-day { font-size: 22px; }
  .event-date { padding: 8px 6px; border-radius: 8px; }
  .event-title { font-size: 16px; }
  .event-meta { font-size: 12px; }
  .events-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Ministries */
  .ministries-grid, .ministries-grid.ministries-grid-4 { grid-template-columns: 1fr; gap: 14px; }
  .ministry-card, .ministries-grid.ministries-grid-4 .ministry-card { padding: 24px; }
  .ministry-card h3, .ministries-grid.ministries-grid-4 .ministry-card h3 { font-size: 22px; }

  /* CTA band */
  .cta-band h2 { font-size: 34px; }
  .cta-band p { font-size: 16px; margin-bottom: 28px; }
  .cta-band-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }

  /* App band */
  .app-band-copy h2 { font-size: 32px; }
  .app-band-features { grid-template-columns: 1fr; gap: 10px; max-width: none; }
  /* Keep store badges at their natural size and wrap to a new row if needed —
     stretching them full-width on mobile looked oddly oversized. */
  .app-stores { flex-wrap: wrap; gap: 10px; }
  .app-phone { max-width: 240px; }

  /* Footer */
  .site-footer { padding-top: 56px; }
  .footer-inner { padding-bottom: 40px; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bar-links { gap: 18px; flex-wrap: wrap; }
  .footer-brand img { width: 150px; }

  /* Page header */
  .page-header { padding: 56px 0 48px; }
  .page-header h1 { font-size: 44px; }
  .page-header .lead { font-size: 16px; }

  /* Visit form */
  .visit-section { padding: 48px 0 80px; }
  .visit-card { padding: 24px; border-radius: 14px; }
  .visit-card h2 { font-size: 22px; }
  .visit-aside h3 { font-size: 20px; }

  /* About */
  .about-story-inner p { font-size: 16px; line-height: 1.65; }
  .about-story-inner p.lead-first::first-letter { font-size: 60px; padding: 6px 10px 0 0; }
  .about-beliefs-grid { gap: 14px; }
  .belief-card { padding: 22px 24px; }
  .about-origin-copy h2 { font-size: 38px; }
  .about-vision-copy h2 { font-size: 36px; }
  .scripture-quote { font-size: 19px; padding-left: 20px; }
  .about-values-grid { grid-template-columns: 1fr; gap: 14px; }
  .value-card { padding: 24px 22px; }
  .about-values-coda { font-size: 18px; margin-top: 40px; }
  .photo-placeholder { aspect-ratio: 4/3; border-radius: 14px; }

  /* Statement of Faith */
  .about-faith-intro { font-size: 16px; line-height: 1.65; }
  .about-faith-epigraph { font-size: 18px; padding: 24px 0; margin-bottom: 40px; }
  .doctrine-accordion > summary { grid-template-columns: 44px 1fr auto; gap: 14px; padding: 20px 4px; }
  .doctrine-num { font-size: 20px; }
  .doctrine-title { font-size: 17px; }
  .doctrine-chevron { width: 32px; height: 32px; }
  .doctrine-accordion .doctrine-body { padding: 0 4px 24px 58px; }
  .doctrine-body > p { font-size: 16px; line-height: 1.65; }
  .doctrine-refs { font-size: 12.5px; }
  .doctrine-sub { margin-top: 20px; padding-top: 20px; gap: 20px; }

  /* Mission & Vision */
  .about-mission-title { font-size: 38px; }
  .about-mission-header { margin-bottom: 48px; }
  .about-mission-intro { font-size: 16px; }
  .mission-pillar { padding: 28px 24px 24px; border-radius: 16px; }
  .mission-pillar h3 { font-size: 28px; }
  .about-mission-coda { font-size: 18px; margin-top: 48px; }

  /* Team CTA */
  .about-team-cta-copy h2 { font-size: 36px; }
  .about-team-cta-copy p { font-size: 16px; }

  /* Staff */
  .staff-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .staff-grid.staff-grid-elders { grid-template-columns: 1fr 1fr; }
  .staff-grid.staff-grid-elders .staff-card.elder-card { flex-basis: calc(50% - 11px); max-width: none; }

  /* Steps rails */
  .step-rail { grid-template-columns: 40px 1fr 18px; gap: 16px; padding: 20px 18px; }
  .step-num { font-size: 32px; }
  .step-rail-body h3 { font-size: 17px; }

  /* Tweaks panel — bottom-aligned full-width on mobile */
  .tweaks-panel { left: 12px; right: 12px; bottom: 12px; width: auto; }

  /* Mode switcher — smaller */
  .mode-switcher { top: 8px; padding: 3px; }
  .mode-switcher button { padding: 6px 12px; font-size: 11px; letter-spacing: 0.06em; }
}

/* Very small phones — 420px and below */
@media (max-width: 420px) {
  .hero-a-title { font-size: 40px; }
  .hero-b-title { font-size: 36px; }
  .hero-c-title { font-size: 56px; }
  .section-header h2 { font-size: 28px; }
  .new-here-copy h2 { font-size: 32px; }
  .cta-band h2 { font-size: 28px; }
  .page-header h1 { font-size: 36px; }
  .service-times-title { font-size: 28px; }
  .messages-featured-meta h3 { font-size: 20px; }
  .messages-featured-meta { bottom: 88px; }
  .msg-play-big { width: 48px; height: 48px; font-size: 16px; }

  /* Stack sunday strip times tighter */
  .sunday-strip-times { gap: 10px; font-size: 12px; }
  .sunday-strip-times em { margin: 0; }
}


/* =========================================================
   NAV DROPDOWN — Get Involved
   ========================================================= */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-trigger {
  background: transparent; border: 0; padding: 8px 0;
  font: inherit; color: var(--fg-2); font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  position: relative;
}
.nav-dropdown-trigger:hover { color: var(--hope-blue); }
.nav-dropdown-trigger.active { color: var(--hope-blue); }
.nav-dropdown-trigger.active::after {
  content: ''; position: absolute; left: 0; right: 14px; bottom: -2px;
  height: 2px; background: var(--hope-blue); border-radius: 2px;
}
.nav-dropdown-caret {
  transition: transform 180ms ease;
  margin-top: 1px;
}
.nav-dropdown.open .nav-dropdown-caret { transform: rotate(180deg); }
.site-header.dark .nav-dropdown-trigger { color: #fff; }
.site-header.dark .nav-dropdown-trigger:hover { color: #fff; }
.site-header.dark .nav-dropdown-trigger.active { color: var(--hope-sky); }
.site-header.dark .nav-dropdown-trigger.active::after { background: var(--hope-sky); }

.nav-dropdown-panel {
  position: absolute; top: calc(100% + 14px); right: 50%; transform: translate(50%, -8px);
  min-width: 360px;
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14), 0 4px 12px rgba(15, 23, 42, 0.06);
  padding: 16px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity 160ms ease, transform 200ms cubic-bezier(.2,.7,.2,1), visibility 0s linear 200ms;
  z-index: 60;
}
.nav-dropdown-panel::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translate(50%, 0);
  transition: opacity 160ms ease, transform 200ms cubic-bezier(.2,.7,.2,1);
}
.nav-dropdown-eyebrow {
  font-size: 10px; font-weight: 900; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--hope-blue);
  padding: 4px 12px 10px;
}
.nav-dropdown-list { display: flex; flex-direction: column; }
.nav-dropdown-item {
  display: block; padding: 12px 14px; border-radius: 10px;
  color: var(--fg-1); text-decoration: none;
  transition: background 140ms ease;
}
.nav-dropdown-item:hover {
  background: var(--bg-brand-soft); text-decoration: none;
}
.nav-dropdown-item-label {
  font-size: 15px; font-weight: 800; color: var(--fg-1);
  letter-spacing: -0.005em; margin-bottom: 2px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-dropdown-item:hover .nav-dropdown-item-label { color: var(--hope-navy); }
.nav-dropdown-item.active { background: var(--bg-brand-soft); }
.nav-dropdown-item.active .nav-dropdown-item-label { color: var(--hope-navy); }
.nav-dropdown-item-desc {
  font-size: 13px; color: var(--fg-2); line-height: 1.4;
}

/* Mobile group head (used in mobile-menu) */
.mobile-menu-group-head {
  background: transparent; border: 0; padding: 18px 24px;
  font: inherit; font-size: 18px; font-weight: 700;
  color: var(--fg-1); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left;
  border-bottom: 1px solid var(--border-hairline);
}
.mobile-menu-group-head svg { color: var(--ink-400); transition: transform 200ms ease; }
.mobile-menu-group-head.open svg { transform: rotate(180deg); color: var(--hope-blue); }
.mobile-menu-group-head.active { color: var(--hope-blue); }
.site-header.dark .mobile-menu-group-head { color: #fff; border-bottom-color: rgba(255,255,255,0.08); }
.site-header.dark .mobile-menu-group-head.active { color: var(--hope-sky); }
.mobile-menu-group-items {
  background: var(--ink-050);
  padding: 4px 0;
  border-bottom: 1px solid var(--border-hairline);
}
.mobile-menu-group-items a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px 14px 44px;
  color: var(--fg-2); font-weight: 600; font-size: 15px;
  text-decoration: none;
}
.mobile-menu-group-items a:hover, .mobile-menu-group-items a.active {
  color: var(--hope-blue); background: rgba(0,130,202,0.06);
  text-decoration: none;
}
.mobile-menu-group-items svg { color: var(--ink-400); }
.site-header.dark .mobile-menu-group-items { background: rgba(255,255,255,0.04); }
.site-header.dark .mobile-menu-group-items a { color: #fff; }

@media (max-width: 880px) {
  .nav-dropdown { display: none; }
}

/* =========================================================
   LIFE GROUPS PAGE
   ========================================================= */
.lifegroups-why {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start;
}
.lifegroups-why-copy .eyebrow { color: var(--hope-blue); }
.lifegroups-why-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 44px; line-height: 1.05; letter-spacing: -0.02em;
  margin: 14px 0 20px;
}
.lifegroups-why-copy p { color: var(--fg-2); font-size: 16px; line-height: 1.65; margin-bottom: 14px; }
.lifegroups-why-cards {
  display: grid; gap: 16px;
}
.lifegroups-why-card {
  background: #fff; border: 1px solid var(--border-hairline);
  border-radius: 14px; padding: 22px 24px;
  position: relative;
}
.lifegroups-why-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; color: var(--hope-sky);
  letter-spacing: -0.01em; margin-bottom: 6px;
}
.lifegroups-why-card h4 {
  margin: 0 0 6px; font-size: 18px; font-weight: 800;
  color: var(--fg-1); letter-spacing: -0.01em;
}
.lifegroups-why-card p { margin: 0; font-size: 14px; color: var(--fg-2); line-height: 1.55; }

.lifegroups-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 8px;
}
.lifegroup-card {
  background: #fff; border: 1px solid var(--border-hairline);
  border-radius: 14px; padding: 26px 26px 22px;
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.lifegroup-card:hover { border-color: var(--hope-blue); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.lifegroup-when {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 12px;
}
.lifegroup-day {
  font-size: 11px; font-weight: 900; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--hope-blue);
}
.lifegroup-time {
  font-size: 12px; color: var(--fg-3); font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.lifegroup-card h3 {
  margin: 0 0 4px; font-size: 22px; font-weight: 800;
  letter-spacing: -0.015em; color: var(--fg-1);
}
.lifegroup-host {
  font-size: 13px; color: var(--fg-3); font-weight: 600;
  margin-bottom: 12px;
}
.lifegroup-card p {
  font-size: 14.5px; color: var(--fg-2); line-height: 1.55;
  margin: 0 0 18px; flex-grow: 1;
}
.lifegroup-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border-hairline);
  padding-top: 14px; margin-top: 4px;
}
.lifegroup-spots {
  font-size: 12px; font-weight: 700; color: var(--success, #2BA564);
  display: inline-flex; align-items: center; gap: 6px;
}
.lifegroup-spots::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
}
.lifegroup-spots.is-full { color: var(--fg-3); }

.lifegroups-start {
  background: var(--ink-900); color: #fff; padding: 80px 0;
}
.lifegroups-start-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
.lifegroups-start h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 44px; line-height: 1.05; letter-spacing: -0.02em;
  color: #fff; margin: 14px 0 16px;
}
.lifegroups-start p {
  color: #fff; font-size: 17px; line-height: 1.55; max-width: 540px;
  margin: 0;
}
.lifegroups-start-cta { justify-self: end; }

/* =========================================================
   MISSIONS PAGE
   ========================================================= */
.missions-heart {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center;
}
.missions-heart-copy .eyebrow { color: var(--hope-blue); }
.missions-heart-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 44px; line-height: 1.05; letter-spacing: -0.02em;
  margin: 14px 0 20px;
}
.missions-heart-copy .lead { font-size: 19px; color: var(--fg-1); margin-bottom: 16px; }
.missions-heart-copy p { color: var(--fg-2); font-size: 16px; line-height: 1.65; }
.missions-tiers {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.missions-tier {
  background: #fff; border: 1px solid var(--border-hairline);
  border-radius: 14px; padding: 28px 28px 26px;
  display: flex; flex-direction: column; gap: 4px;
  box-sizing: border-box; min-width: 0;
}
.missions-tier-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 40px; color: var(--hope-blue); line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.missions-tier h4 {
  margin: 0; font-size: 20px; font-weight: 800;
  color: var(--fg-1); letter-spacing: -0.005em;
  line-height: 1.2;
}
.missions-tier p {
  margin: 6px 0 0; font-size: 14.5px; color: var(--fg-2);
  line-height: 1.5;
}

.missions-partners {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.missions-partner {
  background: #fff; border: 1px solid var(--border-hairline);
  border-radius: 14px; padding: 24px 26px 22px;
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.missions-partner:hover { border-color: var(--hope-blue); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.missions-partner-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.missions-partner-tag {
  font-size: 10px; font-weight: 900; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 4px 9px;
  border-radius: 4px;
}
.missions-partner-tag.tag-local { background: var(--bg-brand-soft); color: var(--hope-navy); }
.missions-partner-tag.tag-national { background: #FFF0DD; color: #9A4A00; }
.missions-partner-tag.tag-global { background: #E6F3EC; color: #1E5A36; }
.missions-partner-loc {
  font-size: 12px; color: var(--fg-3); font-weight: 600;
}
.missions-partner h3 {
  margin: 0 0 10px; font-size: 20px; font-weight: 800;
  letter-spacing: -0.015em;
}
.missions-partner p {
  font-size: 14.5px; color: var(--fg-2); line-height: 1.55;
  margin: 0 0 14px; flex-grow: 1;
}
.missions-partner-focus {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-3);
  padding-top: 12px; border-top: 1px solid var(--border-hairline);
}

.missions-trips { padding: 112px 0; background: #fff; }
.missions-trip-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.missions-trip {
  display: grid; grid-template-columns: 200px 1fr auto auto; gap: 28px;
  align-items: center;
  background: var(--ink-050); border: 1px solid var(--border-hairline);
  border-radius: 14px; padding: 22px 26px;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.missions-trip:hover { border-color: var(--hope-blue); background: #fff; }
.missions-trip-when {
  font-size: 12px; font-weight: 900; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--hope-blue);
}
.missions-trip h3 { margin: 0 0 4px; font-size: 22px; font-weight: 800; letter-spacing: -0.015em; }
.missions-trip-focus { font-size: 14px; color: var(--fg-2); }
.missions-trip-spots {
  font-size: 13px; color: var(--fg-3); font-weight: 600;
  white-space: nowrap;
}

/* --- v2: verse hero --- */
.missions-verse {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.missions-verse-ref {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hope-sky);
}

/* --- v2: intro ---
   Copy stacked on top, then the three tiers as a full-width 3-column
   row below. Earlier the tiers lived in the right column of a 2-up grid
   and the cards were wide-short with content floating top-left — looked
   misaligned on wide screens. Filling the whole row gives each tier a
   ~1/3-width card that the num/title/desc actually fill. */
.missions-intro { padding: 56px 0 72px; }
.missions-intro-inner {
  display: flex; flex-direction: column; gap: 48px; align-items: stretch;
}
.missions-intro-copy {
  font-size: 20px; line-height: 1.55; color: var(--fg-1);
  margin: 0; max-width: 760px;
}

/* --- v2: partners section --- */
.missions-partners-section { padding: 80px 0 96px; background: var(--ink-050); }
.missions-section-head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.missions-section-head .eyebrow { color: var(--hope-blue); }
.missions-section-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 44px; line-height: 1.05; letter-spacing: -0.022em;
  margin: 12px 0 14px;
}
.missions-section-head p { font-size: 17px; color: var(--fg-2); margin: 0; }

.missions-tier-block { margin-bottom: 64px; }
.missions-tier-block:last-child { margin-bottom: 0; }
.missions-tier-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px; margin-bottom: 28px;
  border-bottom: 1px solid var(--border-hairline);
}
.missions-tier-head h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 28px; letter-spacing: -0.018em; margin: 0;
  color: var(--hope-navy);
}
.missions-tier-count {
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-3);
}

.missions-partners-v2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.missions-partner-v2 {
  display: grid; grid-template-columns: 220px 1fr; gap: 28px;
  background: #fff; border: 1px solid var(--border-hairline);
  border-radius: 14px; padding: 22px;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.missions-partner-v2:hover {
  border-color: var(--hope-blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.missions-partner-img {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink-050);
  display: flex; align-items: center; justify-content: center;
}
.missions-partner-img img {
  width: 100%; height: 100%; display: block;
}
.missions-partner-img-cover img { object-fit: cover; }
.missions-partner-img-contain img { object-fit: contain; padding: 14px; }
.missions-partner-img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  color: var(--fg-3);
}
.missions-partner-img-placeholder span {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}
.missions-partner-body {
  display: flex; flex-direction: column;
  min-width: 0;
}
.missions-partner-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 21px; letter-spacing: -0.015em; color: var(--hope-blue);
  text-decoration: none;
  margin: 2px 0 6px;
}
.missions-partner-name:hover { color: var(--hope-navy); text-decoration: underline; }
.missions-partner-v2 .missions-partner-loc {
  font-size: 13px; font-weight: 700; color: var(--fg-1);
  font-style: italic;
  margin-bottom: 10px;
}
.missions-partner-body p {
  font-size: 14.5px; line-height: 1.6; color: var(--fg-2);
  margin: 0 0 14px;
  flex: 1;
}
.missions-partner-link {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  color: var(--hope-blue); text-decoration: none;
  font-size: 13px; font-weight: 700;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.missions-partner-link:hover {
  color: var(--hope-navy);
  border-color: var(--hope-navy);
}

@media (max-width: 1024px) {
  .missions-intro-inner { gap: 36px; }
  .missions-partners-v2 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .missions-tiers { grid-template-columns: 1fr; gap: 12px; }
  .missions-tier { padding: 22px 24px; }
  .missions-tier-num { font-size: 32px; margin-bottom: 10px; }
}
@media (max-width: 640px) {
  .missions-partner-v2 { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
  .missions-partner-img { max-width: 220px; }
  .missions-section-head h2 { font-size: 32px; }
  .missions-tier-head h3 { font-size: 22px; }
  .missions-verse { font-size: 21px; }
}

/* =========================================================
   CONNECT CARD PAGE
   ========================================================= */
.connect-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.connect-checkbox {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; margin: 4px 0 22px;
  background: var(--ink-050); border-radius: 10px;
  font-size: 14.5px; color: var(--fg-1); font-weight: 600;
  cursor: pointer;
}
.connect-checkbox input { width: 18px; height: 18px; accent-color: var(--hope-blue); cursor: pointer; }
.connect-hint { font-weight: 500; color: var(--fg-3); font-size: 12px; }
.connect-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.connect-chip {
  background: #fff; border: 1px solid var(--border-hairline);
  border-radius: 999px; padding: 8px 14px;
  font: inherit; font-size: 13.5px; font-weight: 600;
  color: var(--fg-2); cursor: pointer;
  transition: all 150ms ease;
}
.connect-chip:hover { border-color: var(--hope-blue); color: var(--hope-blue); }
.connect-chip.is-on {
  background: var(--hope-blue); color: #fff; border-color: var(--hope-blue);
  box-shadow: 0 4px 12px rgba(0,130,202,0.22);
}
.connect-also {
  margin-top: 28px; padding: 20px 22px;
  background: var(--bg-brand-soft); border-radius: 12px;
}
.connect-also strong { display: block; color: var(--hope-navy); margin-bottom: 6px; font-size: 14px; }
.connect-also p { margin: 0; font-size: 14px; color: var(--fg-2); line-height: 1.55; }

/* Planning Center embedded form */
.connect-embed-single { max-width: 760px; margin: 0 auto; }
.connect-embed-wrap {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(15, 32, 56, 0.06);
  overflow: hidden;
}
.connect-embed {
  display: block;
  width: 100%;
  min-height: 1100px;
  height: 1100px;
  border: 0;
  border-radius: 12px;
  background: #fff;
}
.connect-embed-fallback {
  font-size: 13px;
  color: var(--fg-2);
  text-align: center;
  padding: 10px 12px 6px;
}
.connect-embed-fallback a { color: var(--hope-blue); font-weight: 600; text-decoration: underline; }
[data-theme="dark"] .connect-embed-wrap {
  background: var(--bg-1);
  border-color: var(--border-1);
}
@media (max-width: 720px) {
  /* Drop the card chrome on phones so the Planning Center form gets the
     full screen width — at ~375px every pixel of nested padding hurts. */
  .connect-embed-single { max-width: none; padding-left: 0; padding-right: 0; }
  .connect-embed-wrap {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .connect-embed { border-radius: 0; min-height: 1500px; height: 1500px; }
  .connect-embed-fallback { padding: 12px 20px 6px; }

  /* On the Visit page the iframe lives inside .visit-grid (not its own
     full-bleed container), so break it out of the container's 20px padding
     so PCO's form gets a true viewport-width frame. The aside next to it
     keeps its normal padding. */
  .visit-grid > .connect-embed-wrap { margin-left: -20px; margin-right: -20px; }
}

/* =========================================================
   DISCOVER HOPE PAGE
   ========================================================= */
.discover-intro { padding: 88px 0 56px; background: #fff; }
.discover-intro-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start;
}
.discover-intro-copy .eyebrow { color: var(--hope-blue); }
.discover-intro-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 48px; line-height: 1.05; letter-spacing: -0.022em;
  margin: 14px 0 24px;
}
.discover-intro-copy .lead {
  font-size: 19px; line-height: 1.55; color: var(--fg-1); margin-bottom: 18px;
  text-wrap: pretty;
}
.discover-intro-copy p {
  font-size: 16px; line-height: 1.7; color: var(--fg-2); margin-bottom: 16px;
}
.discover-intro-copy p strong { color: var(--fg-1); }

.discover-callout {
  background: var(--ink-900); color: #fff;
  border-radius: 18px; padding: 36px 32px;
  position: sticky; top: calc(var(--header-h, 88px) + 24px);
}
.discover-callout-eyebrow {
  font-size: 11px; font-weight: 900; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--hope-sky);
  margin-bottom: 14px;
}
.discover-callout-date {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 22px; margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.discover-callout-day {
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; color: #fff; line-height: 1;
  letter-spacing: -0.03em;
}
.discover-callout-time {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; color: var(--hope-sky);
  letter-spacing: -0.02em;
}
.discover-callout-where {
  font-size: 14px; color: #fff; line-height: 1.6;
  margin-bottom: 22px;
}
.discover-callout-where strong { color: #fff; font-weight: 700; display: block; margin-bottom: 2px; }
.discover-callout-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.discover-callout-list li {
  font-size: 14px; color: #fff;
  padding-left: 22px; position: relative;
}
.discover-callout-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(107,196,232,0.25);
  border: 2px solid var(--hope-sky);
}

.discover-form-card { padding: 28px 28px 22px; }
.discover-form-card h2 { margin-bottom: 6px; }
.discover-form-card .sub { margin-bottom: 18px; }
.discover-embed-wrap {
  margin-top: 8px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.discover-embed {
  min-height: 1700px;
  height: 1700px;
  background: #fff;
}
@media (max-width: 720px) {
  .discover-embed { min-height: 2000px; height: 2000px; }
  .discover-form-card { padding: 22px 18px 18px; }
}

.discover-cover { padding: 96px 0; background: var(--ink-050); }
.discover-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 12px;
}
.discover-card {
  background: #fff; border: 1px solid var(--border-hairline);
  border-radius: 14px; padding: 28px 26px;
}
.discover-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 28px; color: var(--hope-sky);
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.discover-card h3 {
  margin: 0 0 8px; font-size: 20px; font-weight: 800;
  letter-spacing: -0.015em; color: var(--fg-1);
}
.discover-card p {
  margin: 0; font-size: 14.5px; color: var(--fg-2); line-height: 1.55;
}
.discover-card-q {
  background: var(--hope-navy); color: #fff; border-color: var(--hope-navy);
}
.discover-card-q .discover-num { color: var(--hope-sky); }
.discover-card-q h3 { color: #fff; }
.discover-card-q p { color: #fff; }

.discover-faq { display: flex; flex-direction: column; gap: 4px; }
.discover-faq details {
  background: #fff; border: 1px solid var(--border-hairline);
  border-radius: 10px;
  transition: border-color 160ms ease;
}
.discover-faq details[open] { border-color: var(--hope-blue); }
.discover-faq summary {
  list-style: none; cursor: pointer;
  padding: 14px 18px;
  font-size: 14.5px; font-weight: 700; color: var(--fg-1);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.discover-faq summary::-webkit-details-marker { display: none; }
.discover-faq summary::after {
  content: '+'; font-weight: 400; font-size: 22px; color: var(--hope-blue); line-height: 1;
  transition: transform 160ms ease;
}
.discover-faq details[open] summary::after { content: '−'; }
.discover-faq p {
  margin: 0; padding: 0 18px 16px;
  font-size: 14px; color: var(--fg-2); line-height: 1.6;
}

/* =========================================================
   GET INVOLVED — responsive
   ========================================================= */
@media (max-width: 1024px) {
  .lifegroups-why,
  .missions-heart,
  .discover-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .discover-callout { position: static; }
  .lifegroups-grid,
  .missions-partners,
  .discover-grid { grid-template-columns: repeat(2, 1fr); }
  .lifegroups-start-inner { grid-template-columns: 1fr; gap: 28px; }
  .lifegroups-start-cta { justify-self: start; }
  .missions-trip { grid-template-columns: 1fr auto; gap: 14px; }
  .missions-trip-when { grid-column: 1 / -1; }
  .missions-trip-spots { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .lifegroups-grid,
  .missions-partners,
  .discover-grid { grid-template-columns: 1fr; }
  .connect-row { grid-template-columns: 1fr; }
  .lifegroups-why-copy h2,
  .missions-heart-copy h2,
  .lifegroups-start h2 { font-size: 32px; }
  .discover-intro-copy h2 { font-size: 36px; }
  .discover-callout { padding: 28px 24px; }
  .discover-callout-day { font-size: 44px; }
  .discover-callout-time { font-size: 26px; }
  .missions-trips { padding: 64px 0; }
  .lifegroups-start { padding: 56px 0; }
  .discover-intro { padding: 56px 0 32px; }
  .discover-cover { padding: 56px 0; }
}
