/* ===========================================================
   LIFE STREAM CHURCH — shared design system
   Brand: blue #009fe4 · dark #212326 · teal #546f79 · 1200px
   =========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');
:root {
  --blue: #009fe4;
  --blue-bright: #36b8ef;
  --blue-deep: #024a73;
  --dark: #212326;
  --teal: #546f79;
  --navy: #212326;
  --ink: #212326;
  --slate: #546f79;
  --mist: #f1f7fb;
  --mist-2: #e3eef5;
  --paper: #ffffff;
  --line: #dde7ee;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; line-height: 1.5; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
em.b { font-style: normal; color: var(--blue); }

/* ---------- placeholder media ---------- */
.media { position: relative; overflow: hidden; background: var(--mist-2); }
.media::before {
  content: attr(data-ph); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font: 600 12px/1.4 "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  letter-spacing: .08em; text-transform: uppercase; color: #8aa0b6;
  background-image: repeating-linear-gradient(135deg, #e9f0f7 0 14px, #e2ebf4 14px 28px);
  padding: 16px; text-align: center;
}
.media img { position: relative; width: 100%; height: 100%; object-fit: cover; transition: opacity .6s var(--ease); }
.media img.failed { opacity: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px;
  letter-spacing: -.01em; padding: 15px 26px; border-radius: 100px; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s; cursor: pointer; border: none;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 26px rgba(0,159,228,.32); }
.btn-primary:hover { transform: translateY(-2px); background: var(--blue-bright); box-shadow: 0 14px 32px rgba(0,159,228,.42); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #34373c; }
.btn-white { background: #fff; color: var(--blue-deep); box-shadow: 0 10px 26px rgba(0,0,0,.12); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.2); }

/* ---------- header ---------- */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80; border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
header.site.solid { background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(12px); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand .mark { width: 46px; height: 46px; flex: none; display: grid; place-items: center; }
.brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.brand .name { line-height: 1; }
.brand .name b { display: block; font-size: 17px; font-weight: 800; letter-spacing: -.02em; color: var(--navy); transition: color .35s; }
.brand .name span { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); }
header.site:not(.solid) .brand .name b { color: #fff; }
header.site:not(.solid) .brand .name span { color: #bfe7fb; }
.menu { display: flex; align-items: center; gap: 26px; }
.menu a { font-size: 15px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); position: relative; padding: 6px 0; transition: color .25s; }
header.site:not(.solid) .menu a { color: rgba(255,255,255,.92); }
.menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--blue); transition: right .3s var(--ease); }
.menu a:hover::after, .menu a.active::after { right: 0; }
.menu a.active { color: var(--blue); }
header.site:not(.solid) .menu a.active { color: #fff; }
.cta-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff !important;
  font-weight: 700; font-size: 14.5px; padding: 12px 22px; border-radius: 100px; letter-spacing: -.01em;
  box-shadow: 0 6px 18px rgba(0,159,228,.32); transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.cta-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,159,228,.42); background: var(--blue-bright); }
.burger { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; cursor: pointer; border: 1px solid transparent; background: transparent; transition: background .25s, border-color .25s; }
header.site.solid .burger { border-color: var(--line); }
header.site.solid .burger:hover { background: var(--mist); }
header.site:not(.solid) .burger:hover { background: rgba(255,255,255,.14); }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: inherit; border-radius: 2px; }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
header.site:not(.solid) .burger span, header.site:not(.solid) .burger span::before, header.site:not(.solid) .burger span::after { background: #fff; }
@media (max-width: 980px) { .menu, .cta-pill { display: none; } }

/* ---------- drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(10,31,56,.5); opacity: 0; visibility: hidden; transition: .35s var(--ease); z-index: 90; backdrop-filter: blur(2px); }
.overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 90vw); background: var(--paper); z-index: 95; transform: translateX(100%); transition: transform .42s var(--ease); padding: 30px 36px; overflow-y: auto; box-shadow: -20px 0 60px rgba(33,35,38,.18); }
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.drawer-top .name b { color: var(--navy); font-size: 17px; font-weight: 800; }
.closex { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; display: grid; place-items: center; font-size: 18px; color: var(--slate); transition: .2s; }
.closex:hover { background: var(--mist); color: var(--ink); }
.drawer h4 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin: 24px 0 10px; font-weight: 800; }
.drawer nav.main a { display: block; font-size: 19px; font-weight: 700; color: var(--navy); padding: 9px 0; letter-spacing: -.02em; transition: color .2s, padding-left .2s; border-bottom: 1px solid var(--line); }
.drawer nav.main a:hover { color: var(--blue); padding-left: 6px; }
.drawer .sub { display: flex; flex-direction: column; }
.drawer .sub a { font-size: 15px; font-weight: 500; color: var(--slate); padding: 6px 0; transition: color .2s, padding-left .2s; }
.drawer .sub a:hover { color: var(--blue); padding-left: 6px; }
.drawer .invite { margin-top: 26px; background: var(--mist); border-radius: 16px; padding: 18px 20px; }
.drawer .invite p { font-size: 14px; color: var(--slate); }
.drawer .invite b { color: var(--navy); }

/* ---------- section scaffolding ---------- */
section { position: relative; }
.pad { padding: 124px 0; }
.pad-s { padding: 72px 0; }
.bg-mist { background: var(--mist); }
.bg-dark { background: var(--dark); color: #fff; }
.ey { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.ey::before { content: ""; width: 26px; height: 2px; background: var(--blue); }
.ey.c { justify-content: center; }
h1, h2, h3, h4 { color: var(--navy); }
.title { font-size: clamp(36px, 5.2vw, 68px); font-weight: 800; letter-spacing: -.038em; line-height: 1.0; text-wrap: balance; }
.title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); letter-spacing: 0; font-size: 1.08em; }
.bg-dark .title, .bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--slate); max-width: 620px; line-height: 1.6; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* gentle river meander (home, wide screens only) */
@media (min-width: 1300px) {
  .mr > .wrap { transform: translateX(32px); }
  .ml > .wrap { transform: translateX(-32px); }
  .mr2 > .wrap { transform: translateX(18px); }
  .ml2 > .wrap { transform: translateX(-18px); }
}

/* ---------- prose ---------- */
.prose { max-width: 760px; }
.prose.c { margin: 0 auto; }
.prose p { color: var(--slate); font-size: 17px; line-height: 1.75; margin-top: 18px; }
.prose p:first-child { margin-top: 0; }
.prose h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -.03em; margin-top: 40px; }
.prose h3 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-top: 30px; }
.prose a { color: var(--blue); font-weight: 600; }
.prose strong { color: var(--navy); }
.prose ul { margin: 18px 0 0 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prose ul li { position: relative; padding-left: 30px; color: var(--slate); font-size: 17px; line-height: 1.6; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 8px; border-radius: 0 0 10px 10px; background: var(--blue); opacity: .9; }
.scripture { border-left: 3px solid var(--blue); background: var(--mist); border-radius: 0 14px 14px 0; padding: 18px 22px; font-style: italic; color: var(--navy); font-size: 18px; line-height: 1.5; margin: 24px 0; }
.scripture cite { display: block; font-style: normal; font-weight: 700; color: var(--blue); font-size: 14px; margin-top: 8px; letter-spacing: .04em; }

/* ---------- page hero (interior) ---------- */
.page-hero { position: relative; min-height: 76vh; display: flex; align-items: flex-end; overflow: hidden; background: linear-gradient(150deg, var(--dark) 0%, var(--blue-deep) 75%, var(--blue) 130%); color: #fff; }
.page-hero.short { min-height: 60vh; }
.page-hero .ph-media { position: absolute; inset: 0; z-index: 0; }
.page-hero .ph-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .ph-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(16,21,28,.92) 0%, rgba(16,21,28,.55) 34%, rgba(16,21,28,.1) 64%, rgba(16,21,28,.42) 100%), linear-gradient(0deg, rgba(12,17,24,.72) 0%, rgba(12,17,24,0) 44%); }
.page-hero .inner { position: relative; z-index: 2; width: 100%; padding-top: 176px; padding-bottom: 74px; }
.breadcrumb { display: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }
.page-hero h1 { color: #fff; font-weight: 800; letter-spacing: -.04em; line-height: .96; font-size: clamp(46px, 7.2vw, 98px); text-wrap: balance; }
.page-hero h1 .blue { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue-bright); font-size: 1.05em; letter-spacing: 0; }
.page-hero .sub { font-size: clamp(18px, 1.7vw, 22px); color: rgba(255,255,255,.88); max-width: 640px; margin-top: 24px; line-height: 1.55; }

/* ---------- hero (home) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--dark); }
.hero .bg { position: absolute; inset: 0; z-index: 0; }
.hero .bg video, .hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(33,35,38,.55) 0%, rgba(33,35,38,.12) 32%, rgba(33,35,38,.25) 60%, rgba(20,30,40,.92) 100%), linear-gradient(90deg, rgba(20,30,40,.6) 0%, rgba(20,30,40,0) 55%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: 72px; padding-top: 140px; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #bfe7fb; font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 22px; }
.hero .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #29d07a; box-shadow: 0 0 0 0 rgba(41,208,122,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(41,208,122,.6);} 70%{box-shadow:0 0 0 12px rgba(41,208,122,0);} 100%{box-shadow:0 0 0 0 rgba(41,208,122,0);} }
.hero h1 { color: #fff; font-weight: 800; letter-spacing: -.035em; line-height: .94; font-size: clamp(48px, 8.2vw, 120px); text-wrap: balance; }
.hero h1 .blue { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue-bright); font-size: 1.04em; letter-spacing: 0; }
.triad { display: flex; flex-wrap: wrap; gap: 10px 30px; margin: 34px 0 36px; }
.triad .t { font-size: clamp(18px, 2.3vw, 27px); font-weight: 700; letter-spacing: -.02em; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 12px; transition: color .5s var(--ease); position: relative; }
.triad .t::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.3); transition: background .5s, transform .5s; }
.triad .t.active { color: #fff; }
.triad .t.active::before { background: var(--blue-bright); transform: scale(1.35); box-shadow: 0 0 14px rgba(54,184,239,.8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- locations cards ---------- */
.loc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 50px; flex-wrap: wrap; }
.locs { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 860px) { .locs { grid-template-columns: 1fr; } }
.loc { position: relative; border-radius: 22px; overflow: hidden; min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; isolation: isolate; transition: transform .4s var(--ease), box-shadow .4s var(--ease); box-shadow: 0 18px 40px rgba(33,35,38,.14); }
.loc:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(33,35,38,.24); }
.loc .media { position: absolute; inset: 0; z-index: -2; }
.loc::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(33,35,38,0) 30%, rgba(20,30,40,.55) 62%, rgba(10,20,30,.94) 100%); }
.loc:hover .media img { transform: scale(1.06); }
.loc .media img { transition: transform .7s var(--ease); }
.loc-body { padding: 34px; }
.loc .chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); padding: 7px 14px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.loc .chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); }
.loc h3 { font-size: 40px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 6px; color: #fff; }
.loc .where { font-size: 15px; color: rgba(255,255,255,.82); margin-bottom: 20px; max-width: 330px; }
.loc .when { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; margin-bottom: 22px; }
.loc .when svg { width: 18px; height: 18px; color: var(--blue-bright); }
.loc .go { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; background: #fff; color: var(--navy); padding: 13px 22px; border-radius: 100px; transition: gap .25s, background .25s, color .25s; align-self: flex-start; }
.loc .go:hover { gap: 14px; background: var(--blue); color: #fff; }

/* ---------- location cards v2 (editorial) ---------- */
.locs2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 860px) { .locs2 { grid-template-columns: 1fr; } }
.loc2 { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.loc2:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(33,35,38,.16); border-color: transparent; }
.loc2 .pic { position: relative; aspect-ratio: 16/10; }
.loc2 .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.loc2:hover .pic img { transform: scale(1.05); }
.loc2 .pic .chip { position: absolute; left: 18px; top: 18px; z-index: 2; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; background: rgba(20,30,40,.42); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.28); color: #fff; padding: 8px 15px; border-radius: 100px; font-size: 12.5px; font-weight: 700; }
.loc2 .pic .chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); }
.loc2 .body { padding: 28px 30px 32px; }
.loc2 .head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.loc2 .head h3 { font-size: 38px; font-weight: 800; letter-spacing: -.03em; color: var(--navy); line-height: 1; }
.loc2 .arrow { width: 52px; height: 52px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--mist); color: var(--navy); transition: background .3s, color .3s, transform .3s var(--ease); }
.loc2:hover .arrow { background: var(--blue); color: #fff; transform: rotate(-45deg); }
.loc2 .arrow svg { width: 22px; height: 22px; }
.loc2 .time { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding: 14px 16px; background: var(--mist); border-radius: 16px; }
.loc2 .time .ic { width: 42px; height: 42px; border-radius: 12px; background: #fff; display: grid; place-items: center; color: var(--blue); flex: none; box-shadow: 0 4px 12px rgba(0,159,228,.16); }
.loc2 .time .ic svg { width: 21px; height: 21px; }
.loc2 .time small { display: block; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 2px; }
.loc2 .time b { font-size: 19px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.loc2 .addr { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; color: var(--slate); font-size: 15px; line-height: 1.5; }
.loc2 .addr svg { width: 18px; height: 18px; flex: none; color: var(--blue); margin-top: 1px; }

/* ---------- vision band ---------- */
.vision { background: linear-gradient(160deg, #023a5c 0%, #015a86 55%, #009fe4 125%); color: #fff; overflow: hidden; }
.vision .wrap { position: relative; }
.vision .big-quote { position: absolute; top: -40px; left: -10px; font-size: 320px; line-height: 1; font-weight: 800; color: rgba(255,255,255,.06); pointer-events: none; }
.vision .ey { color: #bfe7fb; } .vision .ey::before { background: #bfe7fb; }
.vision blockquote { font-size: clamp(30px, 4.6vw, 60px); font-weight: 800; letter-spacing: -.03em; line-height: 1.04; max-width: 16ch; position: relative; color: #fff; }
.vision blockquote em { font-family: var(--serif); font-style: italic; font-weight: 400; color: #cfeefd; font-size: 1.06em; }
.vision .src { margin-top: 28px; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); font-weight: 700; }

/* ---------- split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split.rev { grid-template-columns: .95fr 1.05fr; }
.split.rev .split-media { order: 2; }
@media (max-width: 900px) { .split, .split.rev { grid-template-columns: 1fr; gap: 36px; } .split.rev .split-media { order: 0; } }
.split-media { border-radius: 22px; min-height: 460px; box-shadow: 0 24px 50px rgba(33,35,38,.16); }
.split-text p { color: var(--slate); font-size: 17px; line-height: 1.7; margin-top: 20px; max-width: 540px; }
.split-text .link { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; font-weight: 700; color: var(--blue); font-size: 16px; transition: gap .25s; }
.split-text .link:hover { gap: 14px; }
.split-text .link svg { width: 18px; height: 18px; }
.stats { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.stats .s b { display: block; font-size: 38px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.stats .s span { font-size: 13px; color: var(--slate); font-weight: 600; }

/* ---------- value / info cards ---------- */
.cards-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .cards3, .cards2 { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 36px 32px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; position: relative; overflow: hidden; }
.card .ci { aspect-ratio: 4/3; border-radius: 14px; margin: -6px 0 20px; overflow: hidden; background: var(--mist-2); }
.card .ci img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .ci img { transform: scale(1.05); }
.card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--blue); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(33,35,38,.12); border-color: transparent; }
.card:hover::before { transform: scaleY(1); }
.card .num { font-size: 13px; font-weight: 800; color: var(--blue); letter-spacing: .1em; }
.card h3 { font-size: 25px; font-weight: 800; letter-spacing: -.025em; color: var(--navy); margin: 12px 0 14px; }
.card .verse { font-size: 15px; font-style: italic; color: var(--navy); background: var(--mist); border-radius: 12px; padding: 14px 16px; line-height: 1.55; margin-bottom: 16px; }
.card .verse cite { display: block; font-style: normal; font-weight: 700; color: var(--blue); font-size: 13px; margin-top: 8px; }
.card p { color: var(--slate); font-size: 15.5px; line-height: 1.65; }
.card .link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 700; color: var(--blue); font-size: 15px; transition: gap .25s; }
.card .link:hover { gap: 13px; }
.card .link svg { width: 16px; height: 16px; }

/* ---------- team grid ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card .media { border-radius: 18px; aspect-ratio: 4/5; margin-bottom: 18px; box-shadow: 0 16px 36px rgba(33,35,38,.14); }
.team-card .role { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.team-card h3 { font-size: 24px; font-weight: 800; letter-spacing: -.025em; color: var(--navy); margin: 6px 0 10px; }
.team-card p { color: var(--slate); font-size: 15px; line-height: 1.6; }
.team-card.feature { grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; background: var(--mist); border-radius: 24px; padding: 30px; }
.team-card.feature .media { margin: 0; aspect-ratio: 1/1; }
@media (max-width: 700px) { .team-card.feature { grid-template-columns: 1fr; } }

/* ---------- accordion / beliefs ---------- */
.accordion { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc-head { width: 100%; display: flex; align-items: center; gap: 18px; padding: 24px 4px; cursor: pointer; background: none; border: none; text-align: left; font-family: inherit; }
.acc-head .n { font-size: 13px; font-weight: 800; color: var(--blue); width: 28px; flex: none; }
.acc-head .t { font-size: 21px; font-weight: 800; letter-spacing: -.02em; color: var(--navy); flex: 1; }
.acc-head .ic { width: 26px; height: 26px; flex: none; position: relative; transition: transform .3s var(--ease); }
.acc-head .ic::before, .acc-head .ic::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; }
.acc-head .ic::before { left: 0; top: 12px; width: 26px; height: 2px; }
.acc-head .ic::after { left: 12px; top: 0; width: 2px; height: 26px; transition: transform .3s var(--ease); }
.acc.open .acc-head .ic::after { transform: scaleY(0); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-body p { color: var(--slate); font-size: 16px; line-height: 1.7; padding: 0 4px 26px 46px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(150deg, var(--blue), var(--blue-deep)); color: #fff; border-radius: 26px; padding: 60px; text-align: center; position: relative; overflow: hidden; }
.cta-band .ring { position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 44px solid rgba(255,255,255,.08); right: -130px; top: -150px; }
.cta-band h2 { font-size: clamp(28px, 3.6vw, 46px); font-weight: 800; letter-spacing: -.03em; color: #fff; margin-bottom: 16px; position: relative; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 540px; margin: 0 auto 30px; position: relative; line-height: 1.55; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
@media (max-width: 600px) { .cta-band { padding: 44px 26px; } }

/* ---------- giving + watch ---------- */
.gw { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 900px) { .gw { grid-template-columns: 1fr; } }
.give { background: linear-gradient(155deg, var(--blue), var(--blue-deep)); color: #fff; border-radius: 24px; padding: 50px 46px; display: flex; flex-direction: column; justify-content: space-between; min-height: 440px; position: relative; overflow: hidden; }
.give .ring { position: absolute; width: 320px; height: 320px; border-radius: 50%; border: 40px solid rgba(255,255,255,.08); right: -120px; top: -120px; }
.give .ey { color: #cfeefd; } .give .ey::before { background: #cfeefd; }
.give h3 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; margin-bottom: 18px; color: #fff; }
.give p { color: rgba(255,255,255,.9); font-size: 16px; line-height: 1.6; max-width: 420px; }
.give .note { font-style: italic; font-weight: 600; color: #fff; margin-top: 16px; }
.give .btn-white { align-self: flex-start; margin-top: 30px; }
.watch { background: var(--dark); color: #fff; border-radius: 24px; padding: 44px; display: flex; flex-direction: column; min-height: 440px; }
.watch .ey { color: #8fd0f7; } .watch .ey::before { background: #8fd0f7; }
.watch h3 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 20px; color: #fff; }
.watch .frame { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: #000; margin-top: auto; box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.watch .frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch .live-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #ff5a5a; margin-bottom: 6px; }
.watch .live-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #ff5a5a; animation: pulse2 1.8s infinite; }
@keyframes pulse2 { 0%,100%{opacity:1;} 50%{opacity:.35;} }

/* ---------- info rows (bank details, contact) ---------- */
.inforow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px){ .inforow { grid-template-columns: 1fr; } }
.infobox { background: var(--mist); border-radius: 18px; padding: 26px; }
.infobox .k { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.infobox .v { font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.infobox p { color: var(--slate); font-size: 15px; line-height: 1.6; margin-top: 6px; }

/* ---------- form ---------- */
.form { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.form .field { display: flex; flex-direction: column; gap: 7px; }
.form label { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.form input, .form textarea { font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; transition: border-color .2s, box-shadow .2s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,159,228,.15); }
.form textarea { min-height: 130px; resize: vertical; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px){ .form .row2 { grid-template-columns: 1fr; } }

/* ---------- map ---------- */
.map { border-radius: 20px; overflow: hidden; min-height: 320px; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- footer ---------- */
footer.site { background: var(--dark); color: rgba(255,255,255,.7); padding: 80px 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 860px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .foot-top { grid-template-columns: 1fr; } }
.foot-brand .brand .name b { color: #fff; }
.foot-invite { margin-top: 22px; }
.foot-invite .lbl { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #8fd0f7; font-weight: 800; margin-bottom: 12px; }
.foot-invite .row { display: flex; gap: 28px; }
.foot-invite .row .it b { display: block; color: #fff; font-size: 15px; }
.foot-invite .row .it span { font-size: 14px; }
footer.site h5 { color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
footer.site ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
footer.site ul a { font-size: 15px; transition: color .2s; }
footer.site ul a:hover { color: #fff; }
.foot-bot { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 30px; flex-wrap: wrap; }
.foot-bot .socials { display: flex; gap: 12px; }
.foot-bot .socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; transition: .25s; }
.foot-bot .socials a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.foot-bot .socials svg { width: 18px; height: 18px; fill: currentColor; }
.foot-bot .aog { font-size: 13px; }
.copyright { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 26px; }
.copyright a { color: rgba(255,255,255,.72); transition: color .2s; }
.copyright a:hover { color: #fff; }

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .pad { padding: 78px 0; }
  .pad-s { padding: 54px 0; }
  .hero-inner { padding-bottom: 54px; }
  .page-hero .inner { padding-top: 130px; }
  .loc-body { padding: 26px; }
  .cta-band { padding: 40px 24px; }
}

/* ---------- premium polish ---------- */
em.b { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.split-text h2.title em, .card h3 em { font-size: 1.06em; }
.lead { font-size: clamp(17px, 1.45vw, 21px); }
/* filmic grain across the whole site */
.grain { position: fixed; inset: 0; z-index: 70; pointer-events: none; opacity: .05; mix-blend-mode: soft-light; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 170px 170px; }
/* parallax media */
.page-hero .ph-media img, .hero .bg { will-change: transform; }
@media (prefers-reduced-motion: reduce) { .page-hero .ph-media img, .hero .bg { transform: none !important; } }
/* refined entrance */
.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* ---------- premium v2 ---------- */
/* hero text entrance on load */
@media (prefers-reduced-motion: no-preference) {
  .hero-inner > *, .page-hero .inner > * { opacity: 0; transform: translateY(26px); animation: heroUp .8s var(--ease) forwards; }
  .hero-inner > *:nth-child(1), .page-hero .inner > *:nth-child(1) { animation-delay: .08s; }
  .hero-inner > *:nth-child(2), .page-hero .inner > *:nth-child(2) { animation-delay: .18s; }
  .hero-inner > *:nth-child(3), .page-hero .inner > *:nth-child(3) { animation-delay: .28s; }
  .hero-inner > *:nth-child(4), .page-hero .inner > *:nth-child(4) { animation-delay: .38s; }
  .hero-inner > *:nth-child(5) { animation-delay: .48s; }
}
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* value marquee */
.marquee { overflow: hidden; padding: 32px 0; background: var(--dark); color: #fff; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.marquee .track { display: inline-flex; align-items: center; gap: 0; white-space: nowrap; animation: marq 32s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee .it { display: inline-flex; align-items: center; gap: 46px; padding-right: 46px; font-size: clamp(28px, 4.6vw, 56px); font-weight: 800; letter-spacing: -.02em; }
.marquee .it i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue-bright); }
.marquee .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--blue); flex: none; }
@keyframes marq { to { transform: translateX(-50%); } }

/* magnetic affordance */
.btn, .cta-pill { will-change: transform; }

/* scroll progress */
.scrollprog { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); z-index: 120; }

/* custom cursor (desktop) */
@media (pointer: fine) {
  body.cursoron, body.cursoron a, body.cursoron button, body.cursoron .btn, body.cursoron .cta-pill, body.cursoron .loc2, body.cursoron .card, body.cursoron .acc-head { cursor: none; }
  body.cursoron input, body.cursoron textarea, body.cursoron select { cursor: text; }
  .cursor-dot { position: fixed; top: 0; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); transition: opacity .2s; }
  .cursor-ring { position: fixed; top: 0; left: 0; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(0,159,228,.55); z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); transition: width .26s var(--ease), height .26s var(--ease), border-color .26s, background .26s, opacity .2s; }
  body.cursor-hover .cursor-ring { width: 66px; height: 66px; background: rgba(0,159,228,.08); border-color: rgba(0,159,228,.9); }
  body.cursor-hover .cursor-dot { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .scrollprog { transition: none; } }

/* ============================================================
   GRAVITY FORMS — match the Life Stream design
   ============================================================ */
.lsc-gform .gform_wrapper.gravity-theme .gfield_label,
.lsc-gform .gform_wrapper .gfield_label {
  font-weight: 700; color: var(--ink, #212326); font-size: 14px; letter-spacing: .01em; margin-bottom: 6px;
}
.lsc-gform .gform_wrapper input[type=text],
.lsc-gform .gform_wrapper input[type=email],
.lsc-gform .gform_wrapper input[type=tel],
.lsc-gform .gform_wrapper input[type=number],
.lsc-gform .gform_wrapper select,
.lsc-gform .gform_wrapper textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line, #dde7ee);
  border-radius: 12px; background: #fff; color: var(--ink, #212326);
  font-size: 16px; font-family: inherit; transition: border-color .2s, box-shadow .2s;
}
.lsc-gform .gform_wrapper textarea { min-height: 140px; }
.lsc-gform .gform_wrapper input:focus,
.lsc-gform .gform_wrapper select:focus,
.lsc-gform .gform_wrapper textarea:focus {
  outline: none; border-color: var(--blue, #009fe4);
  box-shadow: 0 0 0 4px rgba(0,159,228,.14);
}
.lsc-gform .gform_wrapper .gform_required_legend { display: none; }
.lsc-gform .gform_wrapper .gfield { margin-bottom: 18px; }
/* checkbox / radio */
.lsc-gform .gform_wrapper .gfield-choice-input { accent-color: var(--blue, #009fe4); width: 18px; height: 18px; }
.lsc-gform .gform_wrapper .gchoice label { font-weight: 500; }
/* submit button → brand pill */
.lsc-gform .gform_wrapper .gform_footer input[type=submit],
.lsc-gform .gform_wrapper .gform_footer button,
.lsc-gform .gform_wrapper .gform-button,
.lsc-gform .gform_wrapper input[type=submit] {
  background: var(--blue, #009fe4); color: #fff; border: 0; cursor: pointer;
  border-radius: 100px; padding: 15px 30px; font-weight: 700; font-size: 16px;
  box-shadow: 0 10px 26px rgba(0,159,228,.32); transition: transform .2s, background .2s, box-shadow .2s;
}
.lsc-gform .gform_wrapper .gform_footer input[type=submit]:hover,
.lsc-gform .gform_wrapper input[type=submit]:hover {
  background: var(--blue-bright, #36b8ef); transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,159,228,.42);
}
.lsc-gform .gform_confirmation_message {
  background: var(--mist, #f1f7fb); border-left: 3px solid var(--blue, #009fe4);
  border-radius: 0 14px 14px 0; padding: 18px 22px; color: var(--ink, #212326); font-size: 17px;
}
.lsc-gform .gform_wrapper .validation_message { color: #c0392b; font-size: 13px; }

/* ============================================================
   Remove the diagonal placeholder pattern behind images
   (applies to every page)
   ============================================================ */
.media::before { display: none !important; }
.media { background: #fff !important; }
.split-media { min-height: 0 !important; }
.split { align-items: stretch !important; }
.split-media, .split-media img, .media img { height: 100% !important; object-fit: cover !important; }
