/* Everwoven — styles reconciled to Brand Guide v1.0 locked palette + type system. */
:root {
  /* Locked palette (names kept for stability; values are the official brand hexes). */
  --cream: #F9F6E7;        /* Ivory — primary surface (the page) */
  --linen: #F0EBDC;        /* Linen — soft fills, dividers, card gradients */
  --sand: #D2C8B8;         /* Stone — borders, disabled states */
  --thread: #60725F;       /* Sage Deep — primary interactive: buttons, active nav, progress */
  --thread-dark: #B5945A;  /* Gold — "Thread of God" accent text, used sparingly */
  --ink: #2C2C30;          /* Charcoal — headlines, the mark, ink */
  --soft-ink: #4A4A4E;     /* Ink Soft — body copy, captions */
  --rose: #B98E84;         /* Blush Deep — emphasis, callouts, alerts */
  --sage: #8A9A82;         /* Sage — soft accent, success */
  --blush: #DCBCB2;        /* Blush — gentle highlights */
  --white: #ffffff;
  --shadow: 0 6px 24px rgba(44, 44, 48, 0.08);
  --radius: 16px;
  /* Two-family type system: serif for scripture/headlines, sans for UI body. */
  --serif: "Cormorant Garamond", "Georgia", "Iowan Old Style", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  padding-bottom: 70px;
}
h1, h2, h3 { font-family: var(--serif); }
.hidden { display: none !important; }
.center { text-align: center; }
.muted { color: var(--soft-ink); }
h1, h2, h3 { font-weight: 600; line-height: 1.2; }
button { font-family: inherit; cursor: pointer; }

/* Header */
#appHeader {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--linen); border-bottom: 1px solid var(--sand);
  position: sticky; top: 0; z-index: 10;
}
.brand { display: flex; flex-direction: column; }
.wordmark {
  font-family: var(--serif); font-size: 26px; letter-spacing: 0.09em; color: var(--ink);
  font-weight: 600; text-transform: uppercase;
}
.brand-verse { font-size: 12px; color: var(--soft-ink); letter-spacing: 0.03em; }
#menuToggle { display: none; background: none; border: none; font-size: 22px; color: var(--thread-dark); }

/* Nav */
#appNav {
  display: flex; gap: 4px; overflow-x: auto; padding: 8px 12px;
  background: var(--white); border-bottom: 1px solid var(--sand);
  position: sticky; top: 65px; z-index: 9;
}
#appNav button {
  flex: 0 0 auto; background: none; border: none; padding: 8px 14px;
  border-radius: 20px; color: var(--soft-ink); font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
}
#appNav button.active { background: var(--thread); color: var(--white); }
.nav-ico { width: 18px; height: 18px; background-size: contain; background-repeat: no-repeat; background-position: center; flex: 0 0 auto; }
.nav-ico[data-ico="today"]        { background-image: url(/icons/ui/nav/today.png); }
.nav-ico[data-ico="prayer_quilt"] { background-image: url(/icons/ui/nav/prayer_quilt.png); }
.nav-ico[data-ico="faith"]        { background-image: url(/icons/ui/nav/faith.png); }
.nav-ico[data-ico="tracking"]     { background-image: url(/icons/ui/nav/tracking.png); }
.nav-ico[data-ico="plan"]         { background-image: url(/icons/ui/nav/plan.png); }
.nav-ico[data-ico="keepsakes"]    { background-image: url(/icons/ui/nav/keepsakes.png); }
.nav-ico[data-ico="account"]      { background-image: url(/icons/ui/nav/account.png); }
#appNav button.active .nav-ico[data-ico="today"]        { background-image: url(/icons/ui/nav/today_ivory.png); }
#appNav button.active .nav-ico[data-ico="prayer_quilt"] { background-image: url(/icons/ui/nav/prayer_quilt_ivory.png); }
#appNav button.active .nav-ico[data-ico="faith"]        { background-image: url(/icons/ui/nav/faith_ivory.png); }
#appNav button.active .nav-ico[data-ico="tracking"]     { background-image: url(/icons/ui/nav/tracking_ivory.png); }
#appNav button.active .nav-ico[data-ico="plan"]         { background-image: url(/icons/ui/nav/plan_ivory.png); }
#appNav button.active .nav-ico[data-ico="keepsakes"]    { background-image: url(/icons/ui/nav/keepsakes_ivory.png); }
#appNav button.active .nav-ico[data-ico="account"]      { background-image: url(/icons/ui/nav/account_ivory.png); }

/* Inline UI glyphs (replace the old emoji) */
.ico { width: 1.05em; height: 1.05em; vertical-align: -0.18em; display: inline-block; }
.ico.lg { width: 1.4em; height: 1.4em; vertical-align: -0.3em; }

/* Layout */
main { max-width: 720px; margin: 0 auto; padding: 20px 16px 40px; }
.card {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius);
  padding: 20px; margin-bottom: 16px; box-shadow: var(--shadow);
}
.card.ministry { background: linear-gradient(180deg, #fff 0%, var(--linen) 100%); border-color: var(--thread); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; color: var(--thread-dark); margin-bottom: 6px; }
.scripture { font-family: var(--serif); font-size: 22px; line-height: 1.5; color: var(--ink); }
.scripture .ref { display: block; margin-top: 8px; font-size: 14px; color: var(--thread-dark); font-style: italic; }
.devotional { font-family: var(--serif); margin-top: 14px; font-size: 18px; }
.being-knit { margin-top: 14px; padding: 12px 14px; background: var(--linen); border-radius: 12px; font-size: 15px; }
.being-knit strong { color: var(--thread-dark); }

.size-row { display: flex; gap: 16px; align-items: center; }
.size-emoji { font-size: 40px; }
.pill { display: inline-block; background: var(--linen); border-radius: 20px; padding: 4px 12px; font-size: 13px; color: var(--thread-dark); margin: 2px; }

/* Forms + buttons */
input, select, textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--sand); border-radius: 10px;
  font-family: inherit; font-size: 16px; background: var(--white); margin-top: 4px; color: var(--ink);
}
label { display: block; margin-top: 12px; font-size: 14px; color: var(--soft-ink); }
.btn {
  display: inline-block; background: var(--thread); color: var(--white); border: none;
  padding: 12px 18px; border-radius: 24px; font-size: 16px; margin-top: 14px;
}
.btn.secondary { background: var(--white); color: var(--thread); border: 1px solid var(--thread); }
.btn.ghost { background: none; color: var(--soft-ink); border: none; padding: 8px; }
.btn.full { width: 100%; }
.btn.small { padding: 7px 12px; font-size: 14px; margin-top: 0; }

.row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.spacer { height: 8px; }
.error { color: #a13b35; font-size: 14px; margin-top: 8px; }
.success { color: var(--sage); font-size: 14px; margin-top: 8px; }

/* Quilt */
.progress { background: var(--linen); border-radius: 20px; height: 14px; overflow: hidden; margin: 10px 0; }
.progress > div { height: 100%; background: var(--thread); }
.entry { border-left: 3px solid var(--thread); padding: 8px 12px; margin: 10px 0; background: var(--cream); border-radius: 0 10px 10px 0; }
.entry .meta { font-size: 12px; color: var(--soft-ink); }
.entry img { max-width: 100%; border-radius: 10px; margin-top: 8px; }
.entry .type-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--thread-dark); }

.timer-display { font-size: 40px; text-align: center; color: var(--thread-dark); margin: 10px 0; }
.list-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--sand); }
.check { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.check input { width: auto; margin: 0; }

.product { border: 1px solid var(--sand); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.product .price { font-size: 20px; color: var(--thread-dark); }
.product .anchor-tag { font-size: 11px; background: var(--rose); color: #fff; padding: 2px 8px; border-radius: 10px; }

.locked { opacity: 0.7; }
.lock-note { background: var(--linen); border-radius: 10px; padding: 10px; font-size: 14px; margin-top: 8px; }

/* Auth */
.auth-wrap { max-width: 420px; margin: 40px auto; }
.auth-wrap .wordmark { font-size: 38px; display: block; text-align: center; color: var(--ink); }
.auth-wrap .brand-verse { display: block; text-align: center; margin-bottom: 20px; }
.tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.tabs button { flex: 1; background: var(--white); border: 1px solid var(--sand); padding: 10px; border-radius: 10px; color: var(--soft-ink); }
.tabs button.active { background: var(--thread); color: #fff; border-color: var(--thread); }

footer { max-width: 720px; margin: 0 auto; padding: 16px; text-align: center; font-size: 12px; }

/* New components (Phase 1.5) */
.chip { display: inline-block; background: var(--linen); border: 1px solid var(--sand); border-radius: 18px; padding: 6px 12px; margin: 4px 4px 0 0; font-size: 14px; cursor: pointer; }
.chip.on { background: var(--thread); color: #fff; border-color: var(--thread); }
.streak-chip { background: var(--rose); color: #fff; border-radius: 18px; padding: 4px 12px; font-size: 13px; display: inline-block; }
.collapse-head { cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.deck-card { background: linear-gradient(180deg,#fff,var(--linen)); border: 1px solid var(--thread); border-radius: var(--radius); padding: 24px; text-align: center; min-height: 150px; display: flex; flex-direction: column; justify-content: center; }
.deck-nav { display: flex; justify-content: space-between; margin-top: 10px; }
.answered { opacity: 0.65; text-decoration: line-through; }
.chart { width: 100%; height: 120px; background: var(--cream); border-radius: 10px; }
.timelapse { display: flex; gap: 8px; overflow-x: auto; padding: 8px 0; }
.timelapse figure { margin: 0; text-align: center; flex: 0 0 auto; }
.timelapse img { width: 88px; height: 88px; object-fit: cover; border-radius: 10px; }
.timelapse figcaption { font-size: 11px; color: var(--soft-ink); }
.audio-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--sand); }
.audio-row audio { height: 32px; }
.alert { background: #fdecea; border: 1px solid #e7b7b2; color: #8a3c36; padding: 10px 12px; border-radius: 10px; font-size: 14px; margin-top: 8px; }
.picker-item { display: flex; align-items: flex-start; gap: 8px; padding: 8px; border: 1px solid var(--sand); border-radius: 8px; margin: 6px 0; }
.canvas-wrap { text-align: center; }
canvas.announce { max-width: 100%; border: 1px solid var(--sand); border-radius: 12px; margin-top: 10px; }
.public-wrap { max-width: 480px; margin: 30px auto; padding: 0 16px; }

/* Legal pages (privacy / terms / medical disclaimer) */
.legal-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--linen); border-bottom: 1px solid var(--sand); }
.legal-header .wordmark { font-size: 22px; }
.legal-header a { color: var(--thread); text-decoration: none; font-size: 14px; }
main.legal { max-width: 780px; margin: 0 auto; padding: 24px 20px 56px; }
.legal h1 { font-family: var(--serif); font-size: 30px; margin-bottom: 4px; }
.legal h2 { font-family: var(--serif); font-size: 21px; margin-top: 30px; border-top: 1px solid var(--sand); padding-top: 18px; }
.legal h3 { font-size: 16px; margin-top: 18px; }
.legal p, .legal li { font-size: 15px; color: var(--ink); }
.legal .meta { color: var(--soft-ink); font-size: 13px; margin: 6px 0 18px; }
.legal .toc { background: var(--white); border: 1px solid var(--sand); border-radius: 12px; padding: 14px 18px; }
.legal .toc a { color: var(--thread); }
.legal .callout { background: var(--linen); border-left: 4px solid var(--thread); padding: 12px 16px; border-radius: 8px; margin: 14px 0; }
.legal .danger { background: #fdecea; border: 1px solid #e7b7b2; color: #7a2f2a; padding: 14px 16px; border-radius: 10px; margin: 16px 0; }
.legal .danger strong { color: #7a2f2a; }
.legal .draftnote { background: #fff7e6; border: 1px dashed var(--thread-dark); color: var(--ink); padding: 12px 16px; border-radius: 10px; margin: 16px 0; font-size: 14px; }
.legal a { color: var(--thread); }
.legal-foot { text-align: center; padding: 22px; font-size: 13px; color: var(--soft-ink); border-top: 1px solid var(--sand); }
.legal-foot a { color: var(--thread-dark); margin: 0 8px; }
.legal-links { text-align: center; font-size: 12px; margin-top: 10px; }
.legal-links a { color: var(--thread-dark); margin: 0 6px; }

@media print {
  body * { visibility: hidden; }
  #printCard, #printCard * { visibility: visible; }
  #printCard { position: absolute; left: 0; top: 0; width: 100%; }
}
#printCard { display: none; }
#printCard.show { display: block; position: fixed; inset: 0; background: #fff; z-index: 999; padding: 40px; }
.print-card-inner { max-width: 480px; margin: 40px auto; border: 3px double var(--thread); border-radius: 16px; padding: 40px; text-align: center; }
.print-card-inner .v { font-family: var(--serif); font-size: 26px; line-height: 1.5; }
.print-card-inner .r { margin-top: 16px; color: var(--thread-dark); font-style: italic; }
.print-card-inner .brand { margin-top: 30px; letter-spacing: 0.1em; color: var(--thread-dark); }

@media (max-width: 560px) {
  #appNav { top: auto; }
}

/* ============================================================================
   WEBSITE EXPERIENCE & MOTION (everwoven-website-experience spec)
   The Living Thread, the traveling bead, the cinematic homepage, and the
   "weave" motion language. Slow, long, soft. One hero motion per screen.
   ========================================================================= */
:root {
  --ease-weave: cubic-bezier(0.22, 1, 0.36, 1); /* soft in/out, gentle overshoot feel */
  --t-glide: 1.05s;   /* bead travels the thread (0.9–1.2s) */
  --t-unfurl: 1.1s;   /* content unrolls (0.8–1.4s) */
  --t-settle: 0.9s;   /* a single soft settle */
  --t-draw: 1.2s;     /* the thread draws itself in */
}

/* ---- The Living Thread overlay (one persistent strand + the bead) ---------- */
#threadOverlay {
  position: fixed; inset: 0; z-index: 11; /* visible over the rail; pointer-events:none keeps controls usable */
  pointer-events: none; opacity: 0; transition: opacity 0.8s var(--ease-weave);
}
#threadOverlay.on { opacity: 1; }
#threadOverlay svg { width: 100%; height: 100%; display: block; }
#bead { opacity: 0; transition: opacity 0.6s var(--ease-weave); }
#bead #beadMark { filter: drop-shadow(0 2px 4px rgba(44,44,48,0.18)); }
#beadCradle { filter: drop-shadow(0 3px 8px rgba(44,44,48,0.16)); }

/* ---- The Unfurl: arriving content unrolls from the thread, gently staggered  */
main#app > .card, main#app > .home { animation: unfurl var(--t-unfurl) var(--ease-weave) both; }
main#app > .card:nth-child(1) { animation-delay: 0.02s; }
main#app > .card:nth-child(2) { animation-delay: 0.12s; }
main#app > .card:nth-child(3) { animation-delay: 0.22s; }
main#app > .card:nth-child(4) { animation-delay: 0.32s; }
main#app > .card:nth-child(5) { animation-delay: 0.42s; }
main#app > .card:nth-child(n+6) { animation-delay: 0.5s; }
@keyframes unfurl {
  0%   { opacity: 0; transform: translateY(16px) scaleY(0.96); transform-origin: top center; }
  70%  { opacity: 1; transform: translateY(-2px) scaleY(1.012); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}

/* ---- The thread rail: nav stops as woven knots, current stop glows ---------- */
#appNav { position: sticky; gap: 6px; background: linear-gradient(180deg, var(--white), var(--linen)); }
#appNav::before { /* the rail thread behind the knots */
  content: ""; position: absolute; left: 14px; right: 14px; top: 50%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--thread) 0 7px, transparent 7px 12px);
  opacity: 0.5; transform: translateY(-1px); z-index: 0;
}
#appNav button { position: relative; z-index: 1; transition: background 0.5s var(--ease-weave), color 0.5s var(--ease-weave), box-shadow 0.5s var(--ease-weave); }
#appNav button.active { box-shadow: 0 0 0 4px rgba(96,114,95,0.16); }
#appNav button.active .nav-ico { animation: settle var(--t-settle) var(--ease-weave); }

/* ---- The Settle: one soft, light overshoot that comes to rest -------------- */
@keyframes settle {
  0%   { transform: scale(0.86); }
  60%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ============================================================================
   THE CINEMATIC HOMEPAGE (spec §4) — not a login. Skippable. ~5–7s.
   ========================================================================= */
.home {
  min-height: calc(100vh - 40px); display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; transition: opacity 0.6s var(--ease-weave);
}
.home.leaving { opacity: 0; transform: translateY(-8px); }
.home-skip {
  position: absolute; top: 4px; right: 6px; background: none; border: none;
  color: var(--soft-ink); font-size: 13px; letter-spacing: 0.04em; padding: 8px 12px;
}
.home-stage { width: 100%; max-width: 460px; }
.mark-stage { position: relative; width: 240px; height: 240px; margin: 0 auto; }
.mark-stage .mark-draw, .mark-stage .mark-raster { position: absolute; inset: 0; width: 100%; height: 100%; }

/* the locked raster mark — hidden until it settles into place; exact at rest */
.mark-raster { opacity: 0; transform: scale(0.9); }
.home[data-phase="3"] .mark-raster, .home[data-phase="4"] .mark-raster,
.home[data-phase="5"] .mark-raster, .home[data-phase="6"] .mark-raster {
  animation: markSettle var(--t-settle) var(--ease-weave) forwards;
}
@keyframes markSettle {
  0%   { opacity: 0; transform: scale(0.9); }
  60%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
/* once the raster is in, fade the drawn assembly so only the locked logo shows */
.home[data-phase="3"] .mark-draw, .home[data-phase="4"] .mark-draw,
.home[data-phase="5"] .mark-draw, .home[data-phase="6"] .mark-draw { opacity: 0; transition: opacity 0.7s var(--ease-weave); }

/* the cross fades in (phase 1+) */
.mark-draw .cross { opacity: 0; transition: opacity 0.9s var(--ease-weave); }
.home[data-phase="1"] .mark-draw .cross, .home[data-phase="2"] .mark-draw .cross { opacity: 1; }
/* the thread descends — an SVG stroke drawing downward (phase 2) */
.mark-draw .descend { stroke-dasharray: 240; stroke-dashoffset: 240; }
.home[data-phase="2"] .mark-draw .descend { animation: drawThread 1.1s var(--ease-weave) forwards; }
@keyframes drawThread { to { stroke-dashoffset: 0; } }

/* wordmark + tagline rise (phase 4+) */
.home-word { margin-top: 22px; opacity: 0; transform: translateY(14px); transition: opacity 1s var(--ease-weave), transform 1s var(--ease-weave); }
.home[data-phase="4"] .home-word, .home[data-phase="5"] .home-word, .home[data-phase="6"] .home-word { opacity: 1; transform: translateY(0); }
.home-word .wordmark { font-size: 40px; display: block; color: var(--ink); }
.home-tag { display: block; margin-top: 6px; font-family: var(--serif); font-style: italic; color: var(--thread-dark); font-size: 18px; }

/* the thread unwraps and extends, then "Begin" appears (phase 5/6) */
.home-begin { opacity: 0; transform: translateY(12px); transition: opacity 0.9s var(--ease-weave), transform 0.9s var(--ease-weave); pointer-events: none; }
.home[data-phase="5"] .home-begin { opacity: 0.5; }
.home[data-phase="6"] .home-begin { opacity: 1; transform: translateY(0); pointer-events: auto; }
.home[data-phase="5"] .home-stage::after, .home[data-phase="6"] .home-stage::after {
  content: ""; display: block; width: 2px; height: 40px; margin: 14px auto 0;
  background: linear-gradient(var(--thread), transparent); animation: extendDown 0.9s var(--ease-weave) both;
}
@keyframes extendDown { from { height: 0; opacity: 0; } to { height: 40px; opacity: 1; } }

/* ---- Per-section thread expression (spec §7) ------------------------------- */
/* Today: the day's scripture blooms open from the thread */
.scripture.bloom { animation: bloom 1.2s var(--ease-weave) both; transform-origin: left center; }
@keyframes bloom { 0% { opacity: 0; transform: translateY(8px) scaleX(0.98); } 100% { opacity: 1; transform: none; } }
.being-knit .stitch-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--thread); margin-right: 8px; vertical-align: middle; animation: settle var(--t-settle) var(--ease-weave); }

/* Prayer Quilt: a new square stitches onto the thread */
.entry.stitch-in { animation: stitchIn 1s var(--ease-weave) both; transform-origin: left center; }
@keyframes stitchIn { 0% { opacity: 0; transform: translateX(-14px) scaleX(0.9); } 60% { opacity: 1; transform: translateX(2px) scaleX(1.02); } 100% { opacity: 1; transform: none; } }

/* Faith: the thread is a candle wick; the streak is its flame */
.wick { width: 2px; height: 34px; margin: 4px auto 10px; background: var(--ink); position: relative; opacity: 0.55; }
.wick .flame { position: absolute; top: -13px; left: 50%; width: 12px; height: 16px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: translateX(-50%) scale(0); transform-origin: bottom center; opacity: 0; }
.wick.lit .flame { background: radial-gradient(circle at 50% 70%, #F6D78B, var(--thread-dark)); opacity: 1; transform: translateX(-50%) scale(1); animation: flicker 2.4s ease-in-out infinite; }
@keyframes flicker { 0%,100% { transform: translateX(-50%) scale(1) rotate(-1deg); } 50% { transform: translateX(-52%) scale(1.06) rotate(1deg); } }

/* Tracking: the weight line is drawn in the brand's own thread; kicks pulse */
.thread-line.draw { stroke-dasharray: 100; stroke-dashoffset: 100; animation: drawLine var(--t-draw) var(--ease-weave) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
#kickCount.pulse { animation: kickPulse 0.6s var(--ease-weave); }
@keyframes kickPulse { 0% { transform: scale(1); } 40% { transform: scale(1.18); color: var(--thread); } 100% { transform: scale(1); } }

/* Keepsakes: the chosen squares weave in, gently staggered */
.weave .picker-item { animation: stitchIn 0.9s var(--ease-weave) both; }
.weave .picker-item:nth-child(2) { animation-delay: 0.08s; }
.weave .picker-item:nth-child(3) { animation-delay: 0.16s; }
.weave .picker-item:nth-child(4) { animation-delay: 0.24s; }
.weave .picker-item:nth-child(n+5) { animation-delay: 0.3s; }

/* ---- Phone first: the thread anchors to the bottom (spec §12) -------------- */
@media (max-width: 560px) {
  #appNav {
    position: fixed; left: 0; right: 0; bottom: 0; top: auto; z-index: 12;
    border-top: 1px solid var(--sand); border-bottom: none;
    box-shadow: 0 -4px 18px rgba(44,44,48,0.06);
  }
  body { padding-bottom: 76px; }
}

/* ============================================================================
   ACCESSIBILITY: reduced motion — calm, fully usable, still on-brand (§11)
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  main#app > .card, main#app > .home,
  .scripture.bloom, .entry.stitch-in, .weave .picker-item,
  .being-knit .stitch-dot, #appNav button.active .nav-ico { animation: none !important; }
  .thread-line.draw { stroke-dashoffset: 0 !important; animation: none !important; }
  .wick.lit .flame { animation: none !important; }
  .mark-raster { opacity: 1 !important; transform: none !important; animation: none !important; }
  .mark-draw { display: none; }
  .home-word, .home-begin { opacity: 1 !important; transform: none !important; transition: none !important; pointer-events: auto !important; }
  .home, #threadOverlay, #bead { transition: opacity 0.3s linear; }
  .home-stage::after { display: none !important; }
  /* the thread holds still as a decorative rail; no travel */
  #appNav::before { animation: none; }
}
