/**
 * LifeKeeper — Homepage only
 * Commercial hero, audience paths, and section polish.
 * Brand: #024269 (navy) · #fd7e14 (orange)
 */

/* ─────────────────────────────────────────────────────────────
   HERO — full-bleed background photo + brand overlay
   ───────────────────────────────────────────────────────────── */

.home-hero {
  position: relative;
  min-height: clamp(420px, 72vh, 720px);
  display: flex;
  align-items: center;
  padding: 92px 0 56px;
  overflow: visible;
  margin-top: 0;
}

/* Photo layer (decorative — empty alt in template) */
.home-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.01);
  filter: brightness(1.06) saturate(1.04);
}

/* Brand-tinted wash — photo visible, less flat white */
.home-hero-color-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(2, 66, 105, 0.52) 0%,
    rgba(2, 66, 105, 0.28) 32%,
    rgba(255, 255, 255, 0.22) 52%,
    rgba(248, 250, 252, 0.12) 68%,
    transparent 82%
  );
  z-index: 1;
}

/* Orange brand accent — soft glow on the right */
.home-hero-brand-accent {
  position: absolute;
  top: 8%;
  right: 5%;
  width: min(360px, 40vw);
  height: min(360px, 40vw);
  background: radial-gradient(circle, rgba(253, 126, 20, 0.18) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

/* Thin orange line under the hero (brand signature) */
.home-hero-brand-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lk-accent) 0%, #ffb347 40%, var(--lk-primary) 100%);
  z-index: 4;
}

.home-hero-layout {
  position: relative;
  z-index: 3;
}

.home-hero-row {
  align-items: flex-start;
}

/* Frosted panel for copy — readable on photo + navy wash */
.home-hero-copy-panel {
  padding: 28px 30px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 48px rgba(2, 66, 105, 0.14);
  max-width: 540px;
}

.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lk-accent);
  background: var(--lk-accent-soft);
  border: 1px solid rgba(253, 126, 20, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.home-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lk-accent);
  box-shadow: 0 0 0 4px rgba(253, 126, 20, 0.25);
  animation: home-eyebrow-pulse 2s ease-in-out infinite;
}

@keyframes home-eyebrow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(1.15); }
}

/* Headline — refined size, brand navy (never harsh black) */
.home-hero-headline {
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-hero-headline-primary,
.home-hero-headline-secondary {
  display: block;
  font-family: var(--lk-font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.home-hero-headline-primary {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: var(--lk-primary);
}

.home-hero-headline-secondary {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--lk-primary-light);
}

.home-hero-headline em {
  font-style: italic;
  color: var(--lk-accent);
}

.home-hero-intro {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--lk-text);
  margin-bottom: 18px;
}

.home-hero-intro strong {
  color: var(--lk-primary);
  font-weight: 600;
}

.home-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.home-hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--lk-text);
}

.home-hero-benefits i {
  color: var(--lk-accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.home-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

/* Primary CTA — orange */
.home-hero-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  background: var(--lk-accent-text);
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(253, 126, 20, 0.45);
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}

.home-hero-button-primary:hover {
  background: var(--lk-accent-text-hover);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(253, 126, 20, 0.5);
}

/* Secondary CTA — outline on light panel */
.home-hero-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  background: transparent;
  color: var(--lk-primary) !important;
  text-decoration: none;
  border: 2px solid var(--lk-primary);
  transition: all 0.25s;
}

.home-hero-button-secondary:hover {
  background: var(--lk-primary);
  color: #fff !important;
}

.home-hero-trust-note {
  font-size: 0.8rem;
  color: var(--lk-text-muted);
  margin-bottom: 16px;
}

.home-hero-trust-note i {
  color: var(--lk-accent);
  margin-right: 6px;
}

/* Quick stats row */
.home-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-hero-stat-card {
  flex: 1 1 88px;
  min-width: 88px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(2, 66, 105, 0.04);
  border: 1px solid var(--lk-border);
}

.home-hero-stat-card strong {
  display: block;
  font-family: var(--lk-font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--lk-accent);
  line-height: 1.2;
}

.home-hero-stat-card span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lk-text-muted);
  font-weight: 600;
}

/* ── Showcase column (right) — balanced size, aligned to top ── */
.home-hero-showcase-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: visible;
}

.home-hero-showcase {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  margin-right: 0;
  padding-top: 8px;
  /* Room so floating chips are never clipped */
  padding-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.home-hero-featured-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
}

/* Only the photo is clipped to rounded corners */
.home-hero-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 56px rgba(2, 66, 105, 0.2);
  background: #fff;
}

.home-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 400px;
  min-height: 280px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Floating chips — positioned on showcase so nothing is cut off */
.home-hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 32px rgba(2, 66, 105, 0.15);
  border: 1px solid rgba(2, 66, 105, 0.08);
  z-index: 5;
  animation: home-chip-float 4.5s ease-in-out infinite;
}

.home-hero-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--lk-accent-soft);
  color: var(--lk-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.home-hero-chip strong {
  display: block;
  font-size: 0.8rem;
  font-family: var(--lk-font-sans);
  color: var(--lk-primary);
}

.home-hero-chip small {
  font-size: 0.7rem;
  color: var(--lk-text-muted);
}

.home-hero-chip--memorial {
  top: 14%;
  left: 0;
}

.home-hero-chip--qr {
  bottom: 0;
  right: 0;
  animation-delay: 1.2s;
}

@keyframes home-chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* QR scan hint badge on image corner */
.home-hero-qr-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--lk-primary);
  color: #fff;
  padding: 8px 12px;
  border-radius: 11px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  border: 2px solid var(--lk-accent);
}

.home-hero-qr-badge i {
  font-size: 1.1rem;
  color: var(--lk-accent);
}

/* Large desktops — use more of the right column */
@media (min-width: 1200px) {
  .home-hero-showcase {
    max-width: 500px;
  }

  .home-hero-photo img {
    max-height: 440px;
  }
}

/* ─────────────────────────────────────────────────────────────
   TRUST BAR — sits slightly over hero bottom edge
   ───────────────────────────────────────────────────────────── */

.home-trust-bar {
  position: relative;
  z-index: 5;
  margin-top: -28px;
}

.home-trust-bar .lk-trust-strip {
  background: var(--lk-surface);
  border-radius: 16px;
  margin: 0 12px;
  box-shadow: var(--lk-shadow-lg);
  border: 1px solid var(--lk-border);
}

@media (min-width: 992px) {
  .home-trust-bar .lk-trust-strip {
    margin: 0 auto;
    max-width: calc(100% - 48px);
  }
}

/* ─────────────────────────────────────────────────────────────
   AUDIENCE PATHS — Families / Partners / Grave locator cards
   ───────────────────────────────────────────────────────────── */

.home-audience-paths {
  padding: 56px 0 48px;
  background: var(--lk-bg);
}

.home-audience-paths .lk-pillar-card {
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-audience-paths .lk-pillar-card:hover {
  border-color: rgba(253, 126, 20, 0.25);
}

/* ─────────────────────────────────────────────────────────────
   QR SURFACES — engraving ecosystem grid on homepage
   ───────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────
   PLATFORM BANNER — "We Power the Story…" (navy panel, white type)
   ───────────────────────────────────────────────────────────── */

.home-platform-banner .home-platform-banner-title,
.home-platform-banner h3 {
  color: #fff !important;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.home-platform-banner p {
  position: relative;
  z-index: 1;
}

.home-platform-banner .lk-button-row {
  position: relative;
  z-index: 1;
}

.home-platform-banner-icon {
  font-size: 7rem;
  opacity: 0.2;
  color: #fff;
}

.home-qr-surfaces .home-platform-banner {
  border-radius: 20px;
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────
   QR SURFACES — engraving ecosystem grid on homepage
   ───────────────────────────────────────────────────────────── */

.home-qr-surfaces .lk-engraving-banner {
  border-radius: 20px;
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────
   RECENT MEMORIALS — community grid (HTMX)
   ───────────────────────────────────────────────────────────── */

.home-recent-memorials {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.home-recent-memorials::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 126, 20, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.home-recent-memorials .lk-section-title h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--lk-primary);
}

.lk-recent-section-head {
  margin-bottom: 2.5rem;
}

.lk-recent-memorials-shell {
  min-height: 200px;
  position: relative;
}

.lk-recent-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 1rem;
  color: var(--lk-text-muted);
}

.lk-recent-loading.htmx-request {
  display: flex;
}

.lk-recent-section-foot {
  margin-top: 2.5rem;
  padding-top: 0.5rem;
}

/* Featured memorial — large card */
.lk-recent-featured {
  height: 100%;
  border-radius: var(--lk-radius-lg);
  overflow: hidden;
  box-shadow: var(--lk-shadow-lg);
  border: 1px solid var(--lk-border);
  background: var(--lk-surface);
  transition: transform var(--lk-transition), box-shadow var(--lk-transition);
}

.lk-recent-featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--lk-shadow-hover);
}

.lk-recent-featured-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.lk-recent-featured-media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 420px;
  overflow: hidden;
}

.lk-recent-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lk-recent-featured:hover .lk-recent-featured-media img {
  transform: scale(1.04);
}

.lk-recent-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(2, 66, 105, 0.75) 75%,
    rgba(2, 66, 105, 0.95) 100%
  );
}

.lk-recent-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lk-primary);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  box-shadow: var(--lk-shadow-sm);
}

.lk-recent-featured-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem 1.5rem 1.35rem;
}

.lk-recent-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lk-accent);
  margin-bottom: 0.35rem;
}

.lk-recent-featured .lk-recent-name,
.lk-recent-card .lk-recent-name {
  color: #fff;
  font-weight: 700;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

.lk-recent-featured .lk-recent-name {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.lk-recent-featured .lk-recent-dates {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  margin: 0 0 0.85rem;
}

.lk-recent-featured .lk-recent-dates i {
  color: var(--lk-accent);
  margin-right: 0.15rem;
}

.lk-recent-dates-sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.lk-recent-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: var(--lk-accent-text);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  transition: background var(--lk-transition);
}

.lk-recent-featured:hover .lk-recent-cta {
  background: var(--lk-accent-text-hover);
}

/* Grid cards */
.lk-recent-card {
  height: 100%;
  border-radius: var(--lk-radius);
  overflow: hidden;
  border: 1px solid var(--lk-border);
  background: var(--lk-surface);
  box-shadow: var(--lk-shadow);
  transition: transform var(--lk-transition), box-shadow var(--lk-transition);
}

.lk-recent-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lk-shadow-hover);
}

.lk-recent-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.lk-recent-card-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--lk-bg-alt);
}

.lk-recent-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.lk-recent-card:hover .lk-recent-card-media img {
  transform: scale(1.06);
}

.lk-recent-card-body {
  background: linear-gradient(135deg, var(--lk-primary) 0%, #0369a1 100%);
  padding: 0.9rem 1rem 1rem;
  text-align: center;
}

.lk-recent-card .lk-recent-name {
  font-size: 1rem;
}

.lk-recent-card .lk-recent-dates {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  margin: 0;
}

.lk-recent-side-empty {
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border-radius: var(--lk-radius-lg);
  border: 1px dashed var(--lk-border);
  background: rgba(255, 255, 255, 0.6);
  color: var(--lk-text-muted);
}

.lk-recent-side-empty i {
  font-size: 2rem;
  color: var(--lk-accent);
  margin-bottom: 0.75rem;
}

.lk-recent-empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: var(--lk-radius-lg);
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
  box-shadow: var(--lk-shadow);
}

.lk-recent-empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lk-accent-soft);
  color: var(--lk-accent);
  font-size: 2rem;
}

.lk-recent-empty h3 {
  color: var(--lk-primary);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.lk-recent-empty p {
  color: var(--lk-text-muted);
  max-width: 400px;
  margin: 0 auto 1.25rem;
}

@media (max-width: 991.98px) {
  .lk-recent-featured-media {
    max-height: 360px;
  }

  .lk-recent-section-foot .lk-btn-accent {
    margin-top: 0.75rem !important;
    margin-left: 0 !important;
  }

  .lk-recent-section-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   PARTNERS — funeral & tombstone vendor section
   ───────────────────────────────────────────────────────────── */

.home-partners-section .section-title h2 {
  color: var(--lk-primary);
}

.home-partners-section .partner-benefit-card {
  border-radius: 20px;
  border: 1px solid var(--lk-border);
  box-shadow: var(--lk-shadow-sm);
}

/* ─────────────────────────────────────────────────────────────
   LIVE JOURNEYS — featured carousel
   ───────────────────────────────────────────────────────────── */

.lk-badge--live {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.home-live-journeys {
  background: linear-gradient(180deg, #fff 0%, rgba(2, 66, 105, 0.03) 100%);
  overflow: hidden;
}

.home-live-journeys-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
}

.home-live-journeys-head .lk-section-title {
  flex: 1 1 420px;
  text-align: left;
}

.home-live-journeys-head .lk-section-title h2 {
  max-width: 16ch;
}

.home-live-journeys-lead {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--lk-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-live-journeys-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

.home-live-journeys-carousel-wrap {
  position: relative;
  padding: 0 0 2.5rem;
}

.home-live-journeys-swiper {
  overflow: visible;
  padding-bottom: 2.75rem;
}

.home-live-journeys-swiper .swiper-slide {
  height: auto;
}

.home-journey-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(2, 66, 105, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-journey-card:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 126, 20, 0.35);
  box-shadow: 0 16px 40px rgba(2, 66, 105, 0.12);
}

.home-journey-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 2.65;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(2, 66, 105, 0.06), rgba(253, 126, 20, 0.08));
}

.home-journey-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-journey-card:hover .home-journey-card-media img {
  transform: scale(1.04);
}

.home-journey-card-media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 4rem;
  color: rgba(2, 66, 105, 0.15);
}

.home-journey-card-live {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
}

.home-journey-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem 1.2rem;
}

.home-journey-card-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.home-journey-card-title a {
  color: var(--lk-primary);
  text-decoration: none;
}

.home-journey-card-title a:hover {
  color: var(--lk-accent);
}

.home-journey-card-meta {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lk-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.home-journey-card-excerpt {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--lk-text-muted);
  flex: 1;
}

.home-journey-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lk-accent);
  text-decoration: none;
}

.home-journey-card-link:hover {
  text-decoration: underline;
}

.home-journey-card--promo .home-journey-card-media--promo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 66, 105, 0.25) 100%);
  pointer-events: none;
}

.home-live-journeys-swiper .swiper-pagination {
  bottom: 0 !important;
}

.home-live-journeys-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(2, 66, 105, 0.2);
  opacity: 1;
}

.home-live-journeys-swiper .swiper-pagination-bullet-active {
  background: var(--lk-accent);
  width: 22px;
  border-radius: 999px;
}

.home-live-journeys-swiper .swiper-button-prev,
.home-live-journeys-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
  box-shadow: 0 4px 16px rgba(2, 66, 105, 0.1);
  color: var(--lk-primary);
}

.home-live-journeys-swiper .swiper-button-prev::after,
.home-live-journeys-swiper .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}

.home-live-journeys-swiper .swiper-button-prev:hover,
.home-live-journeys-swiper .swiper-button-next:hover {
  background: var(--lk-primary);
  color: #fff;
  border-color: var(--lk-primary);
}

.home-live-journeys-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lk-text-muted);
}

.home-live-journeys-features i {
  color: var(--lk-accent);
  margin-right: 0.25rem;
}

.home-audience-paths--four .col-md-6.col-xl-3 {
  display: flex;
}

.home-audience-paths--four .lk-pillar-card {
  width: 100%;
}

.lk-pillar-card--journey {
  border-color: rgba(34, 197, 94, 0.2);
  background: linear-gradient(165deg, rgba(34, 197, 94, 0.06), var(--lk-surface) 45%);
}

.lk-pillar-card--journey .lk-pillar-icon {
  color: #16a34a;
}

/* ─────────────────────────────────────────────────────────────
   LIVE JOURNEYS — public gallery page (commercial / emotional)
   ───────────────────────────────────────────────────────────── */

.lk-lj-page {
  background: var(--lk-bg);
  overflow-x: hidden;
}

/* Hero */
.lk-lj-hero {
  position: relative;
  padding: clamp(5.5rem, 12vw, 7rem) 0 clamp(2rem, 5vw, 3rem);
  min-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lk-lj-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.lk-lj-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.02);
}

.lk-lj-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(2, 66, 105, 0.5) 0%, rgba(2, 66, 105, 0.22) 36%, rgba(255, 255, 255, 0.35) 62%, rgba(240, 253, 244, 0.5) 100%),
    radial-gradient(ellipse 80% 60% at 90% 40%, rgba(34, 197, 94, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(253, 126, 20, 0.1), transparent 50%);
}

.lk-lj-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.lk-lj-hero-copy {
  max-width: 36rem;
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 40px rgba(2, 66, 105, 0.1);
}

.lk-lj-hero-title {
  margin: 0.5rem 0 1rem;
  font-family: var(--lk-font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--lk-primary);
}

.lk-lj-hero-title-line {
  display: block;
}

.lk-lj-hero-title-em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: #15803d;
  margin-top: 0.15rem;
}

.lk-lj-hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  color: var(--lk-text-muted);
  margin-bottom: 1.5rem;
}

.lk-lj-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.lk-lj-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lk-text-muted);
}

.lk-lj-hero-trust i {
  color: #16a34a;
  margin-right: 0.2rem;
}

.lk-lj-hero-stat {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 1.5rem auto 0;
  font-size: 0.88rem;
  color: var(--lk-text-muted);
}

.lk-lj-hero-stat strong {
  color: var(--lk-primary);
  font-size: 1.05rem;
}

/* Spotlight card (hero) */
.lk-lj-spotlight-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--lk-surface);
  border-radius: 22px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(2, 66, 105, 0.04),
    0 24px 48px rgba(2, 66, 105, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lk-lj-spotlight-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 8px 12px rgba(2, 66, 105, 0.06),
    0 32px 56px rgba(22, 163, 74, 0.14);
}

.lk-lj-spotlight-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(2, 66, 105, 0.08), rgba(34, 197, 94, 0.1));
}

.lk-lj-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lk-lj-spotlight-card:hover .lk-lj-spotlight-media img {
  transform: scale(1.05);
}

.lk-lj-spotlight-media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 4rem;
  color: rgba(34, 197, 94, 0.35);
}

.lk-lj-spotlight-live {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #15803d, #22c55e);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
}

.lk-lj-spotlight-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.lk-lj-spotlight-label {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #16a34a;
}

.lk-lj-spotlight-title {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lk-primary);
  line-height: 1.3;
}

.lk-lj-spotlight-card--static .lk-lj-spotlight-title {
  font-family: var(--lk-font-serif, 'Cormorant Garamond', Georgia, serif);
  font-weight: 600;
}

.lk-lj-spotlight-meta {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lk-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lk-lj-spotlight-excerpt {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--lk-text-muted);
}

.lk-lj-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lk-accent);
}

.lk-lj-spotlight-card:hover .lk-lj-spotlight-cta {
  text-decoration: underline;
}

a.lk-lj-spotlight-cta {
  text-decoration: none;
}

a.lk-lj-spotlight-cta:hover {
  color: var(--lk-accent-hover, #e8590c);
}

/* Quote band */
.lk-lj-quote {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
}

.lk-lj-quote-inner {
  margin: 0 auto;
  max-width: 40rem;
  text-align: center;
  border: none;
  padding: 0;
}

.lk-lj-quote-icon {
  display: block;
  font-size: 2.5rem;
  color: rgba(34, 197, 94, 0.35);
  margin-bottom: 0.75rem;
}

.lk-lj-quote-inner p {
  font-family: var(--lk-font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--lk-primary);
  margin-bottom: 1rem;
}

.lk-lj-quote-inner footer {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lk-text-muted);
  font-style: normal;
}

/* Why pillars */
.lk-lj-why-lead {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--lk-text-muted);
}

.lk-lj-pillar {
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
  box-shadow: 0 8px 28px rgba(2, 66, 105, 0.05);
  transition: border-color 0.3s, transform 0.3s;
}

.lk-lj-pillar:hover {
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-3px);
}

.lk-lj-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.lk-lj-pillar h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--lk-primary);
  margin-bottom: 0.5rem;
}

.lk-lj-pillar p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--lk-text-muted);
}

/* Gallery */
.lk-lj-gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.lk-lj-gallery-lead {
  max-width: 32rem;
  margin: 0.5rem 0 0;
  color: var(--lk-text-muted);
  font-size: 0.95rem;
}

.lk-lj-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.35rem;
}

.lk-lj-card {
  display: flex;
  flex-direction: column;
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(2, 66, 105, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
}

.lk-lj-card:hover {
  transform: translateY(-5px);
  border-color: rgba(253, 126, 20, 0.28);
  box-shadow: 0 18px 40px rgba(2, 66, 105, 0.11);
}

.lk-lj-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(2, 66, 105, 0.05), rgba(34, 197, 94, 0.08));
}

.lk-lj-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lk-lj-card:hover .lk-lj-card-media img {
  transform: scale(1.05);
}

.lk-lj-card-media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 3.5rem;
  color: rgba(2, 66, 105, 0.12);
}

.lk-lj-card-live {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.lk-lj-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.2rem;
  gap: 0.4rem;
}

.lk-lj-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.lk-lj-card-title a {
  color: var(--lk-primary);
  text-decoration: none;
}

.lk-lj-card-title a:hover {
  color: var(--lk-accent);
}

.lk-lj-card-meta {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lk-text-muted);
}

.lk-lj-card-excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--lk-text-muted);
}

.lk-lj-card-excerpt--muted {
  font-style: italic;
  opacity: 0.85;
}

.lk-lj-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lk-accent);
  text-decoration: none;
}

.lk-lj-card-link:hover {
  text-decoration: underline;
}

.lk-lj-gallery-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--lk-text-muted);
}

/* Empty state */
.lk-lj-empty {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(34, 197, 94, 0.06), var(--lk-surface) 50%);
  border: 1px dashed rgba(34, 197, 94, 0.35);
}

.lk-lj-empty-visual {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.lk-lj-empty-card {
  flex: 1 1 140px;
  max-width: 160px;
  padding: 1rem 0.85rem;
  border-radius: 14px;
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
  box-shadow: 0 4px 16px rgba(2, 66, 105, 0.06);
}

.lk-lj-empty-card i {
  display: block;
  font-size: 1.5rem;
  color: #16a34a;
  margin-bottom: 0.5rem;
}

.lk-lj-empty-card strong {
  display: block;
  font-size: 0.82rem;
  color: var(--lk-primary);
  margin-bottom: 0.2rem;
}

.lk-lj-empty-card span {
  font-size: 0.68rem;
  color: var(--lk-text-muted);
}

.lk-lj-empty h2 {
  color: var(--lk-primary);
  margin-bottom: 0.75rem;
}

.lk-lj-empty p {
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  color: var(--lk-text-muted);
  line-height: 1.6;
}

/* Steps */
.lk-lj-steps-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 52rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lk-lj-steps-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.lk-lj-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
}

.lk-lj-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--lk-primary), #0369a1);
}

.lk-lj-step h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--lk-primary);
  margin: 0 0 0.35rem;
}

.lk-lj-step p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--lk-text-muted);
}

/* Promise — same link for journey → memorial */
.lk-lj-promise {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.lk-lj-promise-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.35rem);
  border-radius: 24px;
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
  box-shadow: 0 16px 48px rgba(2, 66, 105, 0.08);
}

.lk-lj-promise-copy h2 {
  color: var(--lk-primary);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 800;
  margin: 0.65rem 0 0.85rem;
  line-height: 1.2;
}

.lk-lj-promise-copy p {
  color: var(--lk-text-muted);
  line-height: 1.65;
  margin-bottom: 1.15rem;
  max-width: 34rem;
  font-size: 0.95rem;
}

.lk-lj-promise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lk-lj-promise-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.lk-lj-promise-flow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 22rem;
}

.lk-lj-promise-card {
  flex: 1;
  min-width: 0;
  padding: 1.1rem 0.85rem;
  border-radius: 16px;
  text-align: center;
  background: var(--lk-bg-alt);
  border: 1px solid var(--lk-border);
}

.lk-lj-promise-card i {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.4rem;
}

.lk-lj-promise-card span {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--lk-text-muted);
}

.lk-lj-promise-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--lk-primary);
  margin-top: 0.2rem;
  line-height: 1.3;
}

.lk-lj-promise-card--live {
  border-color: rgba(34, 197, 94, 0.35);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.08), var(--lk-bg-alt));
}

.lk-lj-promise-card--live i { color: #16a34a; }

.lk-lj-promise-card--memorial {
  border-color: rgba(253, 126, 20, 0.3);
  background: linear-gradient(180deg, rgba(253, 126, 20, 0.06), var(--lk-bg-alt));
}

.lk-lj-promise-card--memorial i { color: var(--lk-accent); }

.lk-lj-promise-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--lk-primary);
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
  box-shadow: 0 2px 8px rgba(2, 66, 105, 0.08);
}

/* Final CTA */
.lk-lj-final-cta {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.lk-lj-final-cta-inner {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(253, 126, 20, 0.08) 0%, rgba(34, 197, 94, 0.06) 100%),
    var(--lk-surface);
  border: 1px solid var(--lk-border);
  box-shadow: 0 12px 40px rgba(2, 66, 105, 0.08);
}

.lk-lj-final-cta-inner h2 {
  font-family: var(--lk-font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--lk-primary);
  max-width: 28rem;
  margin: 0 auto 1rem;
  line-height: 1.2;
}

.lk-lj-final-cta-inner > p {
  max-width: 30rem;
  margin: 0 auto 1.5rem;
  color: var(--lk-text-muted);
  line-height: 1.6;
}

.lk-lj-final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 991.98px) {
  .lk-lj-hero-inner {
    grid-template-columns: 1fr;
  }

  .lk-lj-hero-spotlight {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .lk-lj-promise-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lk-lj-promise-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .lk-lj-promise-actions {
    justify-content: center;
  }

  .lk-lj-promise-flow {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .lk-lj-hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .lk-lj-hero-bg-overlay {
    background: linear-gradient(180deg, rgba(2, 66, 105, 0.4) 0%, rgba(255, 255, 255, 0.5) 100%);
  }

  .lk-lj-hero-copy {
    background: rgba(255, 255, 255, 0.92);
  }

  .lk-lj-gallery-head {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 991.98px) {
  .home-live-journeys-head {
    flex-direction: column;
    align-items: stretch;
  }

  .home-live-journeys-head .lk-section-title h2 {
    max-width: none;
  }

  .home-live-journeys-swiper .swiper-button-prev,
  .home-live-journeys-swiper .swiper-button-next {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */

@media (max-width: 991.98px) {
  .home-hero {
    min-height: auto;
    padding: 84px 0 40px;
  }

  .home-hero-color-overlay {
    background: linear-gradient(
      180deg,
      rgba(2, 66, 105, 0.45) 0%,
      rgba(255, 255, 255, 0.35) 45%,
      transparent 100%
    );
  }

  .home-hero-copy-panel {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }

  .home-hero-headline {
    align-items: flex-start;
  }

  .home-hero-buttons,
  .home-hero-stats {
    justify-content: flex-start;
  }

  .home-hero-showcase-col {
    justify-content: center;
  }

  .home-hero-showcase {
    max-width: 340px;
    margin: 20px auto 0;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 24px;
  }

  .home-hero-photo img {
    max-height: 320px;
    min-height: 240px;
  }

  .home-hero-chip {
    white-space: normal;
    max-width: calc(100% - 8px);
  }

  .home-hero-chip--memorial {
    top: 10%;
    left: 4px;
  }

  .home-hero-chip--qr {
    bottom: 4px;
    right: 4px;
  }

  .home-trust-bar {
    margin-top: 0;
  }

  .home-trust-bar .lk-trust-strip {
    border-radius: 0;
    margin: 0;
  }
}

@media (max-width: 575.98px) {
  .home-hero-stat-card {
    flex: 1 1 calc(50% - 8px);
  }

  .home-hero-chip {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .home-hero-chip--memorial {
    top: 8%;
    left: 0;
  }

  .home-hero-chip--qr {
    bottom: 0;
    right: 0;
  }
}

/* Override legacy hero classes when both present */
body.lk-public .home-hero.lk-hero,
body.lk-public .home-hero.lk-hero-pro {
  background: transparent !important;
  min-height: clamp(420px, 72vh, 720px) !important;
}

body.lk-public .home-hero .lk-hero-bg {
  display: none;
}

/* ─────────────────────────────────────────────────────────────
   PUBLIC LIFE PROFILE — /life/<id>/ (modern / social)
   ───────────────────────────────────────────────────────────── */

.lk-lp-page--modern {
  --lk-lp-ring: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  background: var(--lk-bg);
  padding-bottom: 3rem;
}

.lk-lp-page--live.lk-lp-page--modern {
  --lk-lp-ring: linear-gradient(135deg, #6b9080, var(--lk-sage), #3f6f5b, var(--lk-teal));
}

.lk-lp-cover {
  position: relative;
  height: clamp(160px, 28vw, 240px);
  overflow: hidden;
  background: linear-gradient(135deg, var(--lk-primary) 0%, #0369a1 50%, rgba(253, 126, 20, 0.35) 100%);
}

.lk-lp-page--live .lk-lp-cover {
  background: linear-gradient(135deg, #2f5546 0%, var(--lk-sage) 45%, rgba(253, 126, 20, 0.22) 100%);
}

.lk-lp-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.08);
  filter: blur(6px) saturate(1.1);
}

.lk-lp-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 66, 105, 0.35) 0%, rgba(2, 66, 105, 0.15) 50%, var(--lk-bg) 100%);
}

.lk-lp-page--live .lk-lp-cover-shade {
  background: linear-gradient(180deg, rgba(79, 124, 106, 0.45) 0%, rgba(79, 124, 106, 0.15) 50%, var(--lk-bg) 100%);
}

.lk-lp-shell {
  position: relative;
  max-width: 935px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.lk-lp-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: -2.75rem 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lk-primary);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--lk-border);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(2, 66, 105, 0.1);
  position: relative;
  z-index: 2;
}

.lk-lp-back:hover {
  color: var(--lk-accent);
}

.lk-lp-profile {
  margin-bottom: 1rem;
}

.lk-lp-profile-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 4vw, 2rem);
  align-items: start;
}

.lk-lp-avatar-ring {
  padding: 3px;
  border-radius: 50%;
  background: var(--lk-lp-ring);
  flex-shrink: 0;
  margin-top: -3.5rem;
  box-shadow: 0 12px 32px rgba(2, 66, 105, 0.18);
}

.lk-lp-avatar {
  display: block;
  width: clamp(96px, 22vw, 150px);
  height: clamp(96px, 22vw, 150px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  background: var(--lk-surface);
}

.lk-lp-avatar--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--lk-text-muted);
  background: var(--lk-bg-alt);
}

.lk-lp-profile-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.25rem;
}

.lk-lp-handle {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lk-primary);
  line-height: 1.15;
}

.lk-lp-status {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lk-lp-status--live {
  color: #fff;
  background: linear-gradient(135deg, #15803d, #22c55e);
}

.lk-lp-status--memorial {
  color: #fff;
  background: linear-gradient(135deg, var(--lk-primary), #0369a1);
}

.lk-lp-fullname {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--lk-text-muted);
}

.lk-lp-rel {
  font-weight: 500;
}

.lk-lp-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.lk-lp-stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 3.5rem;
}

.lk-lp-stats strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--lk-primary);
  line-height: 1.1;
}

.lk-lp-stats span {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lk-text-muted);
}

.lk-lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.lk-lp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 36px;
  padding: 0.4rem 0.95rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--lk-border);
  background: var(--lk-surface);
  color: var(--lk-primary);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex: 1 1 auto;
  max-width: 140px;
}

.lk-lp-action:hover {
  background: var(--lk-bg-alt);
  color: var(--lk-primary);
}

.lk-lp-action--primary {
  color: #fff;
  background: linear-gradient(135deg, #e8590c, var(--lk-accent));
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(253, 126, 20, 0.3);
}

.lk-lp-action--primary:hover {
  color: #fff;
  transform: translateY(-1px);
}

.lk-lp-bio {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--lk-border);
}

.lk-lp-bio-tag {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #16a34a;
}

.lk-lp-bio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0 0 0.55rem;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--lk-text-muted);
}

.lk-lp-bio-meta i {
  margin-right: 0.2rem;
  opacity: 0.85;
}

.lk-lp-bio-meta--live {
  color: #15803d;
  font-weight: 600;
}

.lk-lp-bio-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--lk-text);
}

.lk-lp-bio-text--muted {
  color: var(--lk-text-muted);
  font-style: italic;
}

.lk-lp-public-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--lk-text-muted);
  background: var(--lk-bg-alt);
}

.lk-lp-public-badge i {
  color: var(--lk-primary);
}

.lk-lp-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--lk-border);
  border-bottom: 1px solid var(--lk-border);
}

.lk-lp-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 48px;
  padding: 0.5rem 0.35rem;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lk-text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.lk-lp-tab i {
  font-size: 1.05rem;
}

.lk-lp-tab.is-active {
  color: var(--lk-primary);
  border-bottom-color: var(--lk-primary);
}

.lk-lp-page--live .lk-lp-tab.is-active {
  border-bottom-color: #16a34a;
  color: #15803d;
}

.lk-lp-panels {
  min-height: 200px;
}

.lk-lp-panel {
  padding: 1.25rem 0 0;
  animation: lk-lp-fade 0.35s ease;
}

.lk-lp-panel.is-active {
  display: block;
}

@keyframes lk-lp-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.lk-lp-panel-note {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lk-text-muted);
  text-align: center;
}

.lk-lp-story-card {
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
}

.lk-lp-page--live .lk-lp-story-card {
  border-color: rgba(34, 197, 94, 0.2);
  background: linear-gradient(165deg, rgba(34, 197, 94, 0.05), var(--lk-surface) 45%);
}

.lk-lp-story-kicker {
  margin: 0 0 0.85rem;
  font-family: var(--lk-font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lk-primary);
}

.lk-lp-prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--lk-text);
}

.lk-lp-prose p:last-child {
  margin-bottom: 0;
}

.lk-lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border-radius: 4px;
  overflow: hidden;
}

.lk-lp-grid-cell {
  position: relative;
  padding: 0;
  border: none;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--lk-bg-alt);
}

.lk-lp-grid-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.lk-lp-grid-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 66, 105, 0.45);
  color: #fff;
  font-size: 1.35rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lk-lp-grid-cell:hover img {
  transform: scale(1.05);
}

.lk-lp-grid-cell:hover .lk-lp-grid-hover {
  opacity: 1;
}

.lk-lp-reels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
}

.lk-lp-reel {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--lk-border);
}

.lk-lp-reel video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  max-height: 420px;
}

.lk-lp-reel figcaption {
  padding: 0.5rem 0.65rem;
  font-size: 0.75rem;
  background: var(--lk-surface);
  color: var(--lk-text-muted);
}

.lk-lp-comments {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--lk-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--lk-surface);
}

.lk-lp-comment {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--lk-border);
}

.lk-lp-comment:last-child {
  border-bottom: none;
}

.lk-lp-comment-avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--lk-primary), #0369a1);
}

.lk-lp-page--live .lk-lp-comment-avatar {
  background: linear-gradient(135deg, #15803d, #22c55e);
}

.lk-lp-comment-author {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lk-primary);
}

.lk-lp-comment-author time {
  margin-left: 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--lk-text-muted);
}

.lk-lp-comment-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--lk-text);
}

.lk-lp-candle-row {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lk-lp-candle-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(253, 126, 20, 0.08), var(--lk-surface));
  border: 1px solid rgba(253, 126, 20, 0.2);
  flex: 1 1 200px;
}

.lk-lp-candle-chip i {
  color: var(--lk-accent);
  margin-top: 0.1rem;
}

.lk-lp-candle-chip p {
  margin: 0 0 0.15rem;
  font-size: 0.82rem;
}

.lk-lp-candle-chip time {
  font-size: 0.68rem;
  color: var(--lk-text-muted);
}

.lk-lp-panel--empty,
.lk-lp-empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
}

.lk-lp-empty-state i {
  font-size: 2rem;
  color: var(--lk-text-muted);
  display: block;
  margin-bottom: 0.65rem;
}

.lk-lp-empty-state h2 {
  font-size: 1.1rem;
  color: var(--lk-primary);
  margin-bottom: 0.45rem;
}

.lk-lp-empty-state p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--lk-text-muted);
  max-width: 22rem;
  margin-inline: auto;
}

.lk-lp-footer-cta {
  margin-top: 2.5rem;
}

.lk-lp-footer-cta-inner {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(2, 66, 105, 0.04), rgba(253, 126, 20, 0.05));
  border: 1px solid var(--lk-border);
}

.lk-lp-footer-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lk-accent);
}

.lk-lp-footer-cta-inner h2 {
  margin: 0 0 0.45rem;
  font-family: var(--lk-font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 600;
  color: var(--lk-primary);
}

.lk-lp-footer-cta-inner > p {
  margin: 0 auto 1rem;
  max-width: 26rem;
  font-size: 0.88rem;
  color: var(--lk-text-muted);
  line-height: 1.55;
}

.lk-lp-footer-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.lk-lp-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: var(--lk-primary);
  box-shadow: 0 8px 24px rgba(2, 66, 105, 0.25);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 1080;
  pointer-events: none;
}

.lk-lp-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.lk-lp-modal-photo {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 8px;
}

.lk-lp-qr-img {
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .lk-lp-profile-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lk-lp-avatar-ring {
    margin: -3.5rem auto 0;
  }

  .lk-lp-profile-head,
  .lk-lp-stats,
  .lk-lp-actions {
    justify-content: center;
  }

  .lk-lp-stats li {
    align-items: center;
  }

  .lk-lp-actions {
    width: 100%;
  }

  .lk-lp-action {
    max-width: none;
    flex: 1 1 calc(50% - 0.25rem);
  }

  .lk-lp-bio-meta {
    justify-content: center;
  }

  .lk-lp-tab span {
    display: none;
  }

  .lk-lp-tab {
    min-height: 44px;
  }
}

@media (max-width: 575.98px) {
  .lk-lp-back {
    margin-top: -2.25rem;
  }

  .lk-lp-reels {
    grid-template-columns: 1fr 1fr;
  }
}

/* Live Journeys — directory search & pagination */
.lk-lj-directory {
  scroll-margin-top: 5rem;
}

.lk-lj-hero--compact {
  padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.lk-lj-hero--compact .lk-lj-hero-lead {
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.lk-lj-community-primary {
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(180deg, var(--lk-bg-alt) 0%, var(--lk-bg) 100%);
  border-bottom: 1px solid var(--lk-border);
  scroll-margin-top: 4.5rem;
}

.lk-lj-community-top {
  margin-bottom: 1.25rem;
}

.lk-lj-directory-head--community {
  align-items: flex-start;
  margin-bottom: 1rem;
}

.lk-lj-community-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lk-lj-community-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lk-primary);
  background: rgba(2, 66, 105, 0.07);
  border: 1px solid rgba(2, 66, 105, 0.12);
}

.lk-lj-community-count-pill strong {
  font-size: 0.95rem;
}

.lk-badge--community {
  background: rgba(2, 66, 105, 0.08);
  color: var(--lk-primary);
  border: 1px solid rgba(2, 66, 105, 0.12);
}

.lk-lj-search--prominent {
  position: sticky;
  top: 72px;
  z-index: 20;
  margin-bottom: 0;
  box-shadow: 0 8px 24px rgba(2, 66, 105, 0.08);
}

.lk-lj-directory-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.lk-lj-search {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.65rem;
  border-radius: 16px;
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
  box-shadow: 0 4px 16px rgba(2, 66, 105, 0.05);
}

.lk-lj-search-field {
  flex: 1 1 12rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  min-height: 44px;
  border-radius: 999px;
  background: var(--lk-bg-alt);
  border: 1px solid var(--lk-border);
}

.lk-lj-search-field i {
  color: var(--lk-text-muted);
  flex-shrink: 0;
}

.lk-lj-search-field input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  outline: none;
}

.lk-lj-search-btn {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 1.15rem;
  border: none;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #e8590c, var(--lk-accent));
  box-shadow: 0 2px 10px rgba(253, 126, 20, 0.3);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lk-lj-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(253, 126, 20, 0.4);
}

.lk-lj-search-clear {
  align-self: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lk-text-muted);
  text-decoration: none;
  padding: 0.5rem 0.65rem;
}

.lk-lj-search-clear:hover {
  color: var(--lk-accent);
}

.lk-lj-directory-count {
  font-size: 0.85rem;
  color: var(--lk-text-muted);
  margin-bottom: 1.25rem;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  background: var(--lk-bg-alt);
  border: 1px solid var(--lk-border);
  display: inline-block;
}

.lk-lj-directory-count strong {
  color: var(--lk-primary);
}

.lk-lj-card-featured {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.22rem 0.5rem;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #c2410c;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(253, 126, 20, 0.3);
}

.lk-lj-search-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 18px;
  border: 1px dashed var(--lk-border);
  background: var(--lk-surface);
}

.lk-lj-search-empty i {
  font-size: 2rem;
  color: var(--lk-text-muted);
  display: block;
  margin-bottom: 0.75rem;
}

.lk-lj-pagination {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lk-border);
}

.lk-lj-pagination-meta {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lk-text-muted);
}

.lk-lj-pagination-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.lk-lj-page-nums {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lk-lj-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lk-primary);
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.lk-lj-page-num:hover {
  border-color: rgba(253, 126, 20, 0.4);
  background: rgba(253, 126, 20, 0.06);
}

.lk-lj-page-num--current {
  color: #fff;
  background: var(--lk-accent-text);
  border-color: var(--lk-accent);
  pointer-events: none;
}

.lk-lj-page-ellipsis {
  padding: 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lk-text-muted);
}

.lk-lj-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 40px;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lk-primary);
  background: var(--lk-surface);
  border: 1px solid var(--lk-border);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.lk-lj-page-btn:hover {
  box-shadow: 0 4px 14px rgba(2, 66, 105, 0.12);
  transform: translateY(-1px);
}

.lk-lj-page-btn--disabled {
  opacity: 0.4;
  pointer-events: none;
}

.lk-lj-page-status {
  margin: 0;
  font-size: 0.88rem;
  color: var(--lk-text-muted);
}

/* Mobile polish — Live Journeys + public profile */
@media (max-width: 767.98px) {
  .lk-lj-hero-inner {
    grid-template-columns: 1fr;
  }

  .lk-lj-hero-copy {
    max-width: none;
    text-align: center;
  }

  .lk-lj-hero-actions {
    justify-content: center;
  }

  .lk-lj-hero-trust {
    justify-content: center;
  }

  .lk-lj-hero-spotlight {
    max-width: none;
    width: 100%;
  }

  .lk-lj-hero-actions .lk-btn-md {
    width: 100%;
    justify-content: center;
  }

  .lk-lj-search {
    flex-direction: column;
    gap: 0.6rem;
  }

  .lk-lj-search-field {
    width: 100%;
    flex: none;
  }

  .lk-lj-search-btn {
    width: 100%;
    min-height: 46px;
    font-size: 0.9rem;
  }

  .lk-lj-search-clear {
    width: 100%;
    text-align: center;
    padding: 0.35rem 0;
  }

  .lk-lj-search--prominent {
    top: 64px;
  }

  .lk-lj-community-actions {
    width: 100%;
    justify-content: space-between;
  }

  .lk-lj-directory-head--community {
    flex-direction: column;
    align-items: stretch;
  }

  .lk-lj-gallery-grid {
    grid-template-columns: 1fr;
  }

  .lk-lj-steps-list {
    grid-template-columns: 1fr;
  }

  .lk-lj-final-cta-btns .lk-btn-md {
    width: 100%;
    justify-content: center;
  }

  .lk-lj-promise-flow {
    flex-direction: column;
    max-width: 14rem;
    margin: 0 auto;
  }

  .lk-lj-promise-arrow {
    transform: rotate(90deg);
  }

  .lk-lj-page-btn span {
    display: inline !important;
  }
}

@media (max-width: 575.98px) {
  .lk-lj-quote-inner p {
    font-size: 1.2rem;
  }

  .lk-lj-promise-inner {
    padding: 1.35rem 1rem;
  }
}


/* ── Homepage sections (how-it-works, partners, video demo, etc.) ── */
/* How It Works Section Styles */
.how-it-works-section {
  padding: 100px 0;
  background: transparent;
}

.steps-container {
  margin: 4rem 0;
}

.step-card {
  background: #ffffff !important;
  padding: 2.5rem 2rem !important;
  border-radius: 20px !important;
  text-align: center;
  box-shadow: 0 4px 24px rgba(2, 66, 105, 0.08) !important;
  border: 1px solid rgba(2, 66, 105, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(2, 66, 105, 0.12) !important;
}

.step-icon {
  font-size: 3rem !important;
  color: #fd7e14 !important;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  color: #024269 !important;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-card p {
  color: #64748b !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-features {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tag {
  background: #ecf0f1;
  color: #2c3e50;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.process-cta {
  background: linear-gradient(135deg, #024269 0%, #fd7e14 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  margin-top: 2rem;
}

.process-cta h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Hero CTA Styles */
.hero-cta {
  margin: 2rem 0;
}

.hero-cta .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
}

.cta-note {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 80px 0;
}

.final-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.final-cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-final {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-buttons-final .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
}

.cta-guarantee {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* Portrait Gallery Section - Matching Events Section Style */
.portrait-gallery {
    padding: 80px 0;
    background: #f8f9fa00;
}

.portrait-type-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.portrait-type-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #024269, #0278ae);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.portrait-type-card h3 {
    color: #024269;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.portrait-type-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.capacity {
    display: inline-block;
    background: #e9ecef;
    color: #024269;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Gallery Showcase */
.gallery-showcase {
    margin: 60px 0;
}

.main-image {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 190px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.portrait-cta {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.portrait-cta h3 {
    color: #024269;
    margin-bottom: 10px;
}

.portrait-cta p {
    color: #666;
    margin-bottom: 0;
}

.btn-reserve {
    display: inline-block;
    padding: 12px 30px;
    background: var(--lk-accent-text);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background: #e57112;
    color: white;
    transform: translateY(-2px);
}

/* Featured Portraits */
.featured-portraits h3 {
    color: #fd7e14;
    margin-bottom: 30px;
    text-align: center;
}

.featured-portrait-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.featured-portrait-card:hover {
    transform: translateY(-5px);
}

.portrait-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--lk-accent-text);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

.portrait-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
}

.portrait-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
}

.portrait-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portrait-image {
    height: 200px;
    overflow: hidden;
}

.portrait-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portrait-info h4 {
    color: #fd7e14;
    margin-bottom: 15px;
}

.portrait-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.portrait-meta li {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.portrait-meta i {
    color: #fd7e14;
    margin-right: 8px;
}

.portrait-info p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-details {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: #024269;
    text-decoration: none;
    border: 2px solid #024269;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-details:hover {
    background: #024269;
    color: white;
}

/* NEW: QR Scan Section Styles */
.qr-scan-section {
    padding: 80px 0;
}

.qr-image-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: inline-block;
}

.qr-code-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border: 2px solid #024269;
    padding: 10px;
    background: white;
}

.qr-instructions {
    padding: 20px;
}

.qr-instructions h3 {
    color: #024269;
    margin-bottom: 30px;
    font-weight: 600;
}

.steps-list {
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #024269;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h5 {
    color: #024269;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.app-download-links .btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-download-links .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.qr-note .alert {
    border-radius: 8px;
    border-left: 4px solid #fd7e14;
}

.qr-note .bi-info-circle {
    color: #fd7e14;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portrait-gallery {
        padding: 40px 0;
    }
    
    .portrait-type-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .main-image {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .portrait-cta {
        padding: 30px 20px;
        text-align: center;
    }
    
    .portrait-cta .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .featured-portrait-card {
        margin-bottom: 20px;
    }
    
    /* QR Section Mobile */
    .qr-scan-section {
        padding: 60px 0;
    }
    
    .qr-image-container {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .qr-code-image {
        max-width: 250px;
    }
    
    .step-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .app-download-links {
        text-align: center;
    }
    
    .app-download-links .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .app-download-links .btn:last-child {
        margin-bottom: 0;
    }
}

/* NEW CSS ADDITIONS ONLY - Video Demo Section */
.video-demo-wrapper {
    margin: 4rem 0;
    padding: 2rem;
    border-radius: 15px;
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.demo-tab-btn {
    background: white;
    border: 2px solid #dee2e6;
    padding: 10px 20px;
    font-weight: 600;
    color: #024269;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.demo-tab-btn:hover,
.demo-tab-btn.active {
    background: #024269;
    color: white;
    border-color: #024269;
    transform: translateY(-2px);
}

.video-content {
    background: #024269;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    margin-bottom: 1.5rem;
    height: 400px; /* Fixed height */
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills container */
    display: block;
    border-radius: 10px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(253, 126, 20, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: rgba(253, 126, 20, 1);
    transform: scale(1.1);
}

.video-info h4 {
    color: #024269;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.video-info p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.note-box {
    background: #fff3e0;
    border-left: 4px solid #fd7e14;
    padding: 15px;
    margin-top: 15px;
    border-radius: 0 8px 8px 0;
}

.note-box p {
    margin: 0;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.note-box i {
    color: #fd7e14;
    font-size: 1.2rem;
}

/* Enhanced Image Hover Effects */
.gallery-showcase .main-image,
.gallery-showcase .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-showcase .main-image img,
.gallery-showcase .gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-showcase .main-image:hover img {
    transform: scale(1.05);
}

.gallery-showcase .gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .video-demo-wrapper {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
    
    .demo-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .video-wrapper {
        height: 290px; /* Smaller fixed height on mobile */
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .video-wrapper {
        height: 350px; /* Medium height for tablets */
    }
}

/* Funeral Partners Section Styles */
.funeral-partners-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.funeral-partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #024269 0%, #fd7e14 100%);
}

.section-title h2 {
  color: #024269;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title .lead {
  color: #666;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Partner Benefit Cards */
.partner-benefit-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(2, 66, 105, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.partner-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #024269 0%, #fd7e14 100%);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #024269, #0278ae);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 2rem;
}

.partner-benefit-card h3 {
  color: #024269;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.partner-benefit-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.partner-benefit-card p strong {
  color: #024269;
}

.partner-benefit-card p em {
  color: #fd7e14;
  font-style: normal;
  font-weight: 600;
}

/* Benefit List */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.benefit-list li {
  padding: 0.5rem 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefit-list li i {
  color: #fd7e14;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.benefit-list li strong {
  color: #024269;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, rgba(2, 66, 105, 0.05), rgba(253, 126, 20, 0.05));
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(2, 66, 105, 0.1);
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info i {
  font-size: 1.5rem;
  color: #024269;
  margin-top: 5px;
}

.contact-info strong {
  color: #024269;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-info p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #024269;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex: 1;
  border: 2px solid #024269;
}

.btn-call:hover {
  background: #013152;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 66, 105, 0.2);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex: 1;
  border: 2px solid #25D366;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.phone-number {
  color: #024269;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  text-align: center;
}

/* Testimonial */
.partner-testimonial {
  margin: 3rem 0;
}

.testimonial-content {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  border: 1px solid rgba(2, 66, 105, 0.1);
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: rgba(253, 126, 20, 0.2);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-left: 2.5rem;
}

.testimonial-author {
  padding-left: 2.5rem;
}

.testimonial-author strong {
  color: #024269;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #666;
  font-size: 0.95rem;
}

/* Final CTA */
.partner-cta-final {
  margin-top: 3rem;
}

.cta-content {
  background: linear-gradient(135deg, #024269 0%, #0278ae 100%);
  border-radius: 15px;
  padding: 3rem;
  color: white;
  box-shadow: 0 15px 35px rgba(2, 66, 105, 0.2);
}

.cta-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
}

.quick-contact {
  text-align: left;
}

.quick-contact p {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.quick-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.btn-call-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex: 1;
}

.btn-call-small:hover {
  background: white;
  color: #024269;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25D366;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid #25D366;
  flex: 1;
}

.btn-whatsapp-small:hover {
  background: #1da851;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.quick-contact .phone-number {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.quick-contact small {
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Mobile margin adjustments */
@media (max-width: 768px) {
  .steps-container {
    margin: 2rem 0 4rem 0 !important;
  }
  
  .portrait-gallery {
    margin-bottom: 2rem;
  }
  
  .funeral-partners-section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-title .lead {
    font-size: 1.1rem;
  }
  
  .partner-benefit-card {
    padding: 2rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .partner-benefit-card h3 {
    font-size: 1.3rem;
  }
  
  .contact-info {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .contact-info i {
    font-size: 1.8rem;
  }
  
  .contact-buttons {
    flex-direction: column;
  }
  
  .btn-call,
  .btn-whatsapp {
    width: 100%;
  }
  
  .testimonial-content {
    padding: 2rem;
  }
  
  .testimonial-text,
  .testimonial-author {
    padding-left: 2rem;
  }
  
  .cta-content {
    padding: 2rem;
    text-align: center;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content .text-lg-end {
    text-align: center !important;
    margin-top: 1.5rem;
  }
  
  .quick-contact {
    text-align: center;
  }
  
  .quick-buttons {
    flex-direction: column;
  }
  
  .btn-call-small,
  .btn-whatsapp-small {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .btn-call,
  .btn-whatsapp,
  .btn-call-small,
  .btn-whatsapp-small {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
  
  .phone-number {
    font-size: 1rem;
  }
}
