/* =============================================================
   LIFE'S FOCUS — THEME STYLES
   Design system based on Design 0.1
   ============================================================= */

/* ─── TOKENS ──────────────────────────────────────────────────── */
:root {
  --bg:              #F1EFE7;
  --surface:         #FBFAF6;
  --ink:             #24281C;
  --muted:           #5E5F50;
  --border:          #E2DFD4;
  --accent:          #C79A5E;
  --accent-ink:      #1F2417;
  --accent-bright:   #D6AE74;
  --accent-deep:     #6F7A52;
  --accent-soft:     #EAEBDA;
  --hero-bg:         #20251A;
  --band:            #2E3324;
  --band-ink:        #EDEBE0;
  --band-accent:     #A9B486;
  --band-muted:      #B7B8A6;
  --band-card:       #373D2B;
  --band-card-border:#444B33;
  --nav-bg:          rgba(32,37,26,0.92);
  --nav-border:      rgba(255,255,255,0.08);
  --nav-ink:         #F1EFE4;
  --nav-link:        #D8DAC9;
  --serif:           'Newsreader', Georgia, serif;
  --sans:            'Hanken Grotesk', system-ui, sans-serif;
  --max:             1160px;
  --radius-card:     16px;
  --radius-card-lg:  20px;
  --radius-pill:     100px;
}

/* ─── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ─── WORDPRESS CORE ──────────────────────────────────────────── */
.wp-block-image img { border-radius: 8px; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft  { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto !important; clip-path: none; display: block;
  height: auto; left: 5px; padding: 15px 23px 14px;
  text-decoration: none; top: 5px; width: auto; z-index: 100000;
}

/* ─── TYPOGRAPHY HELPERS ──────────────────────────────────────── */
.section-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
  display: block;
}
.section-h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.section-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── LAYOUT HELPERS ──────────────────────────────────────────── */
.lf-container {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-pill-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  text-decoration: none;
}
.btn-pill-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  color: var(--accent-ink);
}
.btn-pill-outline {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  transition: border-color 0.18s, background 0.18s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-pill-outline:hover {
  border-color: var(--accent-deep);
  background: var(--accent-soft);
  color: var(--ink);
}
.btn-pill-outline-light {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--band-ink);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  transition: border-color 0.18s, background 0.18s;
  text-decoration: none;
}
.btn-pill-outline-light:hover {
  border-color: var(--band-accent);
  background: rgba(255,255,255,0.06);
  color: var(--band-ink);
}

/* ─── NAV ─────────────────────────────────────────────────────── */
.lf-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
}
.lf-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lf-nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.lf-nav__logo-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s;
}
.lf-nav__logo:hover .lf-nav__logo-dot { background: var(--accent-bright); }
.lf-nav__logo-dot-inner {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 2.5px solid var(--hero-bg);
}
.lf-nav__logo-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--nav-ink);
}
.lf-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lf-nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--nav-link);
  text-decoration: none;
  transition: color 0.18s;
}
.lf-nav__links a:hover,
.lf-nav__links .current-menu-item > a,
.lf-nav__links .current_page_item > a { color: #fff; }
.lf-nav__cta {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink) !important;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.18s;
  text-decoration: none;
}
.lf-nav__cta:hover { background: var(--accent-bright); }

.lf-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.lf-nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--nav-ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── HERO ────────────────────────────────────────────────────── */
.lf-hero {
  position: relative;
  background: var(--hero-bg);
  overflow: hidden;
}
.lf-hero__backdrop {
  position: absolute;
  inset: 0;
  background: var(--hero-bg);
}
.lf-hero__backdrop img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.lf-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20,25,18,0.6) 0%,
    rgba(20,25,18,0.38) 40%,
    rgba(20,25,18,0.72) 100%);
}
.lf-hero__fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}
.lf-hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 32px 78px;
}
.lf-hero__inner { max-width: 770px; }
.lf-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(199,154,94,0.35);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.lf-hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.lf-hero__badge span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #CBCBB6;
}
.lf-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: #F4F2E7;
  margin-bottom: 24px;
}
.lf-hero h1 .accent { color: var(--accent-bright); }
.lf-hero__sub {
  font-size: 20px;
  line-height: 1.62;
  color: #C7CABA;
  max-width: 600px;
  margin-bottom: 36px;
}
.lf-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lf-hero__link {
  font-size: 16px;
  font-weight: 600;
  color: #E4E2D6;
  padding: 15px 8px;
  text-decoration: none;
  transition: color 0.18s;
}
.lf-hero__link:hover { color: #fff; }

/* ─── TRUST STRIP ─────────────────────────────────────────────── */
.lf-trust {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 32px 68px;
}
.lf-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid var(--border);
  padding-top: 34px;
}
.lf-trust__head {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--accent-deep);
  margin-bottom: 7px;
}
.lf-trust__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── DARK BAND (Start Here / Featured Video / Footer) ────────── */
.lf-band {
  background: var(--band);
  color: var(--band-ink);
}
.lf-band .section-kicker { color: var(--band-accent); }

/* ─── START HERE ──────────────────────────────────────────────── */
.lf-start {
  padding: 82px 0;
}
.lf-start__head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.lf-start__sub {
  font-size: 15px;
  color: var(--band-muted);
  max-width: 320px;
  line-height: 1.55;
}
.lf-start__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lf-start-card {
  background: var(--band-card);
  border: 1px solid var(--band-card-border);
  border-radius: 18px;
  padding: 30px 28px;
  display: block;
  color: var(--band-ink);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.18s;
}
.lf-start-card:hover {
  border-color: rgba(199,154,94,0.5);
  transform: translateY(-3px);
  color: var(--band-ink);
}
.lf-start-card__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--band-accent);
  margin-bottom: 16px;
}
.lf-start-card h3 {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.18;
  margin-bottom: 12px;
  color: #F1EFE4;
}
.lf-start-card p {
  font-size: 14.5px;
  color: var(--band-muted);
  line-height: 1.55;
  margin-bottom: 22px;
}
.lf-start-card__cta {
  font-size: 14px;
  font-weight: 600;
  color: #C9D0A8;
}

/* ─── FEATURED VIDEO ──────────────────────────────────────────── */
.lf-featured-video {
  padding: 80px 32px;
}
.lf-featured-video__inner { max-width: 900px; margin: 0 auto; }
.lf-featured-video__header {
  text-align: center;
  margin-bottom: 40px;
}
.lf-featured-video__header h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--band-ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.lf-featured-video__header p {
  font-size: 16px;
  color: var(--band-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* YouTube lite embed */
.yt-lite {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background: var(--hero-bg);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 56px rgba(0,0,0,0.45);
  border: 1px solid var(--band-card-border);
}
.yt-lite img.yt-thumb {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}
.yt-lite:hover img.yt-thumb { transform: scale(1.03); opacity: 0.82; }
.yt-lite::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20,24,16,0.30);
  z-index: 1;
  transition: background 0.3s;
}
.yt-lite:hover::before { background: rgba(20,24,16,0.14); }
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 76px; height: 76px;
  background: rgba(26,31,21,0.85);
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.22s, transform 0.18s;
  pointer-events: none;
}
.yt-lite:hover .yt-play-btn {
  background: var(--accent);
  transform: translate(-50%,-50%) scale(1.1);
}
.yt-lite:hover .yt-play-btn .play-icon { fill: var(--accent-ink); }
.yt-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 36px 24px 20px;
  background: linear-gradient(to top, rgba(20,24,16,0.88), transparent);
}
.yt-caption__title {
  font-family: var(--serif);
  font-size: 18px;
  color: #F1EFE4;
  line-height: 1.35;
}
.yt-caption__sub {
  font-size: 13px;
  color: var(--accent);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.yt-lite iframe {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  border: none;
}

/* small video cards */
.lf-video-grid-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 32px 36px;
}
.lf-video-grid__head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.lf-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lf-video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.18s;
}
.lf-video-card:hover {
  border-color: var(--accent-deep);
  transform: translateY(-3px);
}
.lf-video-card .yt-lite {
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.lf-video-card .yt-play-btn { width: 52px; height: 52px; }
.lf-video-card__body { padding: 20px 20px 24px; }
.lf-video-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 8px;
  display: block;
}
.lf-video-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 8px;
}
.lf-video-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── BROWSE CATEGORIES ───────────────────────────────────────── */
.lf-browse {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 32px 36px;
}
.lf-browse__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 46px;
}
.lf-browse__header .section-h2 { margin-bottom: 16px; }
.lf-browse__header p { font-size: 17px; color: var(--muted); line-height: 1.62; }
.lf-browse__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lf-browse-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px;
  display: block;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.18s;
}
.lf-browse-card:hover {
  border-color: var(--accent-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  color: var(--ink);
}
.lf-browse-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.lf-browse-card__icon-inner {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: var(--accent-deep);
  opacity: 0.85;
}
.lf-browse-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.lf-browse-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.lf-browse-card__count {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-deep);
}

/* ─── CHANNEL CARDS ───────────────────────────────────────────── */
.lf-channels {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 32px 36px;
}
.lf-channels__head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.lf-channels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lf-channel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.18s;
}
.lf-channel-card:hover {
  border-color: var(--accent-deep);
  transform: translateY(-3px);
}
.lf-channel-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--accent-soft);
  background-image: repeating-linear-gradient(
    135deg, rgba(0,0,0,0.04) 0 12px, transparent 12px 24px);
  overflow: hidden;
  display: flex; align-items: flex-end; padding: 14px;
}
.lf-channel-card__thumb img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.lf-channel-card__thumb-label {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  background: rgba(251,250,246,0.85);
  padding: 4px 8px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.lf-channel-card__tag {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(46,51,36,0.88);
  color: #DDE0C8;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  z-index: 1;
}
.lf-channel-card__body { padding: 22px 22px 24px; }
.lf-channel-card__meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.lf-channel-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--accent-deep);
  overflow: hidden;
}
.lf-channel-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lf-channel-card__name {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.lf-channel-card__submeta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.lf-channel-card__blurb {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.lf-channel-card__watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: none;
}
.lf-channel-card__play {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-deep);
  display: inline-flex; align-items: center; justify-content: center;
  color: #F3F1EA;
  font-size: 9px;
  flex-shrink: 0;
}

/* ─── MISSION CARD ────────────────────────────────────────────── */
.lf-mission {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 32px 96px;
}
.lf-mission__card {
  background: var(--accent-soft);
  border-radius: 28px;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 54px;
  align-items: center;
}
.lf-mission__card .section-kicker { color: var(--accent-deep); }
.lf-mission__card h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 14px 0 22px;
}
.lf-mission__card p {
  font-size: 17px;
  color: #4F5042;
  line-height: 1.65;
  margin-bottom: 16px;
}
.lf-mission__verse-card {
  background: var(--surface);
  border-radius: var(--radius-card-lg);
  padding: 36px 32px;
}
.lf-mission__verse-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.42;
  color: var(--ink);
  margin-bottom: 20px;
}
.lf-mission__verse-card cite {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-deep);
  font-style: normal;
}

/* ─── BLOG / ARCHIVE ──────────────────────────────────────────── */
.lf-page-hero {
  background: var(--band);
  color: var(--band-ink);
  padding: 64px 32px 56px;
}
.lf-page-hero__inner { max-width: var(--max); margin: 0 auto; }
.lf-page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--band-ink);
  margin-bottom: 14px;
}
.lf-page-hero p {
  font-size: 18px;
  color: var(--band-muted);
  max-width: 600px;
  line-height: 1.6;
}

.lf-posts-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 32px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lf-post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.18s;
  text-decoration: none;
  color: var(--ink);
}
.lf-post-card:hover {
  border-color: var(--accent-deep);
  transform: translateY(-3px);
  color: var(--ink);
}
.lf-post-card__thumb {
  aspect-ratio: 16/9;
  background: var(--accent-soft);
  overflow: hidden;
}
.lf-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lf-post-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lf-post-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
  display: block;
}
.lf-post-card h2 {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.lf-post-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.lf-post-card__date {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

/* ─── SINGLE POST ─────────────────────────────────────────────── */
.lf-single {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}
.lf-single__header { margin-bottom: 40px; }
.lf-single__cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 16px;
  display: block;
}
.lf-single h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.lf-single__meta {
  font-size: 14px;
  color: var(--muted);
}
.lf-single__thumb {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 44px;
}
.lf-single__thumb img { width: 100%; }
.lf-single__content { font-size: 18px; line-height: 1.75; }
.lf-single__content h2 {
  font-family: var(--serif);
  font-size: 30px;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.lf-single__content h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 32px 0 12px;
}
.lf-single__content p { margin-bottom: 22px; }
.lf-single__content a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.lf-single__content a:hover { color: var(--accent); }
.lf-single__content blockquote {
  border-left: 3px solid var(--accent);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--accent-soft);
  border-radius: 0 8px 8px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
}
.lf-single__content ul, .lf-single__content ol {
  margin: 0 0 22px 24px;
  list-style: disc;
}
.lf-single__content ol { list-style: decimal; }
.lf-single__content li { margin-bottom: 8px; }

/* ─── INNER PAGE CONTENT ──────────────────────────────────────── */
.lf-inner-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 32px 96px;
}

/* About */
.lf-about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}
.lf-about__text h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.lf-about__text p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.lf-about__image {
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  background: var(--accent-soft);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lf-about__image img { width: 100%; height: 100%; object-fit: cover; }
.lf-vet-section {
  background: var(--accent-soft);
  border-radius: 24px;
  padding: 56px 52px;
  margin-bottom: 80px;
}
.lf-vet-section h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.lf-vet-section p {
  font-size: 17px;
  color: #4F5042;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 680px;
}
.lf-vet-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.lf-vet-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lf-vet-item__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-deep);
  flex-shrink: 0;
  margin-top: 8px;
}
.lf-vet-item p {
  font-size: 15px;
  color: #4A4A3E;
  margin-bottom: 0;
}

/* Resources */
.lf-resources__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.lf-filter-btn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.18s;
}
.lf-filter-btn:hover,
.lf-filter-btn.active {
  background: var(--accent-soft);
  border-color: var(--accent-deep);
  color: var(--accent-deep);
}
.lf-resources__section-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Contact */
.lf-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.lf-contact__info h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  line-height: 1.15;
}
.lf-contact__info p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.lf-contact__info .lf-verse {
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 32px;
}
.lf-contact__info .lf-verse blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 12px;
}
.lf-contact__info .lf-verse cite {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-deep);
  font-style: normal;
}

/* Contact form */
.lf-form { width: 100%; }
.lf-form .lf-form__group { margin-bottom: 22px; }
.lf-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.lf-form input,
.lf-form textarea,
.lf-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  appearance: none;
}
.lf-form input:focus,
.lf-form textarea:focus,
.lf-form select:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(111,122,82,0.15);
}
.lf-form textarea { resize: vertical; min-height: 140px; }
.lf-form__submit { margin-top: 8px; }
.lf-form__note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}
.lf-form__success {
  display: none;
  background: #EAEBDA;
  border: 1px solid #A9B486;
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 16px;
  color: var(--accent-deep);
  font-weight: 600;
  margin-top: 16px;
}
.lf-form__error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: #991B1B;
  margin-bottom: 20px;
  display: none;
}

/* 404 */
.lf-404 {
  text-align: center;
  padding: 120px 32px;
  max-width: 560px;
  margin: 0 auto;
}
.lf-404__num {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 1;
  color: var(--accent-soft);
  margin-bottom: 8px;
}
.lf-404 h1 {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.lf-404 p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ─── COMMENTS ────────────────────────────────────────────────── */
.lf-comments {
  max-width: 760px;
  margin: 0 auto 80px;
  padding: 0 32px;
}
.lf-comments h2 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.comment-list { margin-bottom: 40px; }
.comment-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.comment-author { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.comment-date { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.comment-content p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ─── PAGINATION ──────────────────────────────────────────────── */
.lf-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 32px 80px;
}
.lf-pagination a,
.lf-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--ink);
  transition: all 0.18s;
  text-decoration: none;
}
.lf-pagination a:hover { border-color: var(--accent-deep); background: var(--accent-soft); }
.lf-pagination .current { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }

/* ─── FADE-IN ANIMATION ───────────────────────────────────────── */
.lf-fade { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.lf-fade.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lf-trust__grid,
  .lf-start__grid,
  .lf-browse__grid,
  .lf-channels__grid,
  .lf-video-grid,
  .lf-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .lf-mission__card { grid-template-columns: 1fr; padding: 48px 40px; }
  .lf-about__grid,
  .lf-contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .lf-vet-list { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .lf-container,
  .lf-trust,
  .lf-browse,
  .lf-channels,
  .lf-mission,
  .lf-inner-content,
  .lf-single,
  .lf-comments,
  .lf-featured-video,
  .lf-video-grid-section { padding-left: 20px; padding-right: 20px; }
  .lf-nav__links { display: none; }
  .lf-nav__toggle { display: flex; }
  .lf-nav__inner { padding: 0 20px; }
  .lf-hero__content { padding: 60px 20px 64px; }
  .lf-hero h1 { font-size: 38px; }
  .lf-hero__sub { font-size: 17px; }
  .lf-trust__grid,
  .lf-start__grid,
  .lf-browse__grid,
  .lf-channels__grid,
  .lf-video-grid,
  .lf-posts-grid { grid-template-columns: 1fr; }
  .lf-mission__card { padding: 36px 24px; }
  .lf-vet-section { padding: 36px 24px; }
  .lf-page-hero { padding: 48px 20px 44px; }
  .lf-start__head-row,
  .lf-channels__head-row,
  .lf-video-grid__head-row { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   FIND / SEARCH PAGE
   ============================================================= */

/* ─── Hero + search box ───────────────────────────────────────── */
.lf-find-hero {
  padding: 84px 32px 76px;
  text-align: center;
}
.lf-find-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}
.lf-find-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--band-ink);
  margin-bottom: 16px;
}
.lf-find-hero p {
  font-size: 18px;
  color: var(--band-muted);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 32px;
}
.lf-find-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border-radius: var(--radius-pill);
  padding: 7px 7px 7px 50px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  max-width: 600px;
  margin: 0 auto;
}
.lf-find-search__icon {
  position: absolute;
  left: 20px;
  color: var(--muted);
}
.lf-find-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  padding: 12px 4px;
  outline: none;
}
.lf-find-search input::placeholder { color: #9a9a8c; }
.lf-find-search__btn { padding: 13px 24px; white-space: nowrap; }

/* ─── Body container ──────────────────────────────────────────── */
.lf-find-body { padding-top: 56px; padding-bottom: 88px; }

/* ─── Guided questions ────────────────────────────────────────── */
.lf-guided {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 48px;
}
.lf-guided__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
}
.lf-guided__q {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  flex: 0 0 100%;
}
@media (min-width: 880px) {
  .lf-guided__q { flex: 0 0 230px; }
}
.lf-guided__opts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}
.lf-guided-chip {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.16s;
}
.lf-guided-chip:hover { border-color: var(--accent); background: var(--accent-soft); }
.lf-guided-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}

/* ─── Word cloud ──────────────────────────────────────────────── */
.lf-cloud-wrap {
  background: var(--accent-soft);
  border-radius: var(--radius-card-lg);
  padding: 32px 36px 36px;
  margin-bottom: 44px;
  text-align: center;
}
.lf-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 18px;
  line-height: 1.5;
}
.lf-cloud__word {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--serif);
  color: var(--accent-deep);
  padding: 2px 6px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s, transform 0.15s;
  line-height: 1.1;
}
.lf-cloud__word:hover { color: var(--ink); transform: translateY(-1px); }
.lf-cloud__word.is-active {
  background: var(--accent);
  color: var(--accent-ink);
}
.lf-cloud__word--w1 { font-size: 15px;  opacity: 0.72; }
.lf-cloud__word--w2 { font-size: 19px;  opacity: 0.82; }
.lf-cloud__word--w3 { font-size: 25px;  opacity: 0.9;  }
.lf-cloud__word--w4 { font-size: 32px;  font-weight: 500; }
.lf-cloud__word--w5 { font-size: 42px;  font-weight: 600; color: var(--ink); }

/* ─── Active filters bar ──────────────────────────────────────── */
.lf-find-active {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 32px;
}
.lf-find-active__label { font-size: 14px; color: var(--muted); font-weight: 600; }
.lf-find-active__chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.lf-find-active__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: var(--radius-pill);
  padding: 5px 6px 5px 14px;
  font-size: 13.5px;
  font-weight: 500;
}
.lf-find-active__chip button {
  border: none;
  background: rgba(0,0,0,0.08);
  color: inherit;
  width: 20px; height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lf-find-active__chip button:hover { background: rgba(0,0,0,0.18); }
.lf-find-active__clear {
  border: none;
  background: none;
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

/* ─── Results ─────────────────────────────────────────────────── */
.lf-find-results__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.lf-find-count { font-size: 15px; color: var(--muted); white-space: nowrap; }
.lf-find-results { transition: opacity 0.2s; }
.lf-find-results.is-loading { opacity: 0.45; pointer-events: none; }
.lf-find__empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
}

/* ─── Video card (search variant additions) ───────────────────── */
.lf-video-card__media { position: relative; }
.lf-video-card__media > img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.lf-video-card__noimg {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lf-video-card__topic {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(32,37,26,0.86);
  color: var(--band-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.lf-video-card__dur {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(20,24,16,0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}
.lf-video-card__source {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.lf-video-card__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.lf-kw-chip {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lf-kw-chip:hover { background: var(--accent); color: var(--accent-ink); }

/* ─── Find page responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .lf-find-search { padding-left: 44px; }
  .lf-find-search__btn { padding: 12px 18px; }
}
@media (max-width: 720px) {
  .lf-find-hero { padding: 60px 20px 54px; }
  .lf-cloud-wrap { padding: 26px 20px 28px; }
  .lf-cloud__word--w5 { font-size: 32px; }
  .lf-cloud__word--w4 { font-size: 26px; }
  .lf-find-search { flex-wrap: wrap; border-radius: 22px; padding: 10px 12px 12px 40px; }
  .lf-find-search__btn { width: 100%; justify-content: center; }
}
