/* Walk With God — marketing site. Warm parchment + serif, matching the app. */

:root {
  --parchment: #f7f0dd;
  --parchment-soft: #fcf7ea;
  --card: #fffdf7;
  --ink: #20262e;
  --ink-soft: #5c5648;
  --olive: #5b7142;
  --gold: #be8b2e;
  --clay: #c4703a;
  --lapis: #2d5c85;
  --line: rgba(32, 38, 46, 0.10);
  --shadow: 0 18px 48px rgba(40, 33, 22, 0.16);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.12; margin: 0; }
a { color: var(--lapis); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(247, 240, 221, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px;
  font-family: Georgia, serif; font-weight: 700; font-size: 20px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-icon { border-radius: 8px; box-shadow: 0 2px 6px rgba(40,33,22,0.18); display: block; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
@media (max-width: 640px) { .nav-links a:not(.btn) { display: none; } }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px; font-weight: 600;
  font-size: 15px; cursor: pointer; transition: transform .08s ease, box-shadow .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #2a1f08; box-shadow: 0 8px 20px rgba(190, 139, 46, 0.35); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: var(--card); }

/* Hero */
.hero { position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 80% -10%, #fdf6e6 0%, var(--parchment) 45%, #efe5cb 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  padding: 72px 0 84px; }
.hero h1 { font-size: clamp(40px, 6vw, 68px); letter-spacing: -0.01em; }
.hero .lede { font-size: 20px; color: var(--ink-soft); margin: 20px 0 14px; max-width: 30ch; }
.hero .promise { font-size: 17px; color: var(--ink); max-width: 38ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
.hero-art { justify-self: center; }
.hero-art img { width: 270px; border-radius: 36px; box-shadow: var(--shadow); }
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 56px 0 64px; }
  .hero .lede, .hero .promise { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-art { margin-top: 12px; }
  .hero-art img { width: 220px; }
}

/* Generic section */
section { padding: 76px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { color: var(--ink-soft); font-size: 18px; margin-top: 14px; }
.band { background: var(--parchment-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { text-align: center; }
.step .num {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center; font-family: Georgia, serif; font-weight: 700;
  color: #2a1f08; background: var(--gold); font-size: 20px;
}
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); margin: 0; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 36px; } }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: 0 6px 18px rgba(40, 33, 22, 0.05);
}
.feature .ic { font-size: 26px; margin-bottom: 12px; }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); margin: 0; font-size: 15.5px; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* Screenshot gallery */
.shots { display: flex; gap: 22px; overflow-x: auto; padding: 8px 24px 24px; scroll-snap-type: x mandatory; }
.shots::-webkit-scrollbar { height: 8px; }
.shots::-webkit-scrollbar-thumb { background: rgba(40,33,22,0.18); border-radius: 8px; }
.shots img {
  width: 260px; flex: 0 0 auto; border-radius: 22px; scroll-snap-align: center;
  box-shadow: var(--shadow);
}

/* Closing band */
.closing { text-align: center; background:
  radial-gradient(120% 120% at 50% 0%, #fdf6e6 0%, var(--parchment) 70%); }
.closing h2 { font-size: clamp(28px, 4vw, 42px); max-width: 18ch; margin: 0 auto 14px; }
.closing p { color: var(--ink-soft); font-size: 18px; max-width: 40ch; margin: 0 auto 28px; }

/* Footer */
.footer { background: #2a3127; color: #d9d2c0; padding: 48px 0; font-size: 14px; }
.footer a { color: #e9e2cf; }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer .brand { color: #f3ecd9; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-fine { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12);
  color: #b3ab98; line-height: 1.6; }
