/* Hawksbury Timber v3 visual layer */
:root {
  --ht-warm: #FDFAF6;
  --ht-cream: #F7F2EA;
  --ht-biscuit: #EDE4D4;
  --ht-stone: #D4C9B5;
  --ht-stone-dark: #A89880;
  --ht-timber: #B85C28;
  --ht-timber-mid: #C8703A;
  --ht-timber-light: #E09458;
  --ht-timber-pale: #FAE8D4;
  --ht-sage: #617A5C;
  --ht-sage-pale: #EBF2E8;
  --ht-sage-mid: #8AAD84;
  --ht-dark: #1C1A16;
  --ht-dark-mid: #2A2720;
  --ht-dark-warm: #362E22;
  --ht-dark-accent: #4A3C2A;
  --ht-charcoal: #2C2A24;
  --ht-ink: #48443C;
  --ht-mid: #78726A;
  --ht-light: #A8A098;
  --ht-serif: "Source Serif 4", Georgia, serif;
  --ht-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: var(--ht-sans);
  color: var(--ht-charcoal);
  background: var(--ht-warm);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--ht-serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ht-charcoal);
}

p { margin: 0; line-height: 1.75; color: var(--ht-ink); }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--ht-sans); }

.tl-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; }
.tl-icon--sm { width: .9em; height: .9em; }
.tl-icon--md { width: 1.1em; height: 1.1em; }

.tl-container,
.ht-container { width: min(1200px, calc(100% - 3.5rem)); margin-inline: auto; }
.container { width: min(1200px, calc(100% - 3.5rem)); margin-inline: auto; }
.tl-site-shell { min-height: 100vh; }

.ht-surface-light { background: var(--ht-warm); color: var(--ht-charcoal); }
.ht-surface-light p { color: var(--ht-ink); }
.ht-surface-light h1,
.ht-surface-light h2,
.ht-surface-light h3,
.ht-surface-light h4,
.ht-surface-light h5,
.ht-surface-light h6 { color: var(--ht-charcoal); }
.ht-surface-dark { background: var(--ht-dark); color: #fff; }
.ht-surface-dark p { color: rgba(255,255,255,.66); }
.ht-surface-dark h1,
.ht-surface-dark h2,
.ht-surface-dark h3,
.ht-surface-dark h4 { color: #fff; }

body.ht-surface-dark .ht-surface-light { color: var(--ht-charcoal); }
body.ht-surface-dark .ht-surface-light p { color: var(--ht-ink); }
body.ht-surface-dark .ht-surface-light h1,
body.ht-surface-dark .ht-surface-light h2,
body.ht-surface-dark .ht-surface-light h3,
body.ht-surface-dark .ht-surface-light h4,
body.ht-surface-dark .ht-surface-light h5,
body.ht-surface-dark .ht-surface-light h6 { color: var(--ht-charcoal); }

.ht-surface-light .tl-home-hero h1,
.ht-surface-light .tl-home-hero h2,
.ht-surface-light .tl-species-hero h1,
.ht-surface-light .tl-species-hero h2,
.ht-surface-light .tl-guides-hero h1,
.ht-surface-light .tl-guides-hero h2,
.ht-surface-light .tl-articles-hero h1,
.ht-surface-light .tl-articles-hero h2,
.ht-surface-light .tl-glossary-hero h1,
.ht-surface-light .tl-glossary-hero h2,
.ht-surface-light .tl-calculator-hero h1,
.ht-surface-light .tl-calculator-hero h2,
.ht-surface-light .tl-calculators-hero h1,
.ht-surface-light .tl-calculators-hero h2,
.ht-surface-light .tl-guide-hero h1,
.ht-surface-light .tl-article-hero h1,
.ht-surface-light .tl-article-hero h2,
.ht-surface-light .tl-guide-hero h2 { color: #fff; }

.ht-surface-light .tl-home-hero p,
.ht-surface-light .tl-species-hero p,
.ht-surface-light .tl-guides-hero p,
.ht-surface-light .tl-articles-hero p,
.ht-surface-light .tl-glossary-hero p,
.ht-surface-light .tl-calculator-hero p,
.ht-surface-light .tl-calculators-hero p,
.ht-surface-light .tl-article-hero p,
.ht-surface-light .tl-guide-hero p { color: rgba(255,255,255,.62); }

.ht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 1px solid transparent;
  padding: .75rem 1.5rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--ht-sans);
  transition: all .2s ease;
  cursor: pointer;
  text-decoration: none;
}
.ht-btn--solid { background: var(--ht-timber); color: #fff; text-decoration: none; }
.ht-btn--solid:hover { background: var(--ht-timber-mid); }
.ht-btn--outline { border-color: var(--ht-charcoal); color: var(--ht-charcoal); background: transparent; text-decoration: none; }
.ht-btn--outline:hover { background: var(--ht-charcoal); color: #fff; }
.ht-btn--ghost { border: 0; padding-inline: 0; background: transparent; position: relative; }
.ht-btn--ghost::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: currentColor; transition: width .2s ease; }
.ht-btn--ghost:hover::after { width: 100%; }

.ht-btn--sm { padding: .65rem 1.4rem; font-size: .7rem; }
.ht-btn--lg { padding: .95rem 2.5rem; }

.ht-btn--outline-inverse { border-color: rgba(255,255,255,.3); color: #fff; }
.ht-btn--outline-inverse:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.45); color: #fff; }

.tl-home-hero .ht-btn--outline-inverse { border-color: rgba(255,255,255,.46); color: rgba(255,255,255,.95); }

.ht-btn--sage { background: var(--ht-sage); }
.ht-btn--sage:hover { background: #54704f; }
.ht-btn--stone { background: var(--ht-stone-dark); }
.ht-btn--stone:hover { background: #92846f; }

@keyframes htFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes htFadeIn { from { opacity: 0; } to { opacity: 1; } }
.ht-fade-up { animation: htFadeUp .5s ease both; }
.ht-fade-up-1 { animation: htFadeUp .5s .1s ease both; }
.ht-fade-up-2 { animation: htFadeUp .5s .2s ease both; }
.ht-fade-up-3 { animation: htFadeUp .5s .3s ease both; }
.ht-fade-in { animation: htFadeIn .35s ease both; }

.ht-lift { transition: transform .22s ease, box-shadow .22s ease; }
.ht-lift:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(184,92,40,.13); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding-inline: 1.75rem;
  transition: background .25s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28,26,22,.97);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity .25s ease;
}
body:not(.home) .site-header::before,
.site-header.scrolled::before { opacity: 1; }

.header-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo { display: inline-flex; flex-direction: column; line-height: 1; }
.site-logo__main { font-family: var(--ht-serif); color: #fff; font-size: 1.15rem; letter-spacing: .05em; font-weight: 700; }
.site-logo__sub { margin-top: .18rem; color: var(--ht-timber-light); font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; }

.ht-primary-nav { margin-left: auto; }
.ht-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.ht-nav-list > li { position: relative; }
.ht-nav-list > li > a {
  color: rgba(255,255,255,.9);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.ht-nav-list .current-menu-item > a,
.ht-nav-list .current-menu-ancestor > a {
  color: var(--ht-timber-light);
  border-bottom-color: var(--ht-timber-light);
}

.ht-nav-list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + .6rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: .4rem 0;
  background: var(--ht-dark);
  border: 1px solid rgba(255,255,255,.1);
}
.ht-nav-list li:hover > .sub-menu,
.ht-nav-list li:focus-within > .sub-menu { display: block; }

.ht-nav-list > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: .8rem;
}
.ht-nav-list .sub-menu a {
  display: block;
  padding: .55rem 1rem;
  color: rgba(255,255,255,.84);
  font-size: .84rem;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: 0;
}
.ht-nav-list .sub-menu a:hover { background: rgba(196,112,58,.15); color: #fff; }

.header-actions { display: flex; align-items: center; gap: .8rem; }
.header-quote-btn {
  display: inline-flex;
  align-items: center;
  background: var(--ht-timber);
  color: #fff;
  padding: .5rem 1rem;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ht-nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
}
.ht-nav-toggle__bar { width: 100%; height: 1px; background: #fff; }

.ht-nav-panel {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 230;
  width: min(360px, 92vw);
  height: 100dvh;
  background: var(--ht-dark);
  border-left: 1px solid rgba(255,255,255,.1);
  padding: 1rem;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow: auto;
}
.ht-nav-panel[data-open] { transform: translateX(0); }
.ht-nav-close { margin-left: auto; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); color: #fff; background: transparent; }
.ht-mobile-nav .ht-nav-list { flex-direction: column; align-items: stretch; gap: .4rem; margin-top: .8rem; }
.ht-mobile-nav .ht-nav-list > li > a { display: block; color: #fff; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.ht-mobile-nav .sub-menu { position: static; transform: none; min-width: 0; display: block; border: 0; background: transparent; padding: 0 0 .4rem .8rem; }
.ht-mobile-nav .sub-menu a { color: rgba(255,255,255,.7); padding: .35rem 0; }

.ht-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(0,0,0,.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
html.nav-open .ht-nav-backdrop { opacity: 1; pointer-events: auto; }
.ht-mobile-quote { display: inline-flex; width: 100%; justify-content: center; margin-top: 1rem; }

.ht-project-uses { background: var(--ht-dark-mid); padding: 3rem 0; }
.ht-project-chip {
  border: 1px solid rgba(212,201,181,.22);
  color: var(--ht-stone);
  padding: .45rem 1rem;
  font-size: .82rem;
  transition: color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.ht-project-chip:hover { border-color: var(--ht-timber-light); color: var(--ht-timber-light); }

.ht-trust-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 1px;
  background: var(--ht-stone);
}
.ht-trust-item { background: var(--ht-warm); padding: 2rem; text-align: left; }
.ht-trust-item h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.ht-trust-item p { color: var(--ht-ink); font-size: .9rem; }

/* ── Articles ── */

/* Hero */
.tl-articles-hero {
  background: var(--ht-dark-mid);
  color: #fff;
  padding: calc(74px + 3.5rem) 0 3rem; /* 74px clears the sticky header on dev */
}
@media (min-width: 740px) { .tl-articles-hero { padding-top: calc(74px + 5.5rem); padding-bottom: 3.5rem; } }

.tl-articles-hero__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 740px) {
  .tl-articles-hero__inner { flex-direction: row; align-items: flex-end; }
}

.tl-articles-hero__content { flex: 1; min-width: 0; }
.tl-articles-hero__meta { white-space: nowrap; }
.tl-articles-hero__count {
  font-family: var(--ht-sans);
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

.tl-articles-badge {
  font-family: var(--ht-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ht-timber-pale);
  margin-bottom: 1rem;
}
.tl-articles-badge a { color: inherit; text-decoration: none; }
.tl-articles-badge a:hover { color: var(--ht-timber-light); text-decoration: underline; }
.tl-articles-badge span { opacity: .6; margin: 0 .25rem; }

.tl-articles-title {
  font-family: var(--ht-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.2;
}
.tl-articles-intro {
  font-family: var(--ht-sans);
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  max-width: 600px;
  line-height: 1.6;
}

/* Filters */
.tl-articles-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.tl-articles-filter {
  font-family: var(--ht-sans);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  padding: .35rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  transition: all .2s ease;
}
.tl-articles-filter:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.tl-articles-filter--active {
  color: #fff !important;
  border-color: var(--ht-timber) !important;
  background: var(--ht-timber);
}

/* Article list grid */
.tl-articles-list { padding: 2.5rem 0; }
.tl-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .tl-articles-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 900px) { .tl-articles-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }

/* Article card */
.tl-article-card {
  background: var(--ht-warm);
  border: 1px solid var(--ht-biscuit);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.tl-article-card:hover {
  border-color: var(--ht-timber);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.tl-article-card--compact { flex-direction: row; align-items: center; padding: 0; }

.tl-article-card__image { display: block; }
.tl-article-card__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.tl-article-card--stack .tl-article-card__image img { height: 120px; }

.tl-article-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  flex: 1;
}

.tl-article-card__meta {
  display: flex;
  align-items: center;
  gap: .625rem;
}
.tl-article-card__time {
  font-size: .7rem;
  color: var(--ht-mid);
}

.tl-article-card__title {
  font-family: var(--ht-serif);
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0;
}
.tl-article-card__title a {
  color: var(--ht-charcoal);
  text-decoration: none;
}
.tl-article-card__title a:hover { color: var(--ht-timber); }

.tl-article-card__summary {
  font-size: .82rem;
  color: var(--ht-mid);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tl-article-card--stack .tl-article-card__summary { display: none; }

.tl-article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  margin-top: auto;
  padding-top: .625rem;
  padding-bottom: .5rem;
}
.tl-article-card__author { color: var(--ht-light); }
.tl-article-card__cta {
  display: flex;
  align-items: center;
  gap: .25rem;
  color: var(--ht-timber);
  font-weight: 500;
  margin-left: auto;
  text-decoration: none;
  transition: color .2s ease;
}
.tl-article-card__cta:hover {
  color: var(--ht-timber-mid);
}

/* Single article */
.tl-article-hero__featured {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border: none;
  padding: 0;
  background: var(--ht-charcoal);
  margin-bottom: 0;
}
.tl-article-hero__featured img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.tl-article-hero__featured::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--ht-warm), transparent);
  pointer-events: none;
}

.tl-article-hero__featured + .tl-article-hero {
  padding-top: 1rem;
}

.tl-article-kicker {
  font-family: var(--ht-sans);
  font-size: .8rem;
  color: var(--ht-mid);
  margin-bottom: 1rem;
}
.tl-article-kicker a {
  color: var(--ht-timber);
  text-decoration: none;
}
.tl-article-kicker a:hover { text-decoration: underline; }
.tl-article-kicker span { opacity: .4; margin: 0 .25rem; }

.tl-article-title {
  font-family: var(--ht-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--ht-charcoal);
  line-height: 1.18;
  margin-bottom: .75rem;
}
.tl-article-deck {
  font-family: var(--ht-sans);
  font-size: 1rem;
  color: var(--ht-ink);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 640px;
}

/* ============================================================
   Article single — editorial pattern (Uncode-style)
   ============================================================ */

/* --- Hero: full-bleed featured image --- */
.tl-article-hero {
  position: relative;
  width: 100%;
  min-height: 65vh;
  background-color: #1C1A16;
  background-size: cover;
  background-position: center;
  display: flex;
}
.tl-article-hero__overlay {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Dark overlay: transparent at top fading to solid at bottom for readability */
  background:
    linear-gradient(
      to bottom,
      rgba(18, 16, 12, 0.30) 0%,
      rgba(18, 16, 12, 0.55) 40%,
      rgba(18, 16, 12, 0.85) 100%
    );
}
.tl-article-hero__inner {
  width: 100%;
  max-width: var(--ht-container, 1200px);
  padding: calc(74px + 4rem) 2rem 4rem; /* 74px clears header, 4rem guarantees breathing room */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center; /* center all text in the hero */
}

/* Top meta: date + read time */
.tl-article-hero__topmeta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
}
.tl-article-hero__date,
.tl-article-hero__readtime {
  font-size: .78rem;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, 0.70);
}
.tl-article-hero__sep { color: rgba(255, 255, 255, 0.35); }

/* Title: SANS-SERIF, centered, white */
.tl-article-hero__title {
  font-family: var(--ht-sans);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800; /* extra bold for sans-serif */
  line-height: 1.06;
  color: #fff !important;
  max-width: 880px;
  margin: 2.5rem auto; /* pushes to vertical center with minimum gap */
  letter-spacing: -.02em;
  text-shadow: 0 3px 32px rgba(0, 0, 0, 0.5);
}

/* Bottom meta: author */
.tl-article-hero__bottommeta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.tl-article-hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.tl-article-hero__author {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

/* --- Article body: single centered column --- */
.tl-site-main--article { padding-bottom: 4rem; }
.tl-article-body { padding: 3rem 0 0; }

/* --- Prose: readable column with drop cap + pull quotes --- */
.tl-article-prose {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--ht-sans);
}

/* Drop cap on first paragraph */
.tl-article-prose > p:first-of-type::first-letter {
  font-family: var(--ht-serif);
  font-size: 4.2em;
  font-weight: 700;
  line-height: .78;
  float: left;
  margin: .08em .12em 0 0;
  color: var(--ht-timber);
}

/* --- Category pills + share icons after content --- */
.tl-article-footer {
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--ht-stone);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.tl-article-footer__cats {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.tl-article-footer__pill {
  display: inline-block;
  padding: .3rem .875rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ht-charcoal);
  border: 1px solid var(--ht-stone);
  border-radius: 2rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.tl-article-footer__pill:hover {
  background: var(--ht-charcoal);
  color: #fff;
  border-color: var(--ht-charcoal);
}
.tl-article-footer__share {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.tl-article-footer__share-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ht-mid);
}
.tl-article-footer__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ht-stone);
  color: var(--ht-mid);
  transition: background .2s, color .2s, border-color .2s;
}
.tl-article-footer__share-btn:hover {
  background: var(--ht-charcoal);
  color: #fff;
  border-color: var(--ht-charcoal);
}
.tl-article-footer__share-btn .tl-icon { width: 16px; height: 16px; }

.tl-article-prose p {
  margin-bottom: 1.5em;
  line-height: 1.8;
  color: var(--ht-charcoal);
  font-size: 1.0625rem;
}
.tl-article-prose p:last-child { margin-bottom: 0; }

.tl-article-prose h2 {
  font-family: var(--ht-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--ht-charcoal);
  margin: 2.5em 0 .65em;
  line-height: 1.2;
}
.tl-article-prose h3 {
  font-family: var(--ht-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--ht-charcoal);
  margin: 2em 0 .5em;
  line-height: 1.3;
}
.tl-article-prose h4 {
  font-family: var(--ht-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ht-timber);
  margin: 1.75em 0 .5em;
}

/* Pull quote — bleeds wider than prose column */
.tl-article-prose blockquote {
  position: relative;
  margin: 2.5em -2rem;
  padding: 1.75rem 2.5rem;
  background: var(--ht-cream);
  border-radius: 4px;
  border-left: 4px solid var(--ht-timber);
}
.tl-article-prose blockquote::before {
  content: '\201C';
  font-family: var(--ht-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--ht-timber);
  opacity: .25;
  position: absolute;
  top: -.25rem;
  left: 1.25rem;
}
.tl-article-prose blockquote p {
  margin-bottom: 0;
  font-family: var(--ht-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--ht-charcoal);
}

.tl-article-prose ul,
.tl-article-prose ol {
  margin: 0 0 1.5em 1.75em;
  line-height: 1.8;
}
.tl-article-prose li { margin-bottom: .5em; }
.tl-article-prose a {
  color: var(--ht-timber);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tl-article-prose a:hover { color: var(--ht-timber-mid); }
.tl-article-prose hr {
  border: 0;
  height: 1px;
  background: var(--ht-stone);
  margin: 2.5em 0;
}
.tl-article-prose img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5em 0;
}
.tl-article-prose figure { margin: 2em 0; }
.tl-article-prose figcaption {
  font-size: .8rem;
  color: var(--ht-mid);
  text-align: center;
  margin-top: .5em;
}
.tl-article-prose strong { font-weight: 600; color: var(--ht-charcoal); }
.tl-article-prose em { font-style: italic; }

/* ============================================================
   Article ending / related posts (preserve existing)
   ============================================================ */
.tl-guides-sidepanel__links a:hover { background: var(--ht-cream); }

/* Article ending */
.tl-article-ending { padding: 2.5rem 0; }
.tl-article-ending__head { margin-bottom: 2rem; }
.tl-article-ending__kicker {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ht-mid);
  margin-bottom: .5rem;
}
.tl-article-ending__title {
  font-family: var(--ht-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--ht-charcoal);
}
.tl-article-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .tl-article-cards { grid-template-columns: repeat(3, minmax(0,1fr)); } }

/* Product-page trust panel — delivery, cut-to-length, straight answers */
.product-trust {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0;
  background: var(--ht-stone);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1.25rem;
}
.product-trust__item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  background: var(--ht-warm);
  padding: 1.25rem 1rem;
}
.product-trust__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--ht-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ht-timber);
}
.product-trust__icon svg { width: 20px; height: 20px; }
.product-trust__content { display: flex; flex-direction: column; gap: .125rem; }
.product-trust__title { font-size: .9rem; font-family: var(--ht-sans); color: var(--ht-charcoal); line-height: 1.3; }
.product-trust__text { font-size: .8rem; color: #6B6560; line-height: 1.4; }

/* ───── Responsive: collapse trust panel to single column on mobile ───── */
@media (max-width: 600px) {
  .product-trust { grid-template-columns: 1fr; }
  .product-trust__item { padding: 1rem; }
}

/* Hero */
.tl-home-hero,
.tl-species-hero,
.tl-guide-hero,
.tl-guides-hero,
.tl-search-hero,
.tl-glossary-hero,
.tl-calculator-hero,
.tl-calculators-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1C1A16 0%, #362E22 55%, #4A3C2A 100%);
}
.tl-home-hero { min-height: 92vh; display: flex; align-items: center; }
.tl-guide-hero,
.tl-species-hero,
.tl-guides-hero,
.tl-search-hero,
.tl-glossary-hero,
.tl-calculator-hero,
.tl-calculators-hero { padding: 9rem 0 4rem; }
.tl-home-hero::before,
.tl-species-hero::before,
.tl-guide-hero::before,
.tl-guides-hero::before,
.tl-search-hero::before,
.tl-glossary-hero::before,
.tl-calculator-hero::before,
.tl-calculators-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"),
    repeating-linear-gradient(4deg, transparent, transparent 22px, rgba(196,136,80,.055) 22px, rgba(196,136,80,.055) 23px);
  background-size: 180px 180px, auto;
}
.tl-home-hero::after,
.tl-species-hero::after,
.tl-guide-hero::after,
.tl-guides-hero::after,
.tl-search-hero::after,
.tl-glossary-hero::after,
.tl-calculator-hero::after,
.tl-calculators-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65px;
  background: linear-gradient(transparent, var(--ht-warm));
}
.tl-home-hero::after,
.tl-species-hero::after,
.tl-guide-hero::after,
.tl-guides-hero::after,
.tl-search-hero::after,
.tl-glossary-hero::after,
.tl-calculator-hero::after,
.tl-calculators-hero::after { display: none; }

.tl-home-badge,
.tl-species-badge,
.tl-guides-badge,
.tl-search-badge,
.tl-glossary-badge,
.tl-calculators-badge {
  display: inline-block;
  background: rgba(196,112,58,.14);
  border: 1px solid rgba(224,148,88,.5);
  color: rgba(255,255,255,.92);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  margin-bottom: 1.25rem;
}

.tl-guide-hero__badge {
  display: inline-block;
  background: rgba(196,112,58,.15);
  border: 1px solid rgba(196,112,58,.3);
  color: var(--ht-timber-light);
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.tl-home-title,
.tl-page-title,
.tl-guides-title,
.tl-search-title,
.tl-glossary-title,
.tl-calculator-title,
.tl-guide-title,
.tl-calculators-title { color: #fff; font-family: var(--ht-serif); }
.tl-home-title { font-size: clamp(2.8rem, 6.5vw, 4.6rem); line-height: 1.08; }
.tl-page-title,
.tl-guides-title,
.tl-search-title,
.tl-glossary-title,
.tl-calculator-title,
.tl-calculators-title { font-size: clamp(1.9rem, 4.3vw, 3.25rem); line-height: 1.12; }
.tl-guide-title { font-size: clamp(2.05rem, 4.4vw, 3.4rem); line-height: 1.12; }
.tl-home-intro,
.tl-page-intro,
.tl-guides-intro,
.tl-search-intro,
.tl-glossary-intro,
.tl-calculator-intro,
.tl-calculators-intro { color: rgba(255,255,255,.64); max-width: 60ch; }

.tl-guide-deck { color: rgba(255,255,255,.7); max-width: 70ch; line-height: 1.75; font-size: 1rem; margin-top: .9rem; }

.tl-home-hero .tl-home-intro,
.tl-species-hero .tl-page-intro,
.tl-guides-hero .tl-guides-intro,
.tl-search-hero .tl-search-intro,
.tl-glossary-hero .tl-glossary-intro,
.tl-calculators-hero .tl-calculators-intro { color: rgba(255,255,255,.64); }

.tl-species-hero .tl-species-botanical { color: rgba(255,255,255,.55); }
.ht-surface-light .tl-species-hero .tl-species-botanical { color: rgba(255,255,255,.55); }

.tl-home-hero .tl-home-badge,
.tl-species-hero .tl-species-badge,
.tl-guides-hero .tl-guides-badge,
.tl-search-hero .tl-search-badge,
.tl-glossary-hero .tl-glossary-badge,
.tl-calculators-hero .tl-calculators-badge { margin-bottom: 2rem; }

.tl-home-hero .tl-home-title,
.tl-species-hero .tl-page-title,
.tl-guides-hero .tl-guides-title,
.tl-search-hero .tl-search-title,
.tl-glossary-hero .tl-glossary-title,
.tl-calculators-hero .tl-calculators-title { margin-bottom: 1.25rem; }

.tl-guide-hero .tl-guide-title { margin-top: .55rem; margin-bottom: 1.25rem; }
.tl-guide-hero .tl-guide-deck { margin-bottom: 1.75rem; }

.tl-home-hero .tl-home-intro,
.tl-species-hero .tl-page-intro,
.tl-guides-hero .tl-guides-intro,
.tl-search-hero .tl-search-intro,
.tl-glossary-hero .tl-glossary-intro,
.tl-calculators-hero .tl-calculators-intro { margin-bottom: 2.25rem; }

.tl-search-form { display: flex; gap: .55rem; align-items: center; flex-wrap: wrap; }
.tl-search-form__input {
  min-width: min(520px, 100%);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: .75rem .9rem;
  font-family: var(--ht-sans);
}
.tl-search-form select {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: .75rem .8rem;
}
.tl-search-form__input::placeholder { color: rgba(255,255,255,.58); }

.tl-search-results { padding: 4rem 0; background: var(--ht-warm); }
.tl-search-group { margin-bottom: 2rem; }
.tl-search-group__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--ht-stone); }
.tl-search-group__title { font-size: 1.25rem; color: var(--ht-charcoal); }
.tl-search-group__count { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ht-mid); }
.tl-search-grid { margin-top: 1rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.tl-search-result { border: 1px solid var(--ht-stone); background: var(--ht-cream); padding: 1.1rem 1.1rem 1.25rem; color: var(--ht-charcoal); }
.tl-search-result__kicker { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ht-mid); font-weight: 700; }
.tl-search-result__title { margin-top: .55rem; font-size: 1.08rem; font-weight: 650; }
.tl-search-result__meta { margin-top: .35rem; color: var(--ht-mid); font-size: .84rem; }
.tl-search-result__desc { margin-top: .65rem; color: var(--ht-ink); font-size: .9rem; line-height: 1.65; }
.tl-search-result__cta { margin-top: .85rem; display: inline-flex; align-items: center; gap: .35rem; color: var(--ht-timber); font-weight: 650; font-size: .82rem; }
.tl-search-result:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(18,15,12,.08); }

.tl-home-hero .tl-home-intro { margin-bottom: 1.85rem; }

.ht-surface-light .tl-home-hero .tl-home-title,
.ht-surface-light .tl-home-hero .tl-page-title,
.ht-surface-light .tl-home-hero .tl-guides-title,
.ht-surface-light .tl-home-hero .tl-glossary-title,
.ht-surface-light .tl-home-hero .tl-calculator-title,
.ht-surface-light .tl-home-hero .tl-calculators-title,
.ht-surface-light .tl-species-hero .tl-home-title,
.ht-surface-light .tl-species-hero .tl-page-title,
.ht-surface-light .tl-species-hero .tl-guides-title,
.ht-surface-light .tl-species-hero .tl-glossary-title,
.ht-surface-light .tl-species-hero .tl-calculator-title,
.ht-surface-light .tl-species-hero .tl-calculators-title,
.ht-surface-light .tl-guides-hero .tl-home-title,
.ht-surface-light .tl-guides-hero .tl-page-title,
.ht-surface-light .tl-guides-hero .tl-guides-title,
.ht-surface-light .tl-guides-hero .tl-glossary-title,
.ht-surface-light .tl-guides-hero .tl-calculator-title,
.ht-surface-light .tl-guides-hero .tl-calculators-title,
.ht-surface-light .tl-glossary-hero .tl-home-title,
.ht-surface-light .tl-glossary-hero .tl-page-title,
.ht-surface-light .tl-glossary-hero .tl-guides-title,
.ht-surface-light .tl-glossary-hero .tl-glossary-title,
.ht-surface-light .tl-glossary-hero .tl-calculator-title,
.ht-surface-light .tl-glossary-hero .tl-calculators-title,
.ht-surface-light .tl-calculator-hero .tl-home-title,
.ht-surface-light .tl-calculator-hero .tl-page-title,
.ht-surface-light .tl-calculator-hero .tl-guides-title,
.ht-surface-light .tl-calculator-hero .tl-glossary-title,
.ht-surface-light .tl-calculator-hero .tl-calculator-title,
.ht-surface-light .tl-calculator-hero .tl-calculators-title,
.ht-surface-light .tl-calculators-hero .tl-home-title,
.ht-surface-light .tl-calculators-hero .tl-page-title,
.ht-surface-light .tl-calculators-hero .tl-guides-title,
.ht-surface-light .tl-calculators-hero .tl-glossary-title,
.ht-surface-light .tl-calculators-hero .tl-calculator-title,
.ht-surface-light .tl-calculators-hero .tl-calculators-title { color: #fff; }

.ht-surface-light .tl-home-hero .tl-home-intro,
.ht-surface-light .tl-home-hero .tl-page-intro,
.ht-surface-light .tl-home-hero .tl-guides-intro,
.ht-surface-light .tl-home-hero .tl-glossary-intro,
.ht-surface-light .tl-home-hero .tl-calculator-intro,
.ht-surface-light .tl-home-hero .tl-calculators-intro,
.ht-surface-light .tl-species-hero .tl-home-intro,
.ht-surface-light .tl-species-hero .tl-page-intro,
.ht-surface-light .tl-species-hero .tl-guides-intro,
.ht-surface-light .tl-species-hero .tl-glossary-intro,
.ht-surface-light .tl-species-hero .tl-calculator-intro,
.ht-surface-light .tl-species-hero .tl-calculators-intro,
.ht-surface-light .tl-guides-hero .tl-home-intro,
.ht-surface-light .tl-guides-hero .tl-page-intro,
.ht-surface-light .tl-guides-hero .tl-guides-intro,
.ht-surface-light .tl-guides-hero .tl-glossary-intro,
.ht-surface-light .tl-guides-hero .tl-calculator-intro,
.ht-surface-light .tl-guides-hero .tl-calculators-intro,
.ht-surface-light .tl-glossary-hero .tl-home-intro,
.ht-surface-light .tl-glossary-hero .tl-page-intro,
.ht-surface-light .tl-glossary-hero .tl-guides-intro,
.ht-surface-light .tl-glossary-hero .tl-glossary-intro,
.ht-surface-light .tl-glossary-hero .tl-calculator-intro,
.ht-surface-light .tl-glossary-hero .tl-calculators-intro,
.ht-surface-light .tl-calculator-hero .tl-home-intro,
.ht-surface-light .tl-calculator-hero .tl-page-intro,
.ht-surface-light .tl-calculator-hero .tl-guides-intro,
.ht-surface-light .tl-calculator-hero .tl-glossary-intro,
.ht-surface-light .tl-calculator-hero .tl-calculator-intro,
.ht-surface-light .tl-calculator-hero .tl-calculators-intro,
.ht-surface-light .tl-calculators-hero .tl-home-intro,
.ht-surface-light .tl-calculators-hero .tl-page-intro,
.ht-surface-light .tl-calculators-hero .tl-guides-intro,
.ht-surface-light .tl-calculators-hero .tl-glossary-intro,
.ht-surface-light .tl-calculators-hero .tl-calculator-intro,
.ht-surface-light .tl-calculators-hero .tl-calculators-intro { color: rgba(255,255,255,.64); }

/* Homepage */
.ht-hero__content {
  max-width: 760px;
  position: relative;
  z-index: 2;
  padding: 6.25rem 0 4.25rem;
}

.tl-home-hero::after {
  display: block;
  inset: 0;
  height: auto;
  background: radial-gradient(900px 520px at 18% 46%, rgba(0,0,0,.44) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 1;
}
.ht-hero-italic { font-style: italic; color: var(--ht-timber-light); }
.ht-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.tl-home-hero .tl-home-badge { padding: .38rem .9rem; }
.tl-home-hero .ht-hero__actions { margin-top: 0; }

.ht-section { padding: 5rem 0; }
.ht-section--warm { background: var(--ht-warm); }
.ht-section--cream { background: var(--ht-cream); }

.ht-section-label {
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ht-sage);
  font-weight: 600;
}
.ht-section-head { margin-bottom: 3rem; }
.ht-section-head--center { text-align: center; }
.ht-section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ht-section-sub { font-size: .9rem; color: var(--ht-ink); margin-top: .4rem; max-width: 520px; }

.ht-home-h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-family: var(--ht-serif); font-weight: 600; line-height: 1.2; margin-top: .75rem; }
.ht-home-h2-italic { font-style: italic; color: var(--ht-timber); }

.ht-audience-card {
  display: block;
  cursor: pointer;
  position: relative;
  padding: 2rem 2rem 2.5rem;
}
.ht-audience-card__icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ht-stone);
  background: var(--ht-warm);
  color: var(--ht-timber);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.ht-audience-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ht-timber), var(--ht-timber-light));
  opacity: .92;
}
.ht-audience-card h3 { font-size: 1.15rem; margin-bottom: .75rem; }
.ht-audience-card p { font-size: .88rem; line-height: 1.75; color: var(--ht-ink); margin-bottom: 0; }

.ht-tabs { display: flex; gap: 4px; }
.ht-tabs__btn {
  background: transparent;
  color: var(--ht-charcoal);
  border: 1px solid var(--ht-stone);
  padding: .45rem 1rem;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.ht-tabs__btn.is-active { background: var(--ht-charcoal); color: #fff; border-color: var(--ht-charcoal); }

.tl-search-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--ht-stone);
  background: var(--ht-cream);
  color: var(--ht-charcoal);
  padding: .55rem .85rem;
  font-size: .82rem;
}
.tl-search-pill:hover { border-color: var(--ht-timber); }
.tl-search-pill__text { color: var(--ht-charcoal); }

.ht-category-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ht-warm);
  border: 1px solid var(--ht-stone);
  min-height: 280px;
}
.ht-category-panel.is-hidden { display: none; }
.ht-category-panel__left { padding: 2.5rem; border-right: 1px solid var(--ht-stone); }
.ht-category-panel__right { padding: 2.5rem; }
.ht-category-panel__title { font-size: 1.6rem; font-weight: 600; }
.ht-category-panel__sub { font-size: .9rem; color: var(--ht-ink); line-height: 1.7; margin-top: .75rem; max-width: 52ch; }
.ht-category-panel__kicker {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ht-mid);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.ht-category-panel__list { list-style: none; margin: 0; padding: 0; }
.ht-category-panel__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  color: var(--ht-charcoal);
  padding: .65rem 0;
  border-bottom: 1px solid var(--ht-stone);
  transition: color .18s ease;
  cursor: pointer;
}
.ht-category-panel__item:last-child { border-bottom: 0; }
.ht-category-panel__item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--ht-accent, var(--ht-timber));
  flex: 0 0 auto;
}
.ht-category-panel:hover .ht-category-panel__item:hover { color: var(--ht-accent, var(--ht-timber)); }

.ht-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--ht-stone);
}
.ht-knowledge-card {
  background: var(--ht-cream);
  padding: 2rem 1.75rem;
  cursor: pointer;
  position: relative;
  display: block;
}
.ht-knowledge-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--ht-timber);
}
.ht-knowledge-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.ht-knowledge-card__title { font-size: .95rem; font-family: var(--ht-sans); font-weight: 700; margin-bottom: .5rem; }
.ht-knowledge-card__desc { font-size: .83rem; color: var(--ht-ink); line-height: 1.65; }

/* Enhanced knowledge cards for homepage */
.ht-knowledge-grid--featured {
  background: none;
  gap: 1rem;
}
.ht-knowledge-grid--featured .ht-knowledge-card {
  padding: 2.25rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ht-stone);
  border-radius: 2px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.ht-knowledge-grid--featured .ht-knowledge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(18,15,12,.1);
  border-color: var(--ht-timber-light);
}
.ht-knowledge-grid--featured .ht-knowledge-card__icon { font-size: 2.25rem; margin-bottom: .75rem; }
.ht-knowledge-grid--featured .ht-knowledge-card__count {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ht-timber);
  font-weight: 700;
  margin-bottom: .4rem;
}
.ht-knowledge-grid--featured .ht-knowledge-card__title { font-size: 1.05rem; margin-bottom: .6rem; }
.ht-knowledge-grid--featured .ht-knowledge-card__desc { flex: 1; font-size: .85rem; margin-bottom: 1.25rem; }
.ht-knowledge-card__cta {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ht-timber);
  margin-top: auto;
}

/* "Why we built this" section */
.ht-home-why {
  background: #4A3C2A;
  padding: 3.5rem 0;
}
.ht-home-why__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.ht-home-why__icon {
  flex: 0 0 auto;
  color: var(--ht-timber-light);
  font-size: 1.75rem;
  margin-top: .25rem;
  opacity: .85;
}
.ht-home-why__content { flex: 1; }
.ht-home-why__title {
  font-family: var(--ht-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: .75rem;
}
.ht-home-why__text {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.75;
  max-width: 68ch;
}

/* Category cards with CTA link */
.ht-category-card { display: flex; flex-direction: column; }
.ht-category-card__cta {
  margin-top: auto;
  padding-top: 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ht-timber);
}

.ht-project-uses__inner { text-align: center; }
.ht-project-uses__kicker {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ht-stone-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.ht-project-uses__chips { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }

.ht-cta { position: relative; overflow: hidden; padding: 5rem 0; }
.ht-cta--dark { background: linear-gradient(150deg, var(--ht-dark), var(--ht-dark-warm)); }
.ht-cta--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"),
    repeating-linear-gradient(4deg, transparent, transparent 22px, rgba(196,136,80,.055) 22px, rgba(196,136,80,.055) 23px);
  background-size: 180px 180px, auto;
  pointer-events: none;
}
.ht-cta__inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.ht-cta__badge {
  display: inline-block;
  background: rgba(196,112,58,.15);
  border: 1px solid rgba(196,112,58,.3);
  color: var(--ht-timber-light);
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  margin-bottom: 1.5rem;
}
.ht-cta__title { font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; margin-bottom: 1rem; line-height: 1.15; }
.ht-cta__sub { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 2.5rem; }

.ht-surface-light .ht-cta--dark .ht-cta__title { color: #fff; }
.ht-surface-light .ht-cta--dark .ht-cta__sub { color: rgba(255,255,255,.6); }
.ht-surface-light .ht-cta--dark .ht-cta__badge { color: var(--ht-timber-light); }

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1C1A16 0%, #362E22 55%, #4A3C2A 100%);
  padding: 9rem 0 4rem;
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"),
    repeating-linear-gradient(4deg, transparent, transparent 22px, rgba(196,136,80,.055) 22px, rgba(196,136,80,.055) 23px);
  background-size: 180px 180px, auto;
}
.page-hero .container { position: relative; z-index: 2; max-width: 860px; }
.ht-surface-light .page-hero__title { color: #fff; }
.page-hero__title { font-size: clamp(2.05rem, 4.8vw, 3.7rem); line-height: 1.1; }
.page-hero__title em { font-style: italic; color: var(--ht-timber-light); }
.ht-surface-light .page-hero__body { color: rgba(255,255,255,.64); }
.page-hero__body { margin-top: 1.1rem; line-height: 1.75; max-width: 70ch; }

.page-hero .eyebrow {
  display: inline-block;
  background: rgba(196,112,58,.12);
  border: 1px solid rgba(224,148,88,.45);
  color: rgba(255,255,255,.78);
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  margin-bottom: 1.5rem;
}

.section { padding: 5rem 0; background: var(--ht-warm); }
.section--warm { background: var(--ht-cream); }
.section .container { position: relative; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 1px solid transparent;
  padding: .75rem 1.5rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--ht-sans);
  transition: all .2s ease;
  cursor: pointer;
}
.btn--primary { background: var(--ht-timber); color: #fff; }
.btn--primary:hover { background: var(--ht-timber-mid); }
.btn--full { width: 100%; }
.btn--large { padding: .95rem 2.5rem; }
.btn--oak { background: var(--ht-dark); color: #fff; }
.btn--oak:hover { background: var(--ht-dark-mid); }

.ht-guided-quote__head { max-width: 78ch; margin: 0 auto 2.5rem; text-align: center; }
.ht-guided-quote__head h2 { margin-top: .75rem; }
.ht-guided-quote__head p { margin-top: .75rem; color: var(--ht-ink); }

.ht-quote-router { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.ht-quote-route {
  text-align: left;
  background: var(--ht-cream);
  border: 1px solid var(--ht-stone);
  padding: 1.35rem 1.35rem 1.5rem;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ht-quote-route:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(184,92,40,.13); border-color: rgba(184,92,40,.4); }
.ht-quote-route__title { display: block; font-family: var(--ht-serif); font-size: 1.1rem; color: var(--ht-charcoal); }
.ht-quote-route__text { display: block; margin-top: .55rem; color: var(--ht-ink); font-size: .88rem; line-height: 1.65; }
.ht-quote-route__hint { display: block; margin-top: .75rem; color: var(--ht-mid); font-size: .78rem; line-height: 1.5; }

.ht-quote-helper-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2.25rem; }
.ht-quote-helper-grid > div { background: var(--ht-warm); border: 1px solid var(--ht-stone); padding: 1.25rem; }
.ht-quote-helper-grid span { display: inline-flex; width: 2rem; height: 2rem; align-items: center; justify-content: center; border: 1px solid var(--ht-stone); background: var(--ht-cream); color: var(--ht-timber); font-weight: 800; font-size: .75rem; }
.ht-quote-helper-grid strong { display: block; margin-top: .9rem; color: var(--ht-charcoal); font-family: var(--ht-sans); font-size: .9rem; }
.ht-quote-helper-grid p { margin-top: .5rem; color: var(--ht-ink); font-size: .86rem; line-height: 1.65; }

.ht-quote-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; align-items: start; }
.ht-quote-aside { position: sticky; top: 94px; }
.ht-quote-aside__panel { background: var(--ht-cream); border: 1px solid var(--ht-stone); padding: 1.75rem; }
.ht-quote-kicker { font-size: .63rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ht-sage); font-weight: 700; margin-bottom: .75rem; }
.ht-quote-checklist { margin: 1.2rem 0 0; padding-left: 1.1rem; color: var(--ht-ink); }
.ht-quote-checklist li { margin: .4rem 0; }

.ht-quote-contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; margin-top: 1rem; }
.ht-quote-contact-card { background: var(--ht-warm); border: 1px solid var(--ht-stone); padding: 1rem; }
.ht-quote-contact-card__label { display: block; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ht-mid); font-weight: 700; }
.ht-quote-contact-card a {
  display: block;
  margin-top: .45rem;
  color: var(--ht-timber);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ht-quote-contact-card a:hover { color: var(--ht-timber-mid); }
.ht-quote-contact-card span:not(.ht-quote-contact-card__label) { display: block; margin-top: .45rem; color: var(--ht-ink); font-size: .9rem; line-height: 1.6; }

.ht-quote-form-card { background: var(--ht-cream); border: 1px solid var(--ht-stone); padding: 1.75rem; }
.ht-quote-form-card__head p { color: var(--ht-ink); margin-top: .65rem; }
.ht-quote-form-card__head h2 { margin-top: .5rem; }

#ht-contact-form { margin-top: 1.25rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.form-field { display: grid; gap: .45rem; margin-top: 1rem; }
.form-field label { font-size: .78rem; font-weight: 700; color: var(--ht-charcoal); letter-spacing: .02em; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--ht-stone);
  background: var(--ht-warm);
  color: var(--ht-charcoal);
  padding: .7rem .85rem;
  font-family: var(--ht-sans);
  font-size: .95rem;
  border-radius: 0;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--ht-timber); }

.ht-help-options {
  margin-top: 1.25rem;
  border: 1px solid var(--ht-stone);
  background: var(--ht-warm);
  padding: 1rem 1rem .9rem;
}
.ht-help-options legend { font-size: .78rem; font-weight: 800; color: var(--ht-charcoal); padding: 0 .35rem; }
.ht-help-options label { display: inline-flex; align-items: center; gap: .55rem; margin: .5rem .75rem .2rem 0; color: var(--ht-ink); font-size: .9rem; }
.ht-help-options input[type="checkbox"] { width: 1.05rem; height: 1.05rem; accent-color: var(--ht-timber); }

.ht-cutting-list { margin-top: 1.25rem; border: 1px solid var(--ht-stone); background: var(--ht-warm); padding: 1rem; }
.ht-cutting-list__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding-bottom: .85rem; border-bottom: 1px solid var(--ht-stone); }
.ht-cutting-list__head span { font-size: .78rem; font-weight: 800; color: var(--ht-charcoal); letter-spacing: .02em; }
.ht-cutting-list__head p { margin-top: .45rem; color: var(--ht-mid); font-size: .82rem; line-height: 1.6; }
.ht-cutting-list__add {
  border: 1px solid var(--ht-stone);
  background: var(--ht-cream);
  color: var(--ht-charcoal);
  padding: .55rem .75rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.ht-cutting-list__add:hover { border-color: var(--ht-timber); color: var(--ht-timber); }
.ht-cutting-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 1fr 40px;
  gap: .7rem;
  align-items: end;
  padding-top: .9rem;
}
.ht-cutting-row label { display: grid; gap: .35rem; position: relative; }
.ht-cutting-row label span { font-size: .72rem; font-weight: 700; color: var(--ht-charcoal); }
.ht-cutting-row input {
  width: 100%;
  border: 1px solid var(--ht-stone);
  background: var(--ht-cream);
  color: var(--ht-charcoal);
  padding: .6rem .65rem;
  font-family: var(--ht-sans);
  font-size: .92rem;
}
.ht-cutting-row em { position: absolute; right: .55rem; bottom: .65rem; font-style: normal; color: var(--ht-mid); font-size: .78rem; pointer-events: none; }
.ht-cutting-row__remove {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ht-stone);
  background: var(--ht-cream);
  color: var(--ht-charcoal);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.ht-cutting-row__remove:hover { border-color: #b85c28; color: #b85c28; }

.ht-inline-calc { margin-top: 1.25rem; border: 1px solid var(--ht-stone); background: var(--ht-warm); padding: 1rem; }
.ht-inline-calc__head span { font-size: .78rem; font-weight: 800; color: var(--ht-charcoal); letter-spacing: .02em; }
.ht-inline-calc__head p { margin-top: .45rem; color: var(--ht-mid); font-size: .82rem; line-height: 1.6; }
.ht-inline-calc__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .7rem; margin-top: .9rem; }
.ht-inline-calc__grid label { display: grid; gap: .35rem; position: relative; }
.ht-inline-calc__grid label span { font-size: .72rem; font-weight: 700; color: var(--ht-charcoal); }
.ht-inline-calc__grid input {
  width: 100%;
  border: 1px solid var(--ht-stone);
  background: var(--ht-cream);
  color: var(--ht-charcoal);
  padding: .6rem .65rem;
  font-family: var(--ht-sans);
  font-size: .92rem;
}
.ht-inline-calc__grid em { position: absolute; right: .55rem; bottom: .65rem; font-style: normal; color: var(--ht-mid); font-size: .78rem; pointer-events: none; }
.ht-inline-calc__result { margin-top: .85rem; padding: .75rem .85rem; background: var(--ht-cream); border: 1px solid var(--ht-stone); color: var(--ht-ink); font-size: .88rem; }
.ht-inline-calc__use {
  margin-top: .75rem;
  border: 1px solid var(--ht-stone);
  background: var(--ht-cream);
  color: var(--ht-charcoal);
  padding: .6rem .85rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.ht-inline-calc__use:hover { border-color: var(--ht-timber); color: var(--ht-timber); }

.ht-quote-response { margin-top: .85rem; font-size: .9rem; color: var(--ht-ink); }

/* Generic cards */
.tl-home-section,
.tl-species-library,
.tl-species-breakdown,
.tl-species-topband,
.tl-guides-featured,
.tl-guides-tracks,
.tl-guides-library,
.tl-guide-reading,
.tl-guide-ending,
.tl-glossary-library,
.tl-glossary-entry,
.tl-calculator-shell,
.tl-calculators-library {
  padding: 4rem 0;
}

.tl-home-section { background: var(--ht-warm); }
.tl-home-section--panel { background: var(--ht-cream); }
.tl-home-section__head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 2rem; }

.ht-accent-bar { width: 2rem; height: 2px; background: var(--ht-timber); margin-bottom: 1rem; }

.ht-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1.2rem;
}

.ht-audience-card,
.ht-category-card {
  background: var(--ht-cream);
  border: 1px solid var(--ht-stone);
  padding: 1.75rem;
}

.ht-audience-card h3,
.ht-category-card h3 { font-size: 1.2rem; margin-bottom: .55rem; }
.ht-audience-card p,
.ht-category-card p { color: var(--ht-ink); margin-bottom: .7rem; }

.ht-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 1.2rem;
}

.tl-home-feature-grid,
.tl-species-grid,
.tl-calculators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.25rem;
}
.tl-calculators-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.tl-calculators-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-top: 1.8rem; }
.tl-calculators-section-head { max-width: 76ch; margin-bottom: 2.4rem; }
.tl-calculators-section-head p { margin-top: .75rem; }

.tl-site-main--species .tl-species-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.tl-home-feature-card,
.tl-home-guide-card,
.tl-calculator-card,
.tl-calculators-feature-card,
.tl-guides-feature-card,
.tl-guides-popular,
.tl-guides-track-card,
.tl-guides-panel,
.tl-guides-sidepanel,
.tl-guide-ending-card,
.tl-guide-ending-list,
.tl-species-card,
.tl-species-panel,
.tl-species-stat,
.tl-species-quicknotes,
.tl-glossary-card,
.tl-glossary-panel,
.tl-glossary-article,
.tl-calculator-panel {
  border: 1px solid var(--ht-stone);
}

.tl-home-feature-card,
.tl-home-guide-card,
.tl-calculator-card,
.tl-calculators-feature-card { background: var(--ht-cream); padding: 1.5rem; }

.tl-calculator-card { display: flex; flex-direction: column; min-height: 100%; color: inherit; text-decoration: none; border: 1px solid var(--ht-stone); transition: transform .22s ease, box-shadow .22s ease; }
.tl-calculator-card__cta { margin-top: auto; }
.tl-calculator-card--featured {
  position: relative;
  grid-column: span 2;
  border-color: rgba(196,112,58,.55);
  box-shadow: 0 18px 60px rgba(18,15,12,.12);
  transition: transform .22s ease, box-shadow .22s ease;
}
.tl-calculator-card--featured::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ht-timber), var(--ht-timber-light));
}
.tl-calculator-card--featured .tl-calculator-card__kicker { color: var(--ht-timber); }
.tl-calculator-card--featured .tl-calculator-card__title { font-size: clamp(1.35rem, 2.8vw, 1.75rem); }
.tl-calculator-card--featured .tl-calculator-card__cta { color: var(--ht-timber); }

.tl-calculators-hero__actions,
.tl-calculator-hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  align-items: stretch;
  max-width: 720px;
}
.tl-calculators-hero__actions > :last-child:nth-child(odd),
.tl-calculator-hero__actions > :last-child:nth-child(odd) { grid-column: 1 / -1; }
.tl-calculators-hero__actions .tl-calculator-button,
.tl-calculator-hero__actions .tl-calculator-button { width: 100%; justify-content: center; }

.tl-calculators-feature-card { position: relative; overflow: hidden; }
.tl-calculators-feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ht-timber), var(--ht-timber-light));
  opacity: .85;
}
.tl-calculators-feature-card h3 { margin-top: .55rem; font-size: 1.25rem; }
.tl-calculators-feature-card p { margin-top: .55rem; color: var(--ht-ink); line-height: 1.75; }
.tl-calculators-feature-card__cta { margin-top: 1.1rem; }

.tl-site-main--calculators .tl-calculators-library { background: var(--ht-cream); border-top: 1px solid var(--ht-stone); }

.tl-home-feature-card:hover,
.tl-home-guide-card:hover,
.tl-calculator-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(184,92,40,.13); }

.tl-home-kicker,
.tl-guides-section-kicker,
.tl-calculators-section-kicker,
.tl-guide-ending__kicker,
.tl-guides-panel__kicker {
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ht-sage);
  font-weight: 600;
}

.tl-home-h2,
.tl-guides-section-head h2,
.tl-calculators-section-head h2,
.tl-guide-ending__title { font-size: clamp(1.4rem, 3vw, 2.1rem); margin-top: .5rem; }

.tl-home-feature-card__badge,
.tl-calculators-feature-card__badge,
.tl-calculator-card__kicker {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ht-sage);
  font-weight: 600;
}

.tl-home-feature-card h3,
.tl-home-guide-card__title,
.tl-calculator-card__title { margin-top: .45rem; font-size: 1.2rem; }
.tl-home-feature-card__cta,
.tl-home-guide-card__cta,
.tl-calculator-card__cta,
.tl-calculators-feature-card__cta { margin-top: 1rem; display: inline-flex; gap: .35rem; color: var(--ht-timber); font-size: .8rem; font-weight: 600; }

.tl-select { position: relative; }
.tl-select[data-init="true"] .tl-select__native,
[data-tl-select][data-init="true"] select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.tl-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.tl-select__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  border: 1px solid var(--ht-stone);
  background: var(--ht-cream);
  color: var(--ht-charcoal);
  padding: .58rem .75rem;
  font-family: var(--ht-sans);
  text-align: left;
  cursor: pointer;
}
.tl-select__chevron { flex: 0 0 auto; padding-left: .25rem; }
.tl-select__button:focus { outline: none; border-color: var(--ht-timber); }
.tl-select__panel {
  display: none;
  position: absolute;
  z-index: 60;
  left: 0;
  right: 0;
  top: calc(100% + .4rem);
  border: 1px solid var(--ht-stone);
  background: #fff;
  max-height: 260px;
  overflow: auto;
  box-shadow: 0 18px 50px rgba(18,15,12,.14);
}
.tl-select[data-open="true"] .tl-select__panel { display: grid; }
.tl-select__option {
  width: 100%;
  padding: .65rem .75rem;
  border: 0;
  border-top: 1px solid rgba(18,15,12,.08);
  background: #fff;
  color: var(--ht-charcoal);
  text-align: left;
  cursor: pointer;
}
.tl-select__option:first-child { border-top: 0; }
.tl-select__option:hover,
.tl-select__option:focus { outline: none; background: rgba(196,112,58,.10); }
.tl-select__option[aria-selected="true"] { background: rgba(196,112,58,.16); }

.tl-timber-chooser__grid { display: grid; gap: .9rem; }
.tl-tc-result__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.tl-tc-result__title { font-size: 1.1rem; font-weight: 700; color: var(--ht-charcoal); }
.tl-tc-result__score { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ht-mid); }
.tl-tc-result__meta { margin-top: .25rem; font-size: .82rem; color: var(--ht-mid); }
.tl-tc-result__list { margin-top: .85rem; padding-left: 1.1rem; display: grid; gap: .45rem; color: var(--ht-ink); }
.tl-tc-result__watch { margin-top: .85rem; font-size: .9rem; color: var(--ht-ink); }
.tl-timber-chooser__notes { margin-top: 1rem; padding: 1rem; border: 1px dashed var(--ht-stone); color: var(--ht-ink); }
.tl-timber-chooser__notes ul { margin: 0; padding-left: 1.1rem; display: grid; gap: .4rem; }

/* Dark knowledge blocks */
.tl-species-library,
.tl-species-breakdown,
.tl-species-topband,
.tl-guides-featured,
.tl-guides-tracks,
.tl-guides-library,
.tl-guide-reading,
.tl-guide-ending,
.tl-glossary-library,
.tl-glossary-entry,
.tl-calculator-shell,
.tl-calculators-library {
  background: var(--ht-dark);
  color: #fff;
}
.tl-species-library p,
.tl-species-breakdown p,
.tl-guides-featured p,
.tl-guides-tracks p,
.tl-guides-library p,
.tl-guide-reading p,
.tl-guide-ending p,
.tl-glossary-library p,
.tl-glossary-entry p,
.tl-calculator-shell p,
.tl-calculators-library p { color: rgba(255,255,255,.66); }

.tl-species-card,
.tl-guides-feature-card,
.tl-guides-popular,
.tl-guides-track-card,
.tl-guides-panel,
.tl-guides-sidepanel,
.tl-guide-ending-card,
.tl-guide-ending-list,
.tl-glossary-card,
.tl-glossary-panel,
.tl-glossary-article {
  background: var(--ht-dark-mid);
  border-color: rgba(255,255,255,.11);
}

/* Sidebar panels need padding; archive cards/guides panels keep their own padding */
.tl-glossary-panel {
  padding: 1.1rem 1.15rem;
  margin-bottom: 1rem;
}

.tl-guides-pill,
.tl-species-chip,
.tl-glossary-pill {
  display: inline-flex;
  align-items: center;
  padding: .3rem .7rem;
  background: rgba(196,112,58,.18);
  border: 1px solid rgba(196,112,58,.35);
  color: var(--ht-timber-light);
  font-size: .7rem;
}

/* Guides archive layout and rhythm */
.tl-guides-hero__content { max-width: 70ch; }

.tl-guides-filters { margin-top: 1.6rem; gap: .55rem; flex-wrap: nowrap; overflow-x: auto; padding-bottom: .35rem; }
.tl-guides-filter { flex: 0 0 auto; padding: .4rem .75rem; border-radius: 999px; background: rgba(255,255,255,.06); }
.tl-guides-filter:hover { border-color: rgba(196,112,58,.5); color: #fff; }
.tl-guides-filter--active { background: rgba(196,112,58,.18); }

.tl-guides-featured__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.2rem; align-items: start; }
.tl-guides-feature-card { padding: 2rem; }
.tl-guides-feature-card__badge { font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ht-timber-light); }
.tl-guides-feature-card__title { margin-top: .8rem; font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.15; }
.tl-guides-feature-card__title a { color: #fff; }
.tl-guides-feature-card__summary { margin-top: .75rem; max-width: 65ch; color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.75; }
.tl-guides-feature-card__meta { margin-top: 1.15rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.tl-guides-feature-card__actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .7rem; }

.tl-guides-popular { padding: 0; overflow: hidden; }
.tl-guides-popular__heading { padding: 1.1rem 1.2rem; font-size: .63rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); border-bottom: 1px solid rgba(255,255,255,.09); }
.tl-guides-popular__list { display: grid; }
.tl-guides-popular__title { display: block; color: #fff; font-weight: 600; }
.tl-guides-popular__meta { display: block; margin-top: .25rem; font-size: .75rem; color: rgba(255,255,255,.62); }
.tl-guides-popular__time { margin-top: .45rem; display: inline-flex; font-size: .7rem; color: rgba(255,255,255,.55); }

.tl-guides-section-head { max-width: 76ch; margin-bottom: 2.6rem; }
.tl-guides-section-head p { margin-top: .75rem; }
.tl-guides-tracks .tl-guides-section-kicker { color: var(--ht-timber-light); }

.tl-guides-library__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 1.2rem; align-items: start; }
.tl-guides-panel { padding: 1.6rem; }
.tl-guides-panel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.tl-guides-panel__head h2 { margin-top: .55rem; }
.tl-guides-panel__head p { margin-top: .7rem; }
.tl-guides-panel__link { display: inline-flex; align-items: center; gap: .35rem; color: var(--ht-timber-light); font-weight: 600; font-size: .85rem; }
.tl-guides-panel__link:hover { color: #fff; }
.tl-guides-library .tl-guides-panel__kicker { color: var(--ht-timber-light); }
.tl-guides-card-stack { display: grid; gap: .85rem; }

.tl-guides-library-search {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.tl-guides-library-search input {
  border: 0;
  background: transparent;
  color: #fff;
  padding: .65rem .8rem;
  min-width: 240px;
  outline: none;
  font-family: var(--ht-sans);
}
.tl-guides-library-search input::placeholder { color: rgba(255,255,255,.5); }
.tl-guides-library-search button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.7);
  padding: .6rem .7rem;
}
.tl-guides-library-search:focus-within { border-color: rgba(196,112,58,.55); }
.tl-guides-library-search button:hover { color: var(--ht-timber-light); }

.tl-guides-library-note { margin: 0 0 1.15rem; color: rgba(255,255,255,.66); font-size: .86rem; }
.tl-guides-library-note a { margin-left: .55rem; color: var(--ht-timber-light); font-weight: 600; display: inline-flex; gap: .35rem; align-items: center; }
.tl-guides-library-note a:hover { color: #fff; }

.tl-guides-library-pagination { margin-top: 1.25rem; display: flex; justify-content: center; }
.tl-guides-library-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 .65rem;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  margin: 0 .2rem;
}
.tl-guides-library-pagination .page-numbers.current { background: rgba(196,112,58,.18); border-color: rgba(196,112,58,.5); color: #fff; }
.tl-guides-library-pagination .page-numbers:hover { border-color: rgba(196,112,58,.55); color: #fff; }

.tl-guides-track-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 1rem; }
.tl-guides-track-grid--additional { grid-template-columns: 1fr; }
.tl-guides-track-card { padding: 1.3rem; display: flex; flex-direction: column; gap: .55rem; }
.tl-guides-track-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: .85rem; }
.tl-guides-track-card__kicker { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.tl-guides-track-card__number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--ht-timber-light);
  font-size: 1.05rem;
  font-family: var(--ht-serif);
}
.tl-guides-track-card__footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.tl-guides-track-card__title { font-size: 1.02rem; font-weight: 650; line-height: 1.25; color: #fff; }
.tl-guides-track-card__desc { color: rgba(255,255,255,.68); font-size: .86rem; line-height: 1.6; }
.tl-guides-track-card__count { color: rgba(255,255,255,.62); font-size: .86rem; }
.tl-guides-track-card__cta { display: inline-flex; align-items: center; gap: .35rem; color: var(--ht-timber-light); font-weight: 600; font-size: .82rem; }
.tl-guides-track-card--core { border-top: 3px solid rgba(196,112,58,.8); }
.tl-guides-track-card--additional { border-left: 3px solid rgba(196,112,58,.45); }

.tl-guides-table { border: 1px solid rgba(255,255,255,.11); }
.tl-guides-table__head,
.tl-guides-table__row { display: grid; grid-template-columns: 1.9fr 1fr .85fr; gap: .9rem; padding: .95rem 1rem; }
.tl-guides-table__head { background: var(--ht-dark-warm); color: rgba(255,255,255,.58); font-size: .63rem; letter-spacing: .14em; text-transform: uppercase; }
.tl-guides-table__row { border-top: 1px solid rgba(255,255,255,.09); background: var(--ht-dark-mid); }
.tl-guides-table__row:hover { background: #332a21; }
.tl-guides-table__title { display: flex; flex-direction: column; gap: .25rem; }
.tl-guides-table__title-main { color: #fff; font-weight: 600; }
.tl-guides-table__title-sub { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; color: rgba(255,255,255,.72); }
.tl-guides-table__cell { color: rgba(255,255,255,.72); font-size: .86rem; }
.tl-guides-panel--track .tl-guides-table__head,
.tl-guides-panel--track .tl-guides-table__row { grid-template-columns: 2fr .65fr .85fr; }

/* Visual separator between alpha nav and first letter group */
.tl-glossary-groups {
  border-top: 1px solid rgba(196,112,58,.18);
  padding-top: 2.5rem;
}

.tl-glossary-alpha { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.2rem 0 1.5rem; }
/* Alpha pills use a more neutral tone to contrast with the amber letter headings below */
.tl-glossary-alpha__item { color: var(--ht-mid); border: 1px solid var(--ht-stone); padding: .25rem .5rem; font-size: .72rem; }
.tl-glossary-alpha__item:hover { color: var(--ht-charcoal); border-color: var(--ht-timber); }
.tl-glossary-group__head { display: flex; justify-content: space-between; border-bottom: 2px solid var(--ht-timber); padding-bottom: .35rem; margin-bottom: .8rem; }
.tl-glossary-letter { color: var(--ht-timber-light); font-size: 1rem; letter-spacing: .14em; text-transform: uppercase; }

/* Space below each letter group so it clears before the next letter heading */
.tl-glossary-group { scroll-margin-top: 90px; margin-bottom: 2.5rem; }

/* Calculator inputs */
.tl-calculator-panel {
  background: var(--ht-cream);
  border: 1px solid var(--ht-stone);
  color: var(--ht-charcoal);
  padding: 1.65rem;
}
.tl-calculator-panel p { color: var(--ht-ink); }
.tl-calculator-label,
.tl-calculator-panel__kicker {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ht-mid);
}

.tl-calculator-input,
.tl-calculator-select,
.tl-calculator-form input,
.tl-calculator-form select,
.tl-calculator-form textarea {
  width: 100%;
  border: 1px solid var(--ht-stone);
  background: var(--ht-cream);
  color: var(--ht-charcoal);
  padding: .58rem .75rem;
  font-family: var(--ht-sans);
}
.tl-calculator-select,
.tl-calculator-form select { padding-right: 2.25rem; }
.tl-calculator-select:not([multiple]):not([size]),
.tl-calculator-form select:not([multiple]):not([size]) {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23221b16' d='M5.25 7.75a1 1 0 0 1 1.5 0L10 11l3.25-3.25a1 1 0 1 1 1.5 1.5l-4 4a1 1 0 0 1-1.5 0l-4-4a1 1 0 0 1 0-1.5Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  background-size: 1rem;
  padding-right: 2.6rem;
}
.tl-calculator-input:focus,
.tl-calculator-select:focus,
.tl-calculator-form input:focus,
.tl-calculator-form select:focus,
.tl-calculator-form textarea:focus { outline: none; border-color: var(--ht-timber); }

.tl-calculator-form input[type="number"]::-webkit-outer-spin-button,
.tl-calculator-form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tl-calculator-form input[type="number"] { -moz-appearance: textfield; }

.tl-calculator-result { background: var(--ht-dark); color: #fff; padding: 1rem 1.1rem; }
.tl-calculator-result__value { color: var(--ht-timber-light); }

.tl-calculator-shell__grid,
.tl-guide-reading__grid,
.tl-glossary-entry__grid,
.tl-home-split { display: grid; grid-template-columns: 2fr 1fr; gap: 1.2rem; align-items: start; }

/* Knowledge hero and metadata rhythm */
.tl-species-kicker,
.tl-guides-kicker,
.tl-glossary-kicker,
.tl-guide-kicker,
.tl-calculator-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.62);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.tl-species-hero__inner,
.tl-guides-hero__inner,
.tl-glossary-hero__inner,
.tl-calculators-hero__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.4rem;
  position: relative;
  z-index: 2;
}

.tl-guides-hero__meta,
.tl-glossary-hero__meta,
.tl-calculators-hero__meta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.tl-guides-hero__count,
.tl-glossary-count,
.tl-calculators-count {
  background: rgba(196,112,58,.18);
  border: 1px solid rgba(196,112,58,.35);
  color: var(--ht-timber-light);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem .8rem;
}

.tl-guides-filters,
.tl-glossary-browse,
.tl-chip-set {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1.1rem;
}

.tl-guides-filter,
.tl-glossary-pill,
.tl-chip {
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.72);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .55rem;
}

.tl-guides-filter--active,
.tl-chip--accent {
  border-color: rgba(196,112,58,.5);
  color: var(--ht-timber-light);
}

/* Species cards and panels */
.tl-species-card { position: relative; overflow: hidden; display: flex; flex-direction: column; }
.tl-species-card__rail { height: 8px; background: linear-gradient(90deg, var(--ht-timber), var(--ht-timber-light)); margin: -1rem -1rem .9rem; }
.tl-species-card__layout { display: grid; grid-template-columns: 1.3fr .9fr; gap: .8rem; margin-top: .8rem; flex: 1; }
.tl-species-card__title a { color: #fff; font-size: 1.25rem; }
.tl-species-card__botanical { font-style: italic; color: rgba(255,255,255,.6); font-size: .78rem; margin-top: .15rem; }
.tl-species-card__summary { margin-top: .6rem; color: rgba(255,255,255,.7); font-size: .9rem; }
.tl-species-card__cta { margin-top: 1rem; display: inline-flex; gap: .35rem; color: var(--ht-timber-light); font-size: .78rem; white-space: nowrap; width: fit-content; }
.tl-species-card__cta--bottom { margin-top: auto; padding-top: 1.25rem; }
.tl-species-card__stats { display: grid; grid-template-columns: 1fr; gap: .5rem; }
.tl-species-card__stat { background: var(--ht-dark-warm); border: 1px solid rgba(255,255,255,.08); padding: .55rem .6rem; }
.tl-species-card__stat-label { display: block; font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.tl-species-card__stat-value { display: block; margin-top: .2rem; color: #fff; font-weight: 600; font-size: .84rem; }
.tl-species-card__stat-note { display: block; margin-top: .25rem; color: rgba(255,255,255,.55); font-size: .72rem; }

.tl-species-panel,
.tl-species-quicknotes,
.tl-species-hero-card { padding: 1.1rem; }
.tl-species-panel-heading { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ht-timber-light); margin-bottom: .8rem; }
.tl-species-breakdown__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; }
.tl-species-breakdown__header h2 { margin-top: .45rem; font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
.tl-species-breakdown__header p { margin-top: .5rem; max-width: 70ch; }

.tl-species-library--light {
  background: var(--ht-warm);
  color: var(--ht-charcoal);
  padding: 3rem 0 5rem;
}
.tl-species-library--light p { color: var(--ht-ink); }
.tl-species-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.tl-species-search {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--ht-stone);
  background: var(--ht-cream);
  min-width: min(420px, 100%);
}
.tl-species-search__input {
  border: 0;
  background: transparent;
  padding: .75rem .95rem;
  font-size: .92rem;
  outline: none;
  color: var(--ht-charcoal);
  width: 100%;
}
.tl-species-search__submit {
  border: 0;
  background: transparent;
  padding: .65rem .75rem;
  color: var(--ht-charcoal);
}
.tl-species-search:focus-within { border-color: var(--ht-timber); }
.tl-species-search__submit:hover { color: var(--ht-timber); }

.tl-species-library--light .tl-species-card {
  background: var(--ht-cream);
  border: 1px solid var(--ht-stone);
  padding: 1.5rem;
  transition: transform .22s ease, box-shadow .22s ease;
}
.tl-species-library--light .tl-species-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(184,92,40,.13); }
.tl-species-library--light .tl-species-card__rail { margin: -1.5rem -1.5rem 1rem; }
.tl-species-library--light .tl-species-card__topline { display: flex; justify-content: space-between; gap: .9rem; align-items: flex-start; }
.tl-species-library--light .tl-chip-set { margin-top: 0; max-width: 75%; }
.tl-species-library--light .tl-species-card__eyebrow { white-space: nowrap; }
.tl-species-library--light .tl-species-card__layout { grid-template-columns: 1fr; gap: 1rem; margin-top: 1rem; }
.tl-species-library--light .tl-species-card__stats { grid-template-columns: 1fr 1fr; gap: .75rem; }
.tl-species-library--light .tl-species-card__summary { margin-top: .75rem; max-width: 55ch; }
.tl-species-library--light .tl-species-card__cta { margin-top: 0; }
.tl-species-library--light .tl-species-card__cta--bottom { margin-top: auto; padding-top: 1.5rem; color: var(--ht-timber); }
.tl-species-library--light .tl-chip {
  border: 1px solid var(--ht-stone);
  color: var(--ht-mid);
  background: var(--ht-warm);
}

.ht-breadcrumb { background: var(--ht-cream); border-bottom: 1px solid var(--ht-stone); padding: .75rem 0; }
.ht-breadcrumb__inner { display: flex; gap: .5rem; align-items: center; font-size: .75rem; color: var(--ht-mid); }
.ht-breadcrumb__link { color: var(--ht-timber); font-weight: 500; }
.ht-breadcrumb__sep { color: var(--ht-stone); }
.ht-breadcrumb__current { color: var(--ht-mid); }

.ht-species-hero-head { display: flex; align-items: flex-end; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 2; }
.tl-species-botanical { font-size: .9rem; color: rgba(255,255,255,.55); font-style: italic; margin-top: .3rem; }

.ht-species-single__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.ht-species-single__summary { margin-top: 1rem; font-size: .97rem; color: var(--ht-ink); line-height: 1.85; margin-bottom: 2rem; max-width: 75ch; }
.ht-species-single__section { margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--ht-stone); }
.ht-species-single__section:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.ht-species-single__section-title { font-family: var(--ht-sans); font-size: .85rem; font-weight: 700; color: var(--ht-charcoal); letter-spacing: .04em; margin: 0 0 .5rem; }
.ht-prose { font-size: .9rem; color: var(--ht-ink); line-height: 1.75; }
.ht-prose p { color: var(--ht-ink); }

.ht-panel { background: var(--ht-cream); border: 1px solid var(--ht-stone); padding: 1.75rem; }
.ht-panel + .ht-panel { margin-top: 1rem; }
.ht-panel__kicker { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ht-mid); font-weight: 600; margin-bottom: 1.2rem; }
.ht-panel__title { font-size: .82rem; font-weight: 700; color: var(--ht-charcoal); margin-bottom: .4rem; font-family: var(--ht-sans); }
.ht-panel__text { font-size: .82rem; color: var(--ht-ink); line-height: 1.6; margin-bottom: 1rem; }
.ht-panel__btn { width: 100%; padding: .65rem; font-size: .68rem; }
.ht-panel__link { display: inline-flex; color: var(--ht-timber); font-weight: 600; font-size: .85rem; }

.ht-panel--highlight.ht-panel--timber { background: var(--ht-timber-pale); border-color: var(--ht-timber-light); }
.ht-panel--highlight.ht-panel--sage { background: var(--ht-sage-pale); border-color: var(--ht-sage-mid); }

.ht-panel--image { padding: 0; overflow: hidden; }
.ht-panel__image { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }

.ht-table { width: 100%; border-collapse: collapse; }
.ht-table td { padding: .65rem 0; border-bottom: 1px solid var(--ht-stone); font-size: .87rem; }
.ht-table tr:last-child td { border-bottom: 0; }
.ht-table__key { font-weight: 600; font-size: .8rem; color: var(--ht-mid); width: 45%; }
.ht-table__val { font-weight: 600; color: var(--ht-charcoal); }

/* Generic page template */
.tl-page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(160deg, #1C1A16 0%, #362E22 55%, #4A3C2A 100%);
  position: relative;
  overflow: hidden;
}
.tl-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"),
    repeating-linear-gradient(4deg, transparent, transparent 22px, rgba(196,136,80,.055) 22px, rgba(196,136,80,.055) 23px);
  background-size: 180px 180px, auto;
}
.tl-page-hero__inner {
  position: relative;
  z-index: 2;
}
.tl-page-hero__title {
  font-family: var(--ht-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff !important;
  margin: 0;
}
.tl-page-hero__subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,.64);
  line-height: 1.7;
  max-width: 60ch;
}

.tl-section--page {
  padding: 4rem 0 5rem;
  background: var(--ht-warm);
}
.tl-page-prose {
  max-width: 72ch;
  color: var(--ht-ink);
  font-size: 1rem;
  line-height: 1.85;
}
.tl-page-prose p { margin-bottom: 1.4rem; color: var(--ht-ink); }
.tl-page-prose h2 {
  font-family: var(--ht-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--ht-charcoal);
  margin: 2.5rem 0 .75rem;
  line-height: 1.2;
}
.tl-page-prose h3 {
  font-family: var(--ht-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ht-charcoal);
  margin: 2rem 0 .5rem;
  letter-spacing: .01em;
}
.tl-page-prose h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ht-charcoal);
  margin: 1.5rem 0 .4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tl-page-prose ul,
.tl-page-prose ol {
  margin: 0 0 1.4rem 1.5rem;
  padding: 0;
}
.tl-page-prose li { margin-bottom: .5rem; line-height: 1.75; }
.tl-page-prose ul li::marker { color: var(--ht-timber); }
.tl-page-prose a { color: var(--ht-timber); text-decoration: underline; }
.tl-page-prose .ht-btn--solid,
.tl-page-prose .ht-btn--outline {
  text-decoration: none !important;
}
.tl-page-prose .ht-btn--solid { color: #fff !important; }
.tl-page-prose .ht-btn--outline { color: var(--ht-charcoal) !important; }
.tl-page-prose .ht-btn--outline:hover { background: var(--ht-charcoal) !important; color: #fff !important; }
.tl-page-prose a:hover { color: var(--ht-timber-mid); }
.tl-page-prose blockquote {
  border-left: 3px solid var(--ht-timber);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--ht-mid);
}
.tl-page-prose strong { font-weight: 700; color: var(--ht-charcoal); }
.tl-page-prose hr {
  border: 0;
  border-top: 1px solid var(--ht-stone);
  margin: 2.5rem 0;
}

.tl-knowledge { background: var(--ht-cream); padding: 4rem 0; }
.tl-knowledge,
.tl-knowledge p { color: var(--ht-ink); }
.tl-knowledge h1,
.tl-knowledge h2,
.tl-knowledge h3,
.tl-knowledge h4,
.tl-knowledge h5,
.tl-knowledge h6 { color: var(--ht-charcoal); }
.tl-knowledge__head { text-align: center; margin-bottom: 2.5rem; }
.tl-knowledge__kicker { font-size: .63rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ht-sage); font-weight: 600; }
.tl-knowledge__title { margin-top: .6rem; font-size: clamp(1.4rem, 3vw, 2.1rem); }
.tl-knowledge__intro { margin-top: .6rem; max-width: 70ch; margin-inline: auto; }
.tl-knowledge__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--ht-stone); }
.tl-knowledge-card { background: var(--ht-warm); padding: 1.5rem 1.5rem 1.75rem; }
.tl-knowledge-card__title { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ht-mid); font-weight: 700; margin-bottom: 1rem; font-family: var(--ht-sans); }
.tl-knowledge-card__list { display: grid; gap: .55rem; }
.tl-knowledge-card__item { display: inline-flex; align-items: center; justify-content: space-between; gap: .6rem; color: var(--ht-timber); font-weight: 600; font-size: .9rem; }
.tl-knowledge-card__item:hover { color: var(--ht-timber-mid); }
.tl-species-library--light .tl-chip--accent {
  border-color: var(--ht-timber-light);
  color: var(--ht-timber);
  background: var(--ht-timber-pale);
}
.tl-species-library--light .tl-species-card__eyebrow { color: var(--ht-mid); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.tl-species-library--light .tl-species-card__title a { color: var(--ht-charcoal); }
.tl-species-library--light .tl-species-card__botanical { color: var(--ht-mid); }
.tl-species-library--light .tl-species-card__summary { color: var(--ht-ink); }
.tl-species-library--light .tl-species-card__cta { color: var(--ht-timber); font-weight: 600; }
.tl-species-library--light .tl-species-card__stat {
  background: var(--ht-biscuit);
  border: 0;
}
.tl-species-library--light .tl-species-card__stat-label { color: var(--ht-mid); }
.tl-species-library--light .tl-species-card__stat-value { color: var(--ht-charcoal); }
.tl-species-library--light .tl-species-card__stat-note { color: var(--ht-mid); }

/* Guide cards, rows and side panels */
.tl-guide-card { background: var(--ht-dark-mid); border: 1px solid rgba(255,255,255,.12); padding: 1rem; }
.tl-guide-card__meta { display: flex; justify-content: space-between; align-items: center; gap: .6rem; }
.tl-guide-card__flag { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ht-timber-light); }
.tl-guide-card__time { font-size: .7rem; color: rgba(255,255,255,.58); }
.tl-guide-card__title a { color: #fff; font-size: 1.08rem; }
.tl-guide-card__summary,
.tl-guide-card__takeaway { color: rgba(255,255,255,.68); font-size: .86rem; margin-top: .55rem; }
.tl-guide-card__footer { margin-top: .9rem; display: flex; justify-content: space-between; align-items: center; gap: .6rem; }
.tl-guide-card__pills { display: flex; flex-wrap: wrap; gap: .35rem; }
.tl-guide-card__cta { color: var(--ht-timber-light); font-size: .76rem; display: inline-flex; gap: .3rem; }

.tl-guide-hero .tl-container { position: relative; z-index: 2; }
.tl-guide-hero .tl-guide-kicker { margin-bottom: 1rem; }
.tl-guide-hero .tl-guide-meta { margin-top: 1.35rem; }
.tl-guide-hero .tl-guide-actions { margin-top: 1.6rem; }
.tl-guide-hero::after {
  display: block;
  inset: 0;
  height: auto;
  background: radial-gradient(940px 560px at 18% 44%, rgba(0,0,0,.52) 0%, rgba(0,0,0,0) 72%);
  pointer-events: none;
  z-index: 1;
}

.tl-guide-reading__grid { gap: 2.2rem; }
.tl-guide-article { min-width: 0; }
.tl-guide-aside { position: sticky; top: 94px; align-self: start; }

.tl-guide-callout {
  border: 1px solid rgba(196,112,58,.32);
  background: rgba(196,112,58,.12);
  padding: 1.05rem 1.1rem;
  margin-bottom: 1.25rem;
}
.tl-guide-callout__kicker { font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ht-timber-light); font-weight: 600; }
.tl-guide-callout__text { margin-top: .6rem; color: rgba(255,255,255,.78); font-size: .95rem; line-height: 1.75; }

.tl-guides-sidepanel { padding: 1.4rem; }
.tl-guides-sidepanel__kicker { font-size: .63rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.62); font-weight: 600; }
.tl-guides-sidepanel__chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .95rem; }
.tl-guides-related { margin-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.09); }
.tl-guides-related__item { padding: .9rem 0; border-top: 1px solid rgba(255,255,255,.09); }
.tl-guides-related__item:first-child { border-top: 0; }
.tl-guides-related__title { display: block; color: #fff; font-weight: 600; }
.tl-guides-related__cta { margin-top: .5rem; display: inline-flex; align-items: center; justify-content: space-between; gap: .6rem; color: rgba(255,255,255,.62); font-size: .82rem; width: 100%; }

.tl-guide-ending__head { max-width: 78ch; margin-bottom: 2.6rem; }
.tl-guide-ending__kicker { color: var(--ht-timber-light); }
.tl-guide-ending__intro { margin-top: .75rem; color: rgba(255,255,255,.66); }
.tl-guide-ending__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.tl-guide-ending-card { padding: 1.6rem; display: flex; flex-direction: column; gap: .55rem; }
.tl-guide-ending-card__kicker { font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.tl-guide-ending-card__title { font-size: 1.15rem; color: #fff; font-weight: 600; line-height: 1.25; }
.tl-guide-ending-card__cta { margin-top: auto; display: inline-flex; align-items: center; gap: .35rem; color: var(--ht-timber-light); font-weight: 600; font-size: .85rem; }
.tl-guide-ending-card:hover .tl-guide-ending-card__cta { color: #fff; }

.tl-guide-ending__lists { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.tl-guide-ending-list { padding: 1.6rem; }
.tl-guide-ending-list__title { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; margin-bottom: 1rem; }
.tl-guide-ending-list__items { display: grid; }
.tl-guide-ending-list__item { padding: .7rem 0; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.82); }
.tl-guide-ending-list__item:first-child { border-top: 0; }
.tl-guide-ending-list__item:hover { color: #fff; }

.tl-guide-ending--curriculum { background: var(--ht-dark-warm); }
.tl-guide-ending--curriculum .tl-guide-ending__grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.tl-guide-ending--sources { padding-top: 5rem; padding-bottom: 5rem; }
.tl-guide-ending--sources .tl-guide-ending__head { margin-bottom: 3.1rem; }

.tl-guide-sources { margin: 1.2rem 0 0; padding: 0; list-style: none; counter-reset: tl-source; display: grid; gap: 1rem; }
.tl-guide-sources__item {
  counter-increment: tl-source;
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: .9rem;
  align-items: start;
  padding: 1.25rem 1.25rem 1.3rem;
  border: 1px solid rgba(255,255,255,.11);
  background: var(--ht-dark-mid);
}
.tl-guide-sources__item::before {
  content: counter(tl-source);
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--ht-timber-light);
  margin-top: .05rem;
}
.tl-guide-sources__title,
.tl-guide-sources__meta,
.tl-guide-sources__note { grid-column: 2; }
.tl-guide-sources__title { color: #fff; font-weight: 600; }
.tl-guide-sources__title a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); text-underline-offset: 2px; }
.tl-guide-sources__title a:hover { color: var(--ht-timber-light); text-decoration-color: rgba(196,112,58,.55); }
.tl-guide-sources__meta { margin-top: .35rem; color: rgba(255,255,255,.55); font-size: .82rem; }
.tl-guide-sources__note { margin-top: .5rem; color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.7; }

.tl-guides-popular__item,
.tl-guides-related__item,
.tl-related-link,
.tl-glossary-related__item,
.tl-guide-ending-list__item {
  display: block;
  padding: .75rem .8rem;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.82);
}
.tl-guides-popular__item:hover,
.tl-guides-related__item:hover,
.tl-related-link:hover,
.tl-glossary-related__item:hover,
.tl-guide-ending-list__item:hover {
  background: rgba(255,255,255,.04);
  color: #fff;
}

.tl-guide-title { margin-top: .3rem; }
.tl-guide-meta { margin-top: .9rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.tl-guide-actions { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.tl-guides-button,
.tl-calculator-button,
.tl-glossary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: .6rem .95rem;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.tl-guides-button--primary,
.tl-calculator-button--primary,
.tl-glossary-button--primary { border-color: var(--ht-timber); background: var(--ht-timber); }
.tl-guides-button--ghost:hover,
.tl-calculator-button--ghost:hover,
.tl-glossary-button--ghost:hover { border-color: var(--ht-timber-light); color: var(--ht-timber-light); }

.tl-guide-prose,
.tl-glossary-prose,
.tl-calculator-prose {
  background: var(--ht-dark-mid);
  border: 1px solid rgba(255,255,255,.11);
  padding: 1.2rem;
}
.tl-guide-prose h2,
.tl-guide-prose h3,
.tl-glossary-prose h2,
.tl-glossary-prose h3,
.tl-calculator-prose h2,
.tl-calculator-prose h3 { color: #fff; margin-top: 1rem; margin-bottom: .45rem; }
.tl-guide-prose p,
.tl-glossary-prose p,
.tl-calculator-prose p { color: rgba(255,255,255,.72); margin-bottom: .8rem; }
.tl-guide-prose blockquote,
.tl-glossary-prose blockquote,
.tl-calculator-prose blockquote {
  margin: 1rem 0;
  border-left: 2px solid var(--ht-timber);
  padding: .8rem 1rem;
  background: rgba(196,112,58,.12);
}

/* Glossary cards and entry */
.tl-glossary-card { padding: .95rem; border: 1px solid rgba(255,255,255,.11); transition: transform .22s ease, box-shadow .22s ease; }
.tl-glossary-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: .85rem; }
.tl-glossary-card__head { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: .6rem; }
.tl-glossary-card__initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  font-size: .68rem;
  font-weight: 700;
  color: var(--ht-charcoal);
  background: var(--ht-timber-pale);
  border: 1px solid var(--ht-timber-light);
}
.tl-glossary-card__title a { color: #fff; font-size: 1rem; }
.tl-glossary-card__meta { color: rgba(255,255,255,.5); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.tl-glossary-card__def { margin-top: .45rem; color: rgba(255,255,255,.7); font-size: .86rem; }
.tl-glossary-card__cta { margin-top: .65rem; color: var(--ht-timber-light); font-size: .76rem; display: inline-flex; gap: .3rem; }
.tl-glossary-chipset { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }
.tl-glossary-chip { border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.72); font-size: .72rem; padding: .25rem .5rem; }

/* Calculator components */
.tl-calculator-tool__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; }
.tl-calculator-panel__lead { display: flex; align-items: flex-start; gap: .8rem; }
.tl-calculator-panel__icon {
  min-width: 2rem;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ht-stone);
  background: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  padding-inline: .6rem;
}
.tl-calculator-panel__title { margin-top: .45rem; font-size: clamp(1.15rem, 2.2vw, 1.55rem); color: var(--ht-charcoal); }
.tl-calculator-panel__text { margin-top: .45rem; margin-bottom: .75rem; color: var(--ht-ink); font-size: .9rem; }
.tl-calculator-form { display: grid; gap: .75rem; }
.tl-calculator-field--split { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.tl-calculator-control-row { display: flex; align-items: center; gap: .45rem; }
.tl-calculator-control-row--compact .tl-calculator-input { flex: 1; }
.tl-calculator-suffix { font-size: .76rem; color: var(--ht-mid); text-transform: uppercase; letter-spacing: .08em; }
.tl-calculator-help { margin-top: .35rem; color: var(--ht-mid); font-size: .75rem; }
.tl-calculator-subhead { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ht-mid); font-weight: 700; margin-top: .2rem; }

.tl-calculator-summary { margin-top: .9rem; border: 1px solid var(--ht-stone); }
.tl-calculator-summary__row { display: flex; justify-content: space-between; gap: .7rem; padding: .6rem .75rem; border-top: 1px solid var(--ht-stone); font-size: .83rem; color: var(--ht-charcoal); }
.tl-calculator-summary__row:first-child { border-top: 0; }
.tl-calculator-callout { margin-top: .8rem; padding: .8rem .85rem; background: var(--ht-biscuit); border: 1px solid var(--ht-stone); color: var(--ht-ink); font-size: .82rem; }
.tl-calculator-risk { margin-top: .75rem; padding: .6rem .75rem; font-size: .8rem; border: 1px solid var(--ht-stone); color: var(--ht-charcoal); background: #fff; }
.tl-calculator-risk[data-risk="high"] { border-color: #b85c28; color: #b85c28; }
.tl-calculator-risk[data-risk="medium"] { border-color: #a58a2f; color: #7a6622; }
.tl-calculator-risk[data-risk="low"] { border-color: #617a5c; color: #466240; }

.tl-calculator-panel--results .tl-calculator-panel__title,
.tl-calculator-panel--results .tl-calculator-panel__text { color: var(--ht-charcoal); }
.tl-calculator-result__eyebrow { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.58); }
.tl-calculator-result__value { margin-top: .35rem; font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 700; }
.tl-calculator-result__label { margin-top: .3rem; color: rgba(255,255,255,.68); font-size: .82rem; }

.tl-calculator-shell__main { min-width: 0; }
.tl-calculator-shell__aside { position: sticky; top: 94px; align-self: start; display: grid; gap: 1rem; }
.tl-calculator-panel--aside { padding: 1.4rem; }
.tl-calculator-panel--sticky { position: sticky; top: 94px; align-self: start; }
.tl-calculator-tool__grid--quantity { grid-template-columns: 1.35fr .9fr; }

.tl-calculator-links { display: grid; gap: .55rem; margin-top: .8rem; }
.tl-calculator-link { display: grid; gap: .2rem; padding: .75rem .85rem; border: 1px solid var(--ht-stone); background: #fff; color: var(--ht-charcoal); }
.tl-calculator-link__title { font-weight: 650; }
.tl-calculator-link__meta { font-size: .78rem; color: var(--ht-mid); }
.tl-calculator-link:hover { border-color: var(--ht-timber-light); box-shadow: 0 14px 40px rgba(18,15,12,.06); }

.tl-calculator-panel--explain { margin-top: 1rem; }
.tl-calculator-explain { margin-top: .9rem; display: grid; gap: .75rem; color: var(--ht-ink); }
.tl-calculator-steps,
.tl-calculator-bullets { margin: .2rem 0 0; padding-left: 1.15rem; display: grid; gap: .55rem; color: var(--ht-ink); }
.tl-calculator-steps li,
.tl-calculator-bullets li { line-height: 1.7; }
.tl-calculator-steps--compact,
.tl-calculator-bullets--compact { gap: .45rem; font-size: .86rem; }

.tl-te-table { margin-top: .8rem; border: 1px solid var(--ht-stone); background: #fff; }
.tl-te-row { display: grid; grid-template-columns: 80px 1fr 1fr 1fr 36px; gap: .6rem; padding: .6rem; align-items: center; border-top: 1px solid var(--ht-stone); }
.tl-te-row--head { border-top: 0; background: var(--ht-biscuit); color: var(--ht-mid); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.tl-te-remove { width: 34px; height: 34px; border: 1px solid var(--ht-stone); background: var(--ht-cream); color: var(--ht-charcoal); cursor: pointer; font-size: 1.1rem; line-height: 1; }
.tl-te-remove:hover { border-color: var(--ht-timber); color: var(--ht-timber); }

.tl-bb-results { margin-top: .85rem; }

.tl-faq { margin-top: .9rem; border-top: 1px solid var(--ht-stone); }
.tl-faq__item { border-bottom: 1px solid var(--ht-stone); padding: .85rem 0; }
.tl-faq__summary { cursor: pointer; list-style: none; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; color: var(--ht-charcoal); font-weight: 650; }
.tl-faq__summary::-webkit-details-marker { display: none; }
.tl-faq__icon { color: var(--ht-timber); font-weight: 700; }
.tl-faq__answer { margin-top: .65rem; color: var(--ht-ink); line-height: 1.75; font-size: .92rem; }

/* Search modal detailed */
.tl-search-modal__head { display: flex; justify-content: space-between; align-items: start; gap: .8rem; }
.tl-search-modal__badge { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ht-sage); font-weight: 600; }
.tl-search-modal__title { margin-top: .45rem; font-size: 1.4rem; color: var(--ht-charcoal); }
.tl-search-modal__close { width: 32px; height: 32px; border: 1px solid var(--ht-stone); background: #fff; color: var(--ht-charcoal); }
.tl-search-modal__form { margin-top: 1rem; display: grid; gap: .6rem; }
.tl-search-modal__input { width: 100%; border: 1px solid var(--ht-stone); background: #fff; padding: .72rem .85rem; font-size: .94rem; }
.tl-search-modal__controls { display: flex; gap: .55rem; }
.tl-search-modal__select { border: 1px solid var(--ht-stone); background: #fff; padding: .55rem .65rem; }
.tl-search-modal__submit { border: 1px solid var(--ht-timber); background: var(--ht-timber); color: #fff; padding: .55rem .8rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.tl-search-modal .tl-search-modal__badge { color: var(--ht-sage); }
.tl-search-modal .tl-search-modal__title { color: var(--ht-charcoal); }
.tl-search-modal .tl-search-modal__panel { color: var(--ht-charcoal); }
.tl-search-modal .tl-search-modal__input { color: var(--ht-charcoal); }
.tl-search-modal .tl-search-modal__input::placeholder { color: var(--ht-mid); }
.tl-search-modal .tl-search-modal__select { color: var(--ht-charcoal); }
.tl-search-modal .tl-search-modal__results-note { color: var(--ht-mid); }

.tl-search-modal__results { margin-top: .95rem; border-top: 1px solid var(--ht-stone); padding-top: .75rem; }
.tl-search-modal__results-kicker { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ht-mid); font-weight: 600; }
.tl-search-modal__results-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .45rem; margin-top: .6rem; }
.tl-search-modal__results-link { border: 1px solid var(--ht-stone); background: #fff; padding: .55rem .65rem; color: var(--ht-charcoal); font-size: .86rem; }
.tl-search-modal__results-note { margin-top: .6rem; color: var(--ht-mid); font-size: .78rem; }

.tl-site-main.ht-surface-light .tl-guides-featured,
.tl-site-main.ht-surface-light .tl-guides-tracks,
.tl-site-main.ht-surface-light .tl-guides-library,
.tl-site-main.ht-surface-light .tl-guide-reading,
.tl-site-main.ht-surface-light .tl-guide-ending,
.tl-site-main.ht-surface-light .tl-glossary-library,
.tl-site-main.ht-surface-light .tl-glossary-entry,
.tl-site-main.ht-surface-light .tl-calculator-shell,
.tl-site-main.ht-surface-light .tl-calculators-library { background: var(--ht-warm); color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guides-tracks { background: var(--ht-cream); border-top: 1px solid var(--ht-stone); border-bottom: 1px solid var(--ht-stone); }

.tl-site-main.ht-surface-light .tl-guides-featured p,
.tl-site-main.ht-surface-light .tl-guides-tracks p,
.tl-site-main.ht-surface-light .tl-guides-library p,
.tl-site-main.ht-surface-light .tl-guide-reading p,
.tl-site-main.ht-surface-light .tl-guide-ending p,
.tl-site-main.ht-surface-light .tl-glossary-library p,
.tl-site-main.ht-surface-light .tl-glossary-entry p,
.tl-site-main.ht-surface-light .tl-calculator-shell p,
.tl-site-main.ht-surface-light .tl-calculators-library p { color: var(--ht-ink); }

.tl-site-main.ht-surface-light .tl-guides-feature-card,
.tl-site-main.ht-surface-light .tl-guides-popular,
.tl-site-main.ht-surface-light .tl-guides-track-card,
.tl-site-main.ht-surface-light .tl-guides-panel,
.tl-site-main.ht-surface-light .tl-guides-sidepanel,
.tl-site-main.ht-surface-light .tl-guide-ending-card,
.tl-site-main.ht-surface-light .tl-guide-ending-list,
.tl-site-main.ht-surface-light .tl-glossary-card,
.tl-site-main.ht-surface-light .tl-glossary-panel,
.tl-site-main.ht-surface-light .tl-glossary-article,
.tl-site-main.ht-surface-light .tl-guide-prose,
.tl-site-main.ht-surface-light .tl-glossary-prose,
.tl-site-main.ht-surface-light .tl-calculator-prose,
.tl-site-main.ht-surface-light .tl-guide-sources__item {
  background: var(--ht-cream);
  border-color: var(--ht-stone);
  color: var(--ht-charcoal);
}
.tl-site-main.ht-surface-light .tl-guides-panel { background: #fff; box-shadow: 0 14px 40px rgba(18,15,12,.06); }
.tl-site-main.ht-surface-light .tl-guides-track-card { background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.tl-site-main.ht-surface-light .tl-guides-track-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(18,15,12,.08); }
.tl-site-main.ht-surface-light .tl-guides-track-card__kicker { color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-guides-track-card__number { border-color: var(--ht-stone); background: var(--ht-biscuit); color: var(--ht-timber); }
.tl-site-main.ht-surface-light .tl-guides-track-card__title { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guides-track-card__desc { color: var(--ht-ink); }
.tl-site-main.ht-surface-light .tl-guides-track-card__count { color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-guides-track-card__cta { color: var(--ht-timber); }
.tl-site-main.ht-surface-light .tl-guides-track-card__cta:hover { color: var(--ht-timber-mid); }
.tl-site-main.ht-surface-light .tl-guides-track-card--core { border-top-color: var(--ht-timber); }
.tl-site-main.ht-surface-light .tl-guides-track-card--additional { border-left-color: rgba(184,92,40,.55); }

.tl-site-main.ht-surface-light .tl-guide-card { background: var(--ht-warm); border-color: var(--ht-stone); }
.tl-site-main.ht-surface-light .tl-guide-card__flag { color: var(--ht-sage); }
.tl-site-main.ht-surface-light .tl-guide-card__time { color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-guide-card__title a { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guide-card__summary,
.tl-site-main.ht-surface-light .tl-guide-card__takeaway { color: var(--ht-ink); }
.tl-site-main.ht-surface-light .tl-guide-card__cta { color: var(--ht-timber); }
.tl-site-main.ht-surface-light .tl-guide-card__cta:hover { color: var(--ht-timber-mid); }

.tl-site-main.ht-surface-light .tl-guide-ending--curriculum { background: var(--ht-cream); border-top: 1px solid var(--ht-stone); border-bottom: 1px solid var(--ht-stone); }
.tl-site-main.ht-surface-light .tl-guide-ending--curriculum .tl-guide-ending-card { background: #fff; box-shadow: 0 14px 40px rgba(18,15,12,.06); }
.tl-site-main.ht-surface-light .tl-guide-sources__item { background: #fff; box-shadow: 0 14px 40px rgba(18,15,12,.05); }
.tl-site-main.ht-surface-light .tl-guide-sources__item::before {
  border-color: var(--ht-stone);
  background: var(--ht-biscuit);
  color: var(--ht-timber);
}

body.ht-surface-dark .tl-site-main.ht-surface-light .tl-guide-hero .tl-guide-title { color: #fff; }
body.ht-surface-dark .tl-site-main.ht-surface-light .tl-guide-hero .tl-guide-deck { color: rgba(255,255,255,.7); }

.tl-site-main.ht-surface-light .tl-guide-hero .tl-guides-button--ghost {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.92);
}
.tl-site-main.ht-surface-light .tl-guide-hero .tl-guides-button--ghost:hover { border-color: var(--ht-timber-light); color: var(--ht-timber-light); }

.tl-site-main.ht-surface-light .tl-guide-prose {
  background: #fff;
  padding: 2rem 2.2rem;
}
.tl-site-main.ht-surface-light .tl-guide-prose hr {
  border: 0;
  height: 1px;
  background: var(--ht-stone);
  margin: 2.2rem 0;
}
.tl-site-main.ht-surface-light .tl-guide-prose hr + h2 {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}
.tl-site-main.ht-surface-light .tl-guide-prose h2 {
  margin-top: 2.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ht-stone);
}
.tl-site-main.ht-surface-light .tl-guide-prose h3 { margin-top: 1.6rem; }
.tl-site-main.ht-surface-light .tl-guide-prose p { font-size: .98rem; line-height: 1.85; margin-bottom: 1rem; }
.tl-site-main.ht-surface-light .tl-guide-prose ul,
.tl-site-main.ht-surface-light .tl-guide-prose ol { margin: 1rem 0 1.2rem 1.25rem; color: var(--ht-ink); }
.tl-site-main.ht-surface-light .tl-guide-prose li { margin: .4rem 0; line-height: 1.8; }

.tl-site-main.ht-surface-light .tl-guides-feature-card__badge { color: var(--ht-sage); }
.tl-site-main.ht-surface-light .tl-guides-feature-card__title a { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guides-feature-card__summary { color: var(--ht-ink); }

.tl-site-main.ht-surface-light .tl-guides-popular__heading { color: var(--ht-mid); border-bottom-color: var(--ht-stone); }
.tl-site-main.ht-surface-light .tl-guides-popular__title { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guides-popular__meta { color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-guides-popular__time { color: var(--ht-mid); }

.tl-site-main.ht-surface-light .tl-guides-popular__item,
.tl-site-main.ht-surface-light .tl-guides-related__item,
.tl-site-main.ht-surface-light .tl-related-link,
.tl-site-main.ht-surface-light .tl-glossary-related__item,
.tl-site-main.ht-surface-light .tl-guide-ending-list__item {
  border-top-color: var(--ht-stone);
  color: var(--ht-charcoal);
}
.tl-site-main.ht-surface-light .tl-guides-popular__item:hover,
.tl-site-main.ht-surface-light .tl-guides-related__item:hover,
.tl-site-main.ht-surface-light .tl-related-link:hover,
.tl-site-main.ht-surface-light .tl-glossary-related__item:hover,
.tl-site-main.ht-surface-light .tl-guide-ending-list__item:hover {
  background: var(--ht-biscuit);
  color: var(--ht-charcoal);
}

.tl-site-main.ht-surface-light .tl-guides-section-kicker,
.tl-site-main.ht-surface-light .tl-guides-panel__kicker,
.tl-site-main.ht-surface-light .tl-guide-ending__kicker { color: var(--ht-sage); }
.tl-site-main.ht-surface-light .tl-guides-section-head h2,
.tl-site-main.ht-surface-light .tl-guide-ending__title { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guide-ending__intro { color: var(--ht-ink); }

.tl-site-main.ht-surface-light .tl-guides-panel__link { color: var(--ht-timber); }
.tl-site-main.ht-surface-light .tl-guides-panel__link:hover { color: var(--ht-timber-mid); }

.tl-site-main.ht-surface-light .tl-guides-library-search { border-color: var(--ht-stone); background: var(--ht-warm); }
.tl-site-main.ht-surface-light .tl-guides-library-search input { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guides-library-search input::placeholder { color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-guides-library-search button { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guides-library-search button:hover { color: var(--ht-timber); }

.tl-site-main.ht-surface-light .tl-guides-library-note { color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-guides-library-note a { color: var(--ht-timber); }
.tl-site-main.ht-surface-light .tl-guides-library-note a:hover { color: var(--ht-timber-mid); }

.tl-site-main.ht-surface-light .tl-guides-table { border-color: var(--ht-stone); }
.tl-site-main.ht-surface-light .tl-guides-table__head { background: var(--ht-biscuit); color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-guides-table__row { background: var(--ht-warm); border-top-color: var(--ht-stone); }
.tl-site-main.ht-surface-light .tl-guides-table__row:hover { background: var(--ht-cream); }
.tl-site-main.ht-surface-light .tl-guides-table__title-main { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guides-table__cell { color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-guides-table__title-sub { color: var(--ht-timber); }

.tl-site-main.ht-surface-light .tl-guides-sidepanel__kicker { color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-guides-related { border-top-color: var(--ht-stone); }
.tl-site-main.ht-surface-light .tl-guides-related__item { border-top-color: var(--ht-stone); }
.tl-site-main.ht-surface-light .tl-guides-related__title { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guides-related__cta { color: var(--ht-mid); }

.tl-site-main.ht-surface-light .tl-guides-sidepanel .tl-guides-pill {
  background: var(--ht-biscuit);
  border: 1px solid var(--ht-stone);
  color: var(--ht-charcoal);
}
.tl-guide-hero .tl-guides-pill {
  background: rgba(196,112,58,.18);
  border: 1px solid rgba(196,112,58,.35);
  color: var(--ht-timber-light);
}

.tl-site-main.ht-surface-light .tl-guide-prose h2,
.tl-site-main.ht-surface-light .tl-guide-prose h3,
.tl-site-main.ht-surface-light .tl-glossary-prose h2,
.tl-site-main.ht-surface-light .tl-glossary-prose h3,
.tl-site-main.ht-surface-light .tl-calculator-prose h2,
.tl-site-main.ht-surface-light .tl-calculator-prose h3 { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guide-prose p,
.tl-site-main.ht-surface-light .tl-glossary-prose p,
.tl-site-main.ht-surface-light .tl-calculator-prose p { color: var(--ht-ink); }

.tl-site-main.ht-surface-light .tl-glossary-card__title a { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-glossary-card__meta { color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-glossary-card__def { color: var(--ht-ink); }
.tl-site-main.ht-surface-light .tl-glossary-card__cta { color: var(--ht-timber); }
.tl-site-main.ht-surface-light .tl-glossary-chip { border-color: var(--ht-stone); color: var(--ht-mid); background: var(--ht-warm); }

.tl-site-main.ht-surface-light .tl-guides-button,
.tl-site-main.ht-surface-light .tl-calculator-button,
.tl-site-main.ht-surface-light .tl-glossary-button {
  border-color: var(--ht-stone);
  color: var(--ht-charcoal);
  background: transparent;
}
.tl-site-main.ht-surface-light .tl-guides-hero .tl-guides-button--ghost {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.92);
}
.tl-site-main.ht-surface-light .tl-guides-hero .tl-guides-button--ghost:hover { border-color: var(--ht-timber-light); color: var(--ht-timber-light); }
.tl-site-main.ht-surface-light .tl-glossary-hero .tl-glossary-button--ghost {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.92);
}
.tl-site-main.ht-surface-light .tl-glossary-hero .tl-glossary-button--ghost:hover { border-color: var(--ht-timber-light); color: var(--ht-timber-light); }
.tl-site-main.ht-surface-light .tl-glossary-hero .tl-guides-button--ghost {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.92);
}
.tl-site-main.ht-surface-light .tl-glossary-hero .tl-guides-button--ghost:hover { border-color: var(--ht-timber-light); color: var(--ht-timber-light); }
/* More breathing room after the badge on single glossary pages */
.tl-site-main.ht-surface-light .tl-glossary-hero--single .tl-glossary-badge { margin-bottom: 1.5rem; }
.tl-site-main.ht-surface-light .tl-guides-button--primary,
.tl-site-main.ht-surface-light .tl-calculator-button--primary,
.tl-site-main.ht-surface-light .tl-glossary-button--primary {
  border-color: var(--ht-timber);
  background: var(--ht-timber);
  color: #fff;
}
.tl-site-main.ht-surface-light .tl-guides-button--ghost:hover,
.tl-site-main.ht-surface-light .tl-calculator-button--ghost:hover,
.tl-site-main.ht-surface-light .tl-glossary-button--ghost:hover {
  border-color: var(--ht-timber);
  color: var(--ht-timber);
}

.tl-site-main.ht-surface-light .tl-calculators-hero .tl-calculator-button--ghost,
.tl-site-main.ht-surface-light .tl-calculator-hero .tl-calculator-button--ghost {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.92);
}
.tl-site-main.ht-surface-light .tl-calculators-hero .tl-calculator-button--ghost:hover,
.tl-site-main.ht-surface-light .tl-calculator-hero .tl-calculator-button--ghost:hover { border-color: var(--ht-timber-light); color: var(--ht-timber-light); }

.tl-site-main.ht-surface-light .tl-guide-callout {
  border-color: var(--ht-timber-light);
  background: var(--ht-timber-pale);
}
.tl-site-main.ht-surface-light .tl-guide-callout__kicker { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guide-callout__text { color: var(--ht-ink); }

.tl-site-main.ht-surface-light .tl-guide-ending-card__kicker,
.tl-site-main.ht-surface-light .tl-guide-ending-list__title { color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-guide-ending-card__title { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guide-ending-card__cta { color: var(--ht-timber); }
.tl-site-main.ht-surface-light .tl-guide-ending-card:hover .tl-guide-ending-card__cta { color: var(--ht-timber-mid); }

.tl-site-main.ht-surface-light .tl-guide-sources__title { color: var(--ht-charcoal); }
.tl-site-main.ht-surface-light .tl-guide-sources__title a { color: var(--ht-charcoal); text-decoration-color: rgba(44,42,36,.25); }
.tl-site-main.ht-surface-light .tl-guide-sources__title a:hover { color: var(--ht-timber); text-decoration-color: rgba(184,92,40,.45); }

.tl-site-main.ht-surface-light .tl-guide-sources__meta { color: var(--ht-mid); }
.tl-site-main.ht-surface-light .tl-guide-sources__note { color: var(--ht-ink); }

/* Footer */
.site-footer { background: var(--ht-dark); color: #fff; padding: 4rem 1.75rem 2rem; }
.footer-inner { width: min(1200px, 100%); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.3rem; }
.footer-brand__name-main { font-family: var(--ht-serif); color: #fff; font-size: 1.12rem; letter-spacing: .06em; font-weight: 700; }
.footer-brand__name-sub { color: var(--ht-timber-light); font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; }
.footer-brand__tagline { color: var(--ht-light); margin-top: 1rem; max-width: 26ch; font-size: .85rem; }
.footer-nav__heading { font-size: .62rem; text-transform: uppercase; letter-spacing: .2em; color: var(--ht-stone-dark); margin-bottom: 1rem; font-weight: 600; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-nav a { color: var(--ht-light); font-size: .84rem; }
.footer-nav a:hover { color: var(--ht-timber-light); }
.footer-social { margin-top: 1.25rem; display: flex; gap: .65rem; flex-wrap: wrap; }
.footer-social a { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ht-light); border-bottom: 1px solid var(--ht-stone-dark); }
.footer-bottom { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; gap: .8rem; flex-wrap: wrap; }
.footer-bottom p { color: var(--ht-light); font-size: .74rem; }

/* Search modal */
.tl-search-modal[aria-hidden="true"] { display: none; }
.tl-search-modal { position: fixed; inset: 0; z-index: 260; }
.tl-search-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.tl-search-modal__panel {
  position: relative;
  width: min(760px, calc(100% - 2rem));
  margin: 8vh auto 0;
  background: var(--ht-cream);
  border: 1px solid var(--ht-stone);
  padding: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .tl-home-split,
  .tl-calculator-shell__grid,
  .tl-guide-reading__grid,
  .tl-glossary-entry__grid { grid-template-columns: 1fr; }

  .tl-calculator-shell__aside,
  .tl-calculator-panel--sticky { position: static; }

  .tl-calculator-tool__grid { grid-template-columns: 1fr; }
  .tl-calculator-field--split { grid-template-columns: 1fr; }
  .tl-te-row { grid-template-columns: 1fr 1fr; }
  .tl-te-row--head { display: none; }

  .tl-species-hero__inner,
  .tl-guides-hero__inner,
  .tl-glossary-hero__inner,
  .tl-calculators-hero__inner { grid-template-columns: 1fr; }

  .tl-guides-featured__grid,
  .tl-guides-library__grid,
  .tl-guide-ending__grid { grid-template-columns: 1fr; }

  .tl-calculators-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tl-calculators-feature-grid { grid-template-columns: 1fr; }

  .tl-guide-aside { position: static; }

  .ht-category-panel { grid-template-columns: 1fr; }
  .ht-category-panel__left { border-right: 0; border-bottom: 1px solid var(--ht-stone); }

  .tl-site-main--species .tl-species-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .ht-species-single__grid { grid-template-columns: 1fr; gap: 2rem; }

  .ht-quote-router { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ht-quote-helper-grid { grid-template-columns: 1fr; }
  .ht-quote-layout { grid-template-columns: 1fr; }
  .ht-quote-aside { position: static; }
  .ht-inline-calc__grid { grid-template-columns: 1fr 1fr; }
  .ht-cutting-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .tl-container, .ht-container { width: min(1200px, calc(100% - 2rem)); }
  .container { width: min(1200px, calc(100% - 2rem)); }
  .site-header { padding-inline: 1rem; }
  .ht-primary-nav, .header-quote-btn { display: none; }
  .ht-nav-toggle { display: inline-flex; margin-left: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .ht-trust-grid { grid-template-columns: 1fr; }
  .tl-calculators-grid { grid-template-columns: 1fr; }
  .tl-calculator-card--featured { grid-column: span 1; }
  .tl-guides-table__head { display: none; }
  .tl-guides-table__row { grid-template-columns: 1fr; }
  .tl-site-main--species .tl-species-grid { grid-template-columns: 1fr; }
  .tl-species-search { min-width: 100%; }
  .tl-species-library--light .tl-chip-set { max-width: 100%; }
  .tl-species-library--light .tl-species-card__stats { grid-template-columns: 1fr; }
  .tl-guides-table__cell::before {
    content: attr(data-label);
    display: block;
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: .2rem;
  }
  .tl-site-main.ht-surface-light .tl-guides-table__cell::before { color: var(--ht-mid); }
  .tl-site-main.ht-surface-light .tl-guide-prose { padding: 1.25rem 1.2rem; }

  .page-hero { padding: 8rem 0 3.25rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .ht-quote-contact-grid { grid-template-columns: 1fr; }
  .ht-quote-router { grid-template-columns: 1fr; }
  .ht-inline-calc__grid { grid-template-columns: 1fr; }
  .ht-quote-contact-card a { white-space: normal; overflow: visible; text-overflow: clip; }
}
