/* ═══════════════════════════════════════════════
   TIMELESS LIFE — MAIN STYLESHEET v1.0
   Mobile-first, fully responsive
═══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --ink:    #0f0d0a;
  --ink2:   #2e2a24;
  --ink3:   #6b6358;
  --cream:  #fdfaf5;
  --cream2: #f5f0e8;
  --cream3: #e8dfd0;
  --gold:   #d4a843;
  --gold2:  #b8892a;
  --gold-l: #fdf3dc;
  --accent: #e85d3a;
  --ff:     'Playfair Display', Georgia, serif;
  --fs:     'DM Sans', system-ui, sans-serif;
  --r:      12px;
  --r2:     20px;
  --sh:     0 2px 24px rgba(15,13,10,.08);
  --sh2:    0 12px 48px rgba(15,13,10,.14);
  --max:    1280px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fs);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--fs); }
h1,h2,h3,h4,h5 { font-family: var(--ff); line-height: 1.2; }

/* ── WRAPPER ── */
.tl-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .tl-wrap { padding: 0 40px; } }

/* ── NAVIGATION ── */
.tl-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,250,245,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream3);
}
.tl-nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center;
  height: 64px; gap: 20px;
}
@media (min-width: 768px) { .tl-nav-inner { padding: 0 40px; gap: 32px; } }

.tl-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.tl-logo-mark {
  width: 34px; height: 34px;
  background: var(--ink); border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}
.tl-logo-text {
  font-family: var(--ff); font-size: 1.05rem; color: var(--ink);
  white-space: nowrap;
}
.tl-logo-text b { color: var(--gold); }

.tl-nav-links {
  display: none; gap: 3px; flex: 1;
}
@media (min-width: 900px) { .tl-nav-links { display: flex; } }
.tl-nav-links a {
  font-size: .84rem; font-weight: 500; color: var(--ink2);
  padding: 7px 12px; border-radius: 8px; white-space: nowrap;
  transition: all .18s;
}
.tl-nav-links a:hover, .tl-nav-links a.active { background: var(--ink); color: white; }

.tl-nav-end { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.tl-nav-cta {
  background: var(--gold); color: white;
  padding: 8px 18px; border-radius: 8px;
  font-size: .84rem; font-weight: 600;
  white-space: nowrap; transition: background .2s;
}
.tl-nav-cta:hover { background: var(--gold2); }

/* Burger */
.tl-burger {
  display: flex; flex-direction: column; justify-content: space-between;
  width: 24px; height: 18px; background: none; border: none; padding: 0;
}
@media (min-width: 900px) { .tl-burger { display: none; } }
.tl-burger span {
  display: block; height: 2px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: all .25s;
}
.tl-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.tl-burger.open span:nth-child(2) { opacity: 0; }
.tl-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav drawer */
.tl-mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 190; padding: 24px;
  flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.tl-mobile-nav.open { display: flex; }
.tl-mobile-nav a {
  padding: 14px 18px; font-size: 1rem; font-weight: 500;
  border-radius: 10px; color: var(--ink2);
  border: 1px solid var(--cream3); transition: all .18s;
}
.tl-mobile-nav a:hover { background: var(--ink); color: white; border-color: var(--ink); }

/* ── HERO ── */
.tl-hero {
  position: relative; overflow: hidden;
  padding: 60px 0 60px;
  background: var(--cream);
}
@media (min-width: 900px) { .tl-hero { padding: 80px 0 80px; } }

.tl-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.tl-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); animation: orbFloat 8s ease-in-out infinite;
}
.tl-orb1 { width: 400px; height: 400px; background: rgba(212,168,67,.11); top: -80px; right: -60px; animation-delay: 0s; }
.tl-orb2 { width: 300px; height: 300px; background: rgba(232,93,58,.07); bottom: 0; left: -60px; animation-delay: 3s; }
.tl-orb3 { width: 260px; height: 260px; background: rgba(26,107,107,.06); top: 40%; right: 20%; animation-delay: 5s; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(16px,-24px) scale(1.04); } }

.tl-hero-inner {
  display: flex; flex-direction: column; gap: 48px; position: relative; z-index: 1;
}
@media (min-width: 900px) {
  .tl-hero-inner { flex-direction: row; align-items: center; gap: 60px; }
  .tl-hero-copy { flex: 1 1 55%; }
  .tl-hero-visual { flex: 1 1 45%; }
}

/* eyebrow */
.tl-hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.tl-eyebrow-pill {
  background: var(--gold-l); color: var(--gold2);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(212,168,67,.25);
}
.tl-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:.4; transform: scale(.7); } }
.tl-eyebrow-text { font-size: .78rem; color: var(--ink3); }

.tl-hero-h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: -.03em; margin-bottom: 22px;
  line-height: 1.08;
}
.tl-h1-gold { color: var(--gold); font-style: italic; }
.tl-h1-red  { color: var(--accent); }

.tl-hero-desc {
  font-size: clamp(.95rem, 2vw, 1.05rem);
  color: var(--ink2); line-height: 1.8; margin-bottom: 32px;
  max-width: 480px;
}

.tl-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.tl-btn-dark {
  background: var(--ink); color: white;
  padding: 13px 26px; border-radius: 10px;
  font-weight: 600; font-size: .9rem;
  transition: all .2s; display: inline-flex; align-items: center; gap: 6px;
}
.tl-btn-dark:hover { background: var(--gold); transform: translateY(-1px); }
.tl-btn-outline {
  padding: 13px 20px; border-radius: 10px;
  font-weight: 500; font-size: .9rem; color: var(--ink2);
  border: 1.5px solid var(--cream3); transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.tl-btn-outline:hover { border-color: var(--ink); color: var(--ink); }

.tl-hero-trust { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--cream3); }
.tl-trust-badge { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--ink3); }
.tl-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: #eaf4ee; color: #2a6644; font-size: 10px; font-weight: 700;
  display: grid; place-items: center; flex-shrink: 0;
}

/* Hero Visual */
.tl-hero-visual { position: relative; height: 460px; }
@media (max-width: 899px) { .tl-hero-visual { display: none; } }
.tl-hv-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.tl-hv-ring1 { width: 380px; height: 380px; border: 1px solid var(--cream3); animation: spin 25s linear infinite; }
.tl-hv-ring2 { width: 280px; height: 280px; border: 1px dashed var(--cream3); animation: spin 18s linear infinite reverse; }
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.tl-hero-card {
  position: absolute; left: 16px; right: 16px; top: 60px;
  background: var(--ink); border-radius: 22px; padding: 28px;
  box-shadow: var(--sh2); animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.tl-hcard-label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.tl-hcard-title { font-family: var(--ff); color: white; font-size: 1.2rem; line-height: 1.3; margin-bottom: 12px; }
.tl-hcard-meta { font-size: .75rem; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.tl-hcard-bar { background: rgba(255,255,255,.1); border-radius: 4px; height: 4px; margin-bottom: 7px; }
.tl-hcard-fill { background: var(--gold); height: 4px; border-radius: 4px; width: 65%; animation: bar 3s ease-in-out infinite; }
@keyframes bar { 0%,100% { width: 65%; } 50% { width: 78%; } }
.tl-hcard-note { font-size: .68rem; color: rgba(255,255,255,.3); }

.tl-hfloat {
  position: absolute; background: white; border-radius: 14px;
  padding: 14px 16px; box-shadow: var(--sh2); min-width: 150px;
}
.tl-hf1 { top: 16px; right: -8px; animation: fA 6s ease-in-out infinite; }
.tl-hf2 { bottom: 60px; right: -8px; animation: fB 7s ease-in-out infinite; }
@keyframes fA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-4px,-8px); } }
@keyframes fB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4px,-6px); } }
.tl-hf-icon { font-size: 18px; margin-bottom: 5px; }
.tl-hf-val { font-family: var(--ff); font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.tl-hf-label { font-size: .7rem; color: var(--ink3); line-height: 1.3; margin-top: 3px; }

.tl-hpill {
  position: absolute; background: white; border-radius: 20px;
  padding: 6px 13px; box-shadow: var(--sh); font-size: .72rem; font-weight: 600;
  animation: pF 4s ease-in-out infinite;
}
.tl-hp1 { left: 24px; top: 38px; animation-delay: 0s; }
.tl-hp2 { right: 16px; top: 260px; animation-delay: 1.5s; }
.tl-hp3 { left: 16px; bottom: 90px; animation-delay: .8s; }
@keyframes pF { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ── CATEGORIES ── */
.tl-cats-section { padding: 64px 0; background: var(--cream2); }
.tl-sec-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 8px;
}
.tl-sec-heading {
  font-family: var(--ff); font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink); margin-bottom: 32px; letter-spacing: -.02em;
}
.tl-sec-heading em { color: var(--gold); font-style: italic; }

.tl-cats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .tl-cats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .tl-cats-grid { grid-template-columns: repeat(5, 1fr); } }

.tl-cat-card {
  border-radius: var(--r2); padding: 22px 18px 18px;
  display: block; transition: all .25s;
  border: 1.5px solid transparent;
}
.tl-cat-card:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.tl-cat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 20px; margin-bottom: 13px;
}
.tl-cat-name {
  font-family: var(--ff); font-size: .98rem; font-weight: 600;
  line-height: 1.3; margin-bottom: 7px;
}
.tl-cat-desc { font-size: .76rem; color: var(--ink2); line-height: 1.5; margin-bottom: 14px; }
.tl-cat-cta {
  display: inline-block; color: white;
  font-size: .76rem; font-weight: 700;
  padding: 6px 13px; border-radius: 8px; transition: opacity .2s;
}
.tl-cat-cta:hover { opacity: .85; }

/* ── FEATURED ARTICLES ── */
.tl-featured { padding: 64px 0; background: var(--cream); }
.tl-sec-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 32px; gap: 16px; flex-wrap: wrap;
}
.tl-view-all {
  font-size: .84rem; font-weight: 600; color: var(--gold);
  border-bottom: 1.5px solid transparent; transition: border-color .2s;
  white-space: nowrap;
}
.tl-view-all:hover { border-color: var(--gold); }

.tl-featured-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .tl-featured-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .tl-featured-grid { grid-template-columns: 1.2fr 1fr; }
  .tl-art-hero { grid-row: span 2; }
}

.tl-art-hero {
  border-radius: 22px; overflow: hidden; display: flex;
  flex-direction: column; background: var(--ink);
  min-height: 400px; transition: box-shadow .25s;
}
.tl-art-hero:hover { box-shadow: var(--sh2); }
.tl-art-hero-img {
  flex: 1; min-height: 180px;
  background-size: cover; background-position: center;
}
.tl-art-hero-fallback {
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; opacity: .7;
}
.tl-art-hero-body { padding: 26px; }
.tl-art-hero-title {
  font-family: var(--ff); color: white; font-size: 1.35rem;
  line-height: 1.3; margin: 10px 0 10px;
}
.tl-art-hero-exc { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 14px; }
.tl-art-meta { font-size: .74rem; color: rgba(255,255,255,.4); display: flex; gap: 14px; }

/* article badge */
.tl-abadge {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
}

/* Article card */
.tl-art-card {
  background: white; border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--cream3); transition: all .22s;
}
.tl-art-card:hover { box-shadow: var(--sh2); transform: translateY(-3px); border-color: transparent; }
.tl-art-thumb {
  height: 148px; display: flex; align-items: center;
  justify-content: center; overflow: hidden; position: relative;
}
.tl-art-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tl-art-thumb-icon { font-size: 44px; }
.tl-art-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.tl-art-title {
  font-family: var(--ff); font-size: 1rem; line-height: 1.35;
  color: var(--ink); margin: 8px 0 8px;
}
.tl-art-exc { font-size: .8rem; color: var(--ink3); line-height: 1.55; flex: 1; }
.tl-art-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 13px; padding-top: 11px; border-top: 1px solid var(--cream2);
}
.tl-art-rtime { font-size: .72rem; color: var(--ink3); }
.tl-art-readlink { font-size: .76rem; font-weight: 600; color: var(--gold); }

/* ── FAQ ── */
.tl-faqs-section { padding: 64px 0; background: var(--cream2); }
.tl-faq-list { max-width: 820px; margin: 28px auto 0; }
.tl-faq-item {
  background: white; border-radius: 13px; margin-bottom: 10px;
  border: 1px solid var(--cream3); overflow: hidden;
  transition: box-shadow .2s;
}
.tl-faq-item.open { box-shadow: var(--sh); }
.tl-faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 18px 22px; font-size: .95rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  transition: color .18s;
}
.tl-faq-q:hover { color: var(--gold); }
.tl-faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream2); display: grid; place-items: center;
  font-size: 16px; flex-shrink: 0; transition: all .25s; color: var(--ink3);
}
.tl-faq-item.open .tl-faq-icon { background: var(--gold); color: white; transform: rotate(45deg); }
.tl-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.tl-faq-item.open .tl-faq-a { max-height: 300px; }
.tl-faq-inner { padding: 0 22px 18px; font-size: .88rem; color: var(--ink2); line-height: 1.75; }

/* ── NEWSLETTER ── */
.tl-newsletter-section { padding: 0 0 64px; background: var(--cream); }
.tl-nl-box {
  background: linear-gradient(135deg, var(--ink) 0%, #1a1510 100%);
  border-radius: 26px; padding: 48px 32px;
  display: flex; flex-direction: column; gap: 36px; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .tl-nl-box { flex-direction: row; align-items: center; padding: 56px 60px; gap: 56px; } }
.tl-nl-box::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(212,168,67,.07); pointer-events: none;
}
.tl-nl-copy h2 { font-family: var(--ff); font-size: clamp(1.6rem,3vw,2rem); color: white; margin-bottom: 12px; }
.tl-nl-copy h2 em { color: var(--gold); font-style: italic; }
.tl-nl-copy p { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.7; }
.tl-nl-form-side { flex: 1; }
.tl-nl-benefits { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.tl-nl-benefit { display: flex; align-items: center; gap: 9px; font-size: .875rem; color: rgba(255,255,255,.8); }
.tl-nl-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.tl-nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.tl-nl-input {
  flex: 1; min-width: 180px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); color: white;
  padding: 12px 16px; border-radius: 9px; font-family: var(--fs); font-size: .9rem; outline: none;
}
.tl-nl-input::placeholder { color: rgba(255,255,255,.3); }
.tl-nl-input:focus { border-color: var(--gold); }
.tl-nl-btn {
  background: var(--gold); color: white; border: none;
  padding: 12px 20px; border-radius: 9px;
  font-size: .875rem; font-weight: 600; transition: background .2s;
}
.tl-nl-btn:hover { background: var(--gold2); }
.tl-nl-note { font-size: .72rem; color: rgba(255,255,255,.3); margin-top: 9px; }

/* MC4WP form overrides */
.mc4wp-form input[type="email"] { width: 100%; }

/* ── BREADCRUMB ── */
.tl-breadcrumb {
  background: var(--cream2); border-bottom: 1px solid var(--cream3);
  padding: 12px 0; font-size: .78rem; color: var(--ink3);
}
.tl-breadcrumb .tl-wrap { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; }
.tl-breadcrumb a { color: var(--gold); }
.tl-breadcrumb span { opacity: .5; }

/* ── CATEGORY BANNER ── */
.tl-cat-banner { padding: 48px 0; position: relative; overflow: hidden; }
.cb1 { background: linear-gradient(135deg,#eaf4ee,#d4ead8); }
.cb2 { background: linear-gradient(135deg,#e8f0fa,#c8ddf5); }
.cb3 { background: linear-gradient(135deg,#f2eafa,#e4d0f8); }
.cb4 { background: linear-gradient(135deg,#faeaea,#f5d0d0); }
.cb5 { background: linear-gradient(135deg,#e8f4f4,#c8e5e5); }
.tl-cat-banner::after {
  content: ''; position: absolute; right: -50px; top: -50px;
  width: 260px; height: 260px; border-radius: 50%; opacity: .12; pointer-events: none;
}
.cb1::after { background: #2a6644; }
.cb2::after { background: #1a3d6b; }
.cb3::after { background: #5a1f8a; }
.cb4::after { background: #8a2020; }
.cb5::after { background: #0f5c5c; }
.tl-cat-banner-inner { display: flex; align-items: center; gap: 24px; }
.tl-cat-banner-icon { font-size: 56px; line-height: 1; flex-shrink: 0; }
.tl-cat-banner-inner h1 {
  font-family: var(--ff); font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 10px;
}
.tl-cat-banner-inner p { font-size: .95rem; color: var(--ink2); max-width: 540px; line-height: 1.7; }

/* ── CATEGORY / POST LAYOUT ── */
.tl-cat-layout, .tl-post-layout, .tl-page-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 36px; padding-top: 40px; padding-bottom: 60px; align-items: start;
}
@media (min-width: 1024px) {
  .tl-cat-layout, .tl-post-layout, .tl-page-layout {
    grid-template-columns: 1fr 300px;
  }
}

.tl-cat-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .tl-cat-grid { grid-template-columns: 1fr 1fr; } }

/* Pagination */
.tl-pagination { margin-top: 32px; display: flex; gap: 8px; flex-wrap: wrap; }
.tl-pagination .page-numbers {
  background: white; border: 1px solid var(--cream3);
  color: var(--ink2); padding: 8px 14px; border-radius: 8px;
  font-size: .84rem; transition: all .2s;
}
.tl-pagination .page-numbers.current, .tl-pagination .page-numbers:hover {
  background: var(--ink); color: white; border-color: var(--ink);
}

/* More section */
.tl-more-section { margin-top: 40px; }
.tl-more-title {
  font-family: var(--ff); font-size: 1.2rem; color: var(--ink);
  margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--cream3);
}
.tl-more-list { display: flex; flex-direction: column; gap: 12px; }
.tl-more-item {
  display: flex; gap: 14px; padding: 14px; border-radius: 12px;
  background: white; border: 1px solid var(--cream3); transition: all .2s;
}
.tl-more-item:hover { box-shadow: var(--sh); transform: translateX(3px); border-color: transparent; }
.tl-more-icon { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.tl-more-item h4 { font-family: var(--ff); font-size: .9rem; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.tl-more-item span { font-size: .72rem; color: var(--ink3); }

/* Cat FAQs */
.tl-cat-faqs { margin-top: 48px; }

/* ── SINGLE POST ── */
.tl-post-main { min-width: 0; }
.tl-post-feat-img {
  width: 100%; height: 320px; border-radius: 18px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; margin-bottom: 28px;
}
@media (min-width: 768px) { .tl-post-feat-img { height: 380px; } }
.tl-post-feat-img img { width: 100%; height: 100%; object-fit: cover; }
.tl-post-feat-icon { font-size: 72px; }
.tl-post-badge { margin-bottom: 14px; display: inline-block; }
.tl-post-title {
  font-family: var(--ff);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px;
}
.tl-post-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 13px 0; border-top: 1px solid var(--cream3);
  border-bottom: 1px solid var(--cream3); margin-bottom: 26px;
  font-size: .78rem; color: var(--ink3);
}
.tl-post-meta strong { color: var(--ink2); }
.tl-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--cream3); }

/* TOC */
.tl-toc {
  background: var(--cream2); border-radius: 14px; padding: 22px 24px;
  margin-bottom: 28px; border-left: 3px solid var(--gold);
}
.tl-toc-title { font-family: var(--ff); font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 13px; }
.tl-toc-list { list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 7px; }
.tl-toc-list li { counter-increment: toc; }
.tl-toc-list a {
  font-size: .84rem; color: var(--ink2); display: flex;
  align-items: baseline; gap: 8px; transition: color .18s;
}
.tl-toc-list a::before {
  content: counter(toc) "."; font-size: .72rem;
  color: var(--gold); font-weight: 700; min-width: 14px;
}
.tl-toc-list a:hover { color: var(--gold); }

/* Post content */
.tl-post-content h2 { font-family: var(--ff); font-size: 1.45rem; color: var(--ink); margin: 32px 0 14px; }
.tl-post-content h3 { font-family: var(--ff); font-size: 1.15rem; color: var(--ink); margin: 24px 0 10px; }
.tl-post-content p { font-size: .97rem; color: var(--ink2); line-height: 1.85; margin-bottom: 17px; }
.tl-post-content ul, .tl-post-content ol { margin: 0 0 18px 22px; }
.tl-post-content li { font-size: .95rem; color: var(--ink2); line-height: 1.75; padding: 3px 0; }
.tl-post-content a { color: var(--gold); border-bottom: 1px solid rgba(212,168,67,.3); transition: border-color .2s; }
.tl-post-content a:hover { border-color: var(--gold); }
.tl-post-content blockquote {
  background: var(--gold-l); border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0; padding: 16px 20px;
  margin: 22px 0; font-style: italic; font-size: .95rem; color: var(--ink2); line-height: 1.75;
}
.tl-post-content img { border-radius: 12px; margin: 20px 0; }

/* Author bio */
.tl-author-bio {
  display: flex; gap: 18px; background: white;
  border-radius: 16px; padding: 24px; border: 1px solid var(--cream3); margin: 36px 0;
}
.tl-author-avatar img, .tl-author-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.tl-author-info h4 { font-family: var(--ff); font-size: .95rem; color: var(--ink); margin-bottom: 5px; }
.tl-author-info p { font-size: .82rem; color: var(--ink3); line-height: 1.6; }

/* Related posts */
.tl-related { margin-top: 36px; }
.tl-related-title { font-family: var(--ff); font-size: 1.2rem; color: var(--ink); margin-bottom: 18px; }
.tl-related-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .tl-related-grid { grid-template-columns: repeat(3,1fr); } }
.tl-related-card {
  background: white; border-radius: 13px; overflow: hidden;
  border: 1px solid var(--cream3); transition: all .2s;
}
.tl-related-card:hover { box-shadow: var(--sh); transform: translateY(-2px); border-color: transparent; }
.tl-rc-thumb {
  height: 96px; display: grid; place-items: center; font-size: 32px; overflow: hidden;
}
.tl-rc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tl-rc-body { padding: 13px; }
.tl-rc-body h4 { font-family: var(--ff); font-size: .85rem; color: var(--ink); margin-top: 6px; line-height: 1.3; }

/* ── SIDEBAR ── */
.tl-sidebar {
  display: flex; flex-direction: column; gap: 18px;
}
@media (min-width: 1024px) { .tl-sidebar { position: sticky; top: 84px; } }

.tl-sb-widget {
  background: white; border-radius: 14px; padding: 20px;
  border: 1px solid var(--cream3);
}
.tl-sb-nl {
  background: var(--gold-l) !important;
  border-color: rgba(212,168,67,.25) !important;
}
.tl-sb-title {
  font-family: var(--ff); font-size: .9rem; color: var(--ink);
  margin-bottom: 14px; padding-bottom: 9px; border-bottom: 1px solid var(--cream2);
}
.tl-sb-nl .tl-sb-title { border-color: rgba(212,168,67,.2); }
.tl-sb-nl p { font-size: .82rem; color: var(--ink2); margin-bottom: 13px; line-height: 1.6; }

/* Search */
.tl-search-wrap { display: flex; gap: 8px; }
.tl-search-input {
  flex: 1; background: var(--cream2); border: 1px solid var(--cream3);
  color: var(--ink); padding: 9px 13px; border-radius: 8px;
  font-family: var(--fs); font-size: .84rem; outline: none;
}
.tl-search-input:focus { border-color: var(--gold); }
.tl-search-btn {
  background: var(--ink); color: white; border: none;
  padding: 9px 13px; border-radius: 8px; font-size: .84rem; transition: background .2s;
}
.tl-search-btn:hover { background: var(--gold); }

/* SB cats */
.tl-sb-cats { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.tl-sb-cat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 11px; border-radius: 8px; font-size: .84rem;
  color: var(--ink2); transition: background .18s;
}
.tl-sb-cat:hover { background: var(--cream2); color: var(--ink); }
.tl-sb-count { font-size: .72rem; color: var(--ink3); background: var(--cream2); padding: 2px 7px; border-radius: 10px; }

/* SB posts */
.tl-sb-posts { display: flex; flex-direction: column; gap: 12px; }
.tl-sb-post { display: flex; gap: 10px; }
.tl-sb-post:hover .tl-sb-post-title { color: var(--gold); }
.tl-sb-post-thumb {
  width: 48px; height: 48px; border-radius: 8px;
  display: grid; place-items: center; font-size: 20px; flex-shrink: 0;
}
.tl-sb-post-title { font-size: .8rem; font-weight: 600; color: var(--ink); line-height: 1.35; margin-bottom: 3px; transition: color .2s; }
.tl-sb-post-meta { font-size: .7rem; color: var(--ink3); }

/* Tags */
.tl-sb-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tl-sb-tag {
  background: var(--cream2); color: var(--ink2);
  font-size: .74rem; padding: 5px 10px; border-radius: 6px; transition: all .18s;
}
.tl-sb-tag:hover { background: var(--ink); color: white; }

/* SB newsletter */
.tl-sb-email {
  width: 100%; background: white; border: 1px solid var(--cream3);
  color: var(--ink); padding: 9px 13px; border-radius: 8px;
  font-family: var(--fs); font-size: .84rem; outline: none; margin-bottom: 8px; display: block;
}
.tl-sb-email:focus { border-color: var(--gold); }
.tl-sb-nl-btn {
  width: 100%; background: var(--gold); color: white; border: none;
  padding: 10px; border-radius: 8px; font-family: var(--fs);
  font-size: .875rem; font-weight: 600; transition: background .2s;
}
.tl-sb-nl-btn:hover { background: var(--gold2); }

/* ── STATIC PAGES ── */
.tl-page-main { min-width: 0; }
.tl-page-title { font-family: var(--ff); font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 28px; }
.tl-page-content h2 { font-family: var(--ff); font-size: 1.2rem; margin: 26px 0 10px; }
.tl-page-content p { color: var(--ink2); line-height: 1.8; margin-bottom: 13px; font-size: .93rem; }
.tl-page-content ul { margin: 0 0 13px 22px; color: var(--ink2); line-height: 1.8; font-size: .93rem; }
.tl-page-content a { color: var(--gold); }

/* ── FOOTER ── */
.tl-footer { background: var(--ink); color: rgba(255,255,255,.6); }
.tl-footer-inner { max-width: var(--max); margin: 0 auto; padding: 56px 24px 0; }
@media (min-width: 768px) { .tl-footer-inner { padding: 56px 40px 0; } }
.tl-footer-top {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 600px) { .tl-footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tl-footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.tl-footer-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; }
.tl-fb-emblem {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--gold); display: grid; place-items: center;
  color: var(--gold); font-size: 12px; font-family: var(--ff);
}
.tl-fb-name { font-family: var(--ff); color: white; font-size: .95rem; }
.tl-fb-name b { color: var(--gold); }
.tl-footer-tagline { font-size: .83rem; line-height: 1.7; margin-bottom: 18px; }
.tl-footer-socials { display: flex; gap: 7px; }
.tl-fs-btn {
  width: 30px; height: 30px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center; color: rgba(255,255,255,.5);
  font-size: .72rem; font-weight: 700; transition: all .2s;
}
.tl-fs-btn:hover { border-color: var(--gold); color: var(--gold); }
.tl-footer-col h4 {
  color: white; font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px;
}
.tl-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tl-footer-col a { color: rgba(255,255,255,.5); font-size: .84rem; transition: color .2s; }
.tl-footer-col a:hover { color: var(--gold); }

.tl-footer-input {
  width: 100%; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); color: white;
  padding: 10px 14px; border-radius: 8px; font-family: var(--fs);
  font-size: .84rem; outline: none; margin-bottom: 8px;
}
.tl-footer-input::placeholder { color: rgba(255,255,255,.3); }
.tl-footer-input:focus { border-color: var(--gold); }
.tl-footer-submit {
  width: 100%; background: var(--gold); color: white; border: none;
  padding: 10px; border-radius: 8px; font-family: var(--fs);
  font-size: .84rem; font-weight: 600; transition: background .2s;
}
.tl-footer-submit:hover { background: var(--gold2); }

.tl-footer-bottom {
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .76rem; color: rgba(255,255,255,.28); flex-wrap: wrap; gap: 10px;
}
.tl-footer-bottom a { color: rgba(255,255,255,.38); transition: color .2s; }
.tl-footer-bottom a:hover { color: rgba(255,255,255,.7); }
.tl-fbl { display: flex; gap: 18px; }

/* ── SEARCH RESULTS ── */
.tl-search-results { padding: 48px 0 64px; }
.tl-search-results .tl-cat-grid { margin-top: 28px; }

/* ── 404 ── */
.tl-404 { padding: 80px 0; text-align: center; }
.tl-404 h1 { font-family: var(--ff); font-size: 6rem; color: var(--cream3); }
.tl-404 h2 { font-family: var(--ff); font-size: 1.8rem; margin-bottom: 16px; }
.tl-404 p { color: var(--ink3); margin-bottom: 28px; }

/* ── WP ADMIN BAR FIX ── */
.admin-bar .tl-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .tl-nav { top: 46px; } }

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 599px) {
  .tl-nl-form { flex-direction: column; }
  .tl-cat-banner-icon { font-size: 40px; }
  .tl-hero-card { padding: 20px; }
  .tl-hcard-title { font-size: 1rem; }
}
