:root {
  --navy: #101c33;
  --navy-2: #182846;
  --navy-3: #223657;
  --gold: #f2c365;
  --gold-soft: #ffe3a6;
  --cream: #fffaf0;
  --paper: #f6f0e5;
  --ink: #172033;
  --muted: #687083;
  --line: rgba(23,32,51,.14);
  --white: #fff;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }

.reading-progress { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: 3px; }
.reading-progress span { display: block; width: 0; height: 100%; background: var(--gold); }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 32px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; letter-spacing: -.02em; }
.brand svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linejoin: round; }
.brand strong { font-weight: 800; }
.header-link { font-size: .9rem; font-weight: 750; text-underline-offset: 4px; text-decoration-color: rgba(23,32,51,.35); }
.header-link:hover { text-decoration-color: var(--ink); }

.section-pad { padding-left: max(24px, calc((100vw - 1180px) / 2)); padding-right: max(24px, calc((100vw - 1180px) / 2)); }
.narrow { padding-left: max(24px, calc((100vw - 760px) / 2)); padding-right: max(24px, calc((100vw - 760px) / 2)); }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
  padding-top: 58px;
  padding-bottom: 100px;
  overflow: hidden;
}
.hero > *, .dark-grid > *, .questions-section > *, .method-shell > * { min-width: 0; }
.eyebrow { display: flex; gap: 12px; color: #6d6a61; font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow span:first-child { color: #946817; }
.hero h1 {
  max-width: 690px;
  margin: 25px 0 22px;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.5vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .96;
}
.hero-lead { max-width: 610px; margin: 0; font-family: var(--serif); color: #4f5665; font-size: clamp(1.3rem, 2vw, 1.65rem); line-height: 1.45; }
.hero-lead em { color: var(--ink); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 4px; text-underline-offset: 4px; }
.byline { display: flex; align-items: center; gap: 12px; margin-top: 36px; font-size: .88rem; line-height: 1.3; }
.byline-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--serif); font-size: 1.35rem; }
.byline strong, .byline small { display: block; }
.byline small { margin-top: 3px; color: var(--muted); }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; margin:0; }
.book-scene { position: relative; width: 100%; max-width: 600px; aspect-ratio:1/1; border-radius:50% 50% 8px 8px; overflow:visible; }
.hero-bible-photo { position:absolute; inset:7% 2% 10%; width:96%; height:83%; object-fit:cover; object-position:center; border-radius:48% 48% 5px 5px; box-shadow:0 35px 75px rgba(16,28,51,.25); filter:saturate(.84) contrast(1.03); }
.photo-shade { position:absolute; inset:7% 2% 10%; border-radius:48% 48% 5px 5px; background:linear-gradient(180deg,rgba(16,28,51,.03) 45%,rgba(16,28,51,.42)); pointer-events:none; }
.question-orbit { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 10px 14px 10px 10px; border: 1px solid rgba(16,28,51,.11); border-radius: 99px; background: rgba(255,255,255,.8); backdrop-filter: blur(8px); color: #354058; font-size: .78rem; font-weight: 750; box-shadow: 0 8px 22px rgba(16,28,51,.08); animation: float 5s ease-in-out infinite; }
.question-orbit span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: var(--navy); color: var(--gold); }
.q1 { top: 65px; left: 30px; } .q2 { top: 30px; right: 35px; animation-delay: -.7s; } .q3 { top: 225px; right: -5px; animation-delay: -1.4s; } .q4 { bottom: 35px; right: 75px; animation-delay: -2.1s; } .q5 { bottom: 50px; left: 25px; animation-delay: -2.8s; }
.visual-caption { position: absolute; z-index:5; bottom:36px; margin: 0; padding:11px 18px; border-radius:2px; background:rgba(255,250,240,.9); backdrop-filter:blur(8px); color:#514d44; text-align:center; font-family:var(--serif); font-style:italic; line-height:1.45; box-shadow:0 8px 24px rgba(16,28,51,.1); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.article-section { padding-top: 110px; padding-bottom: 110px; }
.article-section > p { margin: 0 0 28px; color: #343c4c; font-family: var(--serif); font-size: clamp(1.24rem, 2vw, 1.48rem); line-height: 1.8; }
.dropcap::first-letter { float: left; margin: .08em .12em 0 0; color: var(--navy); font-family: var(--serif); font-size: 5.2rem; line-height: .7; }
.cycle { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 14px; margin: 70px -100px; padding: 28px; border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.cycle div { min-height: 90px; }
.cycle span { display: block; margin-bottom: 16px; color: #a06f15; font-size: .72rem; font-weight: 850; letter-spacing: .12em; }
.cycle strong { display: block; font-family: var(--serif); font-size: 1.08rem; line-height: 1.35; }
.cycle i { color: #b8aa8c; font-style: normal; }
blockquote { margin: 80px -40px 0; padding: 0 0 0 38px; border-left: 5px solid var(--gold); }
blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.035em; line-height: 1.18; }

.dark-section { padding-top: 120px; padding-bottom: 130px; color: var(--white); background: var(--navy); }
.dark-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 110px; align-items: end; }
.section-number { display: block; margin-bottom: 22px; color: var(--gold); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.section-number.ink { color: #936612; }
.dark-grid h2, .bridge h2, .questions-intro h2, .moment-card h2, .truth-section h2, .method-copy h2 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.045em; line-height: 1.08; }
.dark-grid h2 { font-size: clamp(2.7rem, 5vw, 4.6rem); }
.dark-copy p { margin: 0 0 24px; color: #c5ccda; font-size: 1.05rem; }
.context-lab { max-width: 920px; margin: 95px auto 0; border: 1px solid rgba(255,255,255,.15); border-radius: 4px; background: var(--navy-2); box-shadow: 0 28px 70px rgba(0,0,0,.25); overflow: hidden; }
.lab-header { display: flex; justify-content: space-between; gap: 30px; padding: 25px 30px; border-bottom: 1px solid rgba(255,255,255,.12); }
.lab-header span { color: var(--gold); font-size: .7rem; font-weight: 850; letter-spacing: .13em; }
.lab-header p { margin: 0; color: #aeb8ca; font-size: .83rem; }
.lab-tabs { display: grid; grid-template-columns: 1fr 1fr; }
.lab-tab { padding: 18px; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); background: transparent; color: #9da9bd; font-weight: 750; }
.lab-tab.active { color: var(--white); background: rgba(255,255,255,.055); box-shadow: inset 0 -3px 0 var(--gold); }
.lab-panel { min-height: 340px; padding: 52px clamp(30px, 7vw, 90px); }
.verse-ref { color: var(--gold); font-size: .75rem; font-weight: 850; letter-spacing: .13em; }
.lab-panel h3 { max-width: 680px; margin: 18px 0 22px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 500; line-height: 1.15; }
.lab-panel p { max-width: 650px; color: #bdc6d5; }
.signal { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; padding: 10px 14px; border-radius: 3px; font-size: .78rem; font-weight: 750; }
.signal span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; }
.signal.warning { background: rgba(224,157,48,.13); color: #f0ca85; } .signal.warning span { background: #ad7214; color: white; }
.signal.success { background: rgba(91,190,145,.13); color: #a9dfc6; } .signal.success span { background: #398761; color: white; }

.bridge { padding-top: 130px; padding-bottom: 130px; }
.bridge h2 { margin-bottom: 30px; font-size: clamp(2.7rem, 5vw, 4.7rem); }
.bridge p { font-family: var(--sans); font-size: 1.12rem; line-height: 1.75; }
.text-cta { display: inline-flex; align-items: center; gap: 18px; margin-top: 16px; color: #82590e; font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--gold); }
.text-cta span { transition: transform .2s ease; } .text-cta:hover span { transform: translateY(4px); }

.questions-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; padding-top: 120px; padding-bottom: 130px; background: var(--paper); }
.questions-intro { position: sticky; top: 45px; align-self: start; }
.questions-intro h2 { font-size: clamp(2.5rem, 4.3vw, 4.1rem); }
.questions-intro p { max-width: 420px; color: var(--muted); }
.questions-list { border-top: 1px solid var(--line); }
.questions-list details { border-bottom: 1px solid var(--line); }
.questions-list summary { display: grid; grid-template-columns: 45px 1fr 24px; gap: 15px; align-items: center; padding: 27px 0; list-style: none; cursor: pointer; }
.questions-list summary::-webkit-details-marker { display: none; }
.questions-list summary span { color: #9b6b14; font-size: .72rem; font-weight: 850; letter-spacing: .12em; }
.questions-list summary strong { font-family: var(--serif); font-size: 1.32rem; line-height: 1.3; }
.questions-list summary i { position: relative; width: 18px; height: 18px; }
.questions-list summary i::before, .questions-list summary i::after { content: ''; position: absolute; top: 8px; left: 1px; width: 16px; height: 2px; background: var(--ink); transition: transform .2s ease; }
.questions-list summary i::after { transform: rotate(90deg); }
.questions-list details[open] summary i::after { transform: rotate(0); }
.questions-list details p { margin: -5px 39px 27px 60px; color: #5b6371; }

.moment-section { padding-top: 120px; padding-bottom: 120px; background: #ede4d5; }
.moment-card { padding: clamp(35px, 7vw, 85px); background: var(--cream); box-shadow: 0 28px 70px rgba(68,48,16,.08); }
.moment-card h2 { max-width: 850px; font-size: clamp(2.6rem, 5vw, 4.7rem); }
.moment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 68px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.moment-grid > div { display: flex; gap: 17px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.moment-grid p { margin: 0; line-height: 1.55; }
.check { flex: 0 0 auto; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: var(--gold); font-weight: 850; }

.truth-section { padding-top: 145px; padding-bottom: 145px; text-align: center; }
.quote-mark { height: 78px; color: var(--gold); font-family: var(--serif); font-size: 8rem; line-height: 1; }
.truth-section h2 { font-size: clamp(2.6rem, 5.6vw, 5rem); }
.truth-section p { max-width: 610px; margin: 28px auto 0; color: var(--muted); font-size: 1.1rem; }

.method-section { padding-top: 105px; padding-bottom: 105px; color: white; background: #0b1427; overflow: hidden; }
.method-shell { display: block; }
.method-copy { max-width: 820px; margin-inline: auto; }
.method-label { display: inline-block; margin-bottom: 22px; padding: 6px 10px; border: 1px solid rgba(242,195,101,.4); color: var(--gold); font-size: .7rem; font-weight: 850; letter-spacing: .14em; }
.method-copy h2 { max-width: 700px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.method-copy > p { max-width: 670px; margin: 28px 0; color: #bdc7d7; font-size: 1.08rem; }
.method-copy ul { display: flex; gap: 24px; margin: 36px 0; padding: 0; list-style: none; }
.method-copy li { color: #dfe4ec; font-size: .87rem; }
.method-copy li span { display: block; margin-bottom: 7px; color: var(--gold); font-size: .7rem; font-weight: 850; }
.primary-cta { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 58px; padding: 15px 22px; border: 0; border-radius: 2px; background: var(--gold); color: var(--navy); font-weight: 850; text-decoration: none; box-shadow: 0 12px 35px rgba(242,195,101,.16); transition: transform .2s ease, background .2s ease; }
.primary-cta:hover { transform: translateY(-2px); background: #ffd57e; }
.primary-cta span { font-size: 1.4rem; }
.cta-note { display: block; margin-top: 12px; color: #8996aa; }
.method-visual { position:relative; min-height:560px; display:grid; place-items:center; isolation:isolate; overflow:visible; }
.method-visual::before{content:'';position:absolute;z-index:-1;width:min(92%,520px);aspect-ratio:1;border-radius:50%;background:radial-gradient(circle,rgba(242,195,101,.2),rgba(242,195,101,0) 70%)}
.method-visual img{display:block;width:auto;max-width:100%;height:auto;max-height:600px;aspect-ratio:4/5;object-fit:contain;object-position:center;border-radius:3px;box-shadow:0 35px 80px rgba(0,0,0,.34);animation:method-float 7s ease-in-out infinite}
@keyframes method-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.guide-cover { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: 300px; height: 420px; padding: 38px 30px; border: 1px solid #4e6382; background: linear-gradient(145deg,#1e3456,#0e1c34); text-align: center; box-shadow: -22px 30px 50px rgba(0,0,0,.32), inset 0 0 80px rgba(67,100,145,.12); transform: rotate(-4deg); }
.guide-cover::after { content: ''; position: absolute; inset: 11px; border: 1px solid rgba(242,195,101,.23); pointer-events: none; }
.guide-cover svg { width: 70px; margin: 25px 0 20px; fill: none; stroke: var(--gold); stroke-width: 1.4; }
.cover-kicker, .cover-footer { color: #aebad0; font-size: .65rem; font-weight: 800; letter-spacing: .18em; }
.guide-cover strong { color: var(--gold-soft); font-family: var(--serif); font-size: 2.4rem; font-weight: 500; line-height: .94; letter-spacing: -.03em; }
.guide-cover p { color: #d9e0ec; font-family: var(--serif); font-size: .92rem; line-height: 1.35; }
.cover-rule { width: 45px; height: 1px; margin: auto 0 14px; background: var(--gold); }
.guide-sheet { position: absolute; z-index: 1; right: 20px; bottom: 30px; width: 250px; height: 350px; padding: 35px 30px; background: #f6f0e4; color: var(--ink); box-shadow: 15px 20px 40px rgba(0,0,0,.25); transform: rotate(8deg); }
.guide-sheet span { font-size: .62rem; font-weight: 850; letter-spacing: .12em; }
.guide-sheet i { display: block; height: 1px; margin-top: 42px; background: #c9bcaa; }

footer { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 38px max(24px, calc((100vw - 1180px) / 2)); color: #8f9bad; background: #07101f; font-size: .8rem; }
.footer-brand { color: #d9e1ee; }
footer p { margin: 0; }

@media (max-width: 900px) {
  .site-header { padding: 18px 22px; }
  .header-link { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 30px; padding-top: 45px; padding-bottom: 65px; }
  .hero h1 { font-size: clamp(3.3rem, 13vw, 5.6rem); }
  .hero-visual { min-height: 520px; }
  .dark-grid, .questions-section, .method-shell { grid-template-columns: 1fr; gap: 55px; }
  .questions-intro { position: static; }
  .cycle { grid-template-columns: 1fr 1fr; margin: 55px 0; }
  .cycle i { display: none; }
  blockquote { margin-left: 0; margin-right: 0; }
  .method-visual { min-height: 500px; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .brand span { font-size: .92rem; }
  .hero { padding-top: 35px; }
  .hero h1 { margin-top: 20px; font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-copy { min-width: 0; }
  .hero h1 { max-width: 100%; overflow-wrap: break-word; }
  .hero-lead { font-size: 1.2rem; }
  .hero-visual { min-height: 440px; margin-left: -10px; margin-right: -10px; }
  .book-scene { width:100%; max-width:430px; }
  .hero-bible-photo,.photo-shade{inset:8% 1% 11%;width:98%;height:81%;border-radius:42% 42% 4px 4px}
  .question-orbit { padding: 7px 10px 7px 7px; font-size: .68rem; }
  .question-orbit span { width: 22px; height: 22px; }
  .q1 { top: 48px; left: 0; } .q2 { top: 22px; right: 0; } .q3 { top: 240px; right: -2px; } .q4 { bottom: 5px; right: 18px; } .q5 { bottom: 20px; left: 0; }
  .visual-caption { bottom:8px; width:auto; max-width:86%; font-size:.84rem; }
  .article-section, .dark-section, .bridge, .questions-section, .moment-section, .truth-section, .method-section { padding-top: 82px; padding-bottom: 82px; }
  .cycle { grid-template-columns: 1fr; padding: 22px; }
  .cycle div { min-height: 0; }
  .cycle span { margin-bottom: 5px; }
  .dark-grid h2, .bridge h2, .questions-intro h2, .moment-card h2, .method-copy h2 { font-size: 2.55rem; }
  .lab-header { display: block; padding: 20px; }
  .lab-header p { margin-top: 6px; }
  .lab-tab { padding: 15px 7px; font-size: .85rem; }
  .lab-panel { min-height: 390px; padding: 38px 22px; }
  .lab-panel h3 { font-size: 2rem; }
  .questions-list summary { grid-template-columns: 35px 1fr 20px; }
  .questions-list summary strong { font-size: 1.12rem; }
  .questions-list details p { margin-left: 50px; margin-right: 0; }
  .moment-card { padding: 35px 22px; }
  .moment-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .method-copy ul { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .primary-cta { width: 100%; text-align: left; }
  .method-visual { min-height:0; margin:20px 0 0; }
  .method-visual img{width:min(100%,390px);max-height:none;aspect-ratio:4/5;object-fit:contain}
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}