/*
Theme Name: Lakes & Ledgers
Theme URI: https://lakesandledgers.com
Author: Lakes & Ledgers LLC
Description: Professional accounting services theme for Lakes & Ledgers.
Version: 1.0.0
License: Proprietary
Text Domain: lakes-ledgers
*/

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&display=swap');

/* ── Design Tokens ── */
:root {
  --radius: 0.5rem;

  --background: oklch(0.99 0.005 95);
  --foreground: oklch(0.22 0.04 230);

  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.04 230);

  --primary: oklch(0.30 0.07 250);
  --primary-foreground: oklch(0.98 0.01 95);

  --secondary: oklch(0.94 0.02 220);
  --secondary-foreground: oklch(0.28 0.06 250);

  --muted: oklch(0.96 0.01 220);
  --muted-foreground: oklch(0.48 0.03 240);

  --accent: oklch(0.48 0.10 145);
  --accent-foreground: oklch(0.98 0.01 95);

  --border: oklch(0.90 0.01 220);
  --input: oklch(0.92 0.01 220);
  --ring: oklch(0.45 0.07 225);

  --gradient-hero: linear-gradient(135deg, oklch(0.28 0.06 225 / 0.85), oklch(0.20 0.05 230 / 0.65));
  --gradient-mist: linear-gradient(180deg, oklch(0.98 0.01 200), oklch(0.94 0.02 210));
  --shadow-soft: 0 1px 2px oklch(0.22 0.04 230 / 0.04), 0 8px 24px oklch(0.22 0.04 230 / 0.06);
  --shadow-elegant: 0 10px 40px -10px oklch(0.22 0.04 230 / 0.18);

  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-serif: 'Fraunces', ui-serif, Georgia, serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}
h1,h2,h3,h4 {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Layout ── */
.ll-container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.ll-grid-2 { display: grid; gap: 3.5rem; }
.ll-grid-3 { display: grid; gap: 1.5rem; }
.ll-grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .ll-grid-2 { grid-template-columns: 1fr 1fr; align-items: center; }
  .ll-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .ll-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .ll-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: oklch(0.99 0.005 95 / 0.85);
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.site-logo img { height: 2.5rem; width: 2.5rem; object-fit: contain; }
.site-logo__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foreground);
}
.site-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .site-nav { display: flex; } }
.site-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.15s;
}
.site-nav a:hover, .site-nav a.current-menu-item { color: var(--primary); font-weight: 500; }
.site-nav__cta {
  background: var(--primary);
  color: var(--primary-foreground) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: opacity 0.15s;
}
.site-nav__cta:hover { opacity: 0.9; }

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn svg { width: 1.25rem; height: 1.25rem; }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
}
.mobile-nav.is-open { display: block; }
.mobile-nav__inner { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem 1.5rem; }
.mobile-nav__inner a {
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
}
.mobile-nav__inner a:hover { background: var(--secondary); }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--secondary);
}
.site-footer__grid { display: grid; gap: 2rem; padding: 3rem 0; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(3, 1fr); } }
.site-footer h4 { font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--foreground); }
.site-footer p, .site-footer li, .site-footer a { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }
.site-footer a:hover { color: var(--primary); }
.site-footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-elegant); }
.btn-primary:hover { opacity: 0.9; color: var(--primary-foreground); }
.btn-accent { background: var(--accent); color: var(--accent-foreground); box-shadow: var(--shadow-elegant); }
.btn-accent:hover { opacity: 0.9; color: var(--accent-foreground); }
.btn-outline { border: 1px solid oklch(1 0 0 / 0.4); color: #fff; }
.btn-outline:hover { background: oklch(1 0 0 / 0.1); color: #fff; }
.btn-ghost {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  gap: 0.5rem;
  border-radius: 0;
  box-shadow: none;
}
.btn-ghost:hover { gap: 0.75rem; color: var(--primary); }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ── Page Header (mist sections) ── */
.page-header {
  border-bottom: 1px solid var(--border);
  background: var(--gradient-mist);
  padding: 5rem 0;
}
@media (min-width: 768px) { .page-header { padding: 7rem 0; } }
.page-header__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.page-header h1 {
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--foreground);
}
@media (min-width: 768px) { .page-header h1 { font-size: 3rem; } }
.page-header p {
  margin-top: 1.25rem;
  max-width: 40rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* ── Cards ── */
.ll-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ll-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-4px); }
.ll-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: oklch(0.30 0.07 250 / 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
}
.ll-card__icon svg { width: 1.25rem; height: 1.25rem; }
.ll-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; }
.ll-card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* Services card variant (larger) */
.ll-card--service { padding: 2rem; }
.ll-card--service .ll-card__icon { width: 3rem; height: 3rem; margin-bottom: 1.25rem; }
.ll-card--service .ll-card__icon svg { width: 1.375rem; height: 1.375rem; }
.ll-card--service h2 { font-size: 1.5rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.75rem; }
.ll-card--service p { color: var(--muted-foreground); }

/* ── Check list ── */
.ll-checklist { display: flex; flex-direction: column; gap: 1rem; }
.ll-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: oklch(0.94 0.02 220 / 0.5);
  border-radius: 0.5rem;
  padding: 1rem;
}
.ll-checklist li svg { flex-shrink: 0; margin-top: 0.125rem; color: var(--primary); width: 1.25rem; height: 1.25rem; }
.ll-checklist li span { color: var(--foreground); }

/* ── CTA Band ── */
.ll-cta-band {
  background: var(--primary);
  color: var(--primary-foreground);
}
.ll-cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .ll-cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.ll-cta-band h2 { font-size: 1.875rem; font-weight: 600; }
@media (min-width: 768px) { .ll-cta-band h2 { font-size: 2.25rem; } }
.ll-cta-band p { margin-top: 0.75rem; max-width: 36rem; color: oklch(0.98 0.01 95 / 0.8); }

/* ── Section spacing ── */
.ll-section { padding: 6rem 0; }
.ll-section--alt { background: var(--gradient-mist); padding: 6rem 0; }
.ll-section--secondary { background: var(--secondary); padding: 6rem 0; }
.ll-section__eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.ll-section__title { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 600; color: var(--foreground); }
@media (min-width: 768px) { .ll-section__title { font-size: 2.25rem; } }
.ll-section__lead { margin-top: 1rem; max-width: 40rem; color: var(--muted-foreground); }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero__content { position: relative; padding: 7rem 0; }
@media (min-width: 768px) { .hero__content { padding: 10rem 0; } }
.hero__inner { max-width: 40rem; }
.hero__badge {
  display: inline-block;
  border-radius: 9999px;
  border: 1px solid oklch(1 0 0 / 0.3);
  background: oklch(1 0 0 / 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: oklch(1 0 0 / 0.9);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
.hero h1 .text-accent { color: var(--accent); }
.hero p { margin-top: 1.5rem; max-width: 36rem; font-size: 1.125rem; color: oklch(1 0 0 / 0.85); }
.hero__buttons { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── About sidebar card ── */
.ll-aside {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: oklch(0.94 0.02 220 / 0.4);
  padding: 1.5rem;
  height: fit-content;
}
.ll-aside h3 { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600; color: var(--foreground); margin-bottom: 1rem; }
.ll-aside dl { display: flex; flex-direction: column; gap: 1rem; }
.ll-aside dt { font-size: 0.875rem; color: var(--muted-foreground); }
.ll-aside dd { font-size: 0.875rem; color: var(--foreground); }

/* ── About body text ── */
.ll-prose { display: flex; flex-direction: column; gap: 1.25rem; color: oklch(0.22 0.04 230 / 0.9); line-height: 1.75; }
.ll-prose p.disclaimer { font-size: 0.875rem; color: var(--muted-foreground); font-style: italic; }

/* ── Contact ── */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__item { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info__item svg { flex-shrink: 0; margin-top: 0.125rem; color: var(--primary); width: 1.25rem; height: 1.25rem; }
.contact-info__label { font-weight: 500; color: var(--foreground); font-size: 0.9375rem; }
.contact-info__value { font-size: 0.875rem; color: var(--muted-foreground); }
.contact-info__value a { color: var(--primary); }
.contact-info__value a:hover { text-decoration: underline; }

.contact-form {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.form-grid-2 { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.form-field:last-child { margin-bottom: 0; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.form-label .required { color: var(--accent); }
.form-input, .form-textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  outline: none;
  transition: box-shadow 0.15s;
}
.form-input:focus, .form-textarea:focus { box-shadow: 0 0 0 2px var(--ring); }
.form-textarea { resize: vertical; min-height: 8rem; }

/* Success state */
.form-success { padding: 3rem 0; text-align: center; }
.form-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: oklch(0.30 0.07 250 / 0.1);
  color: var(--primary);
  margin: 0 auto 1rem;
}
.form-success__icon svg { width: 1.25rem; height: 1.25rem; }
.form-success h3 { font-size: 1.5rem; font-weight: 600; color: var(--foreground); }
.form-success p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ── Utilities ── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.text-center { text-align: center; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

/* ═══════════════════════════════════════════════
   BLOG STYLES
   ═══════════════════════════════════════════════ */

/* ── Blog grid ── */
.ll-blog-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px)  { .ll-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ll-blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Post card ── */
.ll-post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.ll-post-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-4px); }

.ll-post-card__image { display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--secondary); }
.ll-post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ll-post-card:hover .ll-post-card__image img { transform: scale(1.03); }
.ll-post-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
}

.ll-post-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.ll-post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}
.ll-post-card__dot { color: var(--border); }
.ll-post-card__cat {
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ll-post-card__cat:hover { text-decoration: underline; }

.ll-post-card__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.3;
  margin-bottom: 0.625rem;
}
.ll-post-card__title a { color: inherit; }
.ll-post-card__title a:hover { color: var(--primary); }

.ll-post-card__excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  flex: 1;
}

.ll-post-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.15s;
}
.ll-post-card__readmore:hover { gap: 0.625rem; color: var(--primary); }
.ll-post-card__readmore svg { width: 0.875rem; height: 0.875rem; }

/* ── Pagination ── */
.ll-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.ll-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  transition: all 0.15s;
}
.ll-pagination .page-numbers:hover { border-color: var(--primary); color: var(--primary); }
.ll-pagination .page-numbers.current { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.ll-pagination .prev, .ll-pagination .next { gap: 0.375rem; font-weight: 500; }

/* ── Empty state ── */
.ll-blog-empty {
  text-align: center;
  padding: 5rem 0;
  max-width: 32rem;
  margin: 0 auto;
}
.ll-blog-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--muted-foreground);
  margin: 0 auto 1.5rem;
}
.ll-blog-empty h2 { font-size: 1.5rem; font-weight: 600; color: var(--foreground); }
.ll-blog-empty p { margin-top: 0.75rem; color: var(--muted-foreground); }

/* ═══════════════════════════════════════════════
   SINGLE POST STYLES
   ═══════════════════════════════════════════════ */

/* ── Post header ── */
.ll-post-header-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ll-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.15s;
}
.ll-back-link svg { transform: rotate(180deg); width: 0.875rem; height: 0.875rem; }
.ll-back-link:hover { color: var(--primary); }

.ll-post-header-byline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ── Featured image ── */
.ll-post-hero-image { padding: 2rem 0 0; }
.ll-post-hero-image img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-elegant);
}

/* ── Post layout (content + sidebar) ── */
.ll-post-layout { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .ll-post-layout { grid-template-columns: 1fr 18rem; } }

/* ── Post content (typography) ── */
.ll-post-content { max-width: 100%; }
.ll-post-content h2 { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 600; color: var(--foreground); margin: 2.5rem 0 1rem; }
.ll-post-content h3 { font-family: var(--font-serif); font-size: 1.375rem; font-weight: 600; color: var(--foreground); margin: 2rem 0 0.75rem; }
.ll-post-content p { color: var(--foreground); line-height: 1.8; margin-bottom: 1.25rem; }
.ll-post-content ul, .ll-post-content ol { margin: 1.25rem 0 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.ll-post-content ul { list-style: disc; }
.ll-post-content ol { list-style: decimal; }
.ll-post-content li { color: var(--foreground); line-height: 1.7; }
.ll-post-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.ll-post-content a:hover { opacity: 0.8; }
.ll-post-content strong { font-weight: 600; color: var(--foreground); }
.ll-post-content em { font-style: italic; }
.ll-post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--secondary);
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: var(--muted-foreground);
}
.ll-post-content hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.ll-post-content img { border-radius: 0.5rem; margin: 1.5rem 0; }
.ll-post-content pre {
  background: var(--foreground);
  color: var(--background);
  padding: 1.25rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  font-size: 0.875rem;
  margin: 1.5rem 0;
}
.ll-post-content code { font-family: monospace; font-size: 0.9em; background: var(--secondary); padding: 0.125rem 0.375rem; border-radius: 0.25rem; }

/* ── Post nav ── */
.ll-post-nav {
  display: grid;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 640px) { .ll-post-nav { grid-template-columns: 1fr 1fr; } }
.ll-post-nav__item { display: flex; flex-direction: column; gap: 0.5rem; }
.ll-post-nav__item--next { text-align: right; }
.ll-post-nav__label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}
.ll-post-nav__label svg { width: 0.875rem; height: 0.875rem; }
.ll-post-nav__item--prev .ll-post-nav__label svg { transform: rotate(180deg); }
.ll-post-nav__item a { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--foreground); line-height: 1.3; }
.ll-post-nav__item a:hover { color: var(--primary); }
