/*
Theme Name:   TexasPrepper2
Theme URI:    https://texasprepper2.com
Description:  Kadence child theme for TexasPrepper2.com — earthy, warm, editorial homesteading site.
Author:       Alan — TexasPrepper2
Author URI:   https://texasprepper2.com
Template:     kadence
Version:      1.0.0
License:      GNU General Public License v2 or later
Text Domain:  texasprepper2
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --tp-cream:      #F5F0E8;
  --tp-cream-dark: #E8E0D0;
  --tp-bark:       #4A3728;
  --tp-bark-light: #7A5C48;
  --tp-soil:       #2E1F14;
  --tp-forest:     #2D4A2E;
  --tp-forest-mid: #3D6B3F;
  --tp-forest-lt:  #5C8F5E;
  --tp-sage:       #8BA888;
  --tp-rust:       #B8532A;
  --tp-rust-lt:    #D4704A;
  --tp-gold:       #C9922A;
  --tp-gold-lt:    #E8B84B;
  --tp-linen:      #FAF7F2;
  --tp-text-main:  #2E1F14;
  --tp-text-mid:   #5A4030;
  --tp-text-mute:  #8A7060;
  --tp-border:     rgba(74,55,40,0.15);
  --tp-border-md:  rgba(74,55,40,0.25);
}

/* ============================================================
   GLOBAL BODY & TYPOGRAPHY
   ============================================================ */
body {
  font-family: 'Cabin', sans-serif !important;
  background: var(--tp-linen) !important;
  color: var(--tp-text-main) !important;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(74,55,40,0.012) 2px, rgba(74,55,40,0.012) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(74,55,40,0.008) 3px, rgba(74,55,40,0.008) 6px);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif !important;
  color: var(--tp-soil) !important;
}

p, li, td, th, input, textarea, select {
  font-family: 'Cabin', sans-serif;
}

a { color: var(--tp-forest-mid); }
a:hover { color: var(--tp-rust); }

/* ============================================================
   KADENCE HEADER OVERRIDE — dark soil bar with rust accent
   ============================================================ */
.site-header,
#masthead,
.kadence-sticky-header .site-header {
  background: var(--tp-soil) !important;
  border-bottom: 3px solid var(--tp-rust) !important;
  box-shadow: none !important;
}

/* Logo text */
.site-branding .site-title a,
.kadence-logo-text {
  font-family: 'Playfair Display', serif !important;
  color: var(--tp-cream) !important;
  font-weight: 700 !important;
}

/* Nav links */
.main-navigation a,
#primary-menu a,
.kadence-navigation .menu a {
  color: rgba(245,240,232,0.8) !important;
  font-family: 'Cabin', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  transition: color 0.2s !important;
}

.main-navigation a:hover,
#primary-menu a:hover,
.kadence-navigation .menu a:hover {
  color: var(--tp-gold-lt) !important;
  background: transparent !important;
}

/* Nav CTA button — "Free Guide" */
.nav-free-guide a,
.menu-item-nav-cta a {
  background: var(--tp-rust) !important;
  color: white !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 4px !important;
  transition: background 0.2s !important;
}
.nav-free-guide a:hover,
.menu-item-nav-cta a:hover {
  background: var(--tp-rust-lt) !important;
  color: white !important;
}

/* Mobile hamburger */
.kadence-menu-toggle-icon,
.menu-toggle {
  color: var(--tp-cream) !important;
}

/* ============================================================
   KADENCE FOOTER OVERRIDE
   ============================================================ */
.site-footer,
#colophon {
  background: var(--tp-soil) !important;
  color: rgba(245,240,232,0.6) !important;
  border-top: none !important;
  padding: 4rem 0 2rem !important;
}

.site-footer a,
#colophon a {
  color: rgba(245,240,232,0.6) !important;
  transition: color 0.2s !important;
}

.site-footer a:hover,
#colophon a:hover {
  color: var(--tp-cream) !important;
}

.site-footer .widget-title,
#colophon .widget-title {
  color: var(--tp-gold-lt) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-family: 'Cabin', sans-serif !important;
  font-weight: 700 !important;
}

.site-footer p.footer-tagline {
  color: rgba(245,240,232,0.3);
  font-size: 0.78rem;
  text-align: right;
}

/* ============================================================
   SHARED COMPONENT CLASSES
   Used in front-page.php, page-start-here.php, etc.
   ============================================================ */

/* Section labels */
.tp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tp-rust);
  margin-bottom: 0.75rem;
  font-family: 'Cabin', sans-serif;
}
.tp-section-label::before,
.tp-section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--tp-rust);
  opacity: 0.5;
}

.tp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--tp-soil);
  margin-bottom: 0.75rem;
}
.tp-section-title em {
  font-style: italic;
  color: var(--tp-forest);
}

.tp-section-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  color: var(--tp-text-mid);
  max-width: 540px;
  line-height: 1.65;
}

/* Buttons */
.tp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--tp-rust);
  color: white !important;
  text-decoration: none;
  font-family: 'Cabin', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 5px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.tp-btn-primary:hover {
  background: var(--tp-rust-lt);
  transform: translateY(-1px);
  color: white !important;
}

.tp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--tp-cream) !important;
  text-decoration: none;
  font-family: 'Cabin', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 5px;
  border: 1.5px solid rgba(245,240,232,0.4);
  transition: border-color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.tp-btn-secondary:hover {
  border-color: var(--tp-cream);
  background: rgba(245,240,232,0.08);
  color: var(--tp-cream) !important;
}

.tp-btn-forest {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--tp-forest-mid);
  color: white !important;
  text-decoration: none;
  font-family: 'Cabin', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.tp-btn-forest:hover {
  background: var(--tp-forest-lt);
  color: white !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.tp-hero {
  position: relative;
  background: var(--tp-soil);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.tp-hero-bg {
  position: absolute;
  inset: 0;
  background:
  radial-gradient(ellipse 70% 60% at 85% 50%, rgba(45,74,46,0.35) 0%, transparent 60%),
  radial-gradient(ellipse 50% 80% at 20% 80%, rgba(184,83,42,0.12) 0%, transparent 55%);
}
.tp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,240,232,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.tp-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 3rem 5rem 5rem;
  max-width: 640px;
}
.tp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-gold-lt);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201,146,42,0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-family: 'Cabin', sans-serif;
}
.tp-hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--tp-gold-lt);
  border-radius: 50%;
}
.tp-hero h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  color: var(--tp-cream) !important;
  margin-bottom: 1.5rem !important;
}
.tp-hero h1 em {
  font-style: italic;
  color: var(--tp-gold-lt);
}
.tp-hero-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(245,240,232,0.78);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 480px;
}
.tp-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.tp-hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,232,0.12);
  flex-wrap: wrap;
}
.tp-hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tp-gold-lt);
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.tp-hero-stat-label {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-family: 'Cabin', sans-serif;
}
.tp-hero-photo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3rem 4rem 0 2rem;
  height: 100%;
}
.tp-hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.tp-hero-photo-frame::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  right: 12px;
  top: 12px;
  border: 2px solid var(--tp-rust);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.5;
}
.tp-hero-photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
  filter: sepia(15%) contrast(1.05);
  display: block;
}

/* ============================================================
   START HERE BANNER
   ============================================================ */
.tp-start-here-bar {
  background: var(--tp-forest);
  padding: 1.15rem 2rem;
  text-align: center;
}
.tp-start-here-bar p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.88);
  font-weight: 400;
  font-family: 'Cabin', sans-serif;
  margin: 0;
}
.tp-start-here-bar strong { color: var(--tp-gold-lt); font-weight: 700; }
.tp-start-here-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  background: var(--tp-rust);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-left: 0.75rem;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.tp-start-here-bar a:hover { background: var(--tp-rust-lt); }

/* ============================================================
   EMAIL SIGNUP SECTION
   ============================================================ */
.tp-email-section {
  background: var(--tp-forest);
  padding: 4.5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.tp-email-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.04);
}
.tp-email-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.03);
}
.tp-email-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.tp-email-badge {
  display: inline-block;
  background: rgba(201,146,42,0.2);
  border: 1px solid rgba(201,146,42,0.4);
  color: var(--tp-gold-lt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  font-family: 'Cabin', sans-serif;
}
.tp-email-inner h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
  font-weight: 800 !important;
  color: var(--tp-cream) !important;
  line-height: 1.15 !important;
  margin-bottom: 1rem !important;
}
.tp-email-inner h2 em { font-style: italic; color: var(--tp-gold-lt); }
.tp-email-inner p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.tp-email-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 0.75rem;
}
.tp-email-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border-radius: 5px;
  border: 1.5px solid rgba(245,240,232,0.2);
  background: rgba(255,255,255,0.07);
  color: var(--tp-cream);
  font-family: 'Cabin', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.tp-email-form input[type="email"]::placeholder { color: rgba(245,240,232,0.4); }
.tp-email-form input[type="email"]:focus { border-color: var(--tp-gold-lt); }
.tp-email-form button,
.tp-email-form input[type="submit"] {
  padding: 0.9rem 1.75rem;
  background: var(--tp-rust);
  color: white;
  border: none;
  border-radius: 5px;
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.tp-email-form button:hover,
.tp-email-form input[type="submit"]:hover { background: var(--tp-rust-lt); }
.tp-email-fine-print {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.4);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.tp-about {
  background: var(--tp-cream-dark);
  padding: 5rem 2rem;
  border-top: 1px solid var(--tp-border);
  border-bottom: 1px solid var(--tp-border);
}
.tp-about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
}
.tp-about-photo-wrap { position: relative; }
.tp-about-photo-wrap img {
  width: 100%;
  border-radius: 4px;
  display: block;
  position: relative;
}
.tp-about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tp-rust);
  border-radius: 0 0 4px 4px;
}
.tp-about-quote {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--tp-rust);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-style: italic;
  max-width: 200px;
  line-height: 1.4;
  box-shadow: 0 4px 24px rgba(46,31,20,0.2);
  z-index: 1;
}
.tp-about-text h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: var(--tp-soil) !important;
  margin-bottom: 1.25rem !important;
}
.tp-about-text h2 em { font-style: italic; color: var(--tp-forest); }
.tp-about-text p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  color: var(--tp-text-mid);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.tp-about-sig {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--tp-bark);
  border-top: 1px solid var(--tp-border);
  padding-top: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.tp-video-section {
  background: var(--tp-soil);
  padding: 5rem 2rem;
}
.tp-video-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.tp-video-inner .tp-section-label { color: var(--tp-gold-lt); }
.tp-video-inner .tp-section-label::before,
.tp-video-inner .tp-section-label::after { background: var(--tp-gold-lt); }
.tp-video-inner .tp-section-title { color: var(--tp-cream) !important; }
.tp-video-inner .tp-section-title em { color: var(--tp-gold-lt); }
.tp-video-inner .tp-section-sub { color: rgba(245,240,232,0.65); margin: 0 auto 2.5rem; }
.tp-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(245,240,232,0.1);
  background: #000;
}
.tp-video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.tp-video-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  color: var(--tp-gold-lt) !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  font-family: 'Cabin', sans-serif;
}
.tp-video-channel-link:hover { border-color: var(--tp-gold-lt); }
.tp-yt-badge {
  background: rgba(201,146,42,0.15);
  border: 1px solid rgba(201,146,42,0.3);
  color: var(--tp-gold-lt);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  font-family: 'Cabin', sans-serif;
}

/* ============================================================
   GUIDES SECTION
   ============================================================ */
.tp-guides-section {
  padding: 5.5rem 2rem;
  background: var(--tp-linen);
}
.tp-guides-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.tp-guides-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.tp-guide-card {
  background: white;
  border: 1px solid var(--tp-border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.tp-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46,31,20,0.12);
}
.tp-guide-cover {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(155deg, var(--tp-forest) 0%, var(--tp-soil) 100%);
  position: relative;
}
.tp-guide-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.tp-guide-card:hover .tp-guide-cover img { transform: scale(1.03); }
.tp-guide-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tp-rust);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-family: 'Cabin', sans-serif;
}
.tp-guide-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tp-guide-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-forest-lt);
  margin-bottom: 0.5rem;
  font-family: 'Cabin', sans-serif;
}
.tp-guide-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--tp-soil) !important;
  line-height: 1.3 !important;
  margin-bottom: 0.6rem !important;
}
.tp-guide-desc {
  font-size: 0.85rem;
  color: var(--tp-text-mute);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.25rem;
  font-family: 'Source Serif 4', serif;
}
.tp-guide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--tp-border);
}
.tp-guide-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tp-soil);
  line-height: 1;
}
.tp-guide-price span {
  font-size: 0.85rem;
  color: var(--tp-text-mute);
  font-family: 'Cabin', sans-serif;
  font-weight: 400;
  margin-left: 0.25rem;
}
.tp-guide-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--tp-forest);
  color: white !important;
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Cabin', sans-serif;
  transition: background 0.2s;
}
.tp-guide-buy:hover { background: var(--tp-forest-lt); color: white !important; }
.tp-guides-view-all { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.tp-blog-section {
  padding: 5.5rem 2rem;
  background: var(--tp-cream-dark);
  border-top: 1px solid var(--tp-border);
}
.tp-blog-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.tp-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-forest-mid);
  background: rgba(45,74,46,0.1);
  border: 1px solid rgba(45,74,46,0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-family: 'Cabin', sans-serif;
}
.tp-live-dot {
  width: 6px;
  height: 6px;
  background: var(--tp-forest-lt);
  border-radius: 50%;
  animation: tp-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes tp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.tp-blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
}
.tp-blog-card {
  background: white;
  border: 1px solid var(--tp-border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tp-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(46,31,20,0.1);
}
.tp-blog-card.tp-featured { grid-row: span 2; }
.tp-blog-img {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.tp-blog-card.tp-featured .tp-blog-img { aspect-ratio: 16/10; }
.tp-blog-card:not(.tp-featured) .tp-blog-img { aspect-ratio: 16/9; }
.tp-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.tp-blog-card:hover .tp-blog-img img { transform: scale(1.03); }
.tp-blog-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tp-blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.tp-blog-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-rust);
  font-family: 'Cabin', sans-serif;
}
.tp-blog-date {
  font-size: 0.72rem;
  color: var(--tp-text-mute);
  font-family: 'Cabin', sans-serif;
}
.tp-blog-title {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  color: var(--tp-soil) !important;
  line-height: 1.3 !important;
  margin-bottom: 0.6rem !important;
  text-decoration: none;
}
.tp-blog-card.tp-featured .tp-blog-title { font-size: 1.25rem !important; }
.tp-blog-card:not(.tp-featured) .tp-blog-title { font-size: 1rem !important; }
.tp-blog-excerpt {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  color: var(--tp-text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.tp-blog-card:not(.tp-featured) .tp-blog-excerpt { display: none; }
.tp-blog-read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--tp-forest-mid) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  letter-spacing: 0.04em;
  font-family: 'Cabin', sans-serif;
}
.tp-blog-view-all { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   FREE GUIDES STRIP
   ============================================================ */
.tp-free-section {
  padding: 5rem 2rem;
  background: var(--tp-linen);
  border-top: 1px solid var(--tp-border);
}
.tp-free-inner { max-width: 1100px; margin: 0 auto; }
.tp-free-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.tp-free-card {
  background: white;
  border: 1px solid var(--tp-border);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tp-free-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(46,31,20,0.08);
}
.tp-free-card-icon {
  width: 48px;
  height: 48px;
  background: var(--tp-forest);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.tp-free-card-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--tp-soil) !important;
  line-height: 1.3;
}
.tp-free-card-desc {
  font-size: 0.82rem;
  color: var(--tp-text-mute);
  line-height: 1.5;
  flex: 1;
  font-family: 'Source Serif 4', serif;
}
.tp-free-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--tp-forest-mid) !important;
  margin-top: auto;
  font-family: 'Cabin', sans-serif;
  text-decoration: none;
}

/* ============================================================
   START HERE PAGE
   ============================================================ */
.tp-page-hero {
  background: var(--tp-soil);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.tp-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(45,74,46,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(184,83,42,0.1) 0%, transparent 50%);
}
.tp-page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,240,232,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.tp-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.tp-page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-gold-lt);
  border: 1px solid rgba(201,146,42,0.35);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  font-family: 'Cabin', sans-serif;
}
.tp-page-hero h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: var(--tp-cream) !important;
  margin-bottom: 1.25rem !important;
}
.tp-page-hero h1 em { font-style: italic; color: var(--tp-gold-lt); }
.tp-page-hero-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(245,240,232,0.72);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* Alan's Note */
.tp-alan-note {
  background: var(--tp-forest);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.tp-alan-note::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 3%;
  font-family: 'Playfair Display', serif;
  font-size: 18rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.tp-alan-note-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.tp-alan-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--tp-rust);
  overflow: hidden;
  flex-shrink: 0;
}
.tp-alan-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-alan-note-text p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.85);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.tp-alan-note-text p:last-of-type { margin-bottom: 0; }
.tp-alan-note-text strong { color: var(--tp-gold-lt); font-weight: 600; }
.tp-alan-sig {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(245,240,232,0.6);
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245,240,232,0.12);
}

/* Path Cards */
.tp-path-section {
  padding: 5.5rem 2rem;
  background: var(--tp-linen);
}
.tp-path-inner { max-width: 1060px; margin: 0 auto; }
.tp-path-header { text-align: center; margin-bottom: 4rem; }
.tp-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.tp-path-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--tp-border-md) 0, var(--tp-border-md) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.tp-path-card {
  background: white;
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  position: relative;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tp-path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46,31,20,0.1);
}
.tp-path-card.tp-highlight {
  border-color: var(--tp-rust);
  border-width: 2px;
}
.tp-path-card.tp-highlight::after {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tp-rust);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  font-family: 'Cabin', sans-serif;
}
.tp-path-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  border: 2px solid;
  flex-shrink: 0;
}
.tp-path-num.tp-green { background: rgba(45,74,46,0.08); border-color: rgba(45,74,46,0.25); color: var(--tp-forest); }
.tp-path-num.tp-rust  { background: rgba(184,83,42,0.08); border-color: rgba(184,83,42,0.3); color: var(--tp-rust); }
.tp-path-num.tp-gold  { background: rgba(201,146,42,0.1); border-color: rgba(201,146,42,0.3); color: var(--tp-gold); }
.tp-path-card h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--tp-soil) !important;
  line-height: 1.25 !important;
  margin-bottom: 0.6rem !important;
}
.tp-path-card p {
  font-size: 0.88rem;
  color: var(--tp-text-mid);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: 'Source Serif 4', serif;
}
.tp-path-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--tp-border);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.tp-path-links li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tp-forest-mid) !important;
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s, gap 0.2s;
  font-family: 'Cabin', sans-serif;
}
.tp-path-links li a:hover { color: var(--tp-rust) !important; gap: 0.7rem; }
.tp-path-links li a::before { content: '→'; font-size: 0.8rem; opacity: 0.7; }
.tp-path-cta {
  display: block;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  font-family: 'Cabin', sans-serif;
}
.tp-path-cta.tp-green-btn { background: var(--tp-forest); color: white !important; }
.tp-path-cta.tp-green-btn:hover { background: var(--tp-forest-lt); transform: translateY(-1px); }
.tp-path-cta.tp-rust-btn { background: var(--tp-rust); color: white !important; }
.tp-path-cta.tp-rust-btn:hover { background: var(--tp-rust-lt); transform: translateY(-1px); }
.tp-path-cta.tp-gold-btn { background: var(--tp-gold); color: white !important; }
.tp-path-cta.tp-gold-btn:hover { background: var(--tp-gold-lt); transform: translateY(-1px); }

/* Topics */
.tp-topics-section {
  padding: 5.5rem 2rem;
  background: var(--tp-cream-dark);
  border-top: 1px solid var(--tp-border);
}
.tp-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.tp-topic-card {
  background: white;
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.tp-topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 8px 0 0 8px;
}
.tp-topic-card.tc-green::before  { background: var(--tp-forest-mid); }
.tp-topic-card.tc-rust::before   { background: var(--tp-rust); }
.tp-topic-card.tc-gold::before   { background: var(--tp-gold); }
.tp-topic-card.tc-bark::before   { background: var(--tp-bark-light); }
.tp-topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(46,31,20,0.1);
}
.tp-topic-icon { font-size: 2rem; line-height: 1; }
.tp-topic-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--tp-soil) !important;
  line-height: 1.3;
}
.tp-topic-count {
  font-size: 0.75rem;
  color: var(--tp-text-mute);
  font-weight: 600;
  margin-top: auto;
  font-family: 'Cabin', sans-serif;
}
.tp-topic-count::after { content: ' →'; color: var(--tp-rust); }

/* ============================================================
   UTILITIES
   ============================================================ */
.tp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.tp-text-center { text-align: center; }
.tp-mb-1 { margin-bottom: 1rem; }
.tp-mb-2 { margin-bottom: 2rem; }
.tp-mt-2 { margin-top: 2rem; }
.tp-mt-3 { margin-top: 3rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .tp-hero { grid-template-columns: 1fr; min-height: auto; }
  .tp-hero-content { padding: 4rem 2rem 3rem; max-width: 100%; }
  .tp-hero-photo-wrap { display: none; }
  .tp-about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tp-about-photo-wrap { max-width: 320px; }
  .tp-blog-grid { grid-template-columns: 1fr 1fr; }
  .tp-blog-card.tp-featured { grid-column: span 2; }
  .tp-path-grid { grid-template-columns: 1fr; }
  .tp-path-grid::before { display: none; }
  .tp-alan-note-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .tp-hero-stats { gap: 1.5rem; }
  .tp-blog-grid { grid-template-columns: 1fr; }
  .tp-blog-card.tp-featured { grid-column: span 1; }
  .tp-email-form { flex-direction: column; }
  .tp-guides-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .tp-guides-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SOCIAL ICONS BAR
   ============================================================ */
.tp-social-bar {
  background: var(--tp-soil);
  border-top: 1px solid rgba(245,240,232,0.08);
  padding: 1.5rem 2rem;
}
.tp-social-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.tp-social-bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  font-family: 'Cabin', sans-serif;
}
.tp-social-icons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.tp-social-icon {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(245,240,232,0.55) !important;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Cabin', sans-serif;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tp-social-icon:hover {
  background: rgba(255,255,255,0.1);
  color: var(--tp-cream) !important;
  border-color: rgba(255,255,255,0.15);
}
.tp-social-icon svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.tp-social-icon:hover svg { opacity: 1; }

/* YouTube gets a slightly warmer accent on hover */
.tp-social-icon.tp-si-yt:hover  { border-color: rgba(255,51,51,0.3); color: #ff6b6b !important; }
.tp-social-icon.tp-si-ig:hover  { border-color: rgba(193,53,132,0.3); color: #e1659a !important; }
.tp-social-icon.tp-si-fb:hover  { border-color: rgba(24,119,242,0.3); color: #5b9cf6 !important; }
.tp-social-icon.tp-si-x:hover   { border-color: rgba(255,255,255,0.2); color: var(--tp-cream) !important; }
.tp-social-icon.tp-si-tt:hover  { border-color: rgba(105,201,208,0.3); color: #69c9d0 !important; }

/* Divider between social bar and copyright */
.tp-footer-bottom {
  background: var(--tp-soil);
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(245,240,232,0.06);
}
.tp-footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tp-footer-bottom-inner p {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.28);
  margin: 0;
  font-family: 'Cabin', sans-serif;
}

/* ============================================================
   LEGAL PAGES (Privacy Policy, Terms, Contact)
   ============================================================ */
.tp-legal-page {}

.tp-legal-hero {
  background: var(--tp-soil);
  padding: 4rem 2rem 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 3px solid var(--tp-rust);
}
.tp-legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(45,74,46,0.3) 0%, transparent 60%);
}
.tp-legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.tp-legal-hero h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  color: var(--tp-cream) !important;
  margin-bottom: 0.5rem !important;
}
.tp-legal-hero p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.5);
  font-family: 'Cabin', sans-serif;
  margin: 0;
}

.tp-legal-body {
  background: var(--tp-linen);
  padding: 4rem 2rem 5rem;
}
.tp-legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.tp-legal-content h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--tp-soil) !important;
  margin: 2.5rem 0 0.75rem !important;
  padding-top: 2rem;
  border-top: 1px solid var(--tp-border);
}
.tp-legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.tp-legal-content h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--tp-bark) !important;
  margin: 1.75rem 0 0.5rem !important;
}
.tp-legal-content p {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  color: var(--tp-text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.tp-legal-content ul {
  margin: 0.75rem 0 1rem 1.5rem;
}
.tp-legal-content li {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  color: var(--tp-text-mid);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.tp-legal-content a {
  color: var(--tp-forest-mid);
  font-weight: 600;
}
.tp-legal-content a:hover { color: var(--tp-rust); }

/* Contact-specific */
.tp-contact-intro p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  color: var(--tp-text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.tp-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: white;
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.tp-contact-card-icon { font-size: 2rem; flex-shrink: 0; margin-top: 0.1rem; }
.tp-contact-card-info h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--tp-soil) !important;
  margin: 0 0 0.35rem !important;
}
.tp-contact-card-info a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tp-forest-mid) !important;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
}
.tp-contact-card-info a:hover { color: var(--tp-rust) !important; }
.tp-contact-card-info p {
  font-size: 0.85rem !important;
  color: var(--tp-text-mute) !important;
  margin: 0 !important;
}
.tp-contact-social { margin: 2rem 0; }
.tp-contact-social h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--tp-soil) !important;
  margin-bottom: 1rem !important;
}
.tp-contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tp-contact-social-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tp-forest-mid) !important;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--tp-border);
  transition: color 0.2s;
}
.tp-contact-social-links a:hover { color: var(--tp-rust) !important; }
.tp-contact-note {
  background: var(--tp-cream-dark);
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}
.tp-contact-note h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.1rem !important;
  color: var(--tp-soil) !important;
  margin-bottom: 0.75rem !important;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.tp-about-page-body {
  background: var(--tp-linen);
  padding: 5rem 2rem;
}
.tp-about-page-inner { max-width: 1100px; margin: 0 auto; }
.tp-about-page-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}
.tp-about-page-photo img {
  width: 100%;
  border-radius: 6px;
  display: block;
  border-bottom: 3px solid var(--tp-rust);
}
.tp-about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 1.5rem;
  border: 1px solid var(--tp-border);
  border-radius: 6px;
  overflow: hidden;
  background: white;
}
.tp-cred-item {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid var(--tp-border);
  border-bottom: 1px solid var(--tp-border);
}
.tp-cred-item:nth-child(2n) { border-right: none; }
.tp-cred-item:nth-child(3),
.tp-cred-item:nth-child(4) { border-bottom: none; }
.tp-cred-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tp-rust);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.tp-cred-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tp-text-mute);
  font-family: 'Cabin', sans-serif;
}
.tp-about-page-text h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: var(--tp-soil) !important;
  margin-bottom: 1.25rem !important;
}
.tp-about-page-text h2 em { font-style: italic; color: var(--tp-forest); }
.tp-about-page-text h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--tp-bark) !important;
  margin: 2rem 0 0.75rem !important;
}
.tp-about-page-text p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  color: var(--tp-text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.tp-about-page-text ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
}
.tp-about-page-text li {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  color: var(--tp-text-mid);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.tp-about-page-text strong { color: var(--tp-soil); }

/* Expertise grid */
.tp-expertise-section {
  padding-top: 4rem;
  border-top: 1px solid var(--tp-border);
}
.tp-expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.tp-expertise-card {
  background: white;
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tp-expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(46,31,20,0.08);
}
.tp-expertise-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.tp-expertise-card h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--tp-soil) !important;
  margin-bottom: 0.5rem !important;
}
.tp-expertise-card p {
  font-size: 0.83rem;
  color: var(--tp-text-mute);
  line-height: 1.55;
  font-family: 'Source Serif 4', serif;
  margin: 0;
}

/* ============================================================
   ADSENSE AD SLOTS
   ============================================================ */
.tp-ad-slot {
  margin: 2rem auto;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}
.tp-ad-slot.tp-ad-in-content { max-width: 728px; }
.tp-ad-slot.tp-ad-below-hero { max-width: 100%; background: var(--tp-cream-dark); padding: 1rem 0; }

/* ============================================================
   RESPONSIVE — Legal, About, Contact
   ============================================================ */
@media (max-width: 900px) {
  .tp-about-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tp-about-page-photo { max-width: 340px; }
}
@media (max-width: 600px) {
  .tp-about-credentials { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   STORE PAGE
   ============================================================ */

/* Stats bar */
.tp-store-stats-bar {
  background: var(--tp-cream-dark);
  border-bottom: 1px solid var(--tp-border);
  padding: 1.5rem 2rem;
}
.tp-store-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.tp-store-stat {
  text-align: center;
  padding: 0.5rem 2.5rem;
}
.tp-store-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--tp-border-md);
  flex-shrink: 0;
}
.tp-store-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tp-rust);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.tp-store-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tp-text-mute);
  font-family: 'Cabin', sans-serif;
}

/* Store section */
.tp-store-section {
  padding: 5.5rem 2rem;
  background: var(--tp-linen);
}
.tp-store-inner { max-width: 1100px; margin: 0 auto; }
.tp-store-header {
  margin-bottom: 3.5rem;
}

/* Store grid — 3 cols, 5th card centered below */
.tp-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Store card */
.tp-store-card {
  background: white;
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tp-store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(46,31,20,0.13);
}
.tp-store-card-humor {
  border-color: rgba(201,146,42,0.3);
}

/* Position cards 4 & 5 in center on last row */
.tp-store-grid .tp-store-card:nth-child(4) {
  grid-column: 1;
}
.tp-store-grid .tp-store-card:nth-child(5) {
  grid-column: 2;
}

/* Badge */
.tp-store-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  z-index: 1;
  font-family: 'Cabin', sans-serif;
}
.tp-badge-bestseller { background: var(--tp-rust); color: white; }
.tp-badge-popular    { background: var(--tp-forest); color: white; }
.tp-badge-new        { background: var(--tp-forest-mid); color: white; }
.tp-badge-fan        { background: var(--tp-gold); color: white; }

.tp-store-cover {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(155deg, var(--tp-forest), var(--tp-soil));
  flex-shrink: 0;
}
.tp-store-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.tp-store-card:hover .tp-store-cover img { transform: scale(1.04); }

.tp-store-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tp-store-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-forest-lt);
  margin-bottom: 0.5rem;
  font-family: 'Cabin', sans-serif;
}
.tp-store-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--tp-soil) !important;
  line-height: 1.3 !important;
  margin-bottom: 0.6rem !important;
}
.tp-store-desc {
  font-family: 'Source Serif 4', serif;
  font-size: 0.85rem;
  color: var(--tp-text-mute);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0.75rem;
}
.tp-store-social-proof {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--tp-forest-mid);
  font-family: 'Cabin', sans-serif;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.tp-store-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--tp-border);
  gap: 0.75rem;
  flex-wrap: wrap;
}
.tp-store-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tp-soil);
  line-height: 1;
}
.tp-store-price span {
  font-size: 0.78rem;
  color: var(--tp-text-mute);
  font-family: 'Cabin', sans-serif;
  font-weight: 400;
  display: block;
  margin-top: 0.15rem;
}
.tp-store-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Cabin', sans-serif;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.tp-store-buy:hover { transform: translateY(-1px); }
.tp-buy-rust   { background: var(--tp-rust); color: white !important; }
.tp-buy-rust:hover { background: var(--tp-rust-lt); }
.tp-buy-forest { background: var(--tp-forest); color: white !important; }
.tp-buy-forest:hover { background: var(--tp-forest-lt); }
.tp-buy-gold   { background: var(--tp-gold); color: white !important; }
.tp-buy-gold:hover { background: var(--tp-gold-lt); color: var(--tp-soil) !important; }

/* ── BUNDLE SECTION ── */
.tp-bundle-section {
  background: var(--tp-soil);
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.tp-bundle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(45,74,46,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 50%, rgba(184,83,42,0.1) 0%, transparent 50%);
}
.tp-bundle-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.tp-bundle-label {
  text-align: center;
  margin-bottom: 2rem;
}
.tp-bundle-tag {
  display: inline-block;
  background: var(--tp-gold);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.25rem;
  border-radius: 100px;
  font-family: 'Cabin', sans-serif;
}
.tp-bundle-card {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(201,146,42,0.3);
  border-radius: 12px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.tp-bundle-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
  font-weight: 800 !important;
  color: var(--tp-cream) !important;
  line-height: 1.1 !important;
  margin-bottom: 1rem !important;
}
.tp-bundle-title em { font-style: italic; color: var(--tp-gold-lt); }
.tp-bundle-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.tp-bundle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.tp-bundle-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.4;
}
.tp-bundle-check {
  color: var(--tp-forest-lt);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.tp-bundle-check-gold { color: var(--tp-gold-lt); }
.tp-bundle-bonus {
  display: inline-block;
  background: rgba(201,146,42,0.2);
  border: 1px solid rgba(201,146,42,0.4);
  color: var(--tp-gold-lt);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  margin-left: 0.5rem;
  font-family: 'Cabin', sans-serif;
  vertical-align: middle;
}
.tp-bundle-pricing { }
.tp-bundle-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.tp-bundle-original {
  font-family: 'Cabin', sans-serif;
  font-size: 1.25rem;
  color: rgba(245,240,232,0.3);
  text-decoration: line-through;
}
.tp-bundle-sale {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--tp-gold-lt);
  line-height: 1;
}
.tp-bundle-save {
  background: rgba(184,83,42,0.2);
  border: 1px solid rgba(184,83,42,0.4);
  color: var(--tp-rust-lt);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-family: 'Cabin', sans-serif;
}
.tp-bundle-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--tp-rust);
  color: white !important;
  text-decoration: none;
  font-family: 'Cabin', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2.25rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  display: block;
  text-align: center;
}
.tp-bundle-cta:hover { background: var(--tp-rust-lt); transform: translateY(-2px); color: white !important; }
.tp-bundle-guarantee {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  text-align: center;
  font-family: 'Cabin', sans-serif;
  margin: 0;
}

/* Bundle cover stacked images */
.tp-bundle-covers {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-bundle-cover {
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  object-fit: cover;
  transition: transform 0.3s;
}
.tp-bc-1 { width: 160px; z-index: 5; transform: rotate(-2deg) translateX(-30px); top: 20px; }
.tp-bc-2 { width: 145px; z-index: 4; transform: rotate(3deg) translateX(40px); top: 40px; }
.tp-bc-3 { width: 150px; z-index: 3; transform: rotate(-4deg) translateX(-10px); bottom: 20px; left: 30px; }
.tp-bc-4 { width: 140px; z-index: 2; transform: rotate(2deg) translateX(20px); bottom: 30px; right: 20px; }
.tp-bc-5 { width: 130px; z-index: 1; transform: rotate(-1deg); top: 50%; left: 50%; margin-left: -65px; margin-top: -65px; }
.tp-bundle-card:hover .tp-bc-1 { transform: rotate(-2deg) translateX(-40px) translateY(-5px); }
.tp-bundle-card:hover .tp-bc-2 { transform: rotate(3deg) translateX(50px) translateY(-5px); }
.tp-bundle-card:hover .tp-bc-3 { transform: rotate(-4deg) translateX(-15px) translateY(5px); }
.tp-bundle-card:hover .tp-bc-4 { transform: rotate(2deg) translateX(25px) translateY(5px); }

/* ── FREE STORE SECTION ── */
.tp-store-free-section {
  padding: 5.5rem 2rem;
  background: var(--tp-cream-dark);
  border-top: 1px solid var(--tp-border);
}
.tp-free-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.tp-free-store-card {
  background: white;
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tp-free-store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(46,31,20,0.1);
}
.tp-free-store-cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--tp-cream-dark);
}
.tp-free-store-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.tp-free-store-card:hover .tp-free-store-cover img { transform: scale(1.04); }
.tp-free-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tp-forest);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-family: 'Cabin', sans-serif;
}
.tp-free-store-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tp-free-store-body h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--tp-soil) !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}
.tp-free-store-body p {
  font-family: 'Source Serif 4', serif;
  font-size: 0.85rem;
  color: var(--tp-text-mute);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.tp-free-store-body .tp-store-buy {
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

/* ── STORE RESPONSIVE ── */
@media (max-width: 1024px) {
  .tp-bundle-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .tp-bundle-covers { height: 280px; }
  .tp-bc-1 { width: 130px; }
  .tp-bc-2 { width: 120px; }
  .tp-bc-3 { width: 125px; }
  .tp-bc-4 { width: 115px; }
  .tp-bc-5 { width: 110px; }
}
@media (max-width: 900px) {
  .tp-store-grid { grid-template-columns: 1fr 1fr; }
  .tp-store-grid .tp-store-card:nth-child(4) { grid-column: auto; }
  .tp-store-grid .tp-store-card:nth-child(5) { grid-column: auto; }
  .tp-free-store-grid { grid-template-columns: 1fr 1fr; }
  .tp-store-stat-divider { display: none; }
  .tp-store-stat { padding: 0.5rem 1.25rem; }
}
@media (max-width: 600px) {
  .tp-store-grid { grid-template-columns: 1fr; }
  .tp-free-store-grid { grid-template-columns: 1fr; }
  .tp-bundle-card { padding: 2rem 1.5rem; }
}

/* ============================================================
   BLOG ARCHIVE PAGE
   ============================================================ */

/* Category filter bar */
.tp-blog-filter-bar {
  background: white;
  border-bottom: 1px solid var(--tp-border);
  padding: 0 2rem;
  position: sticky;
  top: 64px;
  z-index: 50;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tp-blog-filter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 0;
  white-space: nowrap;
}
.tp-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Cabin', sans-serif;
  text-decoration: none;
  color: var(--tp-text-mid) !important;
  background: var(--tp-cream-dark);
  border: 1px solid var(--tp-border);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tp-filter-pill:hover {
  background: var(--tp-forest);
  color: white !important;
  border-color: var(--tp-forest);
}
.tp-filter-active {
  background: var(--tp-rust) !important;
  color: white !important;
  border-color: var(--tp-rust) !important;
}
.tp-filter-count {
  background: rgba(0,0,0,0.12);
  border-radius: 100px;
  padding: 0.1rem 0.4rem;
  font-size: 0.68rem;
}

/* Archive section */
.tp-blog-archive-section {
  padding: 4rem 2rem 5.5rem;
  background: var(--tp-linen);
}
.tp-blog-archive-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Archive grid — 3 col, first post spans 2 */
.tp-blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Archive card */
.tp-blog-archive-card {
  background: white;
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tp-blog-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(46,31,20,0.1);
}

/* Featured first post */
.tp-archive-featured {
  grid-column: span 2;
  flex-direction: row;
}
.tp-archive-featured .tp-archive-img-link { flex-shrink: 0; width: 55%; }
.tp-archive-featured .tp-archive-img { aspect-ratio: 16/10; height: 100%; }
.tp-archive-featured .tp-archive-body { padding: 2rem; justify-content: center; }
.tp-archive-featured .tp-archive-title { font-size: 1.35rem !important; }
.tp-archive-featured .tp-archive-excerpt { display: block !important; }

.tp-archive-img-link { display: block; overflow: hidden; }
.tp-archive-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--tp-cream-dark);
}
.tp-archive-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.tp-blog-archive-card:hover .tp-archive-img img { transform: scale(1.04); }

.tp-archive-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tp-archive-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.tp-archive-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-rust) !important;
  text-decoration: none;
  font-family: 'Cabin', sans-serif;
  transition: color 0.2s;
}
.tp-archive-cat:hover { color: var(--tp-forest) !important; }
.tp-archive-date {
  font-size: 0.72rem;
  color: var(--tp-text-mute);
  font-family: 'Cabin', sans-serif;
}
.tp-archive-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-bottom: 0.6rem !important;
}
.tp-archive-title a {
  color: var(--tp-soil) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.tp-archive-title a:hover { color: var(--tp-rust) !important; }
.tp-archive-excerpt {
  font-family: 'Source Serif 4', serif;
  font-size: 0.87rem;
  color: var(--tp-text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tp-archive-read-more {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tp-forest-mid) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  letter-spacing: 0.04em;
  font-family: 'Cabin', sans-serif;
  transition: color 0.2s, gap 0.2s;
}
.tp-archive-read-more:hover { color: var(--tp-rust) !important; gap: 0.55rem; }

/* Pagination */
.tp-blog-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.tp-blog-pagination .page-numbers {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tp-blog-pagination .page-numbers li a,
.tp-blog-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.75rem;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Cabin', sans-serif;
  text-decoration: none;
  border: 1px solid var(--tp-border);
  background: white;
  color: var(--tp-text-mid) !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tp-blog-pagination .page-numbers li a:hover {
  background: var(--tp-forest);
  color: white !important;
  border-color: var(--tp-forest);
}
.tp-blog-pagination .page-numbers li .current {
  background: var(--tp-rust);
  color: white !important;
  border-color: var(--tp-rust);
}

/* Empty state */
.tp-blog-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.tp-blog-empty p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.1rem;
  color: var(--tp-text-mute);
  margin-bottom: 1.5rem;
}

/* Bottom CTA section */
.tp-blog-bottom-cta {
  background: var(--tp-cream-dark);
  border-top: 1px solid var(--tp-border);
  padding: 5rem 2rem;
}
.tp-blog-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.tp-blog-cta-email {
  background: var(--tp-forest);
  border-radius: 10px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.tp-blog-cta-email::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.04);
}
.tp-blog-cta-email h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: var(--tp-cream) !important;
  line-height: 1.2 !important;
  margin-bottom: 0.75rem !important;
}
.tp-blog-cta-email h2 em { color: var(--tp-gold-lt); }
.tp-blog-cta-email p {
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.tp-blog-cta-email .tp-email-fine-print {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: rgba(245,240,232,0.35);
}
.tp-blog-cta-guides {}
.tp-blog-guide-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  margin-top: 1.25rem;
}
.tp-blog-guide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  border-bottom: 1px solid var(--tp-border);
  transition: background 0.15s;
  gap: 1rem;
}
.tp-blog-guide-row:last-child { border-bottom: none; }
.tp-blog-guide-row:hover { background: var(--tp-cream-dark); }
.tp-blog-guide-title {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--tp-soil);
  font-family: 'Cabin', sans-serif;
  line-height: 1.3;
}
.tp-blog-guide-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--tp-rust);
  flex-shrink: 0;
}
.tp-blog-guide-bundle { background: rgba(201,146,42,0.05); }
.tp-blog-guide-bundle:hover { background: rgba(201,146,42,0.1); }
.tp-blog-guide-bundle .tp-blog-guide-price { color: var(--tp-gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .tp-blog-archive-grid { grid-template-columns: 1fr 1fr; }
  .tp-archive-featured { grid-column: span 2; flex-direction: column; }
  .tp-archive-featured .tp-archive-img-link { width: 100%; }
  .tp-archive-featured .tp-archive-img { aspect-ratio: 16/9; height: auto; }
  .tp-blog-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .tp-blog-archive-grid { grid-template-columns: 1fr; }
  .tp-archive-featured { grid-column: span 1; }
  .tp-blog-filter-bar { top: 0; }
}
