/* ===========================================================
   CHOICESMADE.ORG
   Three crosses. One Savior.
   =========================================================== */

:root {
  --bg:        #0a0a0a;
  --bg-2:      #141414;
  --bg-3:      #1c1c1c;
  --ink:       #f6f3ee;
  --ink-dim:   #b9b2a6;
  --ink-mute:  #7d776c;
  --line:      rgba(255,255,255,0.08);
  --red:       #c8102e;      /* the center cross */
  --red-deep:  #8f0a1f;
  --red-glow:  rgba(200,16,46,0.35);
  --gold:      #d9b26a;
  --white:     #ffffff;

  --serif:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius: 14px;
  --maxw:   1180px;

  --ease:   cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: var(--ink); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}

::selection { background: var(--red); color: var(--white); }

/* ========== NAV ========== */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 40px);
  background: linear-gradient(to bottom, rgba(10,10,10,.85), rgba(10,10,10,0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav.is-solid {
  background: rgba(10,10,10,.92);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.nav__brand img { width: 34px; height: 34px; object-fit: contain; }
.nav__links {
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 28px);
  font-size: 14px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
}
.nav__links a { color: var(--ink-dim); }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  padding: 9px 18px;
  border: 1px solid var(--ink-dim);
  border-radius: 999px;
  color: var(--ink) !important;
  transition: all .25s var(--ease);
}
.nav__cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white) !important;
}

/* Donate: red filled pill, always prominent */
.nav__cta--donate {
  background: var(--red);
  border-color: var(--red);
  color: var(--white) !important;
  box-shadow: 0 0 0 0 rgba(200,16,46,.5);
  animation: donatePulse 2.6s var(--ease) infinite;
}
.nav__cta--donate:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-1px);
  animation: none;
}
@keyframes donatePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,.55); }
  50%      { box-shadow: 0 0 0 10px rgba(200,16,46,0); }
}

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta):not(.nav__cta--donate),
  .nav__links .nav__linkbtn { display: none; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 30px -10px var(--red-glow);
}
.btn--primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px var(--red-glow);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255,255,255,.25);
}
.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--block { width: 100%; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 120px 20px 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at center 30%, rgba(200,16,46,.12), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  overflow: hidden;
}
.hero::before {
  /* subtle starfield / texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.35), transparent),
    radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,.25), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,.2), transparent),
    radial-gradient(1px 1px at 65% 15%, rgba(255,255,255,.25), transparent);
  pointer-events: none;
  opacity: .5;
  animation: drift 60s linear infinite;
  z-index: 1;
}
.hero::after {
  /* warm glow behind logo */
  content: "";
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,178,106,.12), rgba(200,16,46,.14) 40%, transparent 65%);
  pointer-events: none;
  animation: pulse 7s ease-in-out infinite;
  z-index: 1;
}

/* cinematic silhouette scene behind logo */
.hero__scene {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 72%;
  z-index: 0;
  pointer-events: none;
  opacity: .9;
}

.hero__logo, .hero__content, .hero__scroll { position: relative; z-index: 2; }

@keyframes drift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to   { background-position: 300px 120px, -280px 200px, 180px -160px, -200px -240px; }
}
@keyframes pulse {
  0%,100% { opacity: .55; transform: translate(-50%, -50%) scale(1); }
  50%     { opacity: .95; transform: translate(-50%, -50%) scale(1.08); }
}

.hero__logo {
  width: min(420px, 75%);
  margin-bottom: 28px;
  filter:
    drop-shadow(0 0 40px var(--red-glow))
    drop-shadow(0 24px 40px rgba(0,0,0,.6));
  animation: rise 1.1s var(--ease) both;
}
.hero__logo img {
  width: 100%;
  height: auto;
}

.hero__content { position: relative; max-width: 820px; animation: rise 1.3s .15s var(--ease) both; }
.hero__eyebrow {
  font-size: 13px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px;
}
.hero__title {
  font-size: clamp(42px, 7vw, 80px);
  margin: 0 0 22px;
}
.hero__title--inline {
  font-size: clamp(26px, 4.2vw, 58px);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .hero__title--inline { white-space: normal; }
}
.hero__title .accent {
  color: var(--red);
  font-style: italic;
}
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto 36px;
  font-style: italic;
}
.hero__cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  opacity: .7;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px;
  width: 2px; height: 6px; background: var(--ink);
  transform: translateX(-50%);
  animation: scroll 1.8s var(--ease) infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scroll {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  70%  { transform: translate(-50%, 12px); opacity: 0; }
  100% { opacity: 0; }
}

/* ========== SECTION SHELL ========== */
section { padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 40px); }
.section__head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section__title {
  font-size: clamp(32px, 5vw, 54px);
  margin: 0 0 14px;
}
.section__sub {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-dim);
  font-style: italic;
  margin: 0;
}

/* ========== VIDEO ========== */
.video { background: var(--bg); }
.video__wrap {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.8),
    0 0 0 1px var(--line),
    0 0 60px -20px var(--red-glow);
  background: #000;
}
.video__wrap video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}
.video__caption {
  text-align: center;
  margin-top: 18px;
  color: var(--ink-mute);
  font-size: 14px;
}
.video__caption a { color: var(--ink-dim); text-decoration: underline; text-underline-offset: 3px; }

/* ========== MEANING CARDS ========== */
.meaning {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meaning__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  padding: 42px 30px 36px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); }
.card__cross {
  width: 40px; height: 60px;
  margin: 0 auto 24px;
  position: relative;
}
.card__cross::before,
.card__cross::after {
  content: ""; position: absolute; background: currentColor; border-radius: 1px;
}
.card__cross::before { left: 50%; top: 0; width: 6px; height: 60px; transform: translateX(-50%); }
.card__cross::after  { left: 50%; top: 16px; width: 30px; height: 6px; transform: translateX(-50%); }

.card--black { color: #3a3a3a; }
.card--black:hover { border-color: #3a3a3a; }
.card--red   { color: var(--red); }
.card--red:hover   { border-color: var(--red); box-shadow: 0 20px 60px -20px var(--red-glow); }
.card--white { color: #f3ede1; }
.card--white:hover { border-color: #f3ede1; }

.card h3 {
  color: var(--ink);
  font-size: 26px;
  margin: 0 0 6px;
}
.card__subtitle {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 15px;
  margin: 0 0 18px;
  letter-spacing: .04em;
}
.card p:not(.card__subtitle):not(.card__meaning) {
  color: var(--ink-dim);
  font-size: 16px;
  margin: 0;
}
.card__meaning {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--gold);
  margin: -8px 0 16px;
  opacity: .85;
}
.card__meaning em { color: var(--gold); font-style: italic; font-weight: 600; }
.card em { color: var(--gold); font-style: italic; }

.meaning__closer {
  max-width: 720px;
  margin: 64px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink-dim);
  font-style: italic;
  line-height: 1.5;
}
.meaning__closer strong {
  display: inline-block;
  margin-top: 10px;
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

/* ========== INVOLVED TILES ========== */
.involved { background: var(--bg); }
.involved__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.tile {
  position: relative;
  display: block;
  padding: 34px 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: all .3s var(--ease);
  overflow: hidden;
  color: var(--ink);
}
.tile::before {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.tile:hover {
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
  color: var(--ink);
}
.tile:hover::before { transform: scaleX(1); }
.tile__num {
  font-family: var(--serif);
  font-size: 14px; color: var(--gold);
  letter-spacing: .12em;
}
.tile h3 {
  font-size: 24px;
  margin: 6px 0 10px;
  color: var(--ink);
}
.tile p {
  color: var(--ink-dim);
  font-size: 15px;
  margin: 0 0 18px;
}
.tile__cta {
  font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--red);
}

/* ========== CONNECT (FORM) ========== */
.connect {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}
.connect__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}
@media (max-width: 860px) {
  .connect__inner { grid-template-columns: 1fr; gap: 40px; }
}
.connect__copy .section__title { text-align: left; }
.connect__copy .section__sub   { text-align: left; margin-bottom: 24px; }
.connect__list {
  list-style: none; padding: 0; margin: 0;
  color: var(--ink-dim); font-size: 15px;
}
.connect__list li {
  position: relative;
  padding: 6px 0 6px 22px;
}
.connect__list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700;
}

.connect__form {
  display: grid;
  gap: 16px;
  padding: 34px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.connect__form label {
  display: grid; gap: 6px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-dim);
}
.connect__form input,
.connect__form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.connect__form input:focus,
.connect__form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #0f0f0f;
}
.connect__checks {
  border: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}
.connect__checks legend {
  font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 8px;
}
.chk {
  display: flex !important; align-items: center; gap: 8px;
  flex-direction: row !important;
  font-size: 14px !important; letter-spacing: 0 !important; text-transform: none !important;
  color: var(--ink) !important;
  cursor: pointer;
}
.chk input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--red);
}
.connect__status {
  font-size: 14px;
  color: var(--ink-dim);
  margin: 0; min-height: 1.2em; text-align: center;
}
.connect__status.is-success { color: #8fd17b; }
.connect__status.is-error   { color: var(--red); }

/* ========== FOOTER ========== */
.foot {
  padding: 50px 20px 40px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: #050505;
  color: var(--ink-mute);
  font-size: 14px;
}
.foot__row {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.foot__row--links a { color: var(--ink-dim); }
.foot__row--links a:hover { color: var(--red); }
.foot__tag {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; margin: 0;
}
.foot__copy { margin: 10px 0 0; font-size: 12px; letter-spacing: .08em; }

/* ========== RESPONSIVE ========== */
@media (max-width: 520px) {
  .hero { padding-top: 100px; }
  .hero__cta .btn { width: 100%; }
  .connect__form { padding: 24px; }
  .connect__checks { grid-template-columns: 1fr; }
}

/* ========== STATS BAR ========== */
.stats {
  padding: 26px 20px;
  background: #050505;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(18px, 5vw, 60px);
  flex-wrap: wrap;
}
.stats__item {
  display: flex; align-items: baseline; gap: 8px;
  color: var(--ink);
}
.stats__num {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}
.stats__plus {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  color: var(--red);
  margin-left: -4px;
}
.stats__lbl {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.stats__divider {
  width: 1px; height: 28px;
  background: var(--line);
}
@media (max-width: 640px) {
  .stats__divider { display: none; }
  .stats__item { flex-direction: column; align-items: center; gap: 2px; }
}

/* ========== CHOOSE YOUR CROSS (INTERACTIVE) ========== */
.choose {
  background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
  border-top: 1px solid var(--line);
}
.choose__stage {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(18px, 6vw, 64px);
  min-height: 280px;
  padding: 20px 10px 40px;
  position: relative;
}
.choose__stage::after {
  /* ground shadow */
  content: "";
  position: absolute;
  left: 50%; bottom: 30px;
  width: 80%; height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.8), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}
.choose__cross {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: transparent;
  border: 0; padding: 12px 4px 0; margin: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.choose__cross svg {
  width: 60px; height: auto;
  transition: filter .35s var(--ease);
}
.choose__cross--red svg { width: 78px; }
.choose__cross--black svg rect { fill: #0e0e0e; stroke: #2e2e2e; stroke-width: .5; }
.choose__cross--red   svg rect { fill: var(--red); filter: drop-shadow(0 0 18px var(--red-glow)); }
.choose__cross--white svg rect { fill: #f3ede1; }
.choose__cross:hover { transform: translateY(-6px); }
.choose__cross:hover svg { filter: drop-shadow(0 8px 20px rgba(0,0,0,.7)); }
.choose__cross--red:hover svg { filter: drop-shadow(0 0 30px var(--red)) drop-shadow(0 8px 20px rgba(0,0,0,.7)); }
.choose__cross:focus-visible { outline: 2px solid var(--red); outline-offset: 10px; border-radius: 4px; }

.choose__label {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  opacity: .6;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.choose__cross:hover .choose__label { opacity: 1; color: var(--ink); }

.choose__hint {
  max-width: 560px;
  margin: 30px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 16px;
}

/* Modal */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: modalFade .28s var(--ease);
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  max-width: 520px; width: 100%;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow:
    0 40px 90px -20px rgba(0,0,0,.9),
    0 0 80px -10px var(--red-glow);
  animation: modalRise .35s var(--ease);
}
.modal__close {
  position: absolute; top: 10px; right: 14px;
  background: transparent; border: 0;
  color: var(--ink-mute);
  font-size: 28px; line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  transition: color .2s var(--ease);
}
.modal__close:hover { color: var(--ink); }
.modal__eyebrow {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.modal__name {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--ink);
  margin: 0 0 20px;
}
.modal__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 10px;
  border: 0; padding: 0;
}
.modal__verse {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}
.modal__result {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.modal__cta { display: inline-flex; }

@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalRise {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ========== SCRIPTURE ON CARDS ========== */
.card__scripture {
  margin-top: 24px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px !important;
  color: var(--ink-mute) !important;
  line-height: 1.5;
}
.card__scripture cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========== FLOATING MOBILE CTA ========== */
.float-cta {
  position: fixed;
  bottom: 18px; left: 50%;
  transform: translate(-50%, 30px);
  z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 14px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px;
  box-shadow:
    0 10px 30px -6px rgba(0,0,0,.6),
    0 0 40px -6px var(--red-glow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.float-cta.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.float-cta:hover {
  background: var(--red-deep);
  color: var(--white) !important;
}
.float-cta svg { flex: none; }
@media (min-width: 820px) {
  /* On desktop keep it but move to corner so it doesn't dominate */
  .float-cta { left: auto; right: 24px; bottom: 24px; transform: translateY(30px); }
  .float-cta.is-visible { transform: translateY(0); }
}

/* ========== INTRO SPLASH ========== */
body.is-intro { overflow: hidden; }
.intro {
  position: fixed; inset: 0;
  z-index: 1000;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  opacity: 1;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.intro__skip {
  position: absolute;
  bottom: 24px; right: 24px;
  z-index: 2;
  background: rgba(0,0,0,.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 10px 16px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.intro__skip:hover {
  background: rgba(200,16,46,.85);
  border-color: rgba(255,255,255,.5);
}
.intro__skip span {
  display: inline-block;
  margin-left: 4px;
  transform: translateY(-1px);
  font-size: 16px;
}

/* ---- intro unmute toggle ---- */
.intro__mute {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 10px 16px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  animation: mutePulse 2.2s var(--ease) infinite;
}
.intro__mute:hover {
  background: rgba(217,178,106,.85);
  border-color: rgba(255,255,255,.5);
  color: #0a0a0a;
  animation: none;
}
.intro__mute svg { display: inline-block; }
.intro__mute .intro__mute-on { display: none; }
.intro__mute[aria-pressed="false"] .intro__mute-off { display: none; }
.intro__mute[aria-pressed="false"] .intro__mute-on { display: inline-block; }
.intro__mute[aria-pressed="false"] .intro__mute-label { opacity: .7; }
.intro__mute[aria-pressed="false"] { animation: none; }

@keyframes mutePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,178,106,.35); }
  50%      { box-shadow: 0 0 0 10px rgba(217,178,106,0); }
}

@media (max-width: 520px) {
  .intro__mute .intro__mute-label { display: none; }
  .intro__mute { padding: 10px; }
}

/* ========== COUNTDOWN NUMBERS ON CROSSES ========== */
.choose__num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink-mute);
  margin-bottom: 4px;
  transition: color .3s var(--ease), transform .3s var(--ease), text-shadow .3s var(--ease);
}
.choose__cross--red .choose__num { color: var(--red); }
.choose__cross:hover .choose__num {
  color: var(--gold);
  transform: translateY(-2px);
  text-shadow: 0 0 20px rgba(217, 178, 106, .5);
}
.choose__cross--red:hover .choose__num {
  color: var(--red);
  text-shadow: 0 0 24px var(--red-glow);
}

/* ========== SCRIPTURE MOMENT ========== */
.scripture {
  position: relative;
  padding: clamp(100px, 12vw, 160px) clamp(24px, 6vw, 60px);
  background:
    radial-gradient(ellipse at center, rgba(217,178,106,.06), transparent 55%),
    linear-gradient(180deg, var(--bg-2) 0%, #050505 100%);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.scripture::before {
  /* subtle light column from top */
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 300px; height: 100%;
  background: linear-gradient(180deg, rgba(217,178,106,.08), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}
.scripture__ornament {
  position: relative;
  max-width: 140px;
  margin: 0 auto 36px;
  color: var(--gold);
  opacity: .65;
}
.scripture__ornament svg { width: 100%; height: auto; display: block; }
.scripture__ornament--flip { margin: 36px auto 0; }

.scripture__quote {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.scripture__quote p { margin: 0 0 22px; }
.scripture__quote p:last-child { margin-bottom: 0; }
.scripture__quote em {
  color: var(--gold);
  font-style: italic;
}

.scripture__cite {
  display: block;
  margin-top: 28px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ========== GET INVOLVED: ICON TILES POLISH ========== */
.tile {
  /* override number-style — now we use real icons */
  padding: 38px 30px 32px;
}
.tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(200,16,46,.14), rgba(200,16,46,.04));
  border: 1px solid rgba(200,16,46,.28);
  color: var(--red);
  margin-bottom: 18px;
  transition: all .3s var(--ease);
}
.tile__icon svg { width: 26px; height: 26px; }
.tile:hover .tile__icon {
  background: linear-gradient(180deg, rgba(200,16,46,.28), rgba(200,16,46,.1));
  border-color: rgba(200,16,46,.6);
  box-shadow: 0 0 24px -6px var(--red-glow);
  transform: translateY(-2px);
}

.tile--feature {
  background: linear-gradient(180deg, rgba(200,16,46,.08), var(--bg-2));
  border-color: rgba(200,16,46,.25);
}
.tile--feature:hover {
  border-color: rgba(200,16,46,.55);
  box-shadow: 0 20px 60px -20px var(--red-glow);
}
.tile--feature .tile__icon {
  background: linear-gradient(180deg, rgba(200,16,46,.3), rgba(200,16,46,.1));
  border-color: rgba(200,16,46,.55);
  color: var(--white);
}

/* hide the old number style if any leftover */
.tile__num { display: none !important; }

/* ========== SECTION POLISH ========== */
.meaning {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(200,16,46,.06), transparent 40%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.card {
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, transparent 60%, currentColor 160%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  border-radius: inherit;
}
.card:hover::before { opacity: .12; }
.card__cross {
  width: 48px; height: 72px;
  margin: 6px auto 28px;
}
.card__cross::before { width: 8px; height: 72px; }
.card__cross::after  { width: 36px; height: 8px; top: 20px; }
.card h3 { font-size: 28px; }

/* ========== AMBASSADORS ========== */
.amb {
  position: relative;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 56px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,178,106,.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
}
.amb .section__head {
  max-width: 860px;
  margin: 0 auto clamp(24px, 3vw, 36px);
  text-align: center;
}

/* --- Tabs --- */
.amb__tabs {
  display: flex;
  gap: 4px;
  max-width: 560px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.amb__tab {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--ink-dim);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.amb__tab:hover:not(.is-active) { color: var(--ink); }
.amb__tab.is-active {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(200,16,46,.3);
}
.amb__tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --- Panels --- */
.amb__panel[hidden] { display: none; }
.amb__panel.is-active {
  animation: panelFade .4s var(--ease);
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .amb__tab { padding: 11px 12px; font-size: 11px; letter-spacing: .08em; }
}
.amb__eyebrow {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 13px;
  margin: 0 0 12px;
}
.amb__eyebrow--center { text-align: center; }

.amb__h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 18px;
  color: var(--ink);
  text-align: center;
  letter-spacing: -0.01em;
}
.amb__h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 0 0 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* --- Training block --- */
.amb__train {
  max-width: 820px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 40px);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
}
.amb__train p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
  color: var(--ink-dim);
  margin: 0 0 16px;
}
.amb__train p:last-of-type { margin-bottom: 28px; }
.amb__train strong { color: var(--gold); font-weight: 600; }
.amb__train em { color: var(--ink); font-style: italic; }
.amb__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Statement of faith --- */
.amb__faith {
  max-width: 820px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  text-align: center;
}
.amb__faith-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto 36px;
}
.amb__creed {
  list-style: none;
  counter-reset: creed;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
  text-align: left;
}
.amb__creed li {
  counter-increment: creed;
  position: relative;
  padding: 22px 22px 22px 70px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.amb__creed li:hover {
  background: rgba(217,178,106,0.04);
  border-color: rgba(217,178,106,0.2);
}
.amb__creed li::before {
  content: counter(creed, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 22px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .02em;
}
.amb__creed-body {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 6px;
}
.amb__creed-body em { color: var(--red); font-style: italic; }
.amb__creed cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* --- Unity --- */
.amb__unity {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(32px, 4vw, 52px) clamp(24px, 4vw, 40px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,16,46,.08) 0%, transparent 60%);
  border-top: 1px solid rgba(217,178,106,.15);
  border-bottom: 1px solid rgba(217,178,106,.15);
}
.amb__unity-body {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto 32px;
}
.amb__unity-body strong { color: var(--gold); font-weight: 600; }
.amb__unity-quote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.amb__unity-quote p { margin: 0 0 10px; }
.amb__unity-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========== HOST A CROSS (PARTNER SECTION) ========== */
.host {
  position: relative;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 56px);
  background:
    radial-gradient(ellipse at 15% 40%, rgba(200,16,46,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 60%, rgba(217,178,106,.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.host__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.host__art {
  width: 100%;
  max-width: 280px;
  height: auto;
  justify-self: center;
  filter: drop-shadow(0 10px 40px rgba(200,16,46,.25));
}
.host__eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 14px;
}
.host .section__title {
  text-align: left;
  margin-bottom: 20px;
}
.host__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 28px;
  max-width: 620px;
}
.host__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.host__list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-dim);
  line-height: 1.55;
  font-size: 16px;
}
.host__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 2px 14px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 10px 2px no-repeat;
  opacity: .8;
}
.host__list strong { color: var(--ink); font-weight: 600; }

@media (max-width: 780px) {
  .host__inner { grid-template-columns: 1fr; text-align: center; }
  .host__art { max-width: 200px; }
  .host .section__title { text-align: center; }
  .host__lede { margin-left: auto; margin-right: auto; }
  .host__list li { text-align: left; }
}

/* Honeypot — invisible to real users, bots fill it and get filtered */
.connect__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ========== THE WALL (SOCIAL SECTION) ========== */
.wall {
  position: relative;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 56px);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(217,178,106,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(200,16,46,.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}
.wall__eyebrow {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 13px;
  margin: 0 0 12px;
  text-align: center;
}
.wall .section__head { text-align: center; max-width: 740px; margin: 0 auto clamp(40px, 5vw, 64px); }

/* Steps */
.wall__steps {
  list-style: none;
  padding: 0;
  margin: 0 auto clamp(40px, 5vw, 56px);
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.wall__steps li {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.wall__steps li:hover {
  background: rgba(217,178,106,0.05);
  border-color: rgba(217,178,106,0.25);
  transform: translateY(-2px);
}
.wall__num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.wall__steps h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--ink);
}
.wall__steps p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 16px;
}
.wall__link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.wall__link:hover { color: var(--ink); }
.wall__link span { display: inline-block; transition: transform .2s var(--ease); margin-left: 4px; }
.wall__link:hover span { transform: translateX(3px); }

/* Hashtag + handle row */
.wall__tag {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 640px;
  margin: 0 auto 32px;
  padding: 20px clamp(20px, 3vw, 32px);
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(217,178,106,.25);
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(217,178,106,.08);
}
.wall__tag-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.wall__tag-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.wall__tag-val {
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--gold);
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 6px;
  transition: background .2s var(--ease), color .2s var(--ease);
  position: relative;
}
.wall__tag-val:hover { background: rgba(217,178,106,.12); color: var(--ink); }
.wall__tag-val.is-copied { color: #b7e8c0; }
.wall__tag-val.is-copied::after {
  content: "Copied!";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b7e8c0;
  white-space: nowrap;
}
.wall__tag-divider {
  width: 1px;
  background: var(--line);
  margin: 0 clamp(8px, 2vw, 24px);
}

.wall__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 56px);
}

/* Facebook live feed */
.wall__feed {
  max-width: 540px;
  margin: clamp(32px, 4vw, 48px) auto 0;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
.wall__feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.wall__feed-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.wall__feed-title svg {
  flex-shrink: 0;
}
.wall__feed-follow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.wall__feed-follow:hover { color: var(--ink); }
.wall__feed-follow span {
  display: inline-block;
  transition: transform .2s var(--ease);
  margin-left: 4px;
}
.wall__feed-follow:hover span { transform: translateX(3px); }

.wall__feed-frame {
  position: relative;
  padding: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(24,119,242,0.08);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  justify-content: center;
}
.wall__feed-frame iframe {
  background: #fff;
  border-radius: 10px;
  display: block;
}

@media (max-width: 720px) {
  .wall__steps { grid-template-columns: 1fr; }
  .wall__tag { flex-direction: column; gap: 14px; }
  .wall__tag-divider { width: 100%; height: 1px; margin: 0; }
}

/* ========== NAV BUTTON (for lightbox trigger) ========== */
.nav__linkbtn {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  letter-spacing: inherit;
  text-transform: inherit;
}
.nav__linkbtn:hover { color: var(--ink); }

/* ========== VIDEO LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(40, 4, 10, 0.92) 0%, rgba(5, 5, 5, 0.96) 70%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0;
  padding: 0;
  cursor: zoom-out;
}

.lightbox__frame {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 96px);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(217, 178, 106, .18),
    0 30px 80px rgba(0, 0, 0, .7),
    0 0 120px rgba(200, 16, 46, .18);
  transform: scale(.96);
  transition: transform .3s var(--ease);
}
.lightbox.is-open .lightbox__frame { transform: scale(1); }

.lightbox__frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(10, 10, 10, .75);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.lightbox__close:hover {
  background: rgba(200, 16, 46, .85);
  border-color: rgba(217, 178, 106, .5);
  transform: scale(1.05);
}

body.is-lightbox-open { overflow: hidden; }

/* ========== "CHOICE MADE" BUTTONS UNDER EACH CROSS ========== */
.card__choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 13px 22px;
  background: transparent;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
  align-self: flex-start;
}
.card__choice span:last-child {
  transition: transform .25s var(--ease);
}
.card__choice:hover span:last-child { transform: translateX(4px); }

.card--black .card__choice {
  color: var(--ink);
  border-color: rgba(246,243,238,.4);
}
.card--black .card__choice:hover {
  background: #000;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 0 0 1px rgba(246,243,238,.15), 0 10px 30px rgba(0,0,0,.7);
}

.card--red .card__choice {
  color: var(--red);
  border-color: var(--red);
}
.card--red .card__choice:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 30px rgba(200,16,46,.45);
}

.card--white .card__choice {
  color: var(--ink);
  border-color: rgba(246,243,238,.6);
}
.card--white .card__choice:hover {
  background: var(--ink);
  color: #0a0a0a;
  border-color: var(--ink);
  box-shadow: 0 0 40px rgba(246,243,238,.25);
}

/* Make cards flex so button sits at the bottom even if text wraps differently */
.card { display: flex; flex-direction: column; }
.card > p:last-of-type { margin-bottom: auto; }

/* ========== CONSEQUENCE LIGHTBOX ========== */
.choice-lb .choice-lb__panel {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 56px) clamp(32px, 5vw, 48px);
  border-radius: var(--radius);
  text-align: center;
  transform: scale(.96);
  transition: transform .3s var(--ease);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.lightbox.is-open .choice-lb__panel { transform: scale(1); }

/* Variant — black cross (consequence of rejection) */
.choice-lb__panel[data-variant="black"] {
  background: linear-gradient(180deg, #080808 0%, #020202 100%);
  border-color: rgba(246,243,238,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.85), 0 0 120px rgba(0,0,0,.6);
}
.choice-lb__panel[data-variant="black"] .choice-lb__eyebrow { color: rgba(246,243,238,.55); }
.choice-lb__panel[data-variant="black"] .choice-lb__crown {
  background: linear-gradient(90deg, transparent 0%, rgba(246,243,238,.25) 50%, transparent 100%);
}

/* Variant — red cross (what He chose) */
.choice-lb__panel[data-variant="red"] {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,16,46,.25) 0%, transparent 55%),
    linear-gradient(180deg, #180407 0%, #0a0305 100%);
  border-color: rgba(200,16,46,.3);
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 120px rgba(200,16,46,.25);
}
.choice-lb__panel[data-variant="red"] .choice-lb__eyebrow { color: var(--red); }
.choice-lb__panel[data-variant="red"] .choice-lb__crown {
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
}

/* Variant — white cross (paradise) */
.choice-lb__panel[data-variant="white"] {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,178,106,.2) 0%, transparent 55%),
    linear-gradient(180deg, #1a1614 0%, #0a0806 100%);
  border-color: rgba(217,178,106,.3);
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 120px rgba(217,178,106,.25);
}
.choice-lb__panel[data-variant="white"] .choice-lb__eyebrow { color: var(--gold); }
.choice-lb__panel[data-variant="white"] .choice-lb__crown {
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.choice-lb__crown {
  width: 80px; height: 2px;
  margin: 0 auto 28px;
  opacity: .9;
}
.choice-lb__eyebrow {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 14px;
}
.choice-lb__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.choice-lb__body {
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 500px;
  margin: 0 auto 24px;
}
.choice-lb__body p { margin: 0 0 14px; }
.choice-lb__body p:last-child { margin-bottom: 0; }
.choice-lb__body em { color: var(--ink); font-style: italic; }
.choice-lb__body strong { color: var(--ink); font-weight: 600; }

.choice-lb__scripture {
  margin: 0 0 32px;
  padding: 16px 24px;
  border-left: 2px solid rgba(217,178,106,.35);
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.choice-lb__scripture blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.55;
  color: var(--ink);
}
.choice-lb__scripture blockquote + blockquote { margin-top: 12px; }
.choice-lb__scripture cite {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.choice-lb__cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.choice-lb__cta .btn { letter-spacing: .18em; }

/* ---- Share lightbox ---- */
.share-lb__panel {
  position: relative;
  width: min(520px, 100%);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border: 1px solid rgba(217,178,106,.18);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 44px) clamp(24px, 4vw, 40px);
  box-shadow:
    0 30px 80px rgba(0,0,0,.7),
    0 0 80px rgba(200,16,46,.15);
  transform: scale(.96);
  transition: transform .3s var(--ease);
}
.lightbox.is-open .share-lb__panel { transform: scale(1); }
.share-lb__title {
  font-family: var(--serif);
  font-size: 32px;
  margin: 0 0 6px;
  color: var(--ink);
  text-align: center;
}
.share-lb__sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-dim);
  margin: 0 0 26px;
  text-align: center;
}
.share-lb__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
@media (max-width: 480px) {
  .share-lb__grid { grid-template-columns: repeat(3, 1fr); }
}
.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 6px;
  border-radius: 12px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.share-btn:hover {
  background: #262626;
  border-color: rgba(217,178,106,.35);
  transform: translateY(-2px);
}
.share-btn svg { opacity: .9; }
.share-btn--fb:hover    { color: #1877f2; }
.share-btn--x:hover     { color: #ffffff; }
.share-btn--wa:hover    { color: #25d366; }
.share-btn--li:hover    { color: #0a66c2; }
.share-btn--sms:hover   { color: var(--gold); }
.share-btn--email:hover { color: var(--gold); }
.share-btn--copy.is-copied {
  background: rgba(40, 120, 60, .25);
  border-color: rgba(120, 200, 130, .45);
  color: #b7e8c0;
}
.share-lb__url {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
  margin: 0;
  word-break: break-all;
}

/* Let a <button> be styled as a tile for the Share tile */
.tile--asbtn {
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: inherit;
  width: 100%;
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
