/* ============================================================
   Look Up Ministries — lookupministries.us
   Palette from the logo: charcoal #141819, gold #A57C3F, cream ink.
   ============================================================ */
:root {
  --bg: #0b0b0c;
  --bg-2: #141819;
  --bg-3: #1b2022;
  --line: rgba(201, 164, 92, .16);
  --gold: #a57c3f;
  --gold-2: #c9a45c;
  --gold-3: #e4c98a;
  --cream: #f3ede0;
  --cream-2: #cfc8b8;
  --muted: #8f8a80;
  --display: 'Anton', 'Impact', 'Arial Narrow', sans-serif;
  --body: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--cream-2);
  font-family: var(--body); font-size: 1.05rem; line-height: 1.65;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--gold-2); text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; color: var(--cream); font-weight: 400; }
strong { font-weight: 700; }
.cream { color: var(--cream); }
.gold { color: var(--gold-2); }
.center { text-align: center; margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 1000; background: var(--gold); color: var(--bg); padding: 10px 14px; font-weight: 700; }
.skip:focus { top: 12px; }
::selection { background: var(--gold); color: var(--bg); }

.container { width: min(1200px, 100% - 48px); margin-inline: auto; }
.section { padding: clamp(84px, 11vw, 150px) 0; position: relative; }

/* ---------- type ---------- */
.h-display {
  font-family: var(--display); text-transform: uppercase; line-height: .95; letter-spacing: .015em;
  font-size: clamp(2.9rem, 6.8vw, 6.2rem);
}
.eyebrow {
  font-family: var(--body); font-weight: 700; font-size: .78rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-2); margin: 0 0 22px; display: flex; align-items: center; gap: 14px;
}
.eyebrow.center { justify-content: center; }
.eyebrow__line { display: inline-block; width: 44px; height: 1px; background: var(--gold); opacity: .8; }
.lead { font-size: clamp(1.12rem, 1.5vw, 1.32rem); line-height: 1.6; color: var(--cream-2); max-width: 62ch; }
blockquote { margin: 0; }
blockquote p { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--cream); font-size: 1.28rem; line-height: 1.45; margin: 0 0 .5em; }
blockquote cite { font-style: normal; font-weight: 700; font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: .86rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 18px 30px; border-radius: 3px; border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--bg); box-shadow: 0 10px 30px -12px rgba(201, 164, 92, .55); }
.btn--gold::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%); transform: translateX(-120%); transition: transform .8s var(--ease); }
.btn--gold:hover::after { transform: translateX(120%); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(201, 164, 92, .75); }
.btn--ghost { color: var(--cream); border-color: rgba(243, 237, 224, .3); background: rgba(255, 255, 255, .02); }
.btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-3); transform: translateY(-2px); }
.btn--sm { padding: 12px 20px; font-size: .74rem; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold-3); outline-offset: 3px; }

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 2000; background: var(--bg); display: grid; place-content: center; gap: 26px;
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader__mark { width: 200px; height: auto; animation: breathe 1.6s ease-in-out infinite; }
.preloader__bar { width: 200px; height: 2px; background: rgba(243, 237, 224, .1); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 40%; background: var(--gold-2); animation: load 1.1s var(--ease) infinite; }
.preloader.is-done { opacity: 0; visibility: hidden; }
@keyframes breathe { 0%, 100% { opacity: .55; transform: scale(.98); } 50% { opacity: 1; transform: scale(1); } }
@keyframes load { 0% { transform: translateX(-100%); } 100% { transform: translateX(260%); } }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; }
.nav::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(11, 11, 12, .84); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); opacity: 0; transition: opacity .4s; }
.nav__inner { width: min(1320px, 100% - 40px); margin-inline: auto; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav.is-scrolled::before, .nav.is-open::before { opacity: 1; }
.nav__brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.nav__brand img { width: 58px; height: auto; }
.nav__word { font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: 1.15rem; line-height: 1; }
.nav__word em { font-style: normal; color: var(--gold-2); font-family: var(--body); font-weight: 700; font-size: .62rem; letter-spacing: .3em; display: block; margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.btn) { color: var(--cream-2); font-weight: 500; font-size: .86rem; letter-spacing: .12em; text-transform: uppercase; position: relative; padding: 6px 0; transition: color .3s; }
.nav__links a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold-2); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav__links a:not(.btn):hover, .nav__links a[aria-current="true"] { color: var(--cream); }
.nav__links a:not(.btn):hover::after, .nav__links a[aria-current="true"]::after { transform: scaleX(1); }
.nav__toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; }
.nav__toggle span { display: block; height: 2px; background: var(--cream); transition: transform .35s var(--ease), opacity .3s; }
@media (max-width: 1000px) {
  .nav__links { position: fixed; top: var(--nav-h); left: 0; width: 100%; height: calc(100svh - var(--nav-h)); background: #0b0b0c radial-gradient(ellipse 80% 50% at 50% 0%, rgba(165, 124, 63, .22), transparent 70%); flex-direction: column; justify-content: center; align-items: stretch; gap: 0; padding: 0 28px 40px; overflow-y: auto; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .35s, transform .35s var(--ease), visibility .35s; }
  .nav.is-open .nav__links { opacity: 1; transform: none; visibility: visible; }
  .nav__links a:not(.btn) { font-family: var(--display); font-size: clamp(1.9rem, 8vw, 2.6rem); letter-spacing: .04em; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--cream); display: flex; align-items: baseline; gap: 14px; counter-increment: menu; }
  .nav__links a:not(.btn)::before { content: counter(menu, decimal-leading-zero); font-family: var(--serif); font-weight: 600; font-size: 1rem; color: var(--gold-2); letter-spacing: .1em; }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links { counter-reset: menu; }
  .nav__links .btn { margin-top: 30px; padding: 18px; font-size: .86rem; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; grid-template-rows: 1fr auto; justify-items: center; text-align: center; padding: calc(var(--nav-h) + 28px) 0 0; overflow: hidden; isolation: isolate; }
.hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(transparent, var(--bg)); z-index: 1; pointer-events: none; }
.hero__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse 70% 50% at 50% 0%, #2a2417 0%, var(--bg) 70%); }
.hero__rays {
  position: absolute; left: 50%; top: -60vh; width: 220vmax; height: 220vmax; transform: translateX(-50%);
  background: repeating-conic-gradient(from 0deg, rgba(228, 201, 138, .09) 0deg 2.5deg, transparent 2.5deg 11deg);
  -webkit-mask: radial-gradient(circle at center, #000 0%, transparent 42%); mask: radial-gradient(circle at center, #000 0%, transparent 42%);
  animation: spin 160s linear infinite; opacity: .8;
}
.hero__halo {
  position: absolute; left: 50%; top: 14vh; width: min(74vmin, 720px); aspect-ratio: 1; transform: translateX(-50%);
  border-radius: 50%; border: 2px solid rgba(201, 164, 92, .22);
  box-shadow: 0 0 80px rgba(201, 164, 92, .12), inset 0 0 90px rgba(201, 164, 92, .08);
  -webkit-mask: linear-gradient(#000 55%, transparent 80%); mask: linear-gradient(#000 55%, transparent 80%);
  animation: halo 9s ease-in-out infinite;
}
.hero__dust { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__spot { position: absolute; inset: 0; background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 30%), rgba(228, 201, 138, .09), transparent 60%); transition: opacity .6s; }
.hero__mtn { position: relative; z-index: 1; width: 100%; height: clamp(200px, 21vw, 320px); margin-top: auto; }
.mtn__cross { transform-box: fill-box; transform-origin: center; animation: crossglow 4s ease-in-out infinite; }
@keyframes spin { to { transform: translateX(-50%) rotate(360deg); } }
@keyframes halo { 0%, 100% { transform: translateX(-50%) translateY(var(--py, 0px)) scale(1); opacity: .85; } 50% { transform: translateX(-50%) translateY(var(--py, 0px)) scale(1.03); opacity: 1; } }
@keyframes crossglow { 0%, 100% { opacity: .85; } 50% { opacity: 1; } }

.hero__content { position: relative; z-index: 2; align-self: center; max-width: 1000px; padding: 16px 24px 40px; }
.hero__eyebrow { justify-content: center; opacity: 0; animation: fadeUp 1s var(--ease) forwards; animation-delay: .9s; }
.hero__title { font-family: var(--display); text-transform: uppercase; line-height: .9; letter-spacing: .01em; font-size: clamp(3.6rem, 13vw, 11rem); color: var(--cream); text-shadow: 0 20px 60px rgba(0, 0, 0, .6); }
.hero__title .line { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .06em; }
.hero__title .line:last-child { color: var(--gold-3); background: linear-gradient(120deg, var(--gold-3), var(--gold-2) 60%, var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__title .ch { display: inline-block; transform: translateY(110%); opacity: 0; }
.is-loaded .hero__title .ch { animation: rise .9s var(--ease) forwards; animation-delay: calc(var(--d) + .35s); }
.hero__sub { font-size: clamp(1.02rem, 1.7vw, 1.36rem); color: var(--cream-2); margin: 26px auto 38px; max-width: 46ch; text-wrap: balance; opacity: 0; animation: fadeUp 1s var(--ease) forwards; animation-delay: 1.5s; }
.hero__sub span { display: block; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s var(--ease) forwards; animation-delay: 1.75s; }
.hero__verse { position: absolute; z-index: 2; bottom: 22px; left: 24px; right: 24px; text-align: center; opacity: 0; animation: fadeUp 1.2s var(--ease) forwards; animation-delay: 2.2s; }
.hero__verse p { font-size: clamp(1rem, 1.5vw, 1.2rem); margin-bottom: .3em; color: var(--cream-2); }
@media (max-width: 720px) {
  .hero { padding-top: calc(var(--nav-h) + 12px); }
  .hero__content { padding-bottom: 8px; }
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__cta .btn { width: min(100%, 320px); }
  .hero__verse { position: relative; order: 2; bottom: auto; left: auto; right: auto; padding: 0 24px 6px; }
  .hero__verse p { font-size: 1.05rem; }
  .hero__mtn { order: 3; }
}
@keyframes rise { to { transform: none; opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- ticker ---------- */
.ticker { background: var(--gold); color: var(--bg); overflow: hidden; padding: 14px 0; border-block: 1px solid rgba(0, 0, 0, .25); }
.ticker__track { display: flex; align-items: center; gap: 34px; width: max-content; animation: ticker 42s linear infinite; font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: 1.15rem; }
.ticker__track i { width: 8px; height: 8px; background: var(--bg); transform: rotate(45deg); flex: none; opacity: .7; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--i, 0) * 100ms); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- who ---------- */
.who { background: linear-gradient(180deg, var(--bg) 0%, #0e1011 100%); }
.who__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: start; margin-bottom: clamp(60px, 8vw, 110px); }
.who__body p { font-size: 1.08rem; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { background: linear-gradient(180deg, var(--bg-2), #101315); border: 1px solid var(--line); padding: 38px 32px; position: relative; overflow: hidden; transition: border-color .4s, transform .5s var(--ease); }
.pillar::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-3)); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.pillar:hover { border-color: rgba(201, 164, 92, .45); transform: translateY(-6px); }
.pillar:hover::before { transform: scaleX(1); }
.pillar__icon { width: 54px; height: 54px; color: var(--gold-2); margin-bottom: 22px; }
.pillar h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; font-size: 1.9rem; margin-bottom: 12px; }
.pillar > p { color: var(--cream-2); margin-bottom: 22px; }
.pillar blockquote { border-left: 2px solid var(--gold); padding-left: 16px; }
.pillar blockquote p { font-size: 1.1rem; }
@media (max-width: 900px) { .who__grid, .pillars { grid-template-columns: 1fr; } }

/* ---------- glory ---------- */
.glory { background: var(--bg); }
.glory::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 40% at 50% 20%, rgba(165, 124, 63, .14), transparent 70%); pointer-events: none; }
.glory__head { text-align: center; margin-bottom: clamp(50px, 6vw, 80px); }
.glory__head .eyebrow { justify-content: center; }
.glory__head .lead { margin-top: 22px; }
.glory__cross { width: 60px; height: 90px; margin: 0 auto 30px; color: var(--gold-2); filter: drop-shadow(0 0 18px rgba(228, 201, 138, .45)); }
.glory__cross .draw { stroke-dasharray: 120; stroke-dashoffset: 120; transition: stroke-dashoffset 1.4s var(--ease); }
.glory__cross .draw--h { transition-delay: .9s; }
.is-in .glory__cross .draw { stroke-dashoffset: 0; }
.glory__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.glory__panel { position: relative; padding: 46px 34px 38px; background: linear-gradient(180deg, #111416, #0d0f10); border: 1px solid var(--line); overflow: hidden; transition: border-color .5s, transform .5s var(--ease), box-shadow .5s; }
.glory__panel::after { content: ''; position: absolute; inset: -40% -60%; background: linear-gradient(110deg, transparent 40%, rgba(228, 201, 138, .09) 50%, transparent 60%); transform: translateX(-60%); transition: transform 1.1s var(--ease); pointer-events: none; }
.glory__panel:hover { border-color: rgba(201, 164, 92, .5); transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(201, 164, 92, .35); }
.glory__panel:hover::after { transform: translateX(60%); }
.glory__panel--center { background: linear-gradient(180deg, #1a1a14, #0f0f0d); border-color: rgba(201, 164, 92, .35); }
.glory__num { position: absolute; top: 18px; right: 22px; font-family: var(--serif); font-weight: 600; font-size: 3rem; color: rgba(201, 164, 92, .18); line-height: 1; }
.glory__icon { width: 46px; height: 46px; color: var(--gold-2); margin-bottom: 22px; }
.glory__panel h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; font-size: 1.9rem; line-height: 1; margin-bottom: 8px; }
.glory__tag { color: var(--gold-2); font-weight: 700; font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 18px; }
.glory__panel blockquote { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.glory__panel blockquote p { font-size: 1.14rem; }
@media (max-width: 900px) { .glory__grid { grid-template-columns: 1fr; } }

/* ---------- creed ---------- */
.creed { background: linear-gradient(180deg, #0e0f10, #121110 50%, #0b0b0c); }
.creed::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E"); opacity: .6; pointer-events: none; }
.creed__head { margin-bottom: clamp(40px, 5vw, 70px); }
.creed__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.creed__line { display: grid; grid-template-columns: 90px 1fr; gap: 20px; align-items: baseline; padding: 30px 0; border-bottom: 1px solid var(--line); position: relative; }
.creed__line::after { content: ''; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%; background: linear-gradient(90deg, var(--gold-2), transparent); transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease) .3s; }
.creed__line.is-in::after { transform: scaleX(1); }
.creed__num { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--gold-2); letter-spacing: .05em; }
.creed__line p { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.45rem, 3.4vw, 2.7rem); line-height: 1.1; letter-spacing: .02em; color: var(--cream); margin: 0; }
.creed__line--last p { color: var(--gold-3); }
.creed__armor { margin-top: clamp(50px, 6vw, 80px); }
.armor { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.armor li { border: 1px solid rgba(201, 164, 92, .45); color: var(--cream); padding: 12px 20px; font-weight: 700; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; background: rgba(165, 124, 63, .08); transition: background .3s, color .3s; }
.armor li:hover { background: var(--gold); color: var(--bg); }
@media (max-width: 640px) { .creed__line { grid-template-columns: 54px 1fr; } }

/* ---------- app ---------- */
.app { background: var(--bg); overflow: hidden; }
.app__grid { display: grid; grid-template-columns: 420px 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.app__phone-wrap { position: relative; display: grid; place-items: center; align-self: start; padding-top: 24px; }
.phone__glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 164, 92, .28), transparent 65%); filter: blur(30px); z-index: 0; }
.phone { position: relative; z-index: 1; width: 300px; height: 620px; border-radius: 44px; background: #0a0c0d; border: 8px solid #262b2e; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .9), inset 0 0 0 1px rgba(255, 255, 255, .06); overflow: hidden; }
.phone__notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 100px; height: 26px; background: #262b2e; border-radius: 16px; z-index: 2; }
.phone__screen { position: absolute; inset: 0; padding: 52px 20px 20px; background: linear-gradient(180deg, #171b1d, #0c0e0f); display: flex; flex-direction: column; gap: 12px; font-size: .8rem; }
.ps__top { display: flex; justify-content: space-between; align-items: center; }
.ps__top img { width: 52px; height: auto; }
.ps__badge { background: var(--gold); color: var(--bg); font-weight: 700; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; padding: 5px 9px; border-radius: 3px; }
.ps__greet { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; color: var(--cream); line-height: 1; margin: 6px 0 0; }
.ps__verse { font-family: var(--serif); font-style: italic; color: var(--cream-2); font-size: .98rem; line-height: 1.3; margin: 0; }
.ps__verse span { font-family: var(--body); font-style: normal; font-weight: 700; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); }
.ps__card { background: linear-gradient(135deg, #2a2417, #1a1712); border: 1px solid rgba(201, 164, 92, .35); border-radius: 12px; padding: 14px; }
.ps__label { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2); font-weight: 700; margin: 0 0 4px; }
.ps__title { color: var(--cream); font-weight: 700; font-size: .92rem; margin: 0; }
.ps__meta { color: var(--muted); font-size: .72rem; margin: 2px 0 0; }
.ps__bar { height: 6px; background: rgba(255, 255, 255, .08); border-radius: 3px; margin: 10px 0 8px; overflow: hidden; }
.ps__bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-3)); border-radius: 3px; transition: width 1.6s var(--ease) .6s; }
.is-in .ps__bar span { width: 30%; }
.ps__row { display: flex; gap: 12px; align-items: center; padding: 10px 12px; background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .06); border-radius: 10px; }
.ps__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cream-2); flex: none; }
.ps__dot--gold { background: var(--gold-2); box-shadow: 0 0 0 0 rgba(201, 164, 92, .6); animation: ping 2s infinite; }
.ps__nav { margin-top: auto; display: flex; justify-content: space-around; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, .06); }
.ps__nav span { width: 22px; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .15); }
.ps__nav span.on { background: var(--gold-2); }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(201, 164, 92, .6); } 70% { box-shadow: 0 0 0 10px rgba(201, 164, 92, 0); } 100% { box-shadow: 0 0 0 0 rgba(201, 164, 92, 0); } }
.pulse { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-2); animation: ping 2s infinite; }
.features { list-style: none; margin: 40px 0 44px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.features li { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--bg-2); border: 1px solid var(--line); transition: border-color .4s, transform .5s var(--ease); }
.features li:hover { border-color: rgba(201, 164, 92, .5); transform: translateY(-4px); }
.features svg { width: 30px; height: 30px; color: var(--gold-2); flex: none; margin-top: 2px; }
.features h3 { font-family: var(--body); font-weight: 700; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.features p { font-size: .95rem; color: var(--cream-2); margin: 0; line-height: 1.5; }
@media (max-width: 1000px) { .app__grid { grid-template-columns: 1fr; } .app__phone-wrap { order: 2; margin-top: 30px; padding-top: 0; } }
@media (max-width: 640px) { .features { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.form { background: linear-gradient(180deg, #17150f, #0f0e0c); border: 1px solid rgba(201, 164, 92, .35); padding: 30px; position: relative; }
.form__title { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; color: var(--cream); letter-spacing: .03em; margin-bottom: 18px; }
.form__intro { margin: -10px 0 6px; color: var(--cream-2); font-size: .98rem; }
.form__intro a { color: var(--gold-3); text-decoration: underline; text-underline-offset: 3px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin: 14px 0 6px; }
.form input, .form select, .form textarea { width: 100%; font: inherit; color: var(--cream); background: rgba(0, 0, 0, .35); border: 1px solid rgba(243, 237, 224, .18); padding: 15px 16px; border-radius: 3px; transition: border-color .3s, box-shadow .3s; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(201, 164, 92, .18); outline: none; }
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9a45c' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form select option { background: #1b1a17; }
.form textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; }
.form__status { min-height: 1.4em; margin: 14px 0 0; font-weight: 500; color: var(--gold-3); }
.form__fine { font-size: .82rem; color: var(--muted); margin: 8px 0 0; }
.form.is-sent .form__status { color: var(--gold-3); font-weight: 700; }
.contact .btn { margin-top: 20px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

/* ---------- scripture ---------- */
.scripture { text-align: center; overflow: hidden; }
.scripture__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(165, 124, 63, .18), transparent 70%), var(--bg); }
.scripture__bg::after { content: ''; position: absolute; left: 50%; top: 50%; width: min(90vw, 900px); aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(201, 164, 92, .14); animation: halo 10s ease-in-out infinite; }
.verse { position: relative; max-width: 900px; margin: 0 auto; padding: 20px 0 0; }
.verse__mark { font-family: var(--serif); font-size: 9rem; line-height: .6; color: rgba(201, 164, 92, .35); margin-bottom: -10px; }
.verse__text { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.55rem, 3.3vw, 2.6rem); line-height: 1.35; color: var(--cream); margin: 0 0 22px; min-height: 3.4em; transition: opacity .5s, transform .5s var(--ease); }
.verse__ref { font-weight: 700; font-size: .82rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-2); transition: opacity .5s; }
.verse.is-fading .verse__text, .verse.is-fading .verse__ref { opacity: 0; transform: translateY(10px); }
.verse__dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.verse__dots button { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--gold-2); background: transparent; padding: 0; cursor: pointer; transition: background .3s, transform .3s; }
.verse__dots button[aria-selected="true"] { background: var(--gold-2); transform: scale(1.25); }

/* ---------- connect ---------- */
.connect { background: linear-gradient(180deg, var(--bg), #0e0f10); }
.connect__head { margin-bottom: clamp(40px, 5vw, 70px); }
.connect__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.connect__cards { display: grid; gap: 16px; }
.ccard { display: block; position: relative; padding: 30px 60px 30px 30px; background: var(--bg-2); border: 1px solid var(--line); color: var(--cream-2); transition: border-color .4s, transform .5s var(--ease), background .4s; }
.ccard:hover { border-color: rgba(201, 164, 92, .5); transform: translateX(8px); background: #171c1e; }
.ccard__k { font-family: var(--serif); font-weight: 600; color: var(--gold-2); font-size: 1.1rem; letter-spacing: .1em; }
.ccard h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: .04em; font-size: 1.6rem; margin: 6px 0 8px; }
.ccard p { margin: 0; }
.ccard__arrow { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); color: var(--gold-2); font-size: 1.6rem; transition: transform .4s var(--ease); }
.ccard:hover .ccard__arrow { transform: translate(6px, -50%); }
@media (max-width: 900px) { .connect__grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: #08090a; padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 240px 1fr auto; gap: clamp(30px, 5vw, 70px); align-items: center; }
.footer__brand img { width: 240px; height: auto; }
.footer__verse p { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.35rem; color: var(--cream); line-height: 1.4; margin-bottom: .4em; }
.footer__verse cite { font-style: normal; font-weight: 700; font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-2); }
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: var(--cream-2); font-weight: 500; font-size: .84rem; letter-spacing: .14em; text-transform: uppercase; transition: color .3s; }
.footer__links a:hover { color: var(--gold-3); }
.footer__bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .06); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .84rem; color: var(--muted); }
.footer__bottom p { margin: 0; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr; text-align: center; } .footer__brand img { margin-inline: auto; } .footer__links { grid-template-columns: 1fr 1fr; } .footer__bottom { justify-content: center; text-align: center; } }

/* ---------- 404 ---------- */
.nf { min-height: 100svh; display: grid; place-content: center; text-align: center; gap: 18px; padding: 40px 24px; }
.nf img { margin: 0 auto; width: 220px; }
.nf .eyebrow { justify-content: center; }
.nf .lead { margin: 0 auto 10px; }
.nf .btn { justify-self: center; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__title .ch, .hero__eyebrow, .hero__sub, .hero__cta, .hero__verse { opacity: 1; transform: none; }
  .glory__cross .draw { stroke-dashoffset: 0; }
  .is-in .ps__bar span { width: 30%; }
  .hero__dust { display: none; }
}
