/* Gone But Cherished — Marketing landing only (scoped under body.is-landing) */

body.is-landing {
  --lp-cream: #f7f3eb;
  --lp-cream-deep: #efe8dc;
  --lp-green: #6e8f72;
  --lp-green-deep: #4e7051;
  --lp-green-soft: #e8f0e9;
  --lp-slate: #2f4f4f;
  --lp-ink: #2a3530;
  --lp-muted: #5c6b64;
  --lp-glass: rgba(255, 252, 247, 0.72);
  --lp-glass-border: rgba(110, 143, 114, 0.18);
  --lp-shadow: 0 24px 60px rgba(47, 79, 79, 0.10);
  --lp-shadow-soft: 0 12px 40px rgba(47, 79, 79, 0.08);
  --lp-radius: 20px;
  --lp-radius-sm: 14px;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;

  margin: 0;
  font-family: var(--font-body);
  background: var(--lp-cream);
  color: var(--lp-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-landing a {
  color: var(--lp-green-deep);
}

/* —— Header —— */
body.is-landing .landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 235, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(110, 143, 114, 0.12);
  padding: 14px clamp(16px, 4vw, 40px);
}

body.is-landing .landing-header .brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--lp-slate);
}

body.is-landing .landing-header .brand-logo {
  height: 46px;
}

body.is-landing .landing-header .app-nav a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--lp-muted);
  transition: color 0.2s ease;
}

body.is-landing .landing-header .app-nav a:hover {
  color: var(--lp-green-deep);
}

body.is-landing .landing-nav-cta {
  border-radius: 999px !important;
  padding: 8px 16px !important;
  background: var(--lp-green) !important;
  box-shadow: 0 6px 20px rgba(110, 143, 114, 0.28);
}

body.is-landing .landing-nav-cta:hover {
  background: var(--lp-green-deep) !important;
}

body.is-landing .landing-header .app-nav a.is-active {
  color: var(--lp-green-deep);
  font-weight: 500;
}

/* Mobile menu toggle — hidden on desktop */
body.is-landing .nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 8px 12px;
  border: 1px solid rgba(110, 143, 114, 0.28);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.9);
  color: var(--lp-slate);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}

body.is-landing .nav-toggle-bars {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor;
}

body.is-landing .nav-toggle[aria-expanded="true"] {
  background: var(--lp-green-soft);
  border-color: var(--lp-green);
}

body.is-landing.nav-open {
  overflow: hidden;
}

body.is-landing .landing-header {
  flex-wrap: nowrap;
  position: sticky;
}

/* —— Main —— */
.landing-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Inner marketing pages (About, News, FAQ, etc.) */
body.is-landing .landing-main > .card.info-page {
  width: min(760px, calc(100% - 40px));
  margin: 28px auto 64px;
}

body.is-landing .site-page {
  padding: 28px 0 72px;
}

.site-breadcrumbs {
  margin: 0 0 24px;
}

.site-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  color: var(--lp-muted, #5c6b64);
}

.site-breadcrumbs-item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  opacity: 0.45;
}

.site-breadcrumbs a {
  color: var(--lp-green-deep, #4e7051);
  text-decoration: none;
}

.site-breadcrumbs a:hover {
  text-decoration: underline;
}

.site-answer-box {
  margin: 0 0 28px;
  padding: 16px 18px;
  background: var(--lp-green-soft, #e8f0e9);
  border-left: 3px solid var(--lp-green, #6e8f72);
  border-radius: 0 12px 12px 0;
  color: var(--lp-ink, #2a3530);
  font-size: 0.98rem;
}

.site-answer-box p {
  margin: 0;
}

.lp-blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.lp-blog-card {
  background: rgba(255, 252, 247, 0.72);
  border: 1px solid rgba(110, 143, 114, 0.14);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lp-blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.lp-blog-card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.lp-blog-card-body h2 {
  font-size: 1.35rem;
  margin: 0;
}

.lp-blog-card-body h2 a {
  color: inherit;
  text-decoration: none;
}

.lp-blog-card-body h2 a:hover {
  color: var(--lp-green-deep);
}

.lp-blog-card-body p {
  margin: 0;
  color: var(--lp-muted);
  flex: 1;
}

.lp-blog-card-body .lp-btn {
  align-self: flex-start;
  margin-top: 6px;
}

.site-page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 8px;
}

.site-page-head {
  margin-bottom: 8px;
}

.site-article {
  max-width: 760px;
}

.site-article-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 8px;
}

.site-article-byline {
  margin: 0 0 20px;
}

.site-article-cover {
  margin: 0 0 24px;
  border-radius: 16px;
  overflow: hidden;
}

.site-article-cover img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.site-article-dek {
  font-size: 1.15rem;
  margin: 0 0 28px;
}

.site-article-body {
  margin-bottom: 8px;
}

.lp-prose p {
  margin: 0 0 1.1em;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--lp-ink, #2a3530);
}

.site-related {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(110, 143, 114, 0.16);
}

.site-related h2 {
  font-size: 1.5rem;
  margin: 0 0 14px;
}

.site-related ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-related li {
  margin: 0 0 10px;
}

.site-related a {
  text-decoration: none;
  font-weight: 500;
}

.site-related a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .lp-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lp-blog-grid {
    grid-template-columns: 1fr;
  }
}

.lp-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

/* —— Typography —— */
body.is-landing h1,
body.is-landing h2,
body.is-landing h3,
.lp-mock-name {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--lp-slate);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.lp-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-green-deep);
  margin: 0 0 14px;
}

.lp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.lp-section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 14px;
}

.lp-section-sub {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1.08rem;
  font-weight: 300;
}

/* —— Buttons —— */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none !important;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-btn-primary {
  background: var(--lp-green);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(110, 143, 114, 0.32);
}

.lp-btn-primary:hover {
  background: var(--lp-green-deep);
  box-shadow: 0 14px 36px rgba(78, 112, 81, 0.36);
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-green-deep) !important;
  border-color: rgba(110, 143, 114, 0.45);
}

.lp-btn-outline:hover {
  background: var(--lp-green-soft);
}

.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.35);
  color: var(--lp-slate) !important;
  border-color: rgba(47, 79, 79, 0.15);
  backdrop-filter: blur(8px);
}

.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.55);
}

.lp-btn-ghost-light {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.lp-btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.lp-btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

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

/* —— Hero —— */
.lp-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 110px);
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: -40px;
  z-index: -2;
  background:
    var(--lp-hero-photo, none) center / cover no-repeat,
    url('../img/landing/hero-soft.svg') center / cover no-repeat,
    linear-gradient(165deg, #eef4ef 0%, var(--lp-cream) 45%, #e8efe6 100%);
  filter: blur(14px) saturate(0.9);
  transform: scale(1.12);
  animation: lp-bg-drift 22s ease-in-out infinite alternate;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.55) 0%, rgba(247, 243, 235, 0.78) 55%, var(--lp-cream) 100%),
    linear-gradient(90deg, rgba(247, 243, 235, 0.72) 0%, rgba(247, 243, 235, 0.35) 55%, rgba(247, 243, 235, 0.55) 100%);
  pointer-events: none;
}

@keyframes lp-bg-drift {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.08) translate(-1.5%, 1%); }
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.lp-hero-copy h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.1rem);
  font-weight: 500;
  margin: 0 0 20px;
  max-width: 12ch;
}

.lp-lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 300;
  color: var(--lp-muted);
  max-width: 36ch;
  margin: 0 0 28px;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.lp-hero-actions--center {
  justify-content: center;
  margin-bottom: 0;
}

.lp-trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--lp-muted);
}

.lp-trust-inline li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-trust-inline li::before {
  content: '✓';
  color: var(--lp-green);
  font-weight: 600;
}

.lp-hero-preview {
  position: relative;
}

.lp-device {
  perspective: 1200px;
}

.lp-preview-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--lp-muted);
  margin: 16px 0 0;
  font-weight: 300;
}

/* —— Memorial mocks —— */
.lp-memorial-mock {
  background: #fffcf7;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  border: 1px solid rgba(110, 143, 114, 0.12);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.lp-memorial-mock--hero {
  transform: rotateY(-4deg) rotateX(2deg);
  animation: lp-float 7s ease-in-out infinite;
}

@keyframes lp-float {
  0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-3deg) rotateX(1deg) translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .lp-memorial-mock--hero,
  .lp-hero-bg {
    animation: none;
  }
  .lp-memorial-mock--hero {
    transform: none;
  }
}

.lp-mock-header {
  text-align: center;
  padding: 28px 22px 18px;
  background: linear-gradient(180deg, #eef4ef 0%, #fffcf7 100%);
  border-top: 4px solid var(--lp-green);
}

.lp-mock-photo {
  margin: 0 auto 14px;
  width: fit-content;
  filter: drop-shadow(0 8px 16px rgba(47, 79, 79, 0.12));
}

.lp-portrait {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 252, 247, 0.95);
  box-shadow: 0 0 0 3px rgba(110, 143, 114, 0.22), 0 10px 24px rgba(47, 79, 79, 0.14);
  margin: 0 auto 12px;
}

.lp-portrait--lg { width: 104px; height: 104px; }
.lp-portrait--md { width: 72px; height: 72px; }
.lp-portrait--xs {
  width: 48px;
  height: 48px;
  margin: 0 0 12px;
  border-width: 2px;
  box-shadow: 0 0 0 2px rgba(110, 143, 114, 0.18);
}
.lp-portrait--overlap {
  width: 72px;
  height: 72px;
  margin: -40px auto 12px;
  border-color: #1e2e2e;
}

.lp-mock-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--lp-muted);
}

.lp-mock-stats strong {
  color: var(--lp-slate);
  font-weight: 600;
}

.lp-flower-pill {
  color: var(--lp-green-deep);
}

.lp-mock-gallery--photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.lp-mock-gallery--photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.lp-mock-gallery--3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.lp-mock-flowers {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(238, 244, 239, 0.65);
  border-radius: 12px;
}

.lp-mock-flowers img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(196, 165, 116, 0.45);
}

.lp-mock-flowers p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--lp-muted);
  font-weight: 300;
}

/* Faces strip */
.lp-faces {
  padding: 48px 0 28px;
}

.lp-faces-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 36px);
}

.lp-face {
  margin: 0;
  text-align: center;
}

.lp-face .lp-portrait {
  width: 110px;
  height: 110px;
  margin-bottom: 10px;
  transition: transform 0.35s ease;
}

.lp-face:hover .lp-portrait {
  transform: translateY(-4px) scale(1.03);
}

.lp-face figcaption {
  font-size: 0.85rem;
  color: var(--lp-muted);
  font-weight: 400;
}

.lp-mock-hero-band {
  height: 110px;
  background-size: cover;
  background-position: center top;
  filter: saturate(0.85);
  position: relative;
}

.lp-mock-hero-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 46, 46, 0.25), rgba(30, 46, 46, 0.75));
}

.lp-mock-photo--sm { margin-bottom: 10px; }

.lp-mock-photo--circle svg {
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 252, 247, 0.9), 0 8px 20px rgba(47, 79, 79, 0.1);
}

.lp-mock-name {
  font-size: 1.55rem;
  margin: 0 0 6px;
}

.lp-mock-dates {
  margin: 0 0 10px;
  font-size: 0.82rem;
  color: var(--lp-muted);
  letter-spacing: 0.02em;
}

.lp-mock-tribute {
  margin: 0;
  font-size: 0.9rem;
  color: var(--lp-muted);
  font-weight: 300;
  max-width: 32ch;
  margin-inline: auto;
}

.lp-mock-body {
  padding: 8px 20px 22px;
}

.lp-mock-block {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(238, 244, 239, 0.55);
  border-radius: 12px;
}

.lp-mock-block h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-green-deep);
  margin: 0 0 8px;
}

.lp-mock-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--lp-ink);
}

.lp-mock-timeline li {
  display: flex;
  gap: 10px;
  padding: 4px 0;
}

.lp-mock-timeline span {
  font-weight: 500;
  color: var(--lp-green-deep);
  min-width: 2.8em;
}

.lp-mock-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.lp-mock-gallery span {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #d5e0d6, #b7c9ba);
}

.lp-mock-gallery span:nth-child(2) { background: linear-gradient(135deg, #e8dcc8, #c9b896); }
.lp-mock-gallery span:nth-child(3) { background: linear-gradient(135deg, #c5d6c7, #8fad93); }
.lp-mock-gallery span:nth-child(4) { background: linear-gradient(135deg, #dce6dd, #a8bdaa); }
.lp-mock-gallery span:nth-child(5) { background: linear-gradient(135deg, #efe8dc, #d4c4a8); }
.lp-mock-gallery span:nth-child(6) { background: linear-gradient(135deg, #c8d9cb, #6e8f72); }

.lp-mock-gallery--dark {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.lp-mock-gallery--dark span {
  background: linear-gradient(135deg, #4a5e4c, #2f4f4f);
  opacity: 0.85;
}

.lp-mock-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
  margin-top: 14px;
}

.lp-mock-block--flex { margin-top: 0; }

.lp-mock-memory {
  margin: 0;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--lp-ink);
  line-height: 1.45;
}

.lp-mock-memory-meta {
  margin: 6px 0 0;
  font-size: 0.72rem;
  color: var(--lp-muted);
}

.lp-mock-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--lp-glass-border);
  border-radius: 12px;
  min-width: 78px;
}

.lp-qr-grid {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background:
    linear-gradient(#2f4f4f 0 0) 0 0 / 40% 40%,
    linear-gradient(#2f4f4f 0 0) 100% 0 / 40% 40%,
    linear-gradient(#2f4f4f 0 0) 0 100% / 40% 40%,
    linear-gradient(#2f4f4f 0 0) 100% 100% / 28% 28%,
    repeating-linear-gradient(90deg, #2f4f4f 0 3px, transparent 3px 6px),
    repeating-linear-gradient(#2f4f4f 0 3px, transparent 3px 6px);
  background-repeat: no-repeat;
  background-color: #f7f3eb;
  opacity: 0.85;
}

.lp-mock-qr span {
  font-size: 0.62rem;
  color: var(--lp-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Template variants */
.lp-memorial-mock--classic {
  padding: 22px 18px 20px;
  text-align: center;
  min-height: 320px;
  position: relative;
}

.lp-mock-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--lp-green);
}

.lp-memorial-mock--modern {
  min-height: 320px;
  background: #1e2e2e;
  color: #f0ebe3;
  border: none;
}

.lp-memorial-mock--modern .lp-mock-name,
.lp-memorial-mock--modern .lp-mock-dates,
.lp-memorial-mock--modern .lp-mock-tribute,
.lp-memorial-mock--modern .lp-mock-kicker {
  color: #f0ebe3;
}

.lp-mock-modern-content {
  padding: 18px 18px 22px;
  margin-top: -28px;
}

.lp-mock-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 6px;
}

.lp-memorial-mock--garden {
  padding: 28px 18px 22px;
  text-align: center;
  min-height: 320px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 196, 168, 0.35), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(197, 214, 199, 0.4), transparent 45%),
    #faf6ee;
}

.lp-memorial-mock--garden .lp-mock-name {
  color: #5a4a38;
}

.lp-mock-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.lp-mock-chips span {
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lp-green-soft);
  color: var(--lp-green-deep);
}

.lp-mock-chips--warm span {
  background: rgba(212, 196, 168, 0.45);
  color: #6a5744;
}

.lp-memorial-mock--featured {
  max-width: 420px;
  margin-left: auto;
}

.lp-memorial-mock--featured .lp-mock-gallery {
  grid-template-columns: repeat(3, 1fr);
  margin: 16px 0;
}

.lp-mock-memory-card {
  background: rgba(238, 244, 239, 0.7);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
}

.lp-mock-memory-card p {
  margin: 0;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--lp-ink);
}

.lp-mock-memory-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--lp-muted);
  font-style: normal;
}

/* —— Trust strip —— */
.lp-trust-strip {
  padding: 28px 0;
  border-block: 1px solid rgba(110, 143, 114, 0.12);
  background: rgba(255, 252, 247, 0.65);
}

.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--lp-slate);
  padding: 10px 8px;
}

.lp-check {
  color: var(--lp-green);
  font-weight: 700;
}

/* —— Sections —— */
.lp-section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.lp-section--alt {
  background:
    linear-gradient(180deg, rgba(238, 244, 239, 0.45) 0%, rgba(247, 243, 235, 0.2) 100%);
}

/* —— Why / glass cards —— */
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lp-glass-card {
  background: var(--lp-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--lp-glass-border);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  box-shadow: var(--lp-shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lp-glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow);
}

.lp-glass-card h3 {
  font-size: 1.45rem;
  margin: 0 0 10px;
}

.lp-glass-card p {
  margin: 0;
  color: var(--lp-muted);
  font-weight: 300;
}

.lp-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--lp-green-soft);
  color: var(--lp-green-deep);
  margin-bottom: 18px;
}

/* —— Templates —— */
.lp-template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-template-card:hover .lp-memorial-mock {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(47, 79, 79, 0.14);
}

.lp-template-meta {
  padding: 18px 8px 0;
  text-align: center;
}

.lp-template-meta h3 {
  font-size: 1.35rem;
  margin: 0 0 6px;
}

.lp-template-meta p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--lp-muted);
  font-weight: 300;
}

/* —— Example —— */
.lp-example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.lp-example-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  margin: 0 0 14px;
  max-width: 16ch;
}

.lp-example-copy .lp-section-sub {
  margin-bottom: 22px;
  max-width: 40ch;
}

.lp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.lp-feature-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--lp-ink);
  font-weight: 400;
}

.lp-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lp-green);
  font-weight: 600;
}

/* —— Timeline —— */
.lp-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 0;
  position: relative;
}

.lp-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--lp-green), rgba(110, 143, 114, 0.15));
}

.lp-timeline li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 18px 0;
  position: relative;
}

.lp-timeline-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fffcf7;
  border: 2px solid var(--lp-green);
  color: var(--lp-green-deep);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(110, 143, 114, 0.15);
  z-index: 1;
}

.lp-timeline h3 {
  font-size: 1.35rem;
  margin: 4px 0 6px;
}

.lp-timeline p {
  margin: 0;
  color: var(--lp-muted);
  font-weight: 300;
}

/* —— Quotes —— */
.lp-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lp-quote {
  margin: 0;
  padding: 32px 28px;
  background: #fffcf7;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-soft);
  border: 1px solid rgba(110, 143, 114, 0.1);
  position: relative;
}

.lp-quote::before {
  content: '“';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(110, 143, 114, 0.25);
  position: absolute;
  top: 8px;
  left: 18px;
}

.lp-quote p {
  margin: 16px 0 18px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--lp-slate);
  line-height: 1.4;
  position: relative;
}

.lp-quote footer {
  font-size: 0.85rem;
  color: var(--lp-muted);
  font-style: normal;
}

/* —— FAQ —— */
.lp-faq-wrap .lp-section-head {
  margin-bottom: 40px;
}

.lp-faq {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.lp-faq details {
  background: #fffcf7;
  border-radius: var(--lp-radius-sm);
  border: 1px solid rgba(110, 143, 114, 0.12);
  padding: 4px 20px;
  box-shadow: 0 4px 16px rgba(47, 79, 79, 0.04);
  transition: box-shadow 0.25s ease;
}

.lp-faq details[open] {
  box-shadow: var(--lp-shadow-soft);
}

.lp-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--lp-slate);
  padding: 16px 0;
  position: relative;
  padding-right: 28px;
}

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

.lp-faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lp-green);
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
}

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

.lp-faq details p {
  margin: 0 0 18px;
  color: var(--lp-muted);
  font-weight: 300;
}

/* —— Pricing —— */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.lp-price-card {
  position: relative;
  background: linear-gradient(165deg, #fffcf7 0%, #f3efe6 100%);
  border-radius: 24px;
  padding: 36px 28px 32px;
  border: 1px solid rgba(110, 143, 114, 0.14);
  box-shadow: var(--lp-shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lp-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow);
}

.lp-price-card--featured {
  background:
    linear-gradient(165deg, rgba(110, 143, 114, 0.12) 0%, transparent 40%),
    linear-gradient(180deg, #fffcf7 0%, #eef4ef 100%);
  border-color: rgba(110, 143, 114, 0.4);
  box-shadow: 0 28px 60px rgba(78, 112, 81, 0.18);
  transform: scale(1.03);
  z-index: 1;
}

.lp-price-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.lp-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(110, 143, 114, 0.35);
  white-space: nowrap;
}

.lp-price-card h3 {
  font-size: 1.5rem;
  margin: 0 0 12px;
  text-align: center;
}

.lp-price {
  text-align: center;
  margin: 0 0 6px;
}

.lp-price span {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--lp-slate);
  line-height: 1;
}

.lp-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--lp-muted);
  margin-top: 4px;
  font-weight: 400;
}

.lp-price-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--lp-muted);
  margin: 0 0 22px;
  font-weight: 300;
}

.lp-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.lp-price-card li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.95rem;
  color: var(--lp-ink);
  border-bottom: 1px solid rgba(110, 143, 114, 0.08);
}

.lp-price-card li:last-child { border-bottom: none; }

.lp-price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lp-green);
  font-weight: 600;
}

.lp-price-card .lp-btn {
  width: 100%;
}

.lp-guarantee {
  text-align: center;
  margin: 36px 0 0;
  color: var(--lp-muted);
  font-size: 0.95rem;
}

/* —— Final CTA —— */
.lp-cta {
  position: relative;
  isolation: isolate;
  padding: clamp(80px, 12vw, 130px) 0;
  text-align: center;
  overflow: hidden;
}

.lp-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(160deg, rgba(61, 92, 72, 0.88) 0%, rgba(47, 79, 79, 0.92) 48%, rgba(36, 61, 61, 0.95) 100%),
    var(--lp-cta-photo, none) center / cover no-repeat;
  filter: saturate(0.85);
}

.lp-cta-inner {
  max-width: 680px;
}

.lp-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f7f3eb;
  margin: 0 0 16px;
}

.lp-cta p {
  color: rgba(247, 243, 235, 0.82);
  font-weight: 300;
  font-size: 1.1rem;
  margin: 0 0 32px;
}

/* —— Footer (landing uses shared site-footer) —— */
body.is-landing .site-footer {
  margin-top: 0;
}

body.is-landing .landing-footer {
  display: none;
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .lp-hero-grid,
  .lp-example-grid,
  .lp-template-grid,
  .lp-quote-grid,
  .lp-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lp-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-hero-copy h1 {
    max-width: none;
  }

  .lp-hero-copy {
    text-align: center;
  }

  .lp-lead {
    margin-inline: auto;
  }

  .lp-hero-actions {
    justify-content: center;
  }

  .lp-trust-inline {
    justify-content: center;
  }

  .lp-memorial-mock--hero {
    transform: none;
    animation: lp-float-mobile 6s ease-in-out infinite;
    max-width: 440px;
    margin-inline: auto;
  }

  @keyframes lp-float-mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .lp-memorial-mock--featured {
    margin-inline: auto;
  }

  .lp-price-card--featured {
    transform: none;
    order: -1;
  }

  .lp-price-card--featured:hover {
    transform: translateY(-6px);
  }

  .lp-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Mobile: collapse marketing nav into the menu toggle (Home always available). */
  body.is-landing .nav-toggle {
    display: inline-flex;
  }

  body.is-landing .landing-header .app-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    background: rgba(247, 243, 235, 0.98);
    border-bottom: 1px solid rgba(110, 143, 114, 0.14);
    box-shadow: 0 16px 32px rgba(47, 79, 79, 0.08);
  }

  body.is-landing .landing-header .app-nav.is-open {
    display: flex;
  }

  body.is-landing .landing-header .app-nav a {
    display: block;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(110, 143, 114, 0.1);
  }

  body.is-landing .landing-header .app-nav a.landing-nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: none;
  }
}

@media (max-width: 560px) {
  .lp-shell {
    width: calc(100% - 28px);
  }

  .lp-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-mock-row {
    grid-template-columns: 1fr;
  }

  .lp-mock-qr {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }

  .lp-hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }
}

/* —— Homepage enhancements (cinematic / AI placeholder) —— */
.lp-cinematic {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: min(62vh, 560px);
  display: grid;
  align-items: end;
  background: #1e2a24;
}
.lp-cinematic .lp-shell {
  position: relative;
  z-index: 2;
  padding: 48px 0;
}
.lp-cinematic .lp-section-head {
  text-align: left;
  max-width: 520px;
  margin: 0;
}
.lp-cinematic .lp-section-head h2,
.lp-cinematic .lp-eyebrow {
  color: #f7f3eb;
}
.lp-cinematic .lp-section-sub {
  color: rgba(247, 243, 235, 0.78);
}
.lp-cinematic-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.lp-cinematic::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(30, 42, 36, 0.25) 0%, rgba(30, 42, 36, 0.72) 100%);
  pointer-events: none;
}
.lp-ai-future[hidden] {
  display: none !important;
}

/* Homepage news & Living Legacy helpers */
.lp-blog-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.lp-blog-home-card {
  background: #fffcf7;
  border: 1px solid rgba(110, 143, 114, 0.14);
  border-radius: var(--lp-radius, 16px);
  padding: 24px 22px;
  box-shadow: var(--lp-shadow-soft, 0 10px 30px rgba(47, 79, 79, 0.06));
}
.lp-blog-home-card h3 {
  font-family: var(--lp-serif, Georgia, 'Times New Roman', serif);
  font-size: 1.25rem;
  margin: 0 0 10px;
  line-height: 1.35;
}
.lp-blog-home-card h3 a {
  color: inherit;
  text-decoration: none;
}
.lp-blog-home-card h3 a:hover,
.lp-blog-home-card h3 a:focus-visible {
  color: var(--lp-green-deep, #4e7051);
}
.lp-blog-home-card p {
  margin: 0 0 14px;
  color: var(--lp-muted, #5c6b64);
  font-size: 0.95rem;
}
.lp-text-link {
  color: var(--lp-green-deep, #4e7051);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(78, 112, 81, 0.35);
}
.lp-text-link:hover,
.lp-text-link:focus-visible {
  border-bottom-color: var(--lp-green-deep, #4e7051);
}
.lp-center {
  text-align: center;
}
@media (max-width: 980px) {
  .lp-blog-home-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lp-why-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-cinematic-video {
    display: none;
  }
  .lp-cinematic {
    background: linear-gradient(165deg, #2f4f4f, #1e2a24);
  }
}
