/* ═══════════════════════════════════════════════════════════
   THE LEADERSHIP GROWTH — PREMIUM DARK SITE v0.5.0
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ────────────────────────────────────────────────── */
:root {
  --tlg-oxblood:   #8b1a1a;
  --tlg-oxblood-2: #a32020;
  --tlg-copper:    #c17d3c;
  --tlg-gold:      #e8b84b;
  --tlg-ivory:     #faf7f2;
  --tlg-ivory-dim: rgba(250, 247, 242, 0.62);
  --tlg-dark:      #1a1412;
  --tlg-dark-2:    #130f0d;
  --tlg-dark-3:    #0e0b09;
  --tlg-glass:     rgba(250, 247, 242, 0.04);
  --tlg-glass-hov: rgba(250, 247, 242, 0.08);
  --tlg-border:    rgba(250, 247, 242, 0.08);
  --tlg-border-cu: rgba(193, 125, 60, 0.35);
  --tlg-header-h:  72px;
  --tlg-radius:    8px;
  --tlg-ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── KEYFRAMES ─────────────────────────────────────────────── */
@keyframes tlg-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%      { transform: translate(40px, -30px) scale(1.07); }
  65%      { transform: translate(-25px, 22px) scale(0.94); }
}

@keyframes tlg-orb-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-38px, 26px) scale(1.05); }
  75%      { transform: translate(22px, -20px) scale(0.97); }
}

@keyframes tlg-pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(193, 125, 60, 0.55); }
  60%      { opacity: 0.5; box-shadow: 0 0 0 6px rgba(193, 125, 60, 0); }
}

@keyframes tlg-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes tlg-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

@keyframes tlg-shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* ─── BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse 80% 50% at 8% 8%, rgba(139, 26, 26, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 92% 75%, rgba(193, 125, 60, 0.05) 0%, transparent 55%),
    var(--tlg-dark-2);
  background-attachment: fixed;
  color: var(--tlg-ivory);
  font-family: Lato, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Site-wide grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.018;
  mix-blend-mode: overlay;
}

/* Suppress WP artifacts */
.hostinger-ai-page-title,
.wp-block-post-title.hostinger-ai-page-title { display: none !important; }

.hostinger-ai-menu,
header.site-header { display: none !important; }

/* ─── AMBIENT ORBS (fixed, behind everything) ───────────────── */
.tlg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
  will-change: transform;
}

.tlg-orb-a {
  width: 680px; height: 680px;
  background: rgba(139, 26, 26, 0.14);
  top: 4%; left: -10%;
  animation: tlg-orb-drift 22s ease-in-out infinite;
}

.tlg-orb-b {
  width: 520px; height: 520px;
  background: rgba(193, 125, 60, 0.07);
  top: 52%; right: -8%;
  animation: tlg-orb-drift-b 29s ease-in-out infinite;
}

.tlg-orb-c {
  width: 380px; height: 380px;
  background: rgba(139, 26, 26, 0.09);
  bottom: 8%; left: 32%;
  animation: tlg-orb-drift 36s ease-in-out infinite reverse;
}

/* ─── CUSTOM HEADER ─────────────────────────────────────────── */
.tlg-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--tlg-header-h);
  background: rgba(13, 10, 8, 0.82);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid rgba(193, 125, 60, 0.1);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.tlg-header.scrolled {
  background: rgba(8, 6, 5, 0.94);
  border-bottom-color: rgba(193, 125, 60, 0.2);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}

.tlg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.tlg-header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.tlg-header-logo img {
  width: 42px; height: 42px;
  border-radius: 5px;
  display: block;
  transition: opacity 0.2s ease;
}

.tlg-header-logo:hover img { opacity: 0.8; }

.tlg-header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.tlg-header-nav a {
  color: rgba(250, 247, 242, 0.85);
  font-family: Lato, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 9px 14px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.22s ease;
  border-radius: 3px;
}

.tlg-header-nav a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--tlg-copper);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s var(--tlg-ease);
}

.tlg-header-nav a:hover { color: var(--tlg-copper); }
.tlg-header-nav a:hover::after { transform: scaleX(1); }
.tlg-header-nav a[aria-current="page"] { color: var(--tlg-copper); }
.tlg-header-nav a[aria-current="page"]::after { transform: scaleX(0.6); }
.tlg-header-nav .tlg-header-cta::after,
.tlg-header-nav .tlg-status-badge::after { display: none; }

.tlg-header-cta {
  background: var(--tlg-oxblood) !important;
  color: rgba(250, 247, 242, 0.95) !important;
  margin-left: 10px;
  padding: 9px 16px !important;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease !important;
}

.tlg-header-cta:hover {
  background: var(--tlg-oxblood-2) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 22px rgba(139, 26, 26, 0.5) !important;
  color: #fff !important;
}

/* Status badge */
.tlg-status-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: rgba(250, 247, 242, 0.55);
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 12px;
  padding-left: 18px;
  border-left: 1px solid rgba(250, 247, 242, 0.12);
}

.tlg-status-dot {
  width: 6px; height: 6px;
  background: var(--tlg-copper);
  border-radius: 50%;
  flex-shrink: 0;
  animation: tlg-pulse-dot 2.6s ease-in-out infinite;
}

/* Hamburger */
.tlg-header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.tlg-header-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(250, 247, 242, 0.72);
  border-radius: 2px;
  transition: all 0.26s ease;
}

.tlg-header-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tlg-header-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.tlg-header-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.tlg-mobile-menu {
  display: flex;
  flex-direction: column;
  background: rgba(13, 10, 8, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(193, 125, 60, 0.1);
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.36s ease, padding 0.36s ease;
}

.tlg-mobile-menu.open {
  max-height: 420px;
  padding: 18px 24px 28px;
}

.tlg-mobile-menu a {
  color: rgba(250, 247, 242, 0.72);
  font-family: Lato, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  padding: 13px 0;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(250, 247, 242, 0.06);
  transition: color 0.2s ease;
}

.tlg-mobile-menu a:last-child { border-bottom: none; }
.tlg-mobile-menu a:hover { color: var(--tlg-gold); }

/* ─── PAGE WRAPPER ──────────────────────────────────────────── */
.tlg-page {
  position: relative;
  z-index: 2;
  background: transparent;
  color: var(--tlg-ivory);
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.tlg-section { padding: clamp(96px, 11vw, 160px) 24px; position: relative; }
.tlg-inner  { width: min(1140px, 100%); margin: 0 auto; }
.tlg-narrow { width: min(760px, 100%);  margin: 0 auto; }

/* Editorial section divider */
.tlg-section + .tlg-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tlg-copper), transparent);
  opacity: 0.3;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.tlg-kicker {
  color: var(--tlg-copper);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.tlg-kicker::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--tlg-copper));
  flex-shrink: 0;
}

.tlg-page h1, .tlg-page h2, .tlg-page h3 {
  color: var(--tlg-ivory);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}

.tlg-page h1 {
  font-size: clamp(3rem, 7.6vw, 6rem);
  letter-spacing: -0.032em;
  font-weight: 800;
  margin: 18px 0 26px;
}

.tlg-page h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: -0.024em;
  margin: 14px 0 24px;
}

.tlg-page h3 {
  font-size: clamp(1.2rem, 1.85vw, 1.55rem);
  letter-spacing: -0.012em;
  font-weight: 700;
  margin-bottom: 14px;
}

.tlg-page p, .tlg-page li {
  color: var(--tlg-ivory-dim);
  font-size: 1.06rem;
  line-height: 1.82;
  margin-bottom: 16px;
  font-weight: 400;
}

.tlg-page .tlg-narrow p:first-of-type,
.tlg-page .tlg-inner > p:first-of-type {
  font-size: 1.18rem;
  line-height: 1.72;
  color: rgba(250, 247, 242, 0.78);
  font-weight: 400;
}

.tlg-page strong { color: var(--tlg-ivory); font-weight: 700; }
.tlg-page em { color: rgba(250, 247, 242, 0.86); font-style: italic; }
.tlg-page p a,
.tlg-page li a,
.tlg-card p a,
.tlg-card li a {
  color: var(--tlg-copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(193, 125, 60, 0.28);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tlg-page p a:hover,
.tlg-page li a:hover,
.tlg-card p a:hover,
.tlg-card li a:hover {
  color: var(--tlg-gold);
  border-bottom-color: var(--tlg-gold);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.tlg-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--tlg-ease), transform 0.72s var(--tlg-ease);
}

.tlg-reveal.revealed { opacity: 1; transform: none; }
.tlg-reveal-d1 { transition-delay: 0.08s; }
.tlg-reveal-d2 { transition-delay: 0.18s; }
.tlg-reveal-d3 { transition-delay: 0.28s; }

/* ─── TICKER STRIP ──────────────────────────────────────────── */
.tlg-ticker-strip {
  overflow: hidden;
  background: rgba(193, 125, 60, 0.05);
  border-block: 1px solid rgba(193, 125, 60, 0.12);
  padding: 14px 0;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  cursor: default;
}

.tlg-ticker-track {
  display: inline-flex;
  animation: tlg-ticker-scroll 34s linear infinite;
  will-change: transform;
}

.tlg-ticker-strip:hover .tlg-ticker-track { animation-play-state: paused; }

.tlg-ticker-track span {
  color: rgba(250, 247, 242, 0.4);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 24px;
}

.tlg-ticker-dot {
  color: var(--tlg-copper) !important;
  opacity: 0.55;
  padding: 0 2px !important;
  letter-spacing: 0 !important;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.tlg-hero {
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding-top: 80px;
  background:
    radial-gradient(ellipse 100% 75% at 6% 55%, rgba(139, 26, 26, 0.32) 0%, transparent 62%),
    radial-gradient(ellipse 60% 60% at 84% 14%, rgba(193, 125, 60, 0.12) 0%, transparent 58%),
    radial-gradient(ellipse 60% 40% at 60% 92%, rgba(13, 10, 8, 0.8) 0%, transparent 60%),
    var(--tlg-dark-3);
}

/* Noise grain */
.tlg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 0;
}

/* Seamless fade into body dark */
.tlg-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--tlg-dark-2) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.tlg-hero-copy {
  max-width: 840px;
  position: relative;
  z-index: 1;
}

.tlg-hero h1, .tlg-hero h2 { color: var(--tlg-ivory); }

.tlg-hero h1 {
  background: linear-gradient(148deg, #faf3ea 18%, #e8c89a 60%, #c17d3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(3.4rem, 9.5vw, 7.2rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
  font-weight: 800;
}

.tlg-hero p {
  color: rgba(250, 247, 242, 0.74);
  font-size: clamp(1.1rem, 1.85vw, 1.38rem);
  max-width: 660px;
  line-height: 1.66;
  margin-bottom: 14px;
  font-weight: 400;
}

.tlg-hero .tlg-kicker { color: var(--tlg-gold); }
.tlg-hero .tlg-kicker::before { background: var(--tlg-gold); }

.tlg-hero-logo {
  display: block;
  width: clamp(72px, 12vw, 136px);
  height: auto;
  margin: 0 0 28px;
  border-radius: 6px;
  box-shadow: 0 4px 40px rgba(139, 26, 26, 0.4), 0 0 0 1px rgba(193, 125, 60, 0.15);
}

/* Cursor glow (injected via JS) — subtle, premium */
.tlg-cursor-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: background 0.2s ease, opacity 0.5s ease;
}

.tlg-hero:hover .tlg-cursor-glow { opacity: 1; }

/* Typewriter */
.tlg-typewriter {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.35);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tlg-tw-prefix { color: rgba(250, 247, 242, 0.25); white-space: nowrap; }
.tlg-tw-text   { color: var(--tlg-copper); }
.tlg-tw-cursor { color: var(--tlg-copper); animation: tlg-blink 1.1s step-end infinite; }

/* ─── SECTION BANDS (all dark, tonal variation only) ────────── */
.tlg-band {
  background: rgba(13, 10, 8, 0.6);
  border-block: 1px solid rgba(250, 247, 242, 0.05);
  position: relative;
}

.tlg-dark-band {
  background: rgba(13, 10, 8, 0.7);
  position: relative;
  overflow: hidden;
}

.tlg-dark-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 90% 50%, rgba(193, 125, 60, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 8% 80%, rgba(139, 26, 26, 0.16) 0%, transparent 55%);
  pointer-events: none;
}

.tlg-dark-band > * { position: relative; z-index: 1; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.tlg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.tlg-button {
  align-items: center;
  border-radius: 3px;
  display: inline-flex;
  font-family: Lato, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 52px;
  padding: 16px 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.28s var(--tlg-ease), box-shadow 0.28s var(--tlg-ease), background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.tlg-button:focus-visible {
  outline: 2px solid var(--tlg-copper);
  outline-offset: 3px;
}

/* Shimmer sweep on hover */
.tlg-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.09) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}

.tlg-button:hover::before { transform: translateX(100%); }

.tlg-button-primary {
  background: var(--tlg-oxblood);
  color: #fff;
  box-shadow: 0 2px 18px rgba(139, 26, 26, 0.42);
}

.tlg-button-primary:hover {
  background: var(--tlg-oxblood-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(139, 26, 26, 0.55);
  color: #fff;
}

.tlg-button-secondary {
  background: transparent;
  border: 1.5px solid rgba(193, 125, 60, 0.45);
  color: var(--tlg-copper);
}

.tlg-button-secondary:hover {
  border-color: var(--tlg-copper);
  background: rgba(193, 125, 60, 0.08);
  transform: translateY(-2px);
  color: var(--tlg-copper);
}

/* ─── GRID ──────────────────────────────────────────────────── */
.tlg-grid { display: grid; gap: 32px; }
.tlg-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tlg-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ─── CARDS ─────────────────────────────────────────────────── */
.tlg-card {
  background:
    linear-gradient(160deg, rgba(250, 247, 242, 0.05) 0%, rgba(250, 247, 242, 0.02) 100%);
  border: 1px solid var(--tlg-border);
  border-radius: var(--tlg-radius);
  padding: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.36s var(--tlg-ease), transform 0.36s var(--tlg-ease), border-color 0.36s ease;
}

/* Top hairline accent */
.tlg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 125, 60, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.tlg-card:hover {
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.5),
    0 2px 10px rgba(139, 26, 26, 0.12),
    inset 0 1px 0 rgba(250, 247, 242, 0.06);
  transform: translateY(-6px);
  border-color: var(--tlg-border-cu);
}

.tlg-card:hover::before { opacity: 1; }

.tlg-card h2, .tlg-card h3 { margin-top: 0; }
.tlg-card ul { list-style: none; padding: 0; margin: 14px 0 0; }

.tlg-card ul li {
  padding: 9px 0 9px 22px;
  position: relative;
  border-bottom: 1px solid rgba(250, 247, 242, 0.06);
  font-size: 0.97rem;
  color: var(--tlg-ivory-dim);
}

.tlg-card ul li:last-child { border-bottom: none; }

.tlg-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--tlg-copper);
  font-size: 0.82rem;
}

/* ─── VENN DIAGRAM ──────────────────────────────────────────── */
.tlg-venn {
  width: min(520px, 100%);
  border-radius: var(--tlg-radius);
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--tlg-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tlg-venn:hover {
  box-shadow: 0 14px 64px rgba(0, 0, 0, 0.6);
  transform: translateY(-3px);
}

/* ─── LATEST POSTS ──────────────────────────────────────────── */
.tlg-latest-posts {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.tlg-post-card {
  background: linear-gradient(160deg, rgba(250, 247, 242, 0.045) 0%, rgba(250, 247, 242, 0.015) 100%);
  border: 1px solid var(--tlg-border);
  border-radius: var(--tlg-radius);
  padding: 30px 28px 56px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.32s var(--tlg-ease), transform 0.32s var(--tlg-ease), border-color 0.32s ease;
  position: relative;
  overflow: hidden;
}

.tlg-post-card::before {
  content: '';
  position: absolute;
  top: 0; left: 22px; right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 125, 60, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.tlg-post-card:hover::before { opacity: 1; }

.tlg-post-card::after {
  content: '→';
  position: absolute;
  bottom: 22px; right: 24px;
  color: var(--tlg-copper);
  font-size: 1.05rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.tlg-post-card:hover {
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.5),
    0 2px 10px rgba(139, 26, 26, 0.1),
    inset 0 1px 0 rgba(250, 247, 242, 0.05);
  transform: translateY(-6px);
  border-color: var(--tlg-border-cu);
}

.tlg-post-card:hover::after { opacity: 1; transform: translateX(0); }

.tlg-post-card a {
  color: var(--tlg-ivory);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.22;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.tlg-post-card a:hover { color: var(--tlg-copper); }
.tlg-post-card p { font-size: 0.93rem; line-height: 1.65; margin: 0; color: var(--tlg-ivory-dim); }

/* ─── TAG LIST ──────────────────────────────────────────────── */
.tlg-tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.tlg-tag {
  border: 1px solid var(--tlg-border);
  border-radius: 999px;
  color: rgba(250, 247, 242, 0.42);
  font-size: 0.84rem;
  padding: 7px 14px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.tlg-tag:hover {
  border-color: var(--tlg-border-cu);
  color: var(--tlg-copper);
  background: rgba(193, 125, 60, 0.07);
}

/* ─── MISC ──────────────────────────────────────────────────── */
.tlg-form-note { font-size: 0.85rem; color: rgba(250, 247, 242, 0.35); margin-top: 8px; }

.tlg-disclaimer {
  color: rgba(250, 247, 242, 0.3);
  font-size: 0.83rem;
  line-height: 1.62;
  border-top: 1px solid var(--tlg-border);
  padding-top: 22px;
  margin-top: 40px;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.tlg-site-footer {
  background: var(--tlg-dark-3);
  color: var(--tlg-ivory);
  font-family: Lato, Arial, sans-serif;
  padding: 96px 24px 40px;
  border-top: 1px solid rgba(193, 125, 60, 0.12);
  position: relative;
  z-index: 3;
}

.tlg-footer-inner,
.tlg-footer-bottom { width: min(1120px, 100%); margin: 0 auto; }

.tlg-footer-inner {
  display: grid;
  gap: 52px;
  grid-template-columns: 1.4fr 1fr 1fr;
  margin-bottom: 52px;
}

.tlg-footer-brand { align-items: flex-start; display: flex; gap: 16px; }
.tlg-footer-brand img { border-radius: 6px; flex: 0 0 64px; width: 64px; height: 64px; }

.tlg-footer-brand strong { color: var(--tlg-ivory); font-family: "Playfair Display", Georgia, serif; }
.tlg-footer-brand strong { display: block; font-size: 1.3rem; line-height: 1.15; margin-bottom: 5px; }
.tlg-footer-brand p { color: rgba(250, 247, 242, 0.42); font-size: 0.92rem; margin: 0; }

.tlg-site-footer h2 {
  font-family: Lato, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.38);
  margin: 0 0 18px;
}

.tlg-site-footer p { color: rgba(250, 247, 242, 0.48); line-height: 1.65; margin: 8px 0 0; font-size: 0.95rem; }

.tlg-footer-nav a,
.tlg-footer-newsletter a {
  color: rgba(250, 247, 242, 0.6);
  display: block;
  font-size: 0.94rem;
  margin: 9px 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tlg-footer-nav a:hover,
.tlg-footer-newsletter a:hover { color: var(--tlg-copper); }

.tlg-footer-button {
  border: 1px solid rgba(193, 125, 60, 0.38);
  border-radius: 4px;
  color: var(--tlg-copper) !important;
  display: inline-flex !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 18px !important;
  padding: 10px 18px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.tlg-footer-button:hover { border-color: var(--tlg-copper); background: rgba(193, 125, 60, 0.1); }

.tlg-footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.06);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding-top: 30px;
}

.tlg-footer-bottom p { color: rgba(250, 247, 242, 0.28); font-size: 0.84rem; line-height: 1.62; max-width: 680px; margin: 0; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 860px) {
  .tlg-grid-2,
  .tlg-grid-3,
  .tlg-latest-posts,
  .tlg-footer-inner { grid-template-columns: 1fr; }

  .tlg-section { padding-inline: 20px; }
  .tlg-hero { min-height: 85vh; }

  .tlg-footer-bottom { display: block; }
  .tlg-footer-bottom p + p { margin-top: 12px; }

  .tlg-header-nav { display: none; }
  .tlg-header-hamburger { display: flex; }
  .tlg-status-badge { display: none; }
}

@media (max-width: 480px) {
  .tlg-section { padding-inline: 18px; }
  .tlg-page h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .tlg-card { padding: 22px; }
  .tlg-post-card { padding: 22px; }
}

/* ─── SCROLL PROGRESS HAIRLINE ──────────────────────────────── */
.tlg-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    var(--tlg-oxblood) 0%,
    var(--tlg-copper) 50%,
    var(--tlg-gold) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 300;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(193, 125, 60, 0.4);
}

/* ─── TYPEWRITER PREFIX SWAP ANIMATION ──────────────────────── */
.tlg-tw-prefix {
  display: inline-block;
  transition: opacity 0.22s ease, transform 0.22s ease;
  color: var(--tlg-copper);
}

.tlg-tw-prefix-swap {
  opacity: 0;
  transform: translateY(-3px);
}

/* ─── FIELD PULSE WIDGET (bottom-left) ──────────────────────── */
.tlg-field-pulse {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 14px;
  background: rgba(13, 10, 8, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(193, 125, 60, 0.18);
  border-radius: 999px;
  font-family: Lato, Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.7);
  z-index: 100;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 0, 0, 0.2);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.tlg-field-pulse-dim {
  opacity: 0;
  transform: translateY(12px);
}

.tlg-field-pulse .tlg-pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--tlg-copper);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--tlg-copper);
  animation: tlg-pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.tlg-field-pulse .tlg-pulse-label {
  color: var(--tlg-copper);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.tlg-field-pulse .tlg-pulse-sep {
  color: rgba(250, 247, 242, 0.25);
  font-weight: 400;
  letter-spacing: 0;
}

.tlg-field-pulse .tlg-pulse-time {
  color: rgba(250, 247, 242, 0.62);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

@media (max-width: 760px) {
  .tlg-field-pulse { display: none; }
}

/* ─── FAQ (accordion + AEO schema) ──────────────────────────── */
.tlg-faq { display: grid; gap: 12px; margin: 24px 0; }

.tlg-faq-item {
  background: linear-gradient(160deg, rgba(250, 247, 242, 0.045), rgba(250, 247, 242, 0.015));
  border: 1px solid var(--tlg-border);
  border-radius: var(--tlg-radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.tlg-faq-item[open] {
  border-color: var(--tlg-border-cu);
  background: var(--tlg-glass-hov);
}

.tlg-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 24px;
  position: relative;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--tlg-ivory);
  line-height: 1.35;
}

.tlg-faq-item summary::-webkit-details-marker { display: none; }

.tlg-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tlg-copper);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.tlg-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.tlg-faq-answer {
  padding: 0 24px 22px;
  color: var(--tlg-ivory-dim);
  font-size: 1rem;
  line-height: 1.78;
  border-top: 1px solid var(--tlg-border);
  padding-top: 18px;
  margin-top: 4px;
}

.tlg-faq-answer p:last-child { margin-bottom: 0; }

/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .tlg-orb-a, .tlg-orb-b, .tlg-orb-c { animation: none; }
  .tlg-ticker-track { animation: none; }
  .tlg-tw-cursor { animation: none; }
  .tlg-status-dot { animation: none; }
  .tlg-reveal { opacity: 1; transform: none; transition: none; }
  .tlg-cursor-dot, .tlg-cursor-ring { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   v0.7.0 — AEO COMPONENTS + PREMIUM PATTERNS
   ═══════════════════════════════════════════════════════════ */

/* ─── DIRECT-ANSWER LEDE (AEO) ──────────────────────────────── */
.tlg-lede {
  position: relative;
  margin: 28px 0 36px;
  padding: 26px 28px 26px 60px;
  background: linear-gradient(160deg, rgba(193, 125, 60, 0.06), rgba(139, 26, 26, 0.04));
  border: 1px solid rgba(193, 125, 60, 0.18);
  border-radius: var(--tlg-radius);
  color: rgba(250, 247, 242, 0.92);
  font-size: 1.08rem;
  line-height: 1.68;
  font-weight: 400;
}

.tlg-lede .tlg-lede-mark {
  position: absolute;
  left: 24px;
  top: 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  color: var(--tlg-copper);
  line-height: 1;
}

.tlg-lede p { margin: 0; color: inherit; font-size: inherit; line-height: inherit; }
.tlg-lede p + p { margin-top: 8px; }

/* ─── PULL QUOTE (editorial) ────────────────────────────────── */
.tlg-pullquote {
  position: relative;
  max-width: 760px;
  margin: 64px auto;
  padding: 36px 24px;
  text-align: center;
  border: none;
}

.tlg-pullquote::before,
.tlg-pullquote::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tlg-copper), transparent);
  transform: translateX(-50%);
}
.tlg-pullquote::before { top: 0; }
.tlg-pullquote::after  { bottom: 0; }

.tlg-pullquote-mark {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tlg-dark-3, #0e0b09);
  padding: 0 16px;
  color: var(--tlg-copper);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.tlg-pullquote-text {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--tlg-ivory);
  margin: 0;
}

.tlg-pullquote-cite {
  display: block;
  margin-top: 18px;
  font-family: Lato, Arial, sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tlg-copper);
}

/* ─── STAT STRIP (original-data, count-up) ──────────────────── */
.tlg-stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin: 36px 0;
  border-top: 1px solid var(--tlg-border);
  border-bottom: 1px solid var(--tlg-border);
}

.tlg-stat {
  position: relative;
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--tlg-border);
}

.tlg-stat:last-child { border-right: none; }

.tlg-stat-n {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tlg-ivory);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.tlg-stat-suffix {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--tlg-copper);
  margin-left: 2px;
}

.tlg-stat-label {
  display: block;
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
}

@media (max-width: 760px) {
  .tlg-stat { border-right: none; border-bottom: 1px solid var(--tlg-border); }
  .tlg-stat:last-child { border-bottom: none; }
}

/* ─── BENTO GRID ────────────────────────────────────────────── */
.tlg-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
  margin: 28px 0;
}

.tlg-bento-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(160deg, rgba(250, 247, 242, 0.05), rgba(250, 247, 242, 0.015));
  border: 1px solid var(--tlg-border);
  border-radius: var(--tlg-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--tlg-ivory);
  transition: border-color 0.32s ease, transform 0.32s var(--tlg-ease), box-shadow 0.32s var(--tlg-ease);
}

.tlg-bento-tile:hover {
  border-color: var(--tlg-border-cu);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(250, 247, 242, 0.06);
}

.tlg-bento-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 125, 60, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.tlg-bento-tile:hover::before { opacity: 1; }

.tlg-bento-feature  { grid-column: span 2; grid-row: span 2; }
.tlg-bento-wide     { grid-column: span 2; }
.tlg-bento-tall     { grid-row: span 2; }
.tlg-bento-standard { grid-column: span 1; }
.tlg-bento-small    { grid-column: span 1; }

.tlg-bento-kicker {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tlg-copper);
  margin-bottom: 10px;
}

.tlg-bento-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--tlg-ivory);
  margin: 0 0 10px;
  line-height: 1.16;
}

.tlg-bento-feature .tlg-bento-title {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.tlg-bento-body {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tlg-bento-cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tlg-copper);
  transition: transform 0.28s ease;
}

.tlg-bento-tile:hover .tlg-bento-cta { transform: translateX(4px); }

@media (max-width: 980px) {
  .tlg-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tlg-bento-feature,
  .tlg-bento-wide { grid-column: span 2; grid-row: auto; }
}

@media (max-width: 560px) {
  .tlg-bento { grid-template-columns: 1fr; }
  .tlg-bento-feature,
  .tlg-bento-wide,
  .tlg-bento-standard,
  .tlg-bento-small { grid-column: span 1; grid-row: auto; }
}

/* ─── AUTHOR BIO (auto-injected after posts) ────────────────── */
.tlg-author-bio {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  margin: 64px auto 24px;
  padding: 32px;
  max-width: 760px;
  background: linear-gradient(160deg, rgba(250, 247, 242, 0.045), rgba(250, 247, 242, 0.015));
  border: 1px solid var(--tlg-border);
  border-radius: var(--tlg-radius);
  position: relative;
}

.tlg-author-bio::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 125, 60, 0.4), transparent);
}

.tlg-author-photo img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--tlg-radius);
  border: 1px solid rgba(193, 125, 60, 0.22);
}

.tlg-author-eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tlg-copper);
  margin-bottom: 8px;
}

.tlg-author-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tlg-ivory);
  margin: 0 0 4px;
  letter-spacing: -0.012em;
}

.tlg-author-role {
  font-size: 0.84rem;
  color: rgba(250, 247, 242, 0.55);
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}

.tlg-author-blurb {
  font-size: 0.97rem;
  line-height: 1.66;
  color: rgba(250, 247, 242, 0.78);
  margin: 0 0 14px;
}

.tlg-author-blurb a {
  color: var(--tlg-copper);
  border-bottom: 1px solid rgba(193, 125, 60, 0.3);
  text-decoration: none;
}

.tlg-author-knows {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tlg-author-knows span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 11px;
  border: 1px solid var(--tlg-border);
  border-radius: 999px;
  color: rgba(250, 247, 242, 0.65);
  background: rgba(13, 10, 8, 0.4);
}

.tlg-author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.tlg-author-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tlg-copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(193, 125, 60, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.tlg-author-links a:hover { color: var(--tlg-gold); border-bottom-color: var(--tlg-gold); }

@media (max-width: 560px) {
  .tlg-author-bio { grid-template-columns: 1fr; }
  .tlg-author-photo img { width: 100px; height: 100px; }
}

/* ─── RELATED ESSAYS (auto-injected after posts) ────────────── */
.tlg-related-posts {
  max-width: 1080px;
  margin: 48px auto;
  padding: 0 24px;
}

.tlg-related-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--tlg-copper);
  margin-bottom: 18px;
  text-align: center;
}

.tlg-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tlg-related-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: linear-gradient(160deg, rgba(250, 247, 242, 0.045), rgba(250, 247, 242, 0.015));
  border: 1px solid var(--tlg-border);
  border-radius: var(--tlg-radius);
  text-decoration: none;
  transition: border-color 0.32s ease, transform 0.32s var(--tlg-ease), box-shadow 0.32s var(--tlg-ease);
  position: relative;
  overflow: hidden;
}

.tlg-related-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 125, 60, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.tlg-related-card:hover::before { opacity: 1; }

.tlg-related-card:hover {
  border-color: var(--tlg-border-cu);
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.tlg-related-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.22;
  color: var(--tlg-ivory);
  margin-bottom: 10px;
}

.tlg-related-excerpt {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.62);
  margin-bottom: 16px;
  flex: 1;
}

.tlg-related-arrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tlg-copper);
}

@media (max-width: 860px) {
  .tlg-related-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ SECTION WRAPPER (auto-injected on Coaching/About) ── */
.tlg-faq-section {
  padding: 64px 24px;
  border-top: 1px solid var(--tlg-border);
  margin-top: 64px;
}

.tlg-faq-section h2 {
  margin-bottom: 28px;
}

/* ─── BEEHIIV HERO IMAGE (top of WP posts that mirror a Beehiiv issue) ── */
.tlg-beehiiv-hero {
  display: block;
  margin: 0 0 40px;
  border-radius: var(--tlg-radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--tlg-border);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.42);
}

.tlg-beehiiv-hero-link {
  display: block;
  position: relative;
  text-decoration: none !important;
  border-bottom: none !important;
  color: inherit !important;
  line-height: 0;
}

.tlg-beehiiv-hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  background: var(--tlg-dark-2);
  transition: transform 0.7s var(--tlg-ease);
}

.tlg-beehiiv-hero-link:hover .tlg-beehiiv-hero-img { transform: scale(1.025); }

.tlg-beehiiv-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(13, 10, 8, 0) 45%, rgba(13, 10, 8, 0.65) 80%, rgba(13, 10, 8, 0.92) 100%);
  pointer-events: none;
}

.tlg-beehiiv-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-family: Lato, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.75);
}

.tlg-beehiiv-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tlg-copper);
  box-shadow: 0 0 10px var(--tlg-copper);
  animation: tlg-pulse-dot 2.4s ease-in-out infinite;
}

.tlg-beehiiv-hero-eyebrow { color: var(--tlg-copper); }

.tlg-beehiiv-hero-sep {
  color: rgba(250, 247, 242, 0.4);
  font-weight: 400;
}

.tlg-beehiiv-hero-date {
  color: rgba(250, 247, 242, 0.7);
}

.tlg-beehiiv-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Lato, Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tlg-ivory);
}

.tlg-beehiiv-hero-arrow {
  transition: transform 0.32s var(--tlg-ease);
  display: inline-block;
}

.tlg-beehiiv-hero-link:hover .tlg-beehiiv-hero-arrow {
  transform: translate(4px, -4px);
}

/* ─── BEEHIIV CALLOUT (fallback when no thumbnail) ── */
.tlg-beehiiv-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 32px;
  padding: 16px 22px;
  background: linear-gradient(160deg, rgba(193, 125, 60, 0.07), rgba(193, 125, 60, 0.015));
  border: 1px solid rgba(193, 125, 60, 0.22);
  border-radius: var(--tlg-radius);
}

.tlg-beehiiv-callout-eyebrow {
  font-family: Lato, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.62);
}

.tlg-beehiiv-callout-link {
  font-family: Lato, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tlg-copper) !important;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: color 0.22s ease;
}

.tlg-beehiiv-callout-link:hover { color: var(--tlg-gold) !important; }

/* ─── BEEHIIV ARCHIVE (/newsletters/ page) ──────────────────── */
.tlg-beehiiv-section {
  padding: clamp(64px, 8vw, 120px) 24px;
}

.tlg-beehiiv-archive {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

@media (max-width: 760px) {
  .tlg-beehiiv-archive { grid-template-columns: 1fr; }
}

.tlg-beehiiv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(250, 247, 242, 0.045) 0%, rgba(250, 247, 242, 0.015) 100%);
  border: 1px solid var(--tlg-border);
  border-radius: var(--tlg-radius);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.32s var(--tlg-ease),
    box-shadow 0.32s var(--tlg-ease),
    border-color 0.32s ease;
}

/* Body padding applied to inner wrapper when thumb present, to card directly otherwise */
.tlg-beehiiv-card:not(.tlg-beehiiv-card-has-thumb) { padding: 28px; }
.tlg-beehiiv-card-has-thumb .tlg-beehiiv-card-body { padding: 22px 26px 26px; }
.tlg-beehiiv-card:not(.tlg-beehiiv-card-has-thumb) .tlg-beehiiv-card-body { padding: 0; display: contents; }

/* Mini hero treatment — title + meta sit OVER the thumbnail */
.tlg-beehiiv-card-hero {
  position: relative;
  overflow: hidden;
  background: var(--tlg-dark-2);
  border-bottom: 1px solid var(--tlg-border);
}

.tlg-beehiiv-card-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  transition: transform 0.65s var(--tlg-ease);
}

.tlg-beehiiv-card:hover .tlg-beehiiv-card-img { transform: scale(1.04); }

.tlg-beehiiv-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(13, 10, 8, 0) 55%, rgba(13, 10, 8, 0.55) 80%, rgba(13, 10, 8, 0.88) 100%);
  pointer-events: none;
}

.tlg-beehiiv-card-meta-overlay {
  color: rgba(250, 247, 242, 0.85);
  margin: 0 !important;
}

.tlg-beehiiv-card-meta-overlay .tlg-beehiiv-card-date { color: rgba(250, 247, 242, 0.9); }
.tlg-beehiiv-card-meta-overlay .tlg-beehiiv-card-channel { color: var(--tlg-copper); margin-left: 0; }
.tlg-beehiiv-card-meta-overlay .tlg-beehiiv-card-sep { color: rgba(250, 247, 242, 0.5); font-weight: 400; letter-spacing: 0; }

.tlg-beehiiv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 22px; right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 125, 60, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.tlg-beehiiv-card:hover {
  border-color: var(--tlg-border-cu);
  transform: translateY(-5px);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.5),
    0 2px 10px rgba(139, 26, 26, 0.12),
    inset 0 1px 0 rgba(250, 247, 242, 0.06);
}

.tlg-beehiiv-card:hover::before { opacity: 1; }

.tlg-beehiiv-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Lato, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 14px;
}

.tlg-beehiiv-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tlg-copper);
  box-shadow: 0 0 8px var(--tlg-copper);
  flex-shrink: 0;
}

.tlg-beehiiv-card-date { color: rgba(250, 247, 242, 0.65); }

.tlg-beehiiv-card-channel {
  margin-left: auto;
  color: var(--tlg-copper);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
}

.tlg-beehiiv-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--tlg-ivory);
  margin: 0 0 12px;
  transition: color 0.22s ease;
}

.tlg-beehiiv-card:hover .tlg-beehiiv-card-title { color: var(--tlg-copper); }

.tlg-beehiiv-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.62);
  margin: 0 0 22px;
  flex: 1;
}

.tlg-beehiiv-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Lato, Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tlg-copper);
  margin-top: auto;
}

.tlg-beehiiv-card-arrow {
  transition: transform 0.28s var(--tlg-ease);
  display: inline-block;
}

.tlg-beehiiv-card:hover .tlg-beehiiv-card-arrow {
  transform: translate(3px, -3px);
}

/* ─── READING META (post intro line) ────────────────────────── */
.tlg-reading-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tlg-border);
  font-family: Lato, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
}

.tlg-reading-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(250, 247, 242, 0.65);
}

.tlg-reading-meta-item:first-child {
  color: var(--tlg-copper);
}

.tlg-reading-meta-dot {
  width: 6px;
  height: 6px;
  background: var(--tlg-copper);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--tlg-copper);
}

.tlg-reading-meta-sep {
  color: rgba(250, 247, 242, 0.25);
  font-weight: 400;
}

/* ─── AUTO TABLE OF CONTENTS (posts with 3+ H2s) ─────────────── */
.tlg-toc {
  margin: 24px 0 40px;
  padding: 22px 26px;
  background: linear-gradient(160deg, rgba(193, 125, 60, 0.05), rgba(193, 125, 60, 0.015));
  border: 1px solid rgba(193, 125, 60, 0.16);
  border-radius: var(--tlg-radius);
  position: relative;
}

.tlg-toc-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tlg-copper);
  margin-bottom: 12px;
}

.tlg-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: tlg-toc-counter;
  display: grid;
  gap: 8px;
}

.tlg-toc-list li {
  counter-increment: tlg-toc-counter;
  padding-left: 30px;
  position: relative;
  font-family: Lato, Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.4;
}

.tlg-toc-list li::before {
  content: counter(tlg-toc-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.78rem;
  color: var(--tlg-copper);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.tlg-toc-list a {
  color: rgba(250, 247, 242, 0.78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.tlg-toc-list a:hover {
  color: var(--tlg-copper);
  border-bottom-color: rgba(193, 125, 60, 0.4);
}

@media (min-width: 1280px) {
  /* On wide viewports, float the TOC alongside the article */
  .tlg-toc {
    float: right;
    width: 260px;
    margin: 0 0 24px 32px;
    position: sticky;
    top: calc(var(--tlg-header-h) + 24px);
    align-self: flex-start;
  }
}

/* Smooth anchor scroll offset for fixed header */
.tlg-toc-list a[href^="#"] { scroll-margin-top: calc(var(--tlg-header-h) + 16px); }
h2[id] { scroll-margin-top: calc(var(--tlg-header-h) + 16px); }

/* ─── CUSTOM CURSOR (desktop, fine-pointer) ─────────────────── */
.tlg-cursor-dot,
.tlg-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform;
  transition: opacity 0.22s ease, width 0.22s ease, height 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  margin-left: -3px;
  margin-top: -3px;
}

.tlg-cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--tlg-copper);
  box-shadow: 0 0 14px rgba(193, 125, 60, 0.6);
}

.tlg-cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(193, 125, 60, 0.5);
  margin-left: -17px;
  margin-top: -17px;
  background: transparent;
}

.tlg-cursor-dot.tlg-cursor-hot {
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  background: var(--tlg-gold);
}

.tlg-cursor-ring.tlg-cursor-hot {
  width: 56px;
  height: 56px;
  margin-left: -28px;
  margin-top: -28px;
  border-color: rgba(232, 184, 75, 0.7);
  background: rgba(193, 125, 60, 0.06);
}

/* Hide system cursor on hover-capable, fine-pointer devices when our cursor is active */
@media (hover: hover) and (pointer: fine) {
  body:has(.tlg-cursor-dot) { cursor: none; }
  body:has(.tlg-cursor-dot) a,
  body:has(.tlg-cursor-dot) button,
  body:has(.tlg-cursor-dot) input,
  body:has(.tlg-cursor-dot) textarea,
  body:has(.tlg-cursor-dot) summary { cursor: none; }
  body:has(.tlg-cursor-dot) input[type="text"],
  body:has(.tlg-cursor-dot) input[type="email"],
  body:has(.tlg-cursor-dot) textarea { cursor: text; }
}

