/* =========================================================
   home.css — Proof. by LifeVault homepage
   Loaded only when is_front_page() is true (see functions.php)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
@font-face {
  font-family: 'Nimbus Roman';
  src: local('Nimbus Roman'), local('Nimbus Roman No9 L'), local('NimbusRomNo9L-Reg'),
       url('https://fonts.cdnfonts.com/s/29719/NimbusRomNo9L-Reg.woff') format('woff');
  font-weight: 400; font-style: normal;
}
@font-face {
  font-family: 'Nimbus Roman';
  src: local('Nimbus Roman Italic'), local('NimbusRomNo9L-RegIta'),
       url('https://fonts.cdnfonts.com/s/29719/NimbusRomNo9L-RegIta.woff') format('woff');
  font-weight: 400; font-style: italic;
}

html, body { margin: 0; padding: 0; }

.lv-page {
  --bg: #F8F0E5;
  --bg-2: #EFE6D2;
  --panel: #ECE2CC;
  --ink: #0F1411;
  --ink-2: #5C564A;
  --ink-3: #8A8170;
  --line: rgba(15,20,17,0.10);
  --line-2: rgba(15,20,17,0.16);
  --accent: #164863;
  --accent-2: #55AD9B;
  --accent-soft: #DCEFEA;
  --warm: #E07A3B;
  --good: #2F8F5E;
  --dark: #0F1411;
  --dark-2: #161B17;
  --max-width: 1240px;
  --gutter: 1.5rem;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Nimbus Roman', 'Times New Roman', Georgia, serif;

  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
.lv-page *, .lv-page *::before, .lv-page *::after { box-sizing: border-box; }
.lv-page h1, .lv-page h2 { margin: 0; font-family: 'Outfit', var(--font-sans); font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.lv-page h3, .lv-page h4 { margin: 0; font-family: var(--font-serif); font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; color: var(--ink); }
.lv-page p { margin: 0; }
.lv-page a { color: inherit; text-decoration: none; }
.lv-page ul { list-style: none; margin: 0; padding: 0; }

.lv-wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.lv-wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 var(--gutter); }

/* HEADER (liquid-glass bento) */
.lv-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 14px var(--gutter); transition: padding 0.4s ease;
  background: transparent; pointer-events: none;
}
.lv-header.scrolled { padding: 10px var(--gutter); }
.lv-header-container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; gap: 8px; pointer-events: none;
}
.lv-bento-card, .lv-hamburger-card { pointer-events: auto; }
.lv-bento-card {
  position: relative; overflow: hidden; border-radius: 100px;
  padding: 10px 22px;
  background: linear-gradient(158deg, rgba(255,252,248,0.62), rgba(244,236,220,0.46));
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), inset 0 1.5px 0 rgba(255,255,255,0.7);
}
.lv-logo { display: flex; align-items: center; }
.lv-logo-img { height: 50px; width: auto; display: block; }
.lv-nav-card { flex: 0 1 auto; }
.lv-nav ul { display: flex; gap: 0; align-items: center; }
.lv-nav li a {
  display: block; padding: 7px 18px; font-weight: 500;
  color: rgba(15,20,17,0.85); font-size: 0.88rem;
  border-radius: 100px; transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.lv-nav li a:hover, .lv-nav li a.lv-active { background: rgba(255,255,255,0.5); color: var(--accent); }
.lv-actions-card { padding: 5px; }
.lv-page a.lv-actions-cta {
  background: linear-gradient(135deg, #55AD9B 0%, #164863 100%); color: #fff;
  font-weight: 600; padding: 8px 20px; font-size: 0.88rem;
  border-radius: 100px; display: block;
  transition: opacity 0.2s;
}
.lv-page a.lv-actions-cta:hover { opacity: 0.88; }
.lv-hamburger-card { display: none; }
@media (max-width: 900px) {
  .lv-nav-card, .lv-actions-card { display: none; }
  .lv-hamburger-card { display: flex; align-items: center; justify-content: center; padding: 3px 10px; }
  .lv-hamburger-menu {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    width: 36px; height: 36px; gap: 5px; background: transparent; border: none; cursor: pointer;
  }
  .lv-hamburger-menu span { width: 20px; height: 1.8px; background: rgba(15,20,17,0.8); border-radius: 2px; }
}

/* UTIL */
.lv-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}
.lv-eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; }
.lv-display {
  font-family: 'Outfit', var(--font-sans);
  font-weight: 400; line-height: 0.95; letter-spacing: -0.025em;
  font-size: clamp(3rem, 9vw, 7.5rem);
}
.lv-display .it { font-style: italic; }
.lv-display .green {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lv-headline {
  font-family: 'Outfit', var(--font-sans);
  font-weight: 400; line-height: 1; letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
}
.lv-headline .it { font-style: italic; }
.lv-headline .green {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lv-body { font-family: var(--font-sans); font-size: 1rem; color: var(--ink-2); line-height: 1.6; text-wrap: pretty; }
.lv-body.lg { font-size: 1.15rem; }
.lv-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px 6px 8px; border-radius: 100px;
  background: rgba(255,255,255,0.55); border: 1px solid var(--line);
  font-size: 0.78rem; color: var(--ink-2); backdrop-filter: blur(8px);
}
.lv-pill .badge {
  display: inline-block; padding: 3px 9px; border-radius: 100px;
  background: linear-gradient(135deg, #55AD9B 0%, #164863 100%); color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: var(--font-sans);
}
.lv-pill.on-dark { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); backdrop-filter: blur(8px); }
.lv-pill.on-dark .badge { background: var(--accent-2); color: var(--dark); }

/* Store badges */
.lv-store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.lv-store-badges.center { justify-content: center; }
.lv-page a.lv-store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 14px;
  background: linear-gradient(135deg, #55AD9B 0%, #164863 100%); color: #fff;
  border-radius: 12px; transition: transform 0.2s, opacity 0.2s;
  border: 1px solid rgba(255,255,255,0.12); min-width: 168px;
}
.lv-page a.lv-store-badge:hover { transform: translateY(-2px); opacity: 0.88; }
.lv-store-badge svg { flex: 0 0 auto; }
.lv-sb-text { display: flex; flex-direction: column; line-height: 1.1; }
.lv-sb-top { font-size: 0.62rem; font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.85; }
.lv-sb-bot { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; margin-top: 1px; }
.lv-store-badge.invert { background: #fff; color: var(--ink); border-color: rgba(0,0,0,0.08); }
.lv-store-badge.invert:hover { background: var(--bg-2); }

/* SECTIONS */
.lv-sec { padding: 6rem 0; position: relative; }
.lv-sec.tight { padding: 4rem 0; }
.lv-sec.dark { background: var(--dark); color: rgba(255,255,255,0.92); }
.lv-sec.dark h1, .lv-sec.dark h2, .lv-sec.dark h3, .lv-sec.dark h4 { color: #fff; }
.lv-sec.dark .lv-body { color: rgba(255,255,255,0.65); }
.lv-sec.dark .lv-eyebrow { color: rgba(255,255,255,0.6); }
.lv-sec.dark .lv-headline .green {
  background: linear-gradient(120deg, #B8E5DC 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lv-sec.alt { background: var(--bg-2); }

/* HERO v2 — cinematic full-bleed */
.lv-hero-v2 {
  position: relative; min-height: 92vh; background: #0a1014; color: #fff;
  overflow: hidden; padding: 6rem 0 2.5rem; display: flex; flex-direction: column;
}
.lv-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
.lv-hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(8,14,20,0.55) 0%, rgba(8,14,20,0.45) 50%, rgba(8,14,20,0.72) 100%);
  pointer-events: none;
}
.lv-hero-v2 .lv-wrap { position: relative; z-index: 4; flex: 1; display: flex; flex-direction: column; }
.lv-hero-body {
  flex: 1; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, 360px);
  gap: 2rem; align-items: end; margin-top: auto;
}
.lv-hero-content { display: flex; flex-direction: column; gap: 1.2rem; max-width: 620px; }
.lv-hero-logo { align-self: flex-start; height: 56px; width: auto; display: block; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.28)); }
.lv-hero-v2 h1 {
  font-family: 'Outfit', var(--font-sans); font-weight: 400; color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -0.025em;
  margin: 0; max-width: 600px; text-wrap: balance;
}
.lv-hero-v2 .lv-hero-sub-v2 { color: rgba(255,255,255,0.8); font-size: 1.02rem; line-height: 1.55; max-width: 500px; text-wrap: pretty; }
.lv-hero-actions-v2 { display: flex; gap: 12px; margin-top: 0.6rem; flex-wrap: wrap; }

/* Moment card right */
.lv-hero-moment {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.9); box-shadow: 0 20px 50px rgba(15,20,17,0.08);
  border-radius: 24px; padding: 1rem; display: flex; flex-direction: column; gap: 0.9rem;
  justify-self: end; width: 100%; max-width: 340px;
}
.lv-hero-moment-head { display: flex; align-items: center; justify-content: space-between; padding: 0 6px; }
.lv-hero-moment-head .lbl { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
.lv-hero-moment-head .arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #55AD9B 0%, #164863 100%); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; border: none; cursor: pointer;
  transition: opacity 0.2s;
}
.lv-hero-moment-head .arrow:hover { opacity: 0.82; }
.lv-hero-moment-image {
  aspect-ratio: 4/4.2; border-radius: 16px; overflow: hidden; background: #e8e8e8;
  display: flex; align-items: center; justify-content: center;
}
.lv-hero-moment-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.lv-moment-img--individual { background: linear-gradient(160deg, #C8EDE4 0%, #f0fbf8 100%) !important; }
.lv-moment-img--couple     { background: linear-gradient(160deg, #FDE9A2 0%, #fffdf0 100%) !important; }
.lv-moment-img--nuclear    { background: linear-gradient(160deg, #BFDBFE 0%, #f0f6ff 100%) !important; }
.lv-moment-img--extended   { background: linear-gradient(160deg, #DDD6FE 0%, #f5f3ff 100%) !important; }
.lv-hero-moment-slides { position: relative; overflow: hidden; }
.lv-moment-slide { display: none; flex-direction: column; gap: 4px; padding: 0 6px 6px; animation: momentIn 0.35s ease; }
.lv-moment-slide.active { display: flex; }
@keyframes momentIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }
.lv-moment-slide strong {
  font-family: var(--font-sans); font-weight: 700; font-size: 1rem; color: var(--ink);
  letter-spacing: -0.01em; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 14px;
}
.lv-moment-slide em { font-style: normal; color: var(--ink-2); font-size: 0.82rem; }
.lv-moment-feats { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 3px; }
.lv-moment-feats li { font-size: 0.75rem; color: var(--ink-2); padding-left: 14px; position: relative; line-height: 1.4; }
.lv-moment-feats li::before { content: '✓'; position: absolute; left: 0; color: #55AD9B; font-size: 0.68rem; font-weight: 700; }
.lv-badge-pop {
  display: inline-flex; align-items: center; background: #55AD9B; color: #fff;
  font-size: 0.5rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 7px; border-radius: 100px;
}
.lv-moment-slide .pill-mini {
  align-self: flex-start; background: #55AD9B; color: #fff; font-family: var(--font-sans);
  font-weight: 600; font-size: 0.78rem; padding: 6px 14px; border-radius: 100px; margin-top: 6px;
  cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block;
}
.lv-moment-slide .pill-mini:hover { background: #164863; }
.lv-dl-badge-img { height: 44px; width: auto; display: block; transition: transform 0.2s, opacity 0.2s; }
.lv-dl-badge-img:hover { transform: translateY(-2px); opacity: 0.88; }
.lv-hero-moment-dots { display: flex; gap: 4px; justify-content: center; padding: 0 0 6px; }
.lv-hero-moment-dots span { width: 4px; height: 4px; border-radius: 50%; background: rgba(15,20,17,0.2); }
.lv-hero-moment-dots span.on { background: var(--accent); width: 14px; border-radius: 100px; }

/* Latest updates / news row */
.lv-hero-news {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 2.5rem; background: rgba(255,255,255,0.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line); box-shadow: 0 8px 30px rgba(15,20,17,0.04); border-radius: 18px; padding: 1rem 1.6rem;
}
.lv-hero-news-badge {
  position: absolute; top: -12px; left: 22px; display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #55AD9B 0%, #164863 100%); color: #fff; font-family: var(--font-sans);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 13px; border-radius: 100px;
}
.lv-hero-news-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6); animation: newsPulse 1.8s ease-out infinite;
}
@keyframes newsPulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); } 70% { box-shadow: 0 0 0 6px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
.lv-hero-news .news-item { display: flex; flex-direction: column; gap: 5px; padding: 0.3rem 1.1rem; border-left: 1px solid var(--line); transition: opacity 0.2s ease; }
.lv-hero-news .news-item:first-of-type { border-left: 0; padding-left: 0.2rem; }
.lv-hero-news a.news-item:hover { opacity: 0.72; }
.news-tag { align-self: flex-start; font-family: var(--font-sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 9px; border-radius: 100px; }
.news-tag.breaking { background: rgba(224,122,59,0.16); color: #C15A1E; }
.news-tag.update   { background: var(--accent-soft); color: var(--accent); }
.news-tag.press    { background: rgba(22,72,99,0.10); color: var(--accent); }
.lv-hero-news .news-item strong { font-family: var(--font-sans); color: var(--ink); font-weight: 700; font-size: 0.9rem; letter-spacing: -0.01em; line-height: 1.25; }
.lv-hero-news .news-item em { font-style: normal; color: var(--ink-2); font-size: 0.72rem; }
@media (prefers-reduced-motion: reduce) { .lv-hero-news-badge .dot { animation: none; } }

@media (max-width: 980px) {
  .lv-hero-body { grid-template-columns: 1fr; align-items: stretch; }
  .lv-hero-moment { justify-self: stretch; max-width: 100%; }
  .lv-hero-news { grid-template-columns: 1fr; gap: 0; padding: 1.2rem 1.4rem; }
  .lv-hero-news .news-item { padding: 0.65rem 0; border-left: 0; border-top: 1px solid var(--line); }
  .lv-hero-news .news-item:first-of-type { border-top: 0; padding-top: 0.2rem; padding-left: 0; }
}
@media (max-width: 600px) {
  .lv-hero-v2 { min-height: auto; padding-top: 7rem; padding-bottom: 2rem; }
  .lv-hero-logo { height: 46px; }
}

/* MANIFESTO */
.lv-manifesto {
  padding: 7rem 0; text-align: center;
  background:
    linear-gradient(180deg, rgba(10,16,14,0.78) 0%, rgba(10,16,14,0.62) 45%, rgba(10,16,14,0.85) 100%),
    url('../img/grant-everett-xpeB10g7mg4-unsplash-scaled.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed;
  color: #fff; position: relative; overflow: hidden;
}
.lv-manifesto::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(85,173,155,0.15), transparent 50%), radial-gradient(ellipse at 80% 70%, rgba(22,72,99,0.25), transparent 50%);
  pointer-events: none;
}
.lv-manifesto .lv-wrap-narrow { position: relative; z-index: 1; }
.lv-manifesto h2 {
  font-family: 'Outfit', var(--font-sans); font-weight: 400; color: #fff;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem); line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 1.8rem;
}
.lv-manifesto h2 .it { font-style: italic; }
.lv-manifesto h2 .morph { display: inline-block; min-width: 16ch; text-align: center; color: var(--accent-2); font-style: italic; position: relative; white-space: nowrap; }
@media (max-width: 900px) {
  .lv-manifesto h2 { font-size: clamp(1.9rem, 7vw, 3.2rem); }
  .lv-manifesto h2 .morph { min-width: 10ch; }
}
@media (max-width: 560px) {
  .lv-manifesto h2 { font-size: clamp(1.6rem, 8.5vw, 2.4rem); }
  .lv-manifesto h2 .morph { min-width: 8ch; }
}
.lv-manifesto-brk { display: none; }
@media (max-width: 900px) { .lv-manifesto-brk { display: block; content: ""; } }
.lv-manifesto p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.65; max-width: 560px; margin: 0 auto; text-wrap: pretty; }
.lv-manifesto .lv-eyebrow { color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
@media (max-width: 768px) { .lv-manifesto { background-attachment: scroll; } }

/* MOMENTS */
.lv-moments-head { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
/* Full-bleed horizontal drag-to-reveal track */
.lv-moments-track-wrap { position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; overflow: hidden; }
.lv-moments-track {
  display: flex; gap: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-left: max(1.5rem, calc((100vw - 1240px) / 2 + 1.5rem)); padding-right: 1.5rem; padding-bottom: 6px;
  -ms-overflow-style: none; scrollbar-width: none; cursor: grab;
}
.lv-moments-track::-webkit-scrollbar { display: none; }
.lv-moments-track.dragging { cursor: grabbing; user-select: none; scroll-behavior: auto; }
.lv-moments-track.dragging .lv-moment { pointer-events: none; }
.lv-moments-track .lv-moment { flex: 0 0 clamp(260px, 27vw, 340px); }
@media (max-width: 1200px) { .lv-moments-track .lv-moment { flex: 0 0 42vw; } }
@media (max-width: 980px)  { .lv-moments-track .lv-moment { flex: 0 0 58vw; } }
@media (max-width: 560px)  { .lv-moments-track .lv-moment { flex: 0 0 82vw; } }
.lv-moment { display: flex; flex-direction: column; gap: 1rem; }
.lv-moment-img { position: relative; aspect-ratio: 4/5; border-radius: 22px; overflow: hidden; background: var(--panel); }
.lv-moment-img image-slot,
.lv-moment-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Core wp:image wraps the photo in <figure>; make it fill the frame so
   the image covers the whole 4/5 box (not just its natural height). */
.lv-moment-img .wp-block-image,
.lv-moment-img figure { width: 100%; height: 100%; margin: 0; }
.lv-moment-img .tag {
  position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  padding: 4px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; color: var(--ink);
}
.lv-moment h3 { font-size: 1.5rem; font-weight: 400; }
.lv-moment h3 .it { font-style: italic; }
.lv-moment p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.55; }
.lv-moment .reading {
  margin-top: auto; display: inline-flex; align-items: center; gap: 4px; font-size: 0.75rem; color: var(--accent);
  font-weight: 600; padding-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.08em;
}
@media (max-width: 900px) { .lv-moments-head { grid-template-columns: 1fr; gap: 1rem; } }

/* BENTO mini features */
.lv-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.lv-tile {
  background: var(--panel); border-radius: 22px; padding: 1.5rem; grid-column: span 2;
  display: flex; flex-direction: column; gap: 0.6rem; min-height: 200px; border: 1px solid var(--line);
  transition: transform 0.25s ease;
}
.lv-tile:hover { transform: translateY(-3px); }
.lv-tile .ic {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.6); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink); margin-bottom: 0.4rem;
}
.lv-tile h4 { font-size: 1.15rem; font-weight: 400; line-height: 1.15; }
.lv-tile h4 .it { font-style: italic; }
.lv-tile p { font-size: 0.86rem; color: var(--ink-2); line-height: 1.5; }
.lv-tile-img { margin-top: auto; width: 100%; height: auto; display: block; pointer-events: none; }
.lv-tile.wide { grid-column: span 3; }
.lv-tile.dark { background: linear-gradient(135deg, #55AD9B 0%, #164863 100%); color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.06); }
.lv-tile.dark .ic { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.18); color: #fff; }
.lv-tile.dark p { color: rgba(255,255,255,0.80); }
.lv-tile.dark h4 { color: #fff; }
@media (max-width: 900px) { .lv-bento { grid-template-columns: 1fr 1fr; } .lv-tile, .lv-tile.wide { grid-column: span 1; } }
@media (max-width: 560px) { .lv-bento { grid-template-columns: 1fr; } }

/* MADE FOR EVERY FAMILY */
.lv-families-head { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.lv-families-head p.intro { font-size: 0.96rem; color: var(--ink-2); line-height: 1.6; max-width: 48ch; font-family: var(--font-sans); }
.lv-families-track-wrap { position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; overflow: hidden; }
.lv-families-track {
  display: flex; gap: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-left: max(1.5rem, calc((100vw - 1240px) / 2 + 1.5rem)); padding-right: 1.5rem; padding-bottom: 6px;
  -ms-overflow-style: none; scrollbar-width: none; cursor: grab;
}
.lv-families-track::-webkit-scrollbar { display: none; }
.lv-families-track.dragging { cursor: grabbing; user-select: none; scroll-behavior: auto; }
.lv-families-track.dragging .lv-family-card { pointer-events: none; }
.lv-families-track .lv-family-card { flex: 0 0 clamp(220px, 19vw, 260px); }
@media (max-width: 1200px) { .lv-families-track .lv-family-card { flex: 0 0 30vw; } }
.lv-family-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lv-family-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,20,17,0.08); }
.lv-family-photo { position: relative; aspect-ratio: 4/5; background: var(--panel); overflow: hidden; }
.lv-family-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.lv-family-photo .tag {
  position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  padding: 4px 12px; border-radius: 100px; font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; color: var(--ink);
}
.lv-family-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.lv-family-body h3 { font-size: 1.3rem; font-weight: 400; line-height: 1.15; }
.lv-family-body h3 .it { font-style: italic; }
.lv-family-body p { font-size: 0.86rem; color: var(--ink-2); line-height: 1.55; font-family: var(--font-sans); }
@media (max-width: 980px) { .lv-families-head { grid-template-columns: 1fr; gap: 1rem; } .lv-families-track .lv-family-card { flex: 0 0 46vw; } }
@media (max-width: 560px) { .lv-families-track .lv-family-card { flex: 0 0 78vw; } }

/* PRESS */
.lv-press { padding: 2.5rem 0; text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lv-press-label { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1.2rem; }
.lv-press-row { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.lv-press-row span { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ink-3); letter-spacing: 0.02em; opacity: 0.7; transition: opacity 0.2s; }
.lv-press-row span:hover { opacity: 1; }
.lv-press-row span.bold { font-weight: 700; font-family: var(--font-sans); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.15em; }
.lv-press-row span.it { font-style: italic; }

/* TESTIMONIALS */
.lv-testi-head { text-align: center; margin-bottom: 3.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lv-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lv-testi { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.8rem; display: flex; flex-direction: column; gap: 1.2rem; }
.lv-testi .quote { font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.35; color: var(--ink); flex: 1; text-wrap: pretty; }
.lv-testi .quote .it { font-style: italic; }
.lv-testi .who { display: flex; align-items: center; gap: 0.8rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.lv-testi-av { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--panel); flex-shrink: 0; }
.lv-testi-av image-slot,
.lv-testi-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lv-testi .who strong { display: block; font-size: 0.92rem; font-weight: 700; }
.lv-testi .who em { display: block; font-style: normal; font-size: 0.78rem; color: var(--ink-2); }
@media (max-width: 900px) { .lv-testi-grid { grid-template-columns: 1fr; } }

/* VIDEO SHOWCASE */
.lv-videos { padding: 6rem 0; background: #F8F0E5; overflow: hidden; }
.lv-videos-head { text-align: center; margin-bottom: 3rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lv-videos-head .lv-eyebrow { color: #282828; }
.lv-videos-head h2 { color: #282828; }
.lv-videos-track-wrap { position: relative; }
.lv-videos-track { display: flex; gap: 24px; overflow: hidden; scroll-snap-type: x mandatory; scroll-behavior: smooth; }
.lv-video-card {
  flex: 0 0 calc(33.333% - 16px); min-width: 0; border-radius: 20px; overflow: hidden; background: #1a1f1c;
  border: 1px solid rgba(255,255,255,0.08); scroll-snap-align: start; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lv-video-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.lv-video-player { position: relative; aspect-ratio: 16/9; background: #0d1210; cursor: pointer; }
.lv-video-player video { width: 100%; height: 100%; object-fit: cover; display: block; }
.lv-video-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); transition: background 0.2s; }
.lv-video-player.playing .lv-video-overlay { background: transparent; }
.lv-video-play-btn {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.95); display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.4); transition: transform 0.2s, opacity 0.2s; flex-shrink: 0;
}
.lv-video-player.playing .lv-video-play-btn { opacity: 0; pointer-events: none; }
.lv-video-play-btn svg { color: #164863; margin-left: 4px; }
.lv-video-info { padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: 4px; }
.lv-video-info strong { font-size: 0.95rem; font-weight: 700; color: #fff; font-family: var(--font-sans); letter-spacing: -0.01em; }
.lv-video-info span { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-family: var(--font-sans); }
.lv-videos-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 2.5rem; }
.lv-videos-arrow {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(15,20,17,0.06); border: 1px solid rgba(15,20,17,0.14);
  color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.lv-videos-arrow:hover { background: rgba(15,20,17,0.12); transform: scale(1.07); }
.lv-videos-arrow:disabled { opacity: 0.3; cursor: default; transform: none; }
.lv-videos-dots { display: flex; gap: 6px; align-items: center; }
.lv-videos-dots span { width: 7px; height: 7px; border-radius: 100px; background: rgba(15,20,17,0.18); transition: background 0.2s, width 0.25s; }
.lv-videos-dots span.on { background: #55AD9B; width: 20px; }
@media (max-width: 900px) { .lv-video-card { flex: 0 0 80%; } }
@media (max-width: 600px) { .lv-video-card { flex: 0 0 90%; } }

/* PRICING */
.lv-pricing-head { text-align: center; margin-bottom: 3rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lv-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lv-price-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; position: relative; }
.lv-price-card.featured { background: #fff; color: var(--ink); border: 2px solid #55AD9B; box-shadow: 0 8px 32px rgba(85,173,155,0.18); transform: scale(1.02); }
.lv-plan-icon { width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; flex-shrink: 0; }
.lv-plan-icon--individual { background: #E8F5F0; color: #0D7C66; }
.lv-plan-icon--couple     { background: #FEF3C7; color: #D97706; }
.lv-plan-icon--nuclear    { background: #DBEAFE; color: #2563EB; }
.lv-plan-icon--extended   { background: #EDE9FE; color: #7C3AED; }
.lv-price-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #55AD9B; color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 18px; border-radius: 100px;
  white-space: nowrap; font-family: var(--font-sans);
}
.lv-price-card h3 { font-size: 1.2rem; font-weight: 700; font-style: normal; font-family: var(--font-sans); margin-top: 2px; }
.lv-price-card p.desc { font-size: 0.82rem; color: var(--ink-3); margin-top: 2px; }
.lv-price-amt { font-family: var(--font-sans); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--ink); margin-top: 0.9rem; display: flex; align-items: flex-start; }
.lv-price-sup { font-size: 1.1rem; font-weight: 700; padding-top: 5px; margin-right: 1px; color: var(--ink); }
.lv-price-period { font-size: 0.78rem; color: var(--ink-3); margin-top: 4px; }
.lv-price-btn, .lv-page a.lv-price-btn {
  margin-top: auto; display: inline-flex; justify-content: center; align-items: center; padding: 11px 20px; border-radius: 100px;
  background: linear-gradient(135deg, #55AD9B 0%, #164863 100%); color: #fff !important; font-weight: 600; font-size: 0.88rem;
  font-family: var(--font-sans); transition: opacity 0.2s, transform 0.15s; letter-spacing: 0.01em;
}
.lv-price-btn:hover, .lv-page a.lv-price-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.lv-pricing-cta { display: flex; justify-content: center; margin-top: 2.5rem; }
.lv-pricing-cta .lv-price-btn { padding: 13px 36px; font-size: 0.95rem; }
@media (max-width: 1050px) { .lv-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lv-pricing-grid { grid-template-columns: 1fr; } .lv-price-card.featured { transform: scale(1); } }

/* FAQ */
.lv-faq-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 4rem; align-items: flex-start; }
.lv-faq-list { display: flex; flex-direction: column; gap: 10px; }
.lv-faq-item { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.2rem 1.5rem; cursor: pointer; }
.lv-faq-item[open] { border-color: var(--accent); }
.lv-faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; cursor: pointer; letter-spacing: -0.01em;
}
.lv-faq-item summary::-webkit-details-marker { display: none; }
.lv-faq-item summary::after {
  content: '+'; width: 24px; height: 24px; border-radius: 50%; background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-sans);
  font-weight: 400; font-size: 1rem; color: var(--accent); transition: background 0.2s;
}
.lv-faq-item[open] summary::after { content: '−'; background: var(--accent); color: #fff; }
.lv-faq-item p { margin-top: 0.8rem; color: var(--ink-2); font-size: 0.94rem; line-height: 1.6; }
@media (max-width: 900px) { .lv-faq-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* CLOSING */
.lv-close { padding: 8rem 0 6rem; text-align: center; background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.lv-close::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(85,173,155,0.18), transparent 60%); pointer-events: none; }
.lv-close .lv-wrap-narrow { position: relative; z-index: 1; }
.lv-close h2 {
  font-family: 'Outfit', var(--font-sans); font-weight: 400; font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02; letter-spacing: -0.025em; color: #fff; margin-bottom: 1.6rem;
}
.lv-close h2 .it { font-style: italic; }
.lv-close h2 .green {
  background: linear-gradient(120deg, #B8E5DC 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lv-close p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.2rem; line-height: 1.55; }
.lv-close .lv-store-badges { justify-content: center; }
.lv-close-quiet { display: block; margin-top: 2.5rem; font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.5); }

/* FOOTER */
.lv-new-footer { position: relative; background-color: #6CB6A5; color: #fff; overflow: hidden; width: 100%; }
.lv-footer-watermark-img { position: absolute; bottom: -1%; left: 50%; transform: translateX(-50%); width: 100%; height: auto; opacity: 1; pointer-events: none; z-index: 0; }
.lv-footer-c-flex {
  display: flex; justify-content: space-between; padding-top: 4rem; padding-bottom: 12rem;
  position: relative; z-index: 1; gap: 4rem; max-width: var(--max-width); margin: 0 auto; padding-left: 2rem; padding-right: 2rem;
}
.lv-footer-left-col { display: flex; flex-direction: column; gap: 0.5rem; max-width: 350px; }
.lv-f-logo { width: 60px; height: auto; }
.lv-f-slogan { font-size: 2.8rem; line-height: 1; text-transform: uppercase; font-weight: 900; color: #fff; letter-spacing: -1px; margin-top: 20px; margin-bottom: 20px; font-family: var(--font-sans); }
.lv-f-socials { display: flex; gap: 1rem; align-items: center; margin-top: 0.5rem; }
.lv-f-socials img { height: 24px; width: auto; filter: brightness(0) invert(1); transition: opacity 150ms ease; }
.lv-f-socials img:hover { opacity: 0.8; }
.lv-footer-right-col { flex: 1; display: flex; flex-direction: column; gap: 3rem; max-width: 800px; }
.lv-f-links-grid { display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 2rem; }
.lv-f-col h4 { color: #fff; margin-bottom: 1.5rem; font-size: 1.1rem; font-family: var(--font-sans); font-weight: 800; }
.lv-f-col ul { display: flex; flex-direction: column; gap: 1rem; }
.lv-f-col ul li a { font-size: 0.95rem; color: #fff; font-weight: 400; transition: opacity 150ms ease; }
.lv-f-col ul li a:hover { opacity: 0.7; }
.lv-f-connect p { font-size: 0.9rem; color: #fff; line-height: 1.5; font-weight: 400; }
.lv-f-downloads h4 { color: #fff; margin-bottom: 1rem; font-size: 1.1rem; font-family: var(--font-sans); font-weight: 800; }
.lv-f-dl-row { display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; }
.lv-f-dl-row img { height: 48px; width: auto; border-radius: 6px; border: 1px solid rgba(255,255,255,1); }
.lv-footer-copyright { background-color: #F6EFDF; text-align: center; padding: 15px 1rem; font-size: 0.8rem; color: #444; position: relative; z-index: 2; font-family: var(--font-sans); }
@media (max-width: 900px) {
  .lv-f-links-grid { grid-template-columns: 1fr 1fr; }
  .lv-f-links-grid .lv-f-col:nth-child(3) { grid-column: span 2; }
  .lv-footer-c-flex { flex-direction: column; gap: 4rem; padding-bottom: 8rem; }
  .lv-footer-left-col { max-width: 100%; align-items: center; text-align: center; }
  .lv-f-dl-row { justify-content: center; }
}
@media (max-width: 768px) {
  .lv-footer-c-flex { padding-bottom: 6rem; padding-left: 1.5rem; padding-right: 1.5rem; }
  .lv-f-slogan { font-size: 2rem; }
  .lv-f-dl-row img { height: 42px; }
}
@media (max-width: 480px) {
  .lv-f-links-grid { grid-template-columns: 1fr; }
  .lv-f-links-grid .lv-f-col:nth-child(3) { grid-column: span 1; }
  .lv-f-slogan { font-size: 1.8rem; }
  .lv-footer-c-flex { padding-bottom: 5rem; gap: 2rem; padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* fade-in + image-slot placeholder hint */
.lv-fade { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.lv-fade.in { opacity: 1; transform: translateY(0); }
image-slot { display: block; }
image-slot:empty { background: repeating-linear-gradient(45deg, rgba(22,72,99,0.04), rgba(22,72,99,0.04) 12px, rgba(22,72,99,0.08) 12px, rgba(22,72,99,0.08) 24px); }
