/* LifeScribe V2 — Homepage shared styles
   Used by index.html (neutral), boomer.html, adult-child.html.
   Layout & components are identical across the three; pages override
   only headline copy, imagery, and audience-specific snippets. */

@import url('./colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg-2); color: var(--fg-2); }

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

/* ---------- Layout ---------- */
.ls-container { max-width: 1200px; margin: 0 auto; padding: 0 64px; }
@media (max-width: 1100px) { .ls-container { padding: 0 40px; } }
@media (max-width: 767px)  { .ls-container { padding: 0 20px; } }

.ls-section { padding: 80px 0; }
.ls-section--white { background: var(--color-white); }
.ls-section--cream { background: var(--color-cream); }
.ls-section--page  { background: var(--bg-2); }
.ls-section--ink   { background: var(--color-ink); color: var(--fg-on-dark); }
@media (max-width: 767px) { .ls-section { padding: 56px 0; } }

/* ---------- Type helpers ---------- */
.ls-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--fg-3);
}
.ls-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--fg-1);
  margin: 0 0 20px;
}
.ls-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.18;
  color: var(--fg-1);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}
.ls-h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  color: var(--fg-1);
  margin: 0 0 8px;
}
.ls-body { font-size: 16px; line-height: 1.7; color: var(--fg-2); margin: 0 0 14px; }
.ls-body--lg { font-size: 17px; line-height: 1.7; }
.ls-meta { font-size: 14px; color: var(--fg-3); }

.ls-gold {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-top: 6px;
}

/* ---------- Buttons ---------- */
.ls-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  padding: 14px 22px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; transition: all 200ms ease; text-decoration: none;
  min-height: 48px; box-sizing: border-box;
}
.ls-btn--ink     { background: var(--color-ink); color: var(--fg-on-dark); }
.ls-btn--ink:hover { background: #333; transform: translateY(-1px); color: #fff; }
.ls-btn--outline { background: transparent; color: var(--fg-1); border-color: var(--fg-1); }
.ls-btn--outline:hover { background: #F5F5F5; }
.ls-btn--sm { padding: 10px 18px; font-size: 14px; min-height: 0; border-radius: 6px; }
.ls-btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ---------- Nav ---------- */
.ls-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,248,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  padding: 18px 64px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (max-width: 1100px) { .ls-nav { padding: 16px 40px; } }
@media (max-width: 767px)  { .ls-nav { padding: 14px 20px; } }
.ls-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.ls-nav-logo svg { height: 28px; width: auto; }
.ls-nav-logo-text { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--color-ink); letter-spacing: -0.3px; }
.ls-nav-links { display: flex; align-items: center; gap: 28px; }
.ls-nav-links a {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
  transition: color 150ms ease;
}
.ls-nav-links a:hover { color: var(--brand); }
.ls-nav-cta { padding: 9px 18px; font-size: 14px; min-height: 0; border-radius: 6px; }
@media (max-width: 800px) { .ls-nav-links a:not(.ls-nav-cta) { display: none; } }

/* ---------- Hero ---------- */
.ls-hero { padding: 56px 0 80px; }
.ls-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .ls-hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.ls-hero-text { max-width: 520px; }
.ls-hero-meta { font-size: 15px; color: var(--fg-2); margin-top: 14px; line-height: 1.6; }
.ls-hero-photo {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--color-cream-dark);
}
.ls-hero-photo > .ls-photo { width: 100%; height: 100%; }

/* ---------- Photo placeholder ---------- */
.ls-photo {
  width: 100%; height: 100%; min-height: 280px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 18px;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.ls-photo--soft { box-shadow: var(--shadow-md); }
.ls-photo-label {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(26,26,26,0.55);
  background: rgba(255,255,255,0.7); padding: 6px 10px; border-radius: 4px;
  position: relative; z-index: 1;
}

/* ---------- Proof statement (cream band) ---------- */
.ls-proof {
  padding: 56px 0;
  background: var(--color-cream);
}
.ls-proof-inner {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 28px; max-width: 880px; margin: 0 auto;
}
.ls-proof-mark { width: 56px; height: 72px; flex: 0 0 auto; opacity: 0.55; margin-top: 4px; }
.ls-proof-mark svg { width: 100%; height: 100%; }
.ls-proof-text { text-align: center; flex: 1; }
.ls-proof-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--fg-1);
  margin: 0 0 10px;
}
.ls-proof-sub { font-size: 15px; color: var(--fg-3); margin: 0; }
@media (max-width: 700px) {
  .ls-proof-inner { gap: 16px; }
  .ls-proof-mark { width: 40px; height: 52px; }
}

/* ---------- 2-col block (NotAboutWriting / Impact / Vault) ---------- */
.ls-twocol {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .ls-twocol { grid-template-columns: 1fr; gap: 28px; } }
.ls-twocol--reverse > :nth-child(1) { order: 2; }
.ls-twocol--reverse > :nth-child(2) { order: 1; }
@media (max-width: 900px) {
  .ls-twocol--reverse > :nth-child(1),
  .ls-twocol--reverse > :nth-child(2) { order: 0; }
}
.ls-twocol-photo { aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; background: var(--color-cream-dark); }
.ls-twocol-photo > .ls-photo { width: 100%; height: 100%; }

/* ---------- Section headers (centered) ---------- */
.ls-section-head { text-align: center; margin-bottom: 40px; }
.ls-section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--fg-1); margin: 0;
}

/* ---------- Objections (4-up cards) ---------- */
.ls-objections {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 900px) { .ls-objections { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ls-objections { grid-template-columns: 1fr; } }
.ls-objection {
  background: var(--color-white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 22px 20px;
  transition: all 240ms ease;
  text-align: center;
}
.ls-objection:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.ls-objection-icon { width: 28px; height: 28px; margin: 0 auto 14px; color: var(--fg-2); }
.ls-objection-q {
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: var(--fg-1); margin: 0 0 8px;
}
.ls-objection-a { font-size: 14px; color: var(--fg-3); line-height: 1.55; margin: 0; }

/* ---------- Steps (4-up with connectors) ---------- */
.ls-steps {
  display: grid; grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  gap: 12px; align-items: start;
}
@media (max-width: 800px) {
  .ls-steps { grid-template-columns: 1fr; }
  .ls-step-arrow { display: none; }
}
.ls-step { text-align: center; padding: 0 6px; }
.ls-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-ink); color: var(--fg-on-dark);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.ls-step-icon { width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-cream); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.ls-step-icon svg { width: 22px; height: 22px; color: var(--fg-2); }
.ls-step-h { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--fg-1); margin: 0 0 6px; line-height: 1.3; }
.ls-step-s { font-family: var(--font-body); font-size: 13px; color: var(--fg-3); line-height: 1.5; margin: 0; }
.ls-step-arrow {
  align-self: center; margin-top: 28px;
  color: var(--fg-4);
}
.ls-step-arrow svg { width: 16px; height: 16px; }

/* ---------- Testimonials ---------- */
.ls-testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 28px;
}
@media (max-width: 900px) { .ls-testimonials { grid-template-columns: 1fr; } }
.ls-testimonial {
  background: var(--color-white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 22px 22px 18px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 200ms ease;
}
.ls-testimonial:hover { border-color: var(--brand); }
.ls-testimonial-q {
  font-family: var(--font-quote); font-style: italic; font-size: 15px;
  line-height: 1.55; color: var(--fg-2); margin: 0;
  flex: 1;
}
.ls-testimonial-q::before { content: '"'; font-family: var(--font-display); color: var(--rule); margin-right: 4px; font-size: 18px; vertical-align: -2px; }
.ls-testimonial-q::after  { content: '"'; font-family: var(--font-display); color: var(--rule); margin-left: 2px; font-size: 18px; vertical-align: -2px; }
.ls-testimonial-who {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
}
.ls-testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-cream-dark);
  background-size: cover; background-position: center;
  flex: 0 0 auto;
}
.ls-testimonials-eyebrow {
  text-align: center; font-family: var(--font-body); font-size: 14px; color: var(--fg-3);
  margin: 0 auto 8px; max-width: none;
}

/* ---------- Bottom callouts (Good for you / Memory comes back) ---------- */
.ls-callouts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--color-cream);
  border-radius: 4px; overflow: hidden;
}
@media (max-width: 800px) { .ls-callouts { grid-template-columns: 1fr; } }
.ls-callout {
  padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.ls-callout--photo { padding: 0; min-height: 200px; }
.ls-callout h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(20px, 2.2vw, 24px); line-height: 1.2;
  color: var(--fg-1); margin: 0 0 14px;
}
.ls-callout-list { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 8px; }
.ls-callout-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2); line-height: 1.5;
}
.ls-callout-list svg { width: 16px; height: 16px; color: var(--brand); flex: 0 0 auto; margin-top: 3px; }
.ls-callout p { margin: 0 0 6px; font-size: 15px; color: var(--fg-2); line-height: 1.6; }
.ls-callout p.ls-callout-emph { color: var(--accent); font-family: var(--font-display); font-style: italic; font-weight: 600; }

.ls-callouts-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 800px) { .ls-callouts-row { grid-template-columns: 1fr; } }
.ls-callouts-row .ls-callout-card {
  background: var(--color-cream);
  border-radius: 4px;
  padding: 36px 32px;
  display: grid; grid-template-columns: 1fr auto; gap: 20px;
  align-items: center;
}
.ls-callout-card-image {
  width: 110px; height: 110px; border-radius: 4px;
  background-size: cover; background-position: center;
  background-color: var(--color-cream-dark);
}

/* ---------- FAQ ---------- */
.ls-faq-band { background: var(--color-page); padding: 56px 0 64px; border-top: 1px solid var(--rule); }
.ls-faq-h { text-align: center; font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--fg-1); margin: 0 0 32px; }
.ls-faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 900px; margin: 0 auto; }
@media (max-width: 800px) { .ls-faq-grid { grid-template-columns: 1fr; } }
.ls-faq-item { display: flex; gap: 14px; align-items: flex-start; }
.ls-faq-icon { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--fg-2); }
.ls-faq-icon svg { width: 16px; height: 16px; }
.ls-faq-body { font-size: 14px; line-height: 1.55; }
.ls-faq-q { font-family: var(--font-body); font-weight: 600; color: var(--fg-1); margin: 0 0 4px; font-size: 14px; }
.ls-faq-a { color: var(--fg-3); margin: 0; }

/* ---------- Footer ---------- */
.ls-footer {
  background: var(--color-page);
  border-top: 1px solid var(--rule);
  padding: 64px 0 28px;
  text-align: center;
}
.ls-footer-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.ls-footer-logo {
  display: inline-block;
  width: 88px; height: 88px;
  border-radius: 16px;
  background: #0E2A33;
  padding: 14px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.ls-footer-logo svg { width: 100%; height: 100%; display: block; }
.ls-footer-tag {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 16px;
  color: var(--fg-3);
  margin: 0 0 18px;
  line-height: 1.6;
}
.ls-footer-email {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brand);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 28px;
}
.ls-footer-email:hover { color: var(--color-teal-dark); }
.ls-footer-app-h {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-1);
  margin: 0 0 14px;
}
.ls-footer-stores {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.ls-store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; color: #fff;
  padding: 10px 16px; border-radius: 8px;
  text-decoration: none;
  min-width: 150px;
  transition: transform 200ms ease;
}
.ls-store-badge:hover { transform: translateY(-1px); color: #fff; }
.ls-store-badge svg { width: 22px; height: 22px; flex: 0 0 auto; }
.ls-store-badge .ls-store-tiny { font-size: 9px; line-height: 1; opacity: 0.85; letter-spacing: 0.05em; }
.ls-store-badge .ls-store-name { font-size: 15px; font-weight: 600; line-height: 1.1; }
.ls-store-badge-text { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }

.ls-footer-row {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 14px;
}
.ls-footer-row a {
  font-family: var(--font-body); font-size: 14px;
  color: var(--fg-2); text-decoration: none;
  transition: color 150ms ease;
}
.ls-footer-row a:hover { color: var(--brand); }
.ls-footer-row--legal { gap: 18px; align-items: center; }
.ls-footer-divider { color: var(--fg-4); }
.ls-footer-more {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--rule); border-radius: 6px;
  padding: 6px 12px; margin: 12px auto;
  background: transparent; cursor: pointer;
  font-family: var(--font-body); font-size: 13px; color: var(--fg-2);
  transition: background 150ms ease;
}
.ls-footer-more:hover { background: var(--color-white); }
.ls-footer-more svg { width: 10px; height: 10px; transition: transform 200ms ease; }
.ls-footer-more[aria-expanded="true"] svg { transform: rotate(180deg); }
.ls-footer-extra {
  display: none;
  gap: 22px; justify-content: center; flex-wrap: wrap;
  margin-top: 8px;
}
.ls-footer-extra.is-open { display: flex; }
.ls-footer-extra a { font-size: 13px; color: var(--fg-3); }
.ls-footer-copy {
  font-family: var(--font-body); font-size: 12px; color: var(--fg-3);
  margin: 28px 0 0; line-height: 1.6;
}

/* ---------- Reveal ---------- */
@keyframes ls-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.ls-rise { animation: ls-rise 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
@media (prefers-reduced-motion: reduce) { .ls-rise { animation: none; } }

/* ============================================================
   PRICING PAGE
   ============================================================ */

.ls-pricing-hero { padding: 80px 0 32px; text-align: center; }
.ls-pricing-hero .ls-display { max-width: 820px; margin-left: auto; margin-right: auto; font-weight: 600; }
.ls-pricing-hero .ls-body--lg { max-width: 640px; margin: 0 auto; color: var(--fg-3); }

.ls-pricing-tiers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 920px; margin: 40px auto 0;
}
@media (max-width: 800px) { .ls-pricing-tiers { grid-template-columns: 1fr; } }
.ls-tier {
  background: var(--color-white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
}
.ls-tier--featured {
  background: var(--color-cream);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.ls-tier-pill {
  position: absolute; top: -14px; right: 28px;
  background: var(--color-ink); color: #fff;
  padding: 6px 14px; border-radius: 9999px;
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.ls-tier-name {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3);
  margin: 0;
}
.ls-tier-price {
  font-family: var(--font-display); font-weight: 600; color: var(--fg-1);
  font-size: 56px; line-height: 1; letter-spacing: -1px;
  margin: 0; display: flex; align-items: baseline; gap: 6px;
}
.ls-tier-price-unit {
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; color: var(--fg-3); letter-spacing: 0;
}
.ls-tier-tagline { font-family: var(--font-body); font-size: 15px; color: var(--fg-2); margin: -10px 0 0; }
.ls-tier-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ls-tier-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--fg-2); line-height: 1.55;
}
.ls-tier-list svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; color: var(--brand); }
.ls-tier-cta { margin-top: 4px; }
.ls-tier-cta .ls-btn { width: 100%; }

.ls-pricing-note {
  text-align: center; max-width: 620px; margin: 32px auto 0;
  font-family: var(--font-body); font-size: 14px; color: var(--fg-3);
  line-height: 1.6;
}

/* Money-back band */
.ls-guarantee {
  display: flex; align-items: center; gap: 28px; max-width: 760px; margin: 0 auto;
  padding: 32px 36px; background: var(--color-cream);
  border-radius: 14px;
}
@media (max-width: 700px) { .ls-guarantee { flex-direction: column; text-align: center; } }
.ls-guarantee-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--color-white); flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.ls-guarantee-icon svg { width: 28px; height: 28px; }
.ls-guarantee h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--fg-1); margin: 0 0 6px; line-height: 1.3; }
.ls-guarantee p { font-size: 15px; color: var(--fg-2); margin: 0; line-height: 1.6; }

/* Compare table */
.ls-compare {
  max-width: 920px; margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--rule);
  border-radius: 14px; overflow: hidden;
}
.ls-compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.ls-compare-row:last-child { border-bottom: 0; }
.ls-compare-row > div { padding: 16px 22px; font-size: 14px; color: var(--fg-2); }
.ls-compare-row--head > div {
  background: var(--color-page);
  font-family: var(--font-body); font-weight: 600;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-3);
}
.ls-compare-row--head > div:not(:first-child) { text-align: center; }
.ls-compare-row > div:not(:first-child) { text-align: center; }
.ls-compare-feature { font-weight: 500; color: var(--fg-1); }
.ls-compare-check svg { color: var(--brand); width: 18px; height: 18px; }
.ls-compare-dash { color: var(--fg-4); }

/* Pricing FAQ accordion */
.ls-faq-acc { max-width: 760px; margin: 0 auto; }
.ls-faq-acc details {
  border-bottom: 1px solid var(--rule);
}
.ls-faq-acc details:first-child { border-top: 1px solid var(--rule); }
.ls-faq-acc summary {
  list-style: none; cursor: pointer;
  padding: 22px 8px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  color: var(--fg-1); line-height: 1.35;
}
.ls-faq-acc summary::-webkit-details-marker { display: none; }
.ls-faq-acc summary::after {
  content: ''; flex: 0 0 auto;
  width: 18px; height: 18px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236B6B6B" stroke-width="1.6" stroke-linecap="round"><path d="M12 5v14M5 12h14"/></svg>') center/contain no-repeat;
  transition: transform 240ms ease;
}
.ls-faq-acc details[open] summary {
  color: var(--brand);
}
.ls-faq-acc details[open] summary::after {
  transform: rotate(45deg);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231A5F7A" stroke-width="1.6" stroke-linecap="round"><path d="M12 5v14M5 12h14"/></svg>');
}
.ls-faq-acc-body {
  padding: 0 8px 22px; font-size: 15px; color: var(--fg-2); line-height: 1.7;
  max-width: 640px;
}
.ls-faq-acc details[open] .ls-faq-acc-body { animation: ls-rise 320ms ease both; }


/* ============================================================
   STORIES PAGE
   ============================================================ */
.ls-stories-hero { padding: 80px 0 32px; text-align: center; }
.ls-stories-hero .ls-display { max-width: 880px; margin: 0 auto; font-weight: 600; }
.ls-stories-hero .ls-body--lg { max-width: 640px; margin: 18px auto 0; color: var(--fg-3); }

.ls-story-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 16px;
}
@media (max-width: 900px) { .ls-story-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ls-story-grid { grid-template-columns: 1fr; } }

.ls-story-card {
  background: var(--color-white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 240ms ease, transform 240ms ease;
}
.ls-story-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ls-story-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  background-color: #d4c4a8;
}
.ls-story-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ls-story-card-cat {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
}
.ls-story-card-h {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--fg-1); margin: 0; line-height: 1.3;
}
.ls-story-card-q {
  font-family: var(--font-display); font-style: italic; font-size: 16px;
  color: var(--fg-2); line-height: 1.6; margin: 0; flex: 1;
}
.ls-story-card-who {
  font-family: var(--font-body); font-size: 13px; color: var(--fg-3);
  margin-top: 4px;
}

.ls-story-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: center;
  padding: 64px 0; border-top: 1px solid var(--rule);
}
.ls-story-feature:first-of-type { border-top: 0; }
.ls-story-feature--reverse { grid-template-columns: 1fr 1.1fr; }
.ls-story-feature--reverse .ls-story-feature-photo { order: 2; }
@media (max-width: 800px) {
  .ls-story-feature, .ls-story-feature--reverse { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .ls-story-feature--reverse .ls-story-feature-photo { order: 0; }
}
.ls-story-feature-photo {
  aspect-ratio: 5 / 4;
  background-size: cover; background-position: center;
  border-radius: 4px;
}
.ls-story-feature-cat {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
  margin-bottom: 14px;
}
.ls-story-feature-q {
  font-family: var(--font-display); font-style: italic; font-size: 28px;
  color: var(--fg-1); line-height: 1.4; margin: 0 0 18px;
  font-weight: 500;
}
.ls-story-feature-body { color: var(--fg-2); line-height: 1.7; margin: 0 0 16px; font-size: 16px; }
.ls-story-feature-who {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-3);
  letter-spacing: 0.05em; margin-top: 18px;
}

/* ============================================================
   FOR FAMILIES PAGE
   ============================================================ */
.ls-families-hero {
  padding: 80px 0 64px;
  background: var(--color-cream);
}
.ls-families-hero .ls-hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 900px) {
  .ls-families-hero .ls-hero-grid { grid-template-columns: 1fr; }
}
.ls-families-hero h1 { max-width: 560px; }

.ls-family-vault {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 16px;
}
@media (max-width: 800px) { .ls-family-vault { grid-template-columns: 1fr; } }
.ls-vault-card {
  background: var(--color-white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.ls-vault-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-cream);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.ls-vault-icon svg { width: 22px; height: 22px; }
.ls-vault-h { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--fg-1); margin: 0; line-height: 1.35; }
.ls-vault-p { font-size: 15px; color: var(--fg-2); line-height: 1.65; margin: 0; }

.ls-roles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 900px) { .ls-roles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .ls-roles { grid-template-columns: 1fr; } }
.ls-role {
  text-align: center; padding: 28px 18px;
  background: var(--color-cream); border-radius: 4px;
}
.ls-role-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 14px;
  background-size: cover; background-position: center;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.ls-role-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--fg-1); margin: 0 0 4px; }
.ls-role-desc { font-family: var(--font-body); font-size: 13px; color: var(--fg-3); margin: 0; line-height: 1.5; }

.ls-fam-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  max-width: 760px; margin: 0 auto;
}
@media (max-width: 700px) { .ls-fam-features { grid-template-columns: 1fr; } }
.ls-fam-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; background: var(--color-white);
  border: 1px solid var(--rule); border-radius: 4px;
}
.ls-fam-feature svg { width: 22px; height: 22px; color: var(--brand); flex: 0 0 auto; margin-top: 2px; }
.ls-fam-feature-text strong { display: block; font-family: var(--font-body); font-weight: 600; color: var(--fg-1); margin-bottom: 4px; font-size: 15px; }
.ls-fam-feature-text span { font-size: 14px; color: var(--fg-3); line-height: 1.55; }

/* ============================================================
   HELP PAGE
   ============================================================ */
.ls-help-hero { padding: 80px 0 32px; text-align: center; }
.ls-help-hero .ls-display { max-width: 720px; margin: 0 auto; font-weight: 600; }
.ls-help-hero .ls-body--lg { max-width: 600px; margin: 18px auto 0; color: var(--fg-3); }

.ls-help-cats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 920px; margin: 24px auto 0;
}
@media (max-width: 800px) { .ls-help-cats { grid-template-columns: repeat(2, 1fr); } }
.ls-help-cat {
  background: var(--color-white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 24px 20px; text-align: center;
  text-decoration: none; color: inherit;
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.ls-help-cat:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: var(--brand); }
.ls-help-cat-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-cream); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.ls-help-cat-icon svg { width: 22px; height: 22px; }
.ls-help-cat-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--fg-1); margin: 0 0 4px; }
.ls-help-cat-count { font-family: var(--font-body); font-size: 12px; color: var(--fg-3); }

.ls-help-faq-section { padding: 56px 0; }
.ls-help-faq-section h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 24px;
  color: var(--fg-1); margin: 0 0 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  max-width: 760px; margin-left: auto; margin-right: auto;
}

/* Contact form */
.ls-contact {
  background: var(--color-cream);
  border-radius: 4px;
  padding: 56px 56px;
  max-width: 720px; margin: 0 auto;
}
@media (max-width: 600px) { .ls-contact { padding: 36px 24px; } }
.ls-contact h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 32px; color: var(--fg-1); margin: 0 0 8px; line-height: 1.25;
  letter-spacing: -0.5px;
}
.ls-contact-sub { font-size: 15px; color: var(--fg-3); margin: 0 0 32px; line-height: 1.6; }
.ls-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .ls-form-grid { grid-template-columns: 1fr; } }
.ls-form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.ls-form-row--full { grid-column: 1 / -1; }
.ls-form-row label {
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  color: var(--fg-2); letter-spacing: 0.02em;
}
.ls-form-row input, .ls-form-row select, .ls-form-row textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--fg-1);
  background: var(--color-white); border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%; box-sizing: border-box;
}
.ls-form-row input:focus, .ls-form-row select:focus, .ls-form-row textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.12);
}
.ls-form-row textarea { resize: vertical; min-height: 140px; }
.ls-form-actions {
  margin-top: 8px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.ls-form-note {
  font-family: var(--font-body); font-size: 13px; color: var(--fg-3);
  display: flex; align-items: center; gap: 8px;
}
.ls-form-note svg { width: 14px; height: 14px; color: var(--brand); }
.ls-form-success {
  display: none;
  margin-top: 24px; padding: 18px 20px;
  background: var(--color-white); border: 1px solid var(--brand);
  border-radius: 4px;
  font-family: var(--font-body); font-size: 15px; color: var(--fg-1);
}
.ls-form-success.is-shown { display: flex; align-items: center; gap: 12px; }
.ls-form-success svg { width: 22px; height: 22px; color: var(--brand); flex: 0 0 auto; }

.ls-help-other {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 920px; margin: 0 auto;
}
@media (max-width: 800px) { .ls-help-other { grid-template-columns: 1fr; } }
.ls-help-other-card {
  background: var(--color-white); border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 28px 24px; text-align: center;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.ls-help-other-icon { width: 44px; height: 44px; color: var(--brand); }
.ls-help-other-icon svg { width: 100%; height: 100%; }
.ls-help-other-h { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--fg-1); margin: 0; }
.ls-help-other-p { font-size: 14px; color: var(--fg-3); line-height: 1.55; margin: 0; }
.ls-help-other-link {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--brand); text-decoration: none;
  margin-top: 6px;
}
.ls-help-other-link:hover { text-decoration: underline; }

/* Page-hero shared */
.ls-page-hero-eyebrow {
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
  margin: 0 auto 16px; max-width: none;
}

.ls-section-sub {
  font-family: var(--font-body); color: var(--fg-3);
  text-align: center; margin: 12px auto 0; max-width: 720px;
}

/* ---------- How it Works v2 (5-step + phone + benefits) ---------- */
.ls-hiw2 { padding: 88px 0 96px; background: var(--color-white); }
.ls-hiw2-eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-forest);
  text-align: center; margin: 0 auto 14px; max-width: none;
}
.ls-hiw2-h {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 4vw, 48px); line-height: 1.1;
  letter-spacing: -0.5px; color: var(--color-forest);
  text-align: center; margin: 0 auto 14px; max-width: none;
}
.ls-hiw2-sub {
  font-family: var(--font-body); font-size: 16px; color: var(--fg-2);
  text-align: center; margin: 0 auto 48px; max-width: 640px;
}
.ls-hiw2-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.ls-hiw2-flow--top {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}
.ls-hiw2-bottom {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  max-width: 1200px;
  margin: 64px auto 0;
  padding-right: 216px; /* offset for absolutely-positioned callout so the visible cluster centers */
}
.ls-hiw2-bottom .ls-hiw2-step {
  align-self: center;
  padding-right: 12px;
  text-align: center;
  max-width: 220px;
}
.ls-hiw2-step { text-align: center; padding: 0 4px; position: relative; }
.ls-hiw2-step + .ls-hiw2-step::before {
  content: ""; position: absolute; left: -10%; top: 36px;
  width: 20%; height: 1px; background: transparent;
}
.ls-hiw2-arrow {
  align-self: start; margin-top: 30px;
  color: #C9B89B; display: flex; justify-content: center;
}
.ls-hiw2-arrow svg { width: 18px; height: 18px; }
.ls-hiw2-circle {
  width: 76px; height: 76px; border-radius: 50%;
  background: #F5EFE4;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-forest);
  position: relative;
}
.ls-hiw2-circle svg { width: 30px; height: 30px; }
.ls-hiw2-step--new .ls-hiw2-circle {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.ls-hiw2-step--new .ls-hiw2-h3,
.ls-hiw2-step--new .ls-hiw2-p { color: var(--accent); }
.ls-hiw2-new-badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  position: absolute; top: -10px; right: 0;
  transform: translateX(35%);
}
.ls-hiw2-h3 {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--fg-1); margin: 0 0 6px; line-height: 1.35;
}
.ls-hiw2-p {
  font-family: var(--font-body); font-size: 13px; line-height: 1.55;
  color: var(--fg-3); margin: 0; padding: 0 4px;
}

/* phone column inside bottom row */
.ls-hiw2-phone-col {
  align-self: start;
  position: relative;
  display: flex; align-items: flex-start; justify-content: center;
  margin-top: 0;
}
.ls-hiw2-phone {
  width: 168px; height: 340px; border-radius: 32px;
  background: #1A1A1A;
  padding: 8px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  flex: 0 0 auto;
}
.ls-hiw2-phone-screen {
  width: 100%; height: 100%; border-radius: 26px;
  background: #FFFFFF;
  display: flex; flex-direction: column; align-items: center;
  padding: 18px 14px 14px;
  position: relative; overflow: hidden;
}
.ls-hiw2-phone-time {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  color: #1A1A1A; align-self: flex-start; margin-bottom: 8px;
}
.ls-hiw2-phone-title {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 14px; color: var(--color-forest); margin: 0 0 12px;
}
.ls-hiw2-phone-photo {
  width: 78px; height: 78px; border-radius: 50%;
  background-image: url('../assets/photo-grandma-granddaughter-laugh.png');
  background-size: cover; background-position: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  margin-bottom: 14px;
}
.ls-hiw2-phone-wave {
  width: 100%; height: 28px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.ls-hiw2-phone-wave svg { width: 100%; height: 100%; }
.ls-hiw2-phone-times {
  width: 100%; display: flex; justify-content: space-between;
  font-family: var(--font-body); font-size: 9px; color: #9B9B9B;
  margin-bottom: 10px;
}
.ls-hiw2-phone-controls {
  width: 100%; display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 4px;
}
.ls-hiw2-phone-controls .ls-hiw2-skip { color: #6B6B6B; width: 18px; height: 18px; }
.ls-hiw2-phone-play {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-forest); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.ls-hiw2-phone-play svg { width: 16px; height: 16px; }

/* voice cloning callout card to right of phone */
.ls-hiw2-callout {
  background: #FBF6EC;
  border-radius: 14px;
  padding: 18px 20px 20px;
  width: 200px;
  position: absolute;
  left: calc(100% + 16px);
  top: 24px;
}
.ls-hiw2-callout-wave svg { width: 70px; height: 22px; color: var(--accent); margin-bottom: 8px; display: block; }
.ls-hiw2-callout-text {
  font-family: var(--font-body); font-size: 13px; line-height: 1.5;
  color: var(--fg-2); margin: 0;
}
.ls-hiw2-callout-leaf {
  position: absolute; right: 8px; bottom: 6px;
  color: var(--color-forest); opacity: 0.7;
}
.ls-hiw2-callout-leaf svg { width: 38px; height: 22px; }

/* benefits row */
.ls-hiw2-benefits-section {
  background: var(--color-cream);
  padding: 36px 0;
  margin-top: 56px;
}
.ls-hiw2-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.3fr;
  gap: 28px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}
.ls-hiw2-benefit { text-align: center; padding: 0 6px; position: relative; }
.ls-hiw2-benefit-icon {
  width: 32px; height: 32px; margin: 0 auto 12px;
  color: var(--color-forest);
}
.ls-hiw2-benefit-icon svg { width: 100%; height: 100%; }
.ls-hiw2-benefit h4 {
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: var(--fg-1); margin: 0 0 6px; letter-spacing: 0;
}
.ls-hiw2-benefit p {
  font-family: var(--font-body); font-size: 13px; color: var(--fg-3);
  line-height: 1.55; margin: 0;
}
.ls-hiw2-benefit--new .ls-hiw2-benefit-icon { color: var(--accent); margin: 0; }
.ls-hiw2-benefit-icon-row {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 auto 12px;
  position: relative;
}
.ls-hiw2-new-badge--inline {
  display: inline-flex; align-items: center;
  background: var(--accent); color: #fff;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
  position: static;
}
.ls-hiw2-benefit-photo {
  height: 220px;
  background-image: url('../assets/photo-hiw-benefits.png');
  background-size: cover; background-position: center;
  border-radius: 0;
}

/* responsive */
@media (max-width: 1100px) {
  .ls-hiw2-flow--top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ls-hiw2-arrow { display: none; }
  .ls-hiw2-bottom {
    padding-right: 0;
    flex-wrap: wrap;
  }
  .ls-hiw2-benefits { padding: 0 40px; }
}
@media (max-width: 800px) {
  .ls-hiw2-flow--top {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .ls-hiw2-bottom {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-right: 0;
  }
  .ls-hiw2-bottom .ls-hiw2-step {
    padding-right: 0;
    margin: 0 auto;
  }
  .ls-hiw2-phone-col { flex-direction: column; align-items: center; }
  .ls-hiw2-callout { position: static; margin-top: 12px; left: auto; top: auto; }
  .ls-hiw2-benefits {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
    gap: 24px;
  }
  .ls-hiw2-benefit-photo { grid-column: 1 / -1; height: 180px; }
}

/* ---------- Voice FAQ + Mission row ---------- */
.ls-vfm { padding: 24px 0 64px; background: var(--color-white); }
.ls-vfm-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
}
@media (max-width: 1100px) { .ls-vfm-grid { padding: 0 24px; } }
@media (max-width: 900px)  { .ls-vfm-grid { grid-template-columns: 1fr; padding: 0 20px; } }

.ls-vfm-card {
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 32px 36px;
  background: #fff;
  overflow: hidden;
}
.ls-vfm-card-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px;
  align-items: center;
}
.ls-vfm-text { min-width: 0; }
@media (max-width: 600px) { .ls-vfm-card-inner { grid-template-columns: 1fr; } }
.ls-vfm-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-3);
  margin: 0 0 10px;
}
.ls-vfm-h {
  font-family: var(--font-display); font-weight: 600;
  font-size: 24px; line-height: 1.25; color: var(--fg-1);
  letter-spacing: -0.3px; margin: 0 0 12px;
}
.ls-vfm-p {
  font-family: var(--font-body); font-size: 14px; line-height: 1.6;
  color: var(--fg-2); margin: 0;
}
.ls-vfm-mic { display: flex; align-items: center; justify-content: center; min-width: 0; }
.ls-vfm-mic svg { width: 100%; max-width: 240px; height: auto; display: block; }

.ls-vfm-trust {
  margin-top: 22px;
  background: #FBF6EC;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.ls-vfm-trust-icon {
  width: 26px; height: 26px; color: var(--color-forest);
  flex: 0 0 auto; margin-top: 2px;
}
.ls-vfm-trust-icon svg { width: 100%; height: 100%; }
.ls-vfm-trust-h {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--fg-1); margin: 0 0 2px;
}
.ls-vfm-trust-p {
  font-family: var(--font-body); font-size: 13px; line-height: 1.5;
  color: var(--fg-3); margin: 0;
}

.ls-vfm-card--mission {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: stretch;
  padding: 0;
  position: relative;
}
.ls-vfm-card--mission .ls-vfm-text {
  padding: 32px 0 32px 36px;
  align-self: start;
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) { .ls-vfm-card--mission { grid-template-columns: 1fr; }
  .ls-vfm-card--mission .ls-vfm-text { padding: 28px 24px 0; } }
.ls-vfm-mission-photo {
  min-height: 280px;
  background-image: url('../assets/photo-mission-frame.png');
  background-size: cover; background-position: center;
  position: relative;
  border-radius: 0 12px 12px 0;
}
.ls-vfm-mission-photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.85) 12%, rgba(255,255,255,0) 38%);
  pointer-events: none;
}
@media (max-width: 600px) {
  .ls-vfm-mission-photo { min-height: 240px; border-radius: 0 0 12px 12px; }
  .ls-vfm-mission-photo::before {
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255,255,255,0) 30%);
  }
}
