/* Sacred Light — matches app AppColors / AppFonts */
:root {
  --ink: #2b2621;
  --muted: #6e675e;
  --accent: #b4841c;
  --accent-soft: #eadfbe;
  --bg: #f7f3ec;
  --surface: #fffdf9;
  --hairline: rgba(43, 38, 33, 0.08);
  --like: #e0607a;
  --streak: #e1911c;
  --shadow: 0 18px 48px rgba(43, 38, 33, 0.1);
  --serif: "Bitter", "Iowan Old Style", Palatino, Georgia, serif;
  --sans: "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
  --page-pad: clamp(16px, 4vw, 40px);
  --content: 1120px;
  --radius: 20px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; }

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(247, 243, 236, 0.92);
  border-bottom: 1px solid var(--hairline);
}

.site-header__inner {
  width: min(var(--content), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav__link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav__link.is-active,
.site-nav__link:hover {
  color: var(--accent);
}

.nav-drawer-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  margin: 0;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }

.nav-drawer-input:checked ~ .site-header__inner .nav-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-drawer-input:checked ~ .site-header__inner .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-drawer-input:checked ~ .site-header__inner .nav-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 4px;
  border-bottom: 1px solid var(--hairline);
}

.mobile-nav a:not(.mobile-nav__cta):hover {
  color: var(--accent);
}

.mobile-nav__cta {
  border-bottom: 0 !important;
  margin-top: 12px;
  text-align: center;
  color: #fff !important;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Hero —— */
.hero {
  width: min(var(--content), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: 36px 0 24px;
  display: grid;
  gap: 28px;
  position: relative;
}

.hero__glow {
  display: none;
}

.hero__content {
  position: relative;
  max-width: 34rem;
  padding-top: 4px;
}

.hero__brand {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 10vw, 4.6rem);
  font-weight: 700;
  line-height: 0.95;
  margin: 0 0 14px;
  color: var(--ink);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
}

.hero__lede {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(0.98rem, 2.5vw, 1.08rem);
  max-width: 32rem;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__visual {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero__visual img {
  width: 100%;
  height: auto;
}

/* —— Sections —— */
.section-shell {
  width: min(var(--content), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}

.features {
  padding: 56px 0 32px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--serif);
}

.features h2,
.cta-band h2,
.legal-shell h1,
.form-shell h1 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--ink);
}

.features h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 16ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cta-band {
  padding: 28px 0 64px;
}

.cta-band__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--hairline);
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.98rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  background: #1f1b17;
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--hairline);
}

.btn-secondary:hover {
  border-color: rgba(43, 38, 33, 0.2);
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg);
  padding: 48px 0 24px;
}

.site-footer__inner {
  width: min(var(--content), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 36px;
  align-items: start;
}

.site-footer__brand p {
  color: var(--muted);
  max-width: 28rem;
  margin: 12px 0 16px;
  font-size: 0.95rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.store-row span {
  color: var(--hairline);
  color: var(--muted);
  opacity: 0.55;
}

.store-row a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer__cols {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.site-footer h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.site-footer a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  word-break: break-word;
}

.site-footer a:hover {
  color: var(--ink);
}

.site-footer__bottom {
  width: min(var(--content), calc(100% - (var(--page-pad) * 2)));
  margin: 32px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer__bottom p {
  margin: 0;
}

/* —— Legal / forms —— */
.legal-page,
.form-page {
  padding: 40px 0 64px;
}

.legal-shell,
.form-shell {
  width: min(760px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}

.legal-shell h1,
.form-shell h1 {
  font-size: clamp(1.85rem, 5vw, 2.5rem);
}

.legal-updated,
.lede,
.form-alt {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-body {
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(18px, 4vw, 28px);
}

.legal-body h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--ink);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal-body ul {
  padding-left: 1.15rem;
}

.site-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.site-form label {
  display: grid;
  gap: 8px;
}

.site-form span {
  font-size: 0.88rem;
  font-weight: 600;
}

.site-form span em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}

.site-form input,
.site-form textarea,
.site-form select {
  width: 100%;
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px; /* prevents iOS zoom */
  color: var(--ink);
}

.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.site-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-banner {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  font-size: 0.95rem;
}

.form-banner.is-success {
  background: #eaf0e6;
  color: var(--ink);
}

.form-banner.is-error {
  background: #f7e8e6;
  color: var(--ink);
}

.form-alt {
  margin-top: 16px;
}

.form-alt a {
  color: var(--accent);
  font-weight: 600;
}

/* —— Verse share page —— */
body.verse-page {
  background: var(--verse-bg, var(--bg));
  font-family: var(--serif);
}

.verse-shell {
  width: min(720px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.brand {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
}

.version-chip {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 10px;
}

.verse-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: clamp(20px, 4vw, 28px) clamp(16px, 3vw, 24px);
}

.reference {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--serif);
  font-weight: 700;
}

.verse-text {
  margin: 0;
  font-size: clamp(1.35rem, 4.5vw, 1.9rem);
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
}

.share-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-family: var(--sans);
}

.cta-stack {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 4px;
  font-family: var(--sans);
}

.store-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* —— Motion —— */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.7s ease forwards;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* —— Desktop —— */
@media (min-width: 960px) {
  .site-header__inner {
    min-height: 72px;
  }

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding-top: 20px;
    padding-bottom: 36px;
    gap: 40px;
  }

  .hero__content {
    padding-top: 8px;
  }
}

/* —— Tablet —— */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner,
  .cta-band__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-band__inner {
    align-items: start;
  }

  .site-footer__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .site-footer__col--contact {
    grid-column: 1 / -1;
  }
}

/* —— Phone —— */
@media (max-width: 760px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }

  .nav-drawer-input:checked ~ .mobile-nav {
    display: flex !important;
    flex-direction: column;
    gap: 2px;
    padding: 8px var(--page-pad) 20px;
    border-top: 1px solid var(--hairline);
    background: var(--bg);
    animation: navDrop 0.28s ease;
  }

  body:has(#nav-drawer:checked) {
    overflow: hidden;
  }

  .hero {
    padding-top: 24px;
    gap: 24px;
  }

  .hero__content {
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }

  .hero__lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero__actions .btn,
  .cta-band__inner .hero__actions .btn,
  .cta-stack .btn {
    width: 100%;
  }

  .cta-band__inner {
    text-align: center;
    justify-items: center;
  }

  .cta-band__inner .hero__actions {
    width: 100%;
    max-width: 280px;
    flex-direction: column;
    margin: 0 auto;
  }

  .features {
    padding: 40px 0 24px;
    text-align: center;
  }

  .features h2 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-band {
    padding: 20px 0 48px;
  }

  .cta-band__inner {
    padding: 22px 18px;
  }

  .site-footer {
    padding: 40px 0 28px;
  }

  .site-footer__inner {
    gap: 28px;
    text-align: center;
  }

  .site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-footer__brand p {
    margin: 10px 0 14px;
    max-width: 22rem;
  }

  .store-row {
    justify-content: center;
  }

  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    text-align: left;
    padding: 20px 0 0;
    border-top: 1px solid var(--hairline);
  }

  .site-footer__col {
    gap: 10px;
  }

  .site-footer__col--contact {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 8px;
  }

  .site-footer__bottom {
    margin-top: 24px;
    text-align: center;
  }

  .legal-page,
  .form-page {
    padding: 28px 0 48px;
  }

  .site-form .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero__brand {
    font-size: 2.2rem;
  }

  .feature-card {
    padding: 18px 16px;
  }

  .site-footer__cols {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__col {
    align-items: center;
  }
}

/* —— SEO / topic / FAQ —— */
.hero__keywords {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer__seo {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 36ch;
}

.seo-block,
.faq,
.topic-page .topic-hero {
  padding: clamp(48px, 8vw, 88px) 0;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.seo-grid article,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}

.seo-grid h3 {
  font-family: var(--serif);
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.seo-grid p,
.faq-item p,
.topic-lede {
  margin: 0;
  color: var(--muted);
}

.seo-links {
  margin: 28px 0 0;
  color: var(--muted);
}

.seo-links a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.seo-links a:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--serif);
  font-size: 1.1rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  margin-bottom: 10px;
  color: var(--accent);
}

.topic-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 16px;
  max-width: 18ch;
}

.topic-lede {
  max-width: 62ch;
  font-size: 1.08rem;
  margin-bottom: 22px !important;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible,
.reveal.reveal-delay-1.is-visible,
.reveal.reveal-delay-2.is-visible,
.reveal.reveal-delay-3.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (max-width: 760px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .topic-hero h1 {
    max-width: none;
  }
}

/* ChristPath / September 2026 — shared with the app's editorial palette. */
@font-face {
  font-family:'Instrument Serif';
  src:url('/assets/fonts/InstrumentSerif-Regular.ttf') format('truetype');
  font-weight:400;
  font-display:swap;
}

@font-face {
  font-family:'DM Sans';
  src:url('/assets/fonts/DMSans[opsz,wght].ttf') format('truetype');
  font-weight:100 1000;
  font-display:swap;
}

:root {
  --ink:#231f19;
  --muted:#6e675e;
  --accent:#a74f44;
  --accent-soft:#f3ded5;
  --bg:#f3f1ec;
  --surface:#fff;
  --serif:'Instrument Serif',Georgia,serif;
  --content:1240px;
  --radius:28px;
  --shadow:0 18px 48px #231f1907;
}

body {
  font-weight:400;
  font-size:16px;
}

h1,h2,h3 {
  font-family:var(--serif);
  font-weight:400!important;
}

h2 {
  font-size:clamp(38px,4.8vw,64px);
  line-height:1.04;
  margin:0 0 24px;
}

p {
  line-height:1.65;
}

a,button,summary,input {
  touch-action:manipulation;
}

a:focus-visible,button:focus-visible,summary:focus-visible {
  outline:3px solid #a74f44;
  outline-offset:5px;
}

section[id] {
  scroll-margin-top:110px;
}

.eyebrow {
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:.16em;
  margin-bottom:20px;
}

.btn {
  min-height:56px;
  padding:0 26px;
  gap:14px;
  font-size:14px;
  border:1px solid transparent;
  transition:transform .2s,background .2s,box-shadow .2s;
}

.btn:hover {
  transform:translateY(-2px);
  box-shadow:0 8px 24px #231f1910;
}

.btn-small {
  min-height:44px;
}

.btn-light {
  background:#fffdf6;
  color:var(--ink);
}

.btn-light:hover {
  background:white;
}

.btn-glass {
  color:white;
  background:#ffffff24;
  border-color:#ffffff70;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.btn-glass:hover {
  background:#ffffff40;
}

.btn-secondary {
  background:#ffffffa6;
  border-color:#ffffff;
  box-shadow:0 4px 20px #231f1906;
}

.text-link {
  font-size:14px;
  text-underline-offset:5px;
  display:inline-flex;
  gap:24px;
  align-items:center;
  font-weight:600;
}

.site-header {
  top:16px;
  margin:16px auto;
  max-width:calc(100% - 48px);
  width:1240px;
  border:1px solid #ffffffd9;
  border-radius:999px;
  background:#faf9f1e8;
  box-shadow:0 8px 36px #231f1908;
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
}

.site-header__inner {
  width:auto;
  margin:0;
  padding:0 16px 0 28px;
  min-height:70px;
}

.site-logo {
  font-size:30px;
  font-weight:400;
  letter-spacing:-.04em;
}

.site-nav {
  gap:28px;
}

.site-nav__link {
  font-size:14px;
  font-weight:500;
}

.site-nav__cta {
  min-height:44px;
  background:#fff;
  color:var(--ink);
  border:1px solid #231f1914;
}

.site-nav__cta:hover {
  background:#f3ded5;
}

.skip-link {
  position:fixed;
  top:-100px;
  left:30px;
  z-index:100;
  background:white;
  padding:12px 20px;
  border-radius:30px;
}

.skip-link:focus {
  top:20px;
}

.journey-hero {
  position:relative;
  isolation:isolate;
  min-height:760px;
  margin:0 20px;
  border-radius:32px;
  overflow:hidden;
  color:#fffdf4;
  display:flex;
  align-items:center;
}

.journey-hero__art,.journey-hero__shade {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

.journey-hero__art {
  object-position:center 57%;
}

.journey-hero__shade {
  z-index:-1;
  background:linear-gradient(90deg,#251f16c9 0%,#32291e75 47%,#211f1820 100%),linear-gradient(0deg,#1e211cab,transparent 35%);
}

.journey-hero__content {
  width:min(1240px,calc(100% - 112px));
  margin:0 auto;
  padding:60px 0 125px;
}

.hero-kicker {
  display:flex;
  align-items:center;
  gap:12px;
  font-size:13px;
  letter-spacing:.08em;
}

.hero-kicker span {
  font-size:22px;
  color:#f7d5a8;
}

.journey-hero h1 {
  font-size:clamp(70px,7.8vw,116px);
  line-height:.94;
  letter-spacing:-.035em;
  margin:28px 0;
}

.journey-hero h1 em {
  font-weight:400;
  color:#f6d5b4;
}

.journey-hero__content>p:not(.hero-kicker) {
  font-size:17px;
  color:#f3eee5;
  max-width:470px;
  margin-bottom:30px;
}

.hero-explore {
  display:inline-flex;
  gap:24px;
  color:#f1e8dc;
  font-size:13px;
  margin-top:30px;
  text-decoration:none;
}

.hero-scripture {
  position:absolute;
  right:5%;
  bottom:160px;
  width:310px;
  padding:26px;
  border:1px solid #ffffff6b;
  border-radius:24px;
  background:#fff8e81f;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  text-decoration:none;
  box-shadow:0 12px 60px #00000010;
  transition:background .2s;
}

.hero-scripture:hover {
  background:#fff8e833;
}

.hero-scripture__label {
  display:flex;
  justify-content:space-between;
  font-size:12px!important;
  letter-spacing:.02em;
}

.hero-scripture q {
  display:block;
  font-family:var(--serif);
  font-size:32px;
  line-height:1.1;
  margin:24px 0 20px;
}

.hero-scripture>span:last-child {
  font-size:12px;
  color:#fff2df;
}

.hero-bottom {
  position:absolute;
  bottom:28px;
  left:56px;
  right:56px;
  padding-top:20px;
  border-top:1px solid #ffffff3d;
  display:flex;
  justify-content:space-between;
  gap:16px;
  font-size:12px;
  letter-spacing:.05em;
  color:#ece8db;
}

.features {
  padding:110px 0 96px;
}

.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:42px;
  gap:30px;
}

.features h2 {
  font-size:clamp(42px,5vw,66px);
  max-width:none;
  margin:0;
  font-weight:400;
}

.section-heading>p {
  color:var(--muted);
  font-size:16px;
}

.walk-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.walk-grid article {
  border-radius:28px;
  overflow:hidden;
  position:relative;
}

.reading-feature {
  grid-column:1/-1;
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:440px;
  background:#e9e6dc;
  padding:52px 64px 0;
  gap:50px;
}

.feature-copy {
  padding-bottom:50px;
  align-self:center;
}

.feature-number {
  font-size:12px;
  letter-spacing:.13em;
  color:#796b5a;
}

.walk-grid h3 {
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.02em;
  margin:26px 0 18px;
}

.walk-grid p {
  color:var(--muted);
  max-width:370px;
  margin-bottom:26px;
}

.reader-preview {
  align-self:end;
  justify-self:center;
  width:min(100%,310px);
  min-height:390px;
  border:6px solid #fff9;
  border-bottom:0;
  border-radius:38px 38px 0 0;
  background:linear-gradient(140deg,#fbf5e9,#f2e7d5);
  padding:22px 22px 28px;
  box-shadow:0 16px 60px #231f1914;
  transform:rotate(3deg);
  text-align:center;
}

.reader-preview__top {
  display:flex;
  justify-content:space-between;
  font-size:12px;
  margin-bottom:44px;
}

.reader-preview__top span {
  background:#fff9;
  border-radius:30px;
  padding:6px 14px;
}

.reader-reference {
  font-size:11px;
  letter-spacing:.12em;
  color:var(--muted);
}

.reader-preview blockquote {
  font-family:var(--serif);
  font-size:31px;
  line-height:1.15;
  margin:22px 0 35px;
}

.reader-preview__bottom {
  font-size:11px;
  background:#fffc;
  border-radius:18px;
  padding:14px;
}

.reading-line {
  height:3px;
  background:linear-gradient(90deg,#c8685c 18%,#e7dfd5 18%);
  margin:10px 0;
}

.understand-feature,.habit-feature {
  padding:42px;
  min-height:380px;
}

.understand-feature {
  background:#fff;
}

.question-bubble {
  margin:32px 0 28px auto;
  max-width:280px;
  border-radius:22px 22px 3px 22px;
  background:#f3e4dc;
  padding:16px 20px;
  font-size:14px;
}

.understand-feature h3 {
  font-size:36px;
}

.habit-feature {
  background:#e2e8dd;
}

.habit-feature h3 {
  margin-top:34px;
}

.habit-days {
  display:flex;
  gap:10px;
  margin-top:28px;
}

.habit-days span {
  width:38px;
  height:38px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#f8faf5;
  font-size:12px;
}

.habit-days span:nth-child(-n+3) {
  background:#53684b;
  color:white;
}

.share-feature {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  padding-bottom:70px;
}

.share-feature__art {
  position:relative;
  border-radius:28px;
  overflow:hidden;
  height:500px;
  isolation:isolate;
}

.share-feature__art>img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 60%;
}

.share-feature__art:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(transparent,#241f17bd);
  z-index:0;
}

.share-feature__quote {
  position:absolute;
  bottom:40px;
  left:40px;
  right:40px;
  color:white;
  z-index:1;
}

.share-feature__quote span {
  font-size:11px;
  letter-spacing:.1em;
}

.share-feature__quote blockquote {
  font-family:var(--serif);
  font-size:40px;
  line-height:1.1;
  margin:22px 0;
}

.share-feature__copy p:not(.eyebrow) {
  color:var(--muted);
  max-width:440px;
  margin-bottom:28px;
}

.faq {
  padding:48px 0 96px;
}

.faq .section-shell {
  max-width:850px;
}

.faq-item {
  border:0;
  border-bottom:1px solid #231f191c;
  border-radius:0;
  box-shadow:none;
  background:transparent;
  padding:22px 0;
}

.faq-item summary {
  font-family:var(--sans);
  font-size:16px;
  font-weight:500;
  display:flex;
  justify-content:space-between;
  gap:16px;
}

.faq-item summary:after {
  content:'+';
  font-size:24px;
  line-height:1;
  font-weight:400;
}

.faq-item[open] summary:after {
  content:'−';
}

.faq-item p {
  max-width:720px;
  font-size:16px;
}

.faq-list {
  gap:0;
}

.cta-band {
  padding-bottom:80px;
}

.cta-band__inner {
  padding:56px;
  background:radial-gradient(ellipse at top right,#f2d6c7,transparent 60%),#e9e5da;
  align-items:center;
  border:1px solid #fff;
  border-radius:32px;
}

.cta-band h2 {
  font-size:48px;
  font-weight:400;
}

.site-footer {
  padding-top:64px;
}

.site-footer h3 {
  font-family:var(--sans);
  font-size:12px;
}

.site-footer .site-logo {
  font-size:36px;
  color:var(--ink);
}

.legal-shell h1,.form-shell h1 {
  font-size:56px;
}

.legal-body h2 {
  font-size:30px;
}

.topic-hero h1 {
  font-size:clamp(48px,6vw,80px);
}

.seo-grid h3 {
  font-size:30px;
}

.reveal {
  opacity:1;
  transform:none;
}

body.verse-page {
  min-height:100vh;
  background:radial-gradient(ellipse at 15% 10%,#ffffff9c,transparent 55%),var(--verse-bg,var(--bg));
}

.verse-shell {
  padding-top:52px;
}

.brand {
  font-family:var(--serif);
  font-size:32px;
  color:var(--ink);
  font-weight:400;
}

.version-chip {
  font-size:13px;
  padding:8px 16px;
  background:#ffffff80;
}

.verse-card {
  margin-top:40px;
  text-align:center;
  padding:58px 40px;
  background:#ffffff85;
  border:1px solid #ffffffd9;
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  border-radius:32px;
  box-shadow:0 24px 80px #65533d0a;
}

.reference {
  font-family:var(--sans);
  font-size:13px;
}

.verse-text {
  font-size:clamp(30px,5vw,44px);
  font-weight:400;
  line-height:1.25;
}

.share-note {
  font-size:14px;
  margin-top:32px;
}

.cta-stack {
  max-width:440px;
  margin:28px auto 0;
}

.store-links {
  font-family:var(--sans);
  font-size:14px;
}

@media(min-width:1600px) {
  .journey-hero {
    max-width:1600px;
    margin-inline:auto;
  }
}

@media(max-width:1050px) {
  .hero-scripture {
    right:4%;
    width:250px;
    bottom:115px;
  }
  .journey-hero__content {
    width:calc(100% - 80px);
  }
  .journey-hero h1 {
    font-size:90px;
  }
  .reading-feature {
    padding:36px 36px 0;
    gap:24px;
  }
  .share-feature {
    gap:40px;
  }
  .site-nav {
    gap:18px;
  }
}

@media(max-width:760px) {
  .site-header {
    top:10px;
    max-width:calc(100% - 28px);
    margin:10px auto;
    border-radius:30px;
  }
  .site-header__inner {
    min-height:60px;
    padding:0 12px 0 22px;
  }
  .site-logo {
    font-size:28px;
  }
  .site-nav {
    display:none;
  }
  .nav-toggle {
    display:block;
    border-radius:50%;
  }
  .nav-drawer-input:focus-visible~.site-header__inner .nav-toggle {
    outline:3px solid var(--accent);
    outline-offset:3px;
  }
  .nav-drawer-input:checked~.mobile-nav {
    display:flex;
    flex-direction:column;
    padding:12px 24px 24px;
    max-height:75dvh;
    overflow:auto;
  }
  .mobile-nav__cta {
    color:white!important;
  }
  .journey-hero {
    margin:0 10px;
    border-radius:24px;
    min-height:850px;
    align-items:flex-start;
  }
  .journey-hero__content {
    width:calc(100% - 48px);
    padding:40px 0 300px;
  }
  .journey-hero h1 {
    font-size:clamp(58px,12vw,88px);
    margin:24px 0;
  }
  .journey-hero__content>p:not(.hero-kicker) {
    font-size:16px;
    max-width:360px;
  }
  .journey-hero__shade {
    background:linear-gradient(90deg,#251f16b8,#32291e30),linear-gradient(0deg,#1e211c99,transparent);
  }
  .journey-hero__art {
    object-position:60% center;
  }
  .hero-scripture {
    width:auto;
    left:24px;
    right:24px;
    bottom:85px;
    padding:20px 24px;
  }
  .hero-scripture q {
    font-size:29px;
    margin:15px 0;
  }
  .hero-explore {
    margin-top:24px;
  }
  .hero-bottom {
    left:24px;
    right:24px;
    bottom:24px;
    font-size:11px;
  }
  .hero-bottom span:last-child {
    display:none;
  }
  .desktop-break {
    display:none;
  }
  .hero__actions {
    gap:12px;
  }
  .journey-hero .btn {
    min-height:52px;
    padding:0 18px;
    font-size:13px;
  }
  .features {
    padding:64px 0;
  }
  .section-heading {
    display:block;
    margin-bottom:30px;
  }
  .section-heading>p {
    margin:22px 0 0;
  }
  .walk-grid {
    grid-template-columns:1fr;
  }
  .reading-feature {
    grid-template-columns:1fr;
    padding:32px 28px 0;
    gap:0;
  }
  .feature-copy {
    padding-bottom:32px;
  }
  .reader-preview {
    max-width:290px;
  }
  .walk-grid h3 {
    font-size:38px;
  }
  .understand-feature,.habit-feature {
    padding:30px;
    min-height:0;
  }
  .habit-days {
    gap:8px;
  }
  .habit-days span {
    width:32px;
    height:32px;
  }
  .share-feature {
    grid-template-columns:1fr;
    gap:36px;
    padding-bottom:30px;
  }
  .share-feature__art {
    height:420px;
  }
  .share-feature__quote {
    left:28px;
    right:28px;
    bottom:28px;
  }
  .share-feature__quote blockquote {
    font-size:36px;
  }
  .faq {
    padding:48px 0 64px;
  }
  .cta-band__inner {
    padding:32px;
    align-items:flex-start;
  }
  .cta-band h2 {
    font-size:40px;
  }
  .site-footer__cols {
    flex-wrap:wrap;
  }
  .verse-card {
    padding:40px 24px;
  }
  .legal-shell h1,.form-shell h1 {
    font-size:44px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
  }
  .btn:hover {
    transform:none;
  }
}

@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))) {
  .hero-scripture,.btn-glass {
    background:#4c463be8;
  }
  .verse-card {
    background:#fffaf1;
  }
}

/* Motion and touch refinements. */
.btn,
.site-form .btn,
.mobile-nav__cta {
  border-radius: 9999px;
  min-height: 60px;
  padding: 16px 32px;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  max-width: 100%;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 #ffffff28, 0 5px 16px #231f1908;
}
.site-nav__cta {
  min-height: 46px;
  padding: 12px 24px;
}
.btn:active {
  transform: translateY(1px) scale(.98);
}
.text-link span,
.btn span {
  transition: transform 250ms ease;
}
.text-link:hover span,
.btn:hover span {
  transform: translate(3px, -3px);
}
.site-nav__link {
  padding-block: 14px;
  transition: color 180ms ease;
}
.mobile-nav a.is-active {
  color: var(--accent);
}
.contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.site-form .btn {
  justify-self: start;
  min-width: 200px;
}
.walk-grid article {
  transition: box-shadow 280ms ease;
}
.walk-grid article:hover {
  box-shadow: 0 18px 50px #231f190c;
}
@keyframes landscape-arrive {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
@keyframes glass-arrive {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .journey-hero__art { animation: landscape-arrive 4s ease-out both; }
  .hero-scripture { animation: glass-arrive 1s .3s ease-out backwards; }
  .nav-drawer-input:checked ~ .mobile-nav { animation: navDrop .22s ease-out; }
}
/* Grids may shrink below their content width; long text must wrap inside them. */
.section-shell > *,
.walk-grid > *,
.reading-feature > *,
.share-feature > *,
.seo-grid > *,
.site-footer__inner > * {
  min-width: 0;
}
.legal-body,
.verse-text,
.form-banner,
.topic-hero h1,
.form-shell h1 {
  overflow-wrap: anywhere;
}
.hero__actions {
  align-items: center;
}
@media (min-width: 761px) and (max-width: 1100px) {
  .journey-hero__content { padding-bottom: 285px; }
  .hero-scripture { bottom: 85px; width: 300px; }
}
@media (max-width: 760px) {
  .journey-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .journey-hero__content {
    padding: 40px 0 32px;
  }
  .hero-scripture {
    position: relative;
    inset: auto;
    width: calc(100% - 48px);
    margin: 0 24px 28px;
  }
  .hero-bottom {
    position: relative;
    inset: auto;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
  }
  .hero-kicker { flex-wrap: wrap; font-size: 12px; }
  .journey-hero .btn { min-height: 56px; padding: 16px 24px; font-size: 14px; }
  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    align-items: start;
    width: 100%;
  }
  /* Content-sized grid rows keep mobile buttons at their natural height. */
  .hero__actions .btn {
    flex: 0 0 auto;
    min-height: 56px;
  }
  .reader-preview { transform: none; }
  .cta-band__inner { display: flex; flex-direction: column; }
  .site-form .btn { width: 100%; }
  .site-footer__cols { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .store-links a { padding: 10px 0; }
  .share-feature__copy .btn { width: 100%; }
}
@media (max-width: 380px) {
  .journey-hero h1 { font-size: 56px; }
  .reading-feature, .understand-feature, .habit-feature { padding-inline: 22px; }
  .habit-days { gap: 5px; justify-content: space-between; }
  .habit-days span { width: 28px; height: 28px; }
  .site-footer__cols { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .btn:active, .btn:hover, .text-link:hover span, .btn:hover span { transform: none; }
}
