:root {
  --tf-charcoal: #11140e;
  --tf-ink: #171912;
  --tf-moss: #496333;
  --tf-leaf: #9acb48;
  --tf-gold: #dce982;
  --tf-cream: #fbf8ed;
  --tf-paper: #fffdf3;
  --tf-stone: #e9e2d2;
  --tf-sage: #dfe6d8;
  --tf-ash: #2f332a;
  --tf-muted: #626b55;
  --tf-line: rgba(23, 25, 18, 0.12);
  --tf-panel: rgba(255, 253, 243, 0.9);
  --tf-panel-stone: rgba(244, 240, 229, 0.86);
  --tf-selection-bg: rgba(220, 233, 130, 0.82);
  --tf-selection-text: #11140e;
  --tf-shadow: 0 24px 70px rgba(17, 20, 14, 0.16);
  --tf-soft-shadow: 0 14px 40px rgba(17, 20, 14, 0.1);
  --tf-type-hero: clamp(3.8rem, 8.4vw, 7.2rem);
  --tf-type-page: clamp(3rem, 5.4vw, 5.25rem);
  --tf-type-section: clamp(2.25rem, 4.6vw, 4.2rem);
  --tf-type-subsection: clamp(1.85rem, 3.1vw, 2.75rem);
  --tf-type-card: clamp(1.35rem, 2vw, 1.65rem);
  --tf-type-body: 1.06rem;
  --tf-type-lede: clamp(1.08rem, 1.7vw, 1.25rem);
  --tf-type-small: 0.88rem;
  --tf-type-label: 0.78rem;
  --tf-leading-tight: 1;
  --tf-leading-heading: 1.05;
  --tf-leading-body: 1.75;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(220, 233, 130, 0.16), transparent 28rem),
    var(--tf-cream);
  color: var(--tf-ink);
  letter-spacing: 0;
  font-size: var(--tf-type-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-underline-offset: 0.18em;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 220ms ease;
}

::selection {
  background: var(--tf-selection-bg);
  color: var(--tf-selection-text);
}

::-moz-selection {
  background: var(--tf-selection-bg);
  color: var(--tf-selection-text);
}

:focus-visible {
  outline: 3px solid rgba(220, 233, 130, 0.76);
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tf-skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--tf-gold);
  color: var(--tf-charcoal);
  font-weight: 860;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.tf-skip-link:focus {
  transform: translateY(0);
}

.wp-site-blocks {
  min-height: 100vh;
}

.tf-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  margin-block-start: 0;
  padding: 14px clamp(18px, 4vw, 46px);
  background: rgba(17, 20, 14, 0.92);
  border-bottom: 1px solid rgba(251, 248, 237, 0.12);
  backdrop-filter: blur(18px);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}

.tf-site-header.is-scrolled {
  background: rgba(17, 20, 14, 0.96);
  border-bottom-color: rgba(220, 233, 130, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.tf-header-inner {
  width: min(1240px, 100%);
  min-height: 62px;
  margin-inline: auto;
  gap: 24px;
}

.tf-logo {
  display: inline-flex;
  align-items: center;
  width: min(245px, 52vw);
  flex: 0 0 auto;
}

.tf-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.tf-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 0.9rem;
  font-weight: 760;
}

.tf-main-nav a {
  color: rgba(251, 248, 237, 0.82);
  text-decoration: none;
}

.tf-main-nav a:hover {
  color: var(--tf-gold);
}

.tf-main-nav a[aria-current="page"] {
  color: var(--tf-gold);
}

.tf-mobile-menu-toggle,
.tf-mobile-nav {
  display: none;
}

.tf-mobile-menu-toggle {
  position: relative;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border: 1px solid rgba(220, 233, 130, 0.34);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(251, 248, 237, 0.1), rgba(251, 248, 237, 0.04)),
    rgba(17, 20, 14, 0.52);
  color: var(--tf-paper);
  font: inherit;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.tf-mobile-menu-toggle:hover,
.tf-mobile-menu-toggle.is-open {
  border-color: rgba(220, 233, 130, 0.72);
  background:
    linear-gradient(180deg, rgba(220, 233, 130, 0.18), rgba(251, 248, 237, 0.05)),
    rgba(17, 20, 14, 0.62);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), 0 0 0 4px rgba(220, 233, 130, 0.08);
  transform: translateY(-1px);
}

.tf-mobile-menu-toggle:focus-visible {
  outline: 3px solid rgba(220, 233, 130, 0.72);
  outline-offset: 4px;
}

.tf-mobile-menu-icon {
  display: grid;
  gap: 4px;
  width: 21px;
}

.tf-mobile-menu-icon span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease, width 180ms ease;
}

.tf-mobile-menu-icon span:nth-child(2) {
  width: 15px;
  justify-self: end;
}

.tf-mobile-menu-toggle.is-open .tf-mobile-menu-icon span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.tf-mobile-menu-toggle.is-open .tf-mobile-menu-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(4px);
}

.tf-mobile-menu-toggle.is-open .tf-mobile-menu-icon span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.tf-mobile-nav {
  flex: 1 1 100%;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(220, 233, 130, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(251, 248, 237, 0.08), rgba(251, 248, 237, 0.035)),
    rgba(17, 20, 14, 0.92);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  transform-origin: top center;
}

.tf-mobile-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 16px;
  color: rgba(251, 248, 237, 0.86);
  font-weight: 780;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.tf-mobile-nav a:hover {
  background: rgba(251, 248, 237, 0.08);
  color: var(--tf-gold);
  transform: translateX(2px);
}

.tf-mobile-nav a[aria-current="page"] {
  background: rgba(220, 233, 130, 0.12);
  color: var(--tf-gold);
}

.tf-mobile-nav .tf-mobile-nav-cta {
  grid-column: 1 / -1;
  justify-content: center;
  background: var(--tf-gold);
  color: var(--tf-charcoal);
  box-shadow: 0 12px 28px rgba(220, 233, 130, 0.2);
}

.tf-header-cta,
.tf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
}

.tf-header-cta,
.tf-button-primary {
  background: var(--tf-gold);
  color: var(--tf-charcoal);
  box-shadow: 0 10px 30px rgba(220, 233, 130, 0.22);
}

.tf-header-cta:hover,
.tf-button-primary:hover {
  transform: translateY(-2px);
  background: #edf5a6;
}

.tf-button-secondary {
  border: 1px solid rgba(251, 248, 237, 0.38);
  color: var(--tf-paper);
}

.tf-button-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--tf-gold);
  color: var(--tf-gold);
}

.tf-premium-hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: none !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-block-start: 0;
  padding: clamp(84px, 10vw, 140px) clamp(20px, 5vw, 64px);
  background: var(--tf-charcoal);
  color: var(--tf-paper);
  --tf-hero-progress: 0;
  --tf-hero-depth-y: 0px;
  --tf-hero-copy-y: 0px;
  --tf-hero-light: 0;
}

.tf-premium-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none !important;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.66;
  filter: saturate(1.08) contrast(1.02) brightness(1.08);
}

.tf-premium-hero[data-hero-motion] .tf-premium-hero-bg {
  transform: translate3d(0, var(--tf-hero-depth-y), 0) scale(calc(1.04 + (var(--tf-hero-progress) * 0.035)));
  transform-origin: 58% 52%;
  filter: saturate(calc(1.08 + (var(--tf-hero-progress) * 0.08))) contrast(1.03) brightness(calc(1.08 + (var(--tf-hero-light) * 0.08)));
  will-change: transform, filter;
}

.tf-hero-atmosphere {
  position: absolute;
  z-index: 1;
  inset: -12% -10%;
  background:
    radial-gradient(ellipse at 68% 42%, rgba(220, 233, 130, calc(0.08 + (var(--tf-hero-progress) * 0.08))), transparent 34%),
    linear-gradient(115deg, transparent 16%, rgba(251, 248, 237, calc(0.045 + (var(--tf-hero-progress) * 0.045))) 42%, transparent 68%);
  mix-blend-mode: screen;
  opacity: calc(0.58 + (var(--tf-hero-progress) * 0.32));
  pointer-events: none;
  transform: translate3d(calc(var(--tf-hero-progress) * -18px), calc(var(--tf-hero-progress) * 12px), 0);
  will-change: opacity, transform;
}

.tf-premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 20, 14, 0.92), rgba(17, 20, 14, 0.72) 44%, rgba(17, 20, 14, 0.24)),
    linear-gradient(180deg, rgba(17, 20, 14, 0.12), rgba(17, 20, 14, 0.45));
  pointer-events: none;
}

.tf-premium-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto -8vw -16vw auto;
  width: 42vw;
  min-width: 360px;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(220, 233, 130, 0.22), transparent 58%),
    radial-gradient(circle, rgba(154, 203, 72, 0.18), transparent 70%);
  pointer-events: none;
}

.tf-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
  width: min(1240px, 100%);
  margin-inline: auto;
}

.tf-hero-copy {
  animation: tfFadeUp 700ms ease both;
}

.tf-premium-hero[data-hero-motion] .tf-hero-copy {
  transform: translate3d(0, var(--tf-hero-copy-y), 0);
  will-change: transform;
}

.tf-kicker,
.tf-section-eyebrow {
  margin: 0 0 16px;
  color: var(--tf-moss);
  font-size: var(--tf-type-label);
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tf-premium-hero .tf-kicker,
.tf-testimonials .tf-section-eyebrow,
.tf-final-cta-inner .tf-section-eyebrow,
.tf-about-cta .tf-section-eyebrow,
.tf-experience-detail-cta .tf-section-eyebrow {
  color: var(--tf-gold);
}

.tf-hero-title {
  max-width: 760px;
  margin: 0;
  font-size: var(--tf-type-hero);
  line-height: 0.9;
  letter-spacing: 0;
}

.tf-hero-lede {
  max-width: 670px;
  margin-top: 28px;
  color: rgba(251, 248, 237, 0.84);
  font-size: var(--tf-type-lede);
  line-height: var(--tf-leading-body);
}

.tf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.tf-hero-trust {
  margin-top: 20px;
  color: rgba(251, 248, 237, 0.62);
  font-size: 0.92rem;
}

.tf-hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(18px, 3vw, 30px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(251, 248, 237, 0.2);
  border-radius: 999px;
  background: rgba(17, 20, 14, 0.34);
  color: rgba(251, 248, 237, 0.76);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.tf-premium-hero[data-hero-motion] .tf-hero-scroll {
  opacity: calc(1 - (var(--tf-hero-progress) * 1.8));
  transform: translateX(-50%) translateY(calc(var(--tf-hero-progress) * 16px));
}

.tf-hero-scroll:hover {
  border-color: rgba(220, 233, 130, 0.42);
  color: var(--tf-gold);
  transform: translateX(-50%) translateY(-2px);
}

.tf-hero-scroll i {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.82;
}

.tf-hero-scroll i::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  animation: tfScrollCue 1600ms ease-in-out infinite;
}

.tf-card-label {
  display: block;
  margin-bottom: 8px;
  color: var(--tf-moss);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tf-section {
  margin-block-start: 0;
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 64px);
}

.tf-home-compact-section {
  padding-block: clamp(54px, 6vw, 84px);
}

.tf-section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.tf-section-head-with-media {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(26px, 5vw, 72px);
  max-width: 1240px;
  align-items: center;
}

.tf-section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(26px, 5vw, 72px);
  max-width: 1240px;
  align-items: end;
}

.tf-section-heading {
  margin: 0;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-section);
  line-height: var(--tf-leading-tight);
}

.tf-section-lede {
  color: var(--tf-muted);
  font-size: var(--tf-type-body);
  line-height: var(--tf-leading-body);
}

.tf-section-media,
.tf-wide-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(73, 99, 51, 0.16);
  box-shadow: var(--tf-soft-shadow);
}

.tf-section-media {
  aspect-ratio: 4 / 3;
}

.tf-wide-media {
  aspect-ratio: 16 / 7;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.tf-section-media::after,
.tf-wide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 20, 14, 0), rgba(17, 20, 14, 0.16));
  pointer-events: none;
}

.tf-section-media img,
.tf-wide-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tf-section-media:hover img,
.tf-wide-media:hover img {
  transform: scale(1.035);
}

.tf-section-media-dark {
  border-color: rgba(251, 248, 237, 0.16);
}

.tf-trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-block-start: 0;
  padding: 0 clamp(20px, 5vw, 64px);
  background: var(--tf-stone);
}

.tf-home-trust-band {
  padding-block: clamp(10px, 2vw, 20px);
}

#tf-home-next {
  scroll-margin-top: 92px;
}

.tf-trust-item {
  min-height: 128px;
  padding: 20px 22px;
  background: var(--tf-paper);
  transition: transform 220ms ease, background-color 220ms ease;
}

.tf-trust-item:hover {
  transform: translateY(-4px);
  background: #fffbea;
}

.tf-trust-item span,
.tf-process-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--tf-moss);
  font-weight: 860;
}

.tf-trust-item strong {
  display: block;
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-card);
  line-height: var(--tf-leading-heading);
}

.tf-trust-item p,
.tf-process-card p,
.tf-experience-card p {
  color: var(--tf-muted);
}

.tf-process-section {
  background: var(--tf-stone);
}

.tf-process-section.tf-home-compact-section {
  padding-block: clamp(42px, 5vw, 66px);
}

.tf-process-section .tf-section-head {
  margin-bottom: clamp(18px, 3vw, 28px);
}

.tf-process-section .tf-wide-media {
  aspect-ratio: 16 / 4.8;
  margin-bottom: clamp(16px, 2.4vw, 24px);
}

.tf-process-grid,
.tf-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tf-process-card,
.tf-experience-card,
.tf-quote-card {
  border: 1px solid var(--tf-line);
  border-radius: 18px;
  background: var(--tf-panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.tf-process-card {
  padding: 22px;
}

.tf-process-card:hover,
.tf-experience-card:hover,
.tf-quote-card:hover {
  transform: translateY(-6px);
  border-color: rgba(73, 99, 51, 0.28);
  box-shadow: var(--tf-soft-shadow);
}

.tf-process-card h3,
.tf-experience-card h3 {
  margin: 0 0 12px;
  font-size: var(--tf-type-card);
  line-height: var(--tf-leading-heading);
}

.tf-featured-experiences,
.tf-all-experiences {
  background: var(--tf-paper);
}

.tf-featured-experiences .tf-section-head {
  margin-bottom: clamp(26px, 4vw, 42px);
}

.tf-home-experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tf-home-experience-card {
  min-height: 0;
}

.tf-home-experience-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: var(--tf-stone);
}

.tf-home-experience-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tf-home-experience-card:hover .tf-home-experience-media img {
  transform: scale(1.045);
}

.tf-home-experience-card .tf-card-label {
  margin: 22px 24px 8px;
}

.tf-home-experience-card h3 {
  margin-inline: 24px;
}

.tf-home-experience-card p {
  margin-inline: 24px;
}

.tf-home-experience-card > a:not(.tf-home-experience-media) {
  display: inline-flex;
  margin: auto 24px 24px;
}

.tf-all-experiences {
  position: relative;
  overflow: hidden;
  padding-top: clamp(44px, 5vw, 72px);
}

.tf-all-experiences::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(220, 233, 130, 0.2), transparent 28rem),
    linear-gradient(180deg, rgba(251, 248, 237, 0.72), rgba(255, 253, 243, 0));
  pointer-events: none;
}

.tf-all-experiences > * {
  position: relative;
  z-index: 1;
}

.tf-experiences-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(16px, 3vw, 36px);
  align-items: end;
  max-width: 1240px;
  margin-bottom: clamp(12px, 2vw, 22px);
}

.tf-experiences-intro .tf-section-head {
  margin-bottom: 0;
}

.tf-all-experiences .tf-section-heading {
  max-width: 820px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.tf-all-experiences .tf-section-lede {
  max-width: 640px;
  margin-top: 12px;
  margin-bottom: 0;
}

.tf-experiences-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin: 0 0 4px;
}

.tf-experiences-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(73, 99, 51, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 243, 0.82);
  color: var(--tf-moss);
  font-size: 0.78rem;
  font-weight: 820;
  box-shadow: 0 10px 26px rgba(17, 20, 14, 0.05);
}

.tf-experience-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1240px;
  margin: clamp(12px, 2vw, 20px) 0 18px;
  padding: 10px;
  border: 1px solid rgba(73, 99, 51, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 243, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.tf-experience-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tf-experience-filters button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(73, 99, 51, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 243, 0.78);
  color: var(--tf-ash);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 820;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.tf-experience-filters button:hover {
  transform: translateY(-1px);
  border-color: rgba(73, 99, 51, 0.34);
  background: var(--tf-paper);
}

.tf-experience-filters button.is-active {
  border-color: rgba(73, 99, 51, 0.7);
  background: var(--tf-moss);
  color: var(--tf-paper);
  box-shadow: 0 10px 24px rgba(73, 99, 51, 0.16);
}

.tf-experience-count {
  flex: 0 0 auto;
  margin: 0;
  color: var(--tf-muted);
  font-size: var(--tf-type-small);
  font-weight: 760;
  white-space: nowrap;
}

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

.tf-home-experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tf-experience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
}

.tf-experience-card.is-filtered-out {
  display: none;
}

.tf-experience-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--tf-gold), var(--tf-leaf));
}

.tf-experience-card-media {
  display: block;
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  background: var(--tf-cream);
}

.tf-experience-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tf-experience-card:hover .tf-experience-card-media img {
  transform: scale(1.045);
}

.tf-experience-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.tf-experience-card-body > a {
  margin-top: auto;
}

.tf-experience-card a,
.tf-text-link {
  color: var(--tf-moss);
  font-weight: 820;
  text-decoration: none;
}

.tf-experience-card a:hover,
.tf-text-link:hover {
  color: var(--tf-charcoal);
}

.tf-section-action {
  margin-top: 30px;
}

.tf-testimonials {
  background:
    radial-gradient(circle at top right, rgba(220, 233, 130, 0.14), transparent 32rem),
    var(--tf-charcoal);
  color: var(--tf-paper);
  padding-block: clamp(48px, 6vw, 74px);
}

.tf-testimonials .tf-section-head {
  margin-bottom: clamp(20px, 3vw, 30px);
}

.tf-testimonials .tf-section-heading,
.tf-testimonials .tf-section-lede {
  color: var(--tf-paper);
}

.tf-quote-card {
  margin: 0;
  padding: 32px;
  color: var(--tf-ink);
}

.tf-quote-card blockquote {
  margin: 0;
  font-family: var(--wp--preset--font-family--serif);
  font-size: 1.25rem;
  line-height: 1.45;
}

.tf-quote-card figcaption {
  margin-top: 22px;
  color: var(--tf-moss);
  font-weight: 850;
}

.tf-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 14px;
}

.tf-story-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(251, 248, 237, 0.16);
  border-radius: 20px;
  background: rgba(251, 248, 237, 0.9);
  color: var(--tf-ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.tf-story-featured {
  grid-row: span 2;
  justify-content: space-between;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(255, 253, 243, 0.96), rgba(223, 230, 216, 0.9)),
    var(--tf-paper);
}

.tf-story-label {
  margin: 0 0 14px;
  color: var(--tf-moss);
  font-size: var(--tf-type-label);
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tf-story-card blockquote {
  margin: 0;
  font-family: var(--wp--preset--font-family--serif);
  font-size: clamp(1.12rem, 1.65vw, 1.48rem);
  line-height: 1.42;
}

.tf-story-card:not(.tf-story-featured) blockquote {
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
}

.tf-story-card figcaption {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  color: var(--tf-moss);
}

.tf-story-card figcaption span {
  font-weight: 860;
}

.tf-story-card figcaption small {
  color: var(--tf-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.tf-final-cta {
  background: var(--tf-stone);
  padding-block: clamp(48px, 6vw, 76px);
}

.tf-page-shell {
  margin-block-start: 0;
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 64px);
  background: var(--tf-paper);
}

.tf-page-shell .wp-block-post-title {
  max-width: 940px;
  margin: 0 auto 28px;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-page);
  line-height: var(--tf-leading-tight);
}

.tf-page-shell .wp-block-post-content {
  max-width: 1120px;
  margin-inline: auto;
}

.tf-page-shell .wp-block-post-content:has(.tf-about-page),
.tf-page-shell .wp-block-post-content:has(.tf-contact-page) {
  max-width: 1240px;
}

.tf-about-page {
  max-width: 1240px;
  margin-inline: auto;
}

.tf-page-shell .wp-block-post-content:has(.tf-about-page) {
  margin-top: 0;
}

.tf-about-hero,
.tf-about-mission,
.tf-about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.62fr);
  gap: clamp(26px, 4.4vw, 58px);
  align-items: center;
}

.tf-about-hero {
  padding-bottom: clamp(38px, 5.6vw, 68px);
}

.tf-about-hero-copy h1,
.tf-about-mission h2,
.tf-about-story h2,
.tf-about-cta h2 {
  margin: 0;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  line-height: 0.98;
}

.tf-about-hero-copy h1 {
  max-width: 760px;
  font-size: var(--tf-type-page);
  line-height: var(--tf-leading-tight);
  overflow-wrap: break-word;
}

.tf-about-hero-copy > p:not(.tf-section-eyebrow),
.tf-about-copy p,
.tf-about-story p,
.tf-about-cta p {
  color: var(--tf-muted);
  font-size: var(--tf-type-body);
  line-height: var(--tf-leading-body);
}

.tf-about-hero-copy > p:not(.tf-section-eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  font-size: var(--tf-type-lede);
}

.tf-about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tf-button-outline {
  border: 1px solid rgba(73, 99, 51, 0.24);
  color: var(--tf-moss);
  background: var(--tf-panel-stone);
}

.tf-button-outline:hover {
  transform: translateY(-2px);
  border-color: var(--tf-moss);
  color: var(--tf-charcoal);
}

.tf-about-hero-image,
.tf-about-story figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(73, 99, 51, 0.16);
  background: var(--tf-stone);
  box-shadow: var(--tf-soft-shadow);
}

.tf-about-hero-image {
  aspect-ratio: 4 / 4.35;
}

.tf-about-story figure {
  aspect-ratio: 4 / 3;
}

.tf-about-hero-image img,
.tf-about-story img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-about-mission {
  align-items: start;
  padding: clamp(36px, 5.5vw, 66px) 0;
  border-top: 1px solid var(--tf-line);
}

.tf-about-mission h2,
.tf-about-story h2,
.tf-about-cta h2 {
  font-size: var(--tf-type-section);
}

.tf-about-copy {
  padding-top: 6px;
}

.tf-about-copy p:first-child,
.tf-about-story p:first-of-type {
  margin-top: 0;
}

.tf-about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: clamp(38px, 5.8vw, 70px);
}

.tf-about-principles article {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--tf-line);
  border-radius: 16px;
  background: var(--tf-panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.tf-about-principles article:hover {
  transform: translateY(-6px);
  border-color: rgba(73, 99, 51, 0.28);
  box-shadow: var(--tf-soft-shadow);
}

.tf-about-principles span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--tf-moss);
  font-weight: 860;
}

.tf-about-principles h3 {
  margin: 0 0 14px;
  font-size: var(--tf-type-card);
  line-height: var(--tf-leading-heading);
}

.tf-about-principles p {
  color: var(--tf-muted);
  line-height: 1.62;
}

.tf-about-story {
  padding: clamp(34px, 5vw, 58px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 8%, rgba(220, 233, 130, 0.14), transparent 24rem),
    var(--tf-stone);
}

.tf-about-cta {
  margin-top: clamp(38px, 5.8vw, 70px);
  padding: clamp(30px, 4.5vw, 46px);
  border-radius: 22px;
  background: var(--tf-charcoal);
  color: var(--tf-paper);
}

.tf-about-cta h2 {
  max-width: 780px;
  color: var(--tf-paper);
}

.tf-about-cta p {
  max-width: 720px;
  color: rgba(251, 248, 237, 0.78);
}

.tf-about-page p.tf-section-eyebrow {
  color: var(--tf-moss);
}

.tf-about-cta p.tf-section-eyebrow {
  color: var(--tf-gold);
}

.tf-contact-page {
  max-width: 1240px;
  margin-inline: auto;
}

.tf-contact-hero,
.tf-contact-process,
.tf-contact-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.66fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.tf-contact-hero {
  padding-bottom: clamp(28px, 5vw, 54px);
}

.tf-contact-hero-copy h1,
.tf-contact-card h2,
.tf-contact-process h2,
.tf-contact-note h2 {
  margin: 0;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  line-height: 0.98;
}

.tf-contact-hero-copy h1 {
  max-width: 760px;
  font-size: var(--tf-type-page);
  line-height: var(--tf-leading-tight);
  overflow-wrap: break-word;
}

.tf-contact-process h2,
.tf-contact-note h2 {
  font-size: var(--tf-type-section);
}

.tf-contact-hero-copy > p:not(.tf-section-eyebrow),
.tf-contact-card p,
.tf-contact-methods p,
.tf-contact-steps p,
.tf-contact-note p {
  color: var(--tf-muted);
  font-size: var(--tf-type-body);
  line-height: var(--tf-leading-body);
}

.tf-contact-hero-copy > p:not(.tf-section-eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  font-size: var(--tf-type-lede);
}

.tf-contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tf-contact-page p.tf-section-eyebrow {
  color: var(--tf-moss);
}

.tf-contact-card {
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(73, 99, 51, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 243, 0.94), var(--tf-panel-stone)),
    var(--tf-stone);
  box-shadow: var(--tf-soft-shadow);
}

.tf-contact-card > span,
.tf-contact-methods span,
.tf-contact-steps span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--tf-moss);
  font-size: var(--tf-type-label);
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tf-contact-card h2 {
  font-size: var(--tf-type-subsection);
}

.tf-contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.tf-contact-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tf-contact-trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--tf-ash);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.35;
}

.tf-contact-trust-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--tf-leaf);
  box-shadow: 0 0 0 5px rgba(154, 203, 72, 0.14);
}

.tf-contact-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.tf-contact-path article {
  padding: 24px;
  border: 1px solid rgba(73, 99, 51, 0.14);
  border-radius: 18px;
  background: var(--tf-panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.tf-contact-path span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--tf-moss);
  font-weight: 860;
}

.tf-contact-path h2 {
  margin: 0 0 10px;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-card);
  line-height: var(--tf-leading-heading);
}

.tf-contact-path p {
  margin-bottom: 0;
  color: var(--tf-muted);
  line-height: 1.6;
}

.tf-contact-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: clamp(38px, 6vw, 66px);
}

.tf-intake-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(42px, 6vw, 72px);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(73, 99, 51, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 253, 243, 0.96), rgba(223, 230, 216, 0.72)),
    var(--tf-panel);
  box-shadow: var(--tf-soft-shadow);
}

.tf-intake-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-section);
  line-height: var(--tf-leading-heading);
}

.tf-intake-copy p {
  max-width: 560px;
  color: var(--tf-muted);
  font-size: var(--tf-type-lede);
  line-height: var(--tf-leading-body);
}

.tf-intake-assurance {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.tf-intake-assurance span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tf-ash);
  font-size: 0.96rem;
  font-weight: 780;
}

.tf-intake-assurance span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--tf-leaf);
  box-shadow: 0 0 0 5px rgba(154, 203, 72, 0.14);
}

.tf-intake-form {
  display: grid;
  gap: 16px;
}

.tf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tf-intake-form label {
  display: grid;
  gap: 8px;
  color: var(--tf-ash);
  font-size: 0.86rem;
  font-weight: 820;
}

.tf-intake-form input,
.tf-intake-form select,
.tf-intake-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(47, 51, 42, 0.18);
  border-radius: 14px;
  background: rgba(255, 253, 243, 0.86);
  color: var(--tf-ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.tf-intake-form textarea {
  min-height: 138px;
  resize: vertical;
}

.tf-intake-form input:focus,
.tf-intake-form select:focus,
.tf-intake-form textarea:focus {
  outline: none;
  border-color: rgba(73, 99, 51, 0.58);
  background: var(--tf-paper);
  box-shadow: 0 0 0 4px rgba(154, 203, 72, 0.16);
}

.tf-consent-row {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--tf-muted);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.45;
}

.tf-consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--tf-moss);
}

.tf-intake-form .tf-button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.tf-intake-status {
  min-height: 24px;
  margin: 0;
  color: var(--tf-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.tf-contact-methods a,
.tf-contact-steps article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--tf-line);
  border-radius: 18px;
  background: var(--tf-panel);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.tf-contact-methods a:hover,
.tf-contact-steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(73, 99, 51, 0.28);
  box-shadow: var(--tf-soft-shadow);
}

.tf-contact-methods strong,
.tf-contact-steps h3 {
  display: block;
  margin: 0 0 12px;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-card);
  line-height: var(--tf-leading-heading);
}

.tf-contact-process {
  align-items: start;
  padding: clamp(54px, 7vw, 90px) 0;
  border-top: 1px solid var(--tf-line);
}

.tf-contact-steps {
  display: grid;
  gap: 16px;
}

.tf-contact-steps article {
  min-height: auto;
}

.tf-contact-note {
  margin-top: clamp(18px, 4vw, 34px);
  padding: clamp(36px, 6vw, 58px);
  border-radius: 24px;
  background: var(--tf-charcoal);
  color: var(--tf-paper);
}

.tf-contact-note h2 {
  color: var(--tf-paper);
}

.tf-contact-note p:last-child {
  color: rgba(251, 248, 237, 0.78);
}

.tf-blog-page {
  max-width: 1240px;
  margin-inline: auto;
}

.tf-page-shell .wp-block-post-content:has(.tf-blog-page) {
  max-width: 1240px;
}

.tf-blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  padding-bottom: clamp(26px, 4vw, 46px);
}

.tf-blog-hero h1,
.tf-blog-topics h2,
.tf-single-post-hero .wp-block-post-title {
  margin: 0;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  line-height: 1;
}

.tf-blog-hero h1 {
  max-width: 860px;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  line-height: 1.03;
}

.tf-blog-hero p,
.tf-blog-hero-panel p,
.tf-blog-feature-card p,
.tf-blog-mini-card p,
.tf-blog-newsletter p,
.tf-blog-topics p,
.tf-blog-article p,
.tf-blog-article li {
  color: var(--tf-muted);
  font-size: var(--tf-type-body);
  line-height: var(--tf-leading-body);
}

.tf-blog-hero > div > p:not(.tf-section-eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: var(--tf-type-lede);
}

.tf-blog-hero-panel {
  padding: 28px;
  border: 1px solid rgba(73, 99, 51, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 253, 243, 0.94), rgba(244, 240, 229, 0.9)),
    var(--tf-panel-stone);
  box-shadow: var(--tf-soft-shadow);
}

.tf-blog-hero-panel span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--tf-moss);
  font-size: var(--tf-type-label);
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tf-blog-hero-panel strong {
  display: block;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-card);
  line-height: var(--tf-leading-heading);
}

.tf-blog-hero-panel p {
  margin-bottom: 0;
}

.tf-blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.7fr);
  gap: 18px;
  padding-bottom: clamp(34px, 5vw, 58px);
}

.tf-blog-feature-card {
  display: grid;
  gap: 24px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--tf-line);
  border-radius: 18px;
  background: var(--tf-panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.tf-blog-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(73, 99, 51, 0.28);
  box-shadow: var(--tf-soft-shadow);
}

.tf-blog-feature-card-large {
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1fr);
  align-items: center;
}

.tf-blog-card-image,
.tf-blog-post-image {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--tf-stone);
}

.tf-blog-card-image {
  aspect-ratio: 4 / 3;
}

.tf-blog-post-image {
  aspect-ratio: 16 / 7;
  margin: 0 0 clamp(32px, 5vw, 56px);
  box-shadow: var(--tf-soft-shadow);
}

.tf-blog-card-image img,
.tf-blog-post-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tf-blog-feature-card:hover .tf-blog-card-image img {
  transform: scale(1.04);
}

.tf-blog-meta,
.tf-single-post-meta {
  color: var(--tf-moss);
  font-size: var(--tf-type-label);
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tf-blog-feature-card h2 {
  margin: 0 0 14px;
  font-size: var(--tf-type-subsection);
  line-height: var(--tf-leading-heading);
}

.tf-blog-feature-card h2 a {
  color: var(--tf-ink);
  text-decoration: none;
}

.tf-blog-feature-card h2 a:hover {
  color: var(--tf-moss);
}

.tf-blog-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.tf-blog-card-footer span {
  color: var(--tf-muted);
  font-size: var(--tf-type-small);
  font-weight: 720;
}

.tf-blog-topics {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(42px, 6vw, 72px);
  padding: clamp(30px, 5vw, 48px);
  border-radius: 22px;
  background: var(--tf-charcoal);
  color: var(--tf-paper);
}

.tf-blog-topics h2 {
  max-width: 680px;
  color: var(--tf-paper);
  font-size: var(--tf-type-section);
}

.tf-blog-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tf-blog-topic-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(251, 248, 237, 0.16);
  border-radius: 999px;
  background: rgba(251, 248, 237, 0.06);
  color: rgba(251, 248, 237, 0.82);
  font-weight: 780;
  text-decoration: none;
}

.tf-blog-topic-list a:hover {
  border-color: rgba(220, 233, 130, 0.42);
  color: var(--tf-gold);
  transform: translateY(-1px);
}

.tf-blog-latest {
  margin-bottom: clamp(44px, 7vw, 84px);
}

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

.tf-blog-mini-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--tf-line);
  border-radius: 18px;
  background: var(--tf-panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.tf-blog-mini-card .tf-blog-card-image {
  margin: -22px -22px 20px;
  border-radius: 18px 18px 0 0;
}

.tf-blog-mini-card h3 {
  margin: 0 0 12px;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-card);
  line-height: var(--tf-leading-heading);
}

.tf-blog-mini-card h3 a {
  color: inherit;
  text-decoration: none;
}

.tf-blog-mini-card h3 a:hover {
  color: var(--tf-moss);
}

.tf-blog-mini-card p:last-child {
  margin-bottom: 0;
}

.tf-blog-mini-card-muted {
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 243, 0.92), rgba(223, 230, 216, 0.78)),
    var(--tf-sage);
}

.tf-blog-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(30px, 5vw, 46px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(17, 20, 14, 0.94), rgba(73, 99, 51, 0.94)),
    var(--tf-moss);
  color: var(--tf-paper);
}

.tf-blog-newsletter h2 {
  margin: 0;
  color: var(--tf-paper);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-subsection);
  line-height: var(--tf-leading-heading);
}

.tf-blog-newsletter p:not(.tf-section-eyebrow) {
  max-width: 720px;
  color: rgba(251, 248, 237, 0.8);
}

.tf-blog-newsletter .tf-section-eyebrow {
  color: var(--tf-gold);
}

.tf-archive-page {
  background: var(--tf-paper);
}

.tf-archive-page .wp-block-query-title {
  max-width: 860px;
  margin-bottom: 30px;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-page);
  line-height: var(--tf-leading-tight);
}

.tf-archive-page .wp-block-post-template {
  gap: 18px;
}

.tf-archive-page .wp-block-post {
  padding: 22px;
  border: 1px solid var(--tf-line);
  border-radius: 18px;
  background: var(--tf-panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.tf-archive-page .wp-block-post-title {
  margin-top: 18px;
  font-size: var(--tf-type-card);
  line-height: var(--tf-leading-heading);
}

.tf-archive-page .wp-block-post-title a {
  color: var(--tf-ink);
  text-decoration: none;
}

.tf-archive-page .wp-block-post-title a:hover {
  color: var(--tf-moss);
}

.tf-archive-page .wp-block-post-excerpt {
  color: var(--tf-muted);
  line-height: 1.62;
}

.tf-pattern-editorial-cta,
.tf-pattern-conversion-intro,
.tf-pattern-trust-grid,
.tf-pattern-page-hero,
.tf-pattern-split-story,
.tf-pattern-experience-intro,
.tf-pattern-testimonial-row,
.tf-pattern-legal-note {
  margin-block-start: 0;
  padding: clamp(36px, 6vw, 62px) clamp(20px, 5vw, 64px);
}

.tf-pattern-page-hero,
.tf-pattern-split-story,
.tf-pattern-experience-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.68fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--tf-paper);
}

.tf-pattern-page-hero {
  background:
    linear-gradient(135deg, rgba(251, 248, 237, 0.96), rgba(223, 230, 216, 0.92)),
    var(--tf-sage);
}

.tf-pattern-page-hero h1,
.tf-pattern-experience-intro h1 {
  margin: 0;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-page);
  line-height: var(--tf-leading-tight);
}

.tf-pattern-page-hero p:not(.tf-section-eyebrow),
.tf-pattern-experience-intro p,
.tf-pattern-split-story p {
  color: var(--tf-muted);
  font-size: var(--tf-type-body);
  line-height: var(--tf-leading-body);
}

.tf-pattern-page-hero-media,
.tf-pattern-split-story figure,
.tf-pattern-experience-intro figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--tf-cream);
  box-shadow: var(--tf-soft-shadow);
}

.tf-pattern-page-hero-media img,
.tf-pattern-split-story img,
.tf-pattern-experience-intro img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-pattern-split-story {
  background: var(--tf-stone);
}

.tf-pattern-split-story > div {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(73, 99, 51, 0.14);
  border-radius: 20px;
  background: var(--tf-panel);
}

.tf-pattern-split-story h2,
.tf-pattern-testimonial-row h2,
.tf-pattern-legal-note h2 {
  margin: 0;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-subsection);
  line-height: var(--tf-leading-heading);
}

.tf-pattern-split-story ul,
.tf-experience-intro-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tf-pattern-split-story li,
.tf-experience-intro-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(73, 99, 51, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 243, 0.76);
  color: var(--tf-moss);
  font-size: 0.82rem;
  font-weight: 820;
}

.tf-pattern-experience-intro {
  background:
    linear-gradient(135deg, rgba(255, 253, 243, 0.98), rgba(251, 248, 237, 0.94)),
    var(--tf-paper);
}

.tf-pattern-experience-intro figure {
  aspect-ratio: 1 / 1;
}

.tf-pattern-testimonial-row {
  background: var(--tf-paper);
}

.tf-pattern-section-head {
  max-width: 760px;
  margin-bottom: clamp(22px, 4vw, 36px);
}

.tf-quote-card blockquote {
  margin: 0;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
  line-height: 1.3;
}

.tf-quote-card figcaption {
  margin-top: 18px;
  color: var(--tf-moss);
  font-weight: 860;
}

.tf-pattern-legal-note {
  border-top: 1px solid rgba(73, 99, 51, 0.12);
  border-bottom: 1px solid rgba(73, 99, 51, 0.12);
  background: var(--tf-sage);
}

.tf-pattern-legal-note p:not(.tf-section-eyebrow) {
  max-width: 840px;
  color: var(--tf-muted);
  line-height: var(--tf-leading-body);
}

.tf-pattern-editorial-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(17, 20, 14, 0.94), rgba(73, 99, 51, 0.94)),
    var(--tf-moss);
  color: var(--tf-paper);
}

.tf-pattern-editorial-cta h2,
.tf-pattern-conversion-intro h2 {
  margin: 0;
  color: inherit;
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-subsection);
  line-height: var(--tf-leading-heading);
}

.tf-pattern-editorial-cta p:not(.tf-section-eyebrow) {
  max-width: 720px;
  color: rgba(251, 248, 237, 0.8);
}

.tf-pattern-editorial-cta .tf-section-eyebrow {
  color: var(--tf-gold);
}

.tf-pattern-conversion-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--tf-stone);
}

.tf-pattern-conversion-intro > div,
.tf-pattern-conversion-intro > aside {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(73, 99, 51, 0.14);
  border-radius: 20px;
  background: var(--tf-panel);
}

.tf-pattern-conversion-intro p:not(.tf-section-eyebrow) {
  color: var(--tf-muted);
  line-height: var(--tf-leading-body);
}

.tf-pattern-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tf-pattern-conversion-intro aside span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--tf-moss);
  font-size: var(--tf-type-label);
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tf-pattern-conversion-intro ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tf-pattern-conversion-intro li {
  color: var(--tf-ash);
  font-weight: 760;
}

.tf-pattern-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: var(--tf-paper);
}

.tf-pattern-trust-grid article {
  padding: 26px;
  border: 1px solid var(--tf-line);
  border-radius: 18px;
  background: var(--tf-panel);
}

.tf-pattern-trust-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--tf-moss);
  font-weight: 860;
}

.tf-pattern-trust-grid h3 {
  margin: 0 0 10px;
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-card);
  line-height: var(--tf-leading-heading);
}

.tf-pattern-trust-grid p {
  margin-bottom: 0;
  color: var(--tf-muted);
  line-height: 1.62;
}

.tf-not-found-page {
  margin-block-start: 0;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 82% 18%, rgba(220, 233, 130, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--tf-paper), var(--tf-sage));
}

.tf-not-found-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.tf-not-found-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.tf-not-found-copy > p:not(.tf-section-eyebrow) {
  max-width: 700px;
  color: var(--tf-muted);
  font-size: var(--tf-type-lede);
  line-height: var(--tf-leading-body);
}

.tf-not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.tf-not-found-panel {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(73, 99, 51, 0.14);
  border-radius: 20px;
  background: rgba(255, 253, 243, 0.88);
  box-shadow: var(--tf-soft-shadow);
}

.tf-not-found-panel span {
  margin-bottom: 8px;
  color: var(--tf-moss);
  font-size: var(--tf-type-label);
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tf-not-found-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(73, 99, 51, 0.12);
  border-radius: 14px;
  background: var(--tf-paper);
  color: var(--tf-ink);
  font-weight: 820;
  text-decoration: none;
}

.tf-not-found-panel a:hover {
  border-color: rgba(73, 99, 51, 0.3);
  color: var(--tf-moss);
  transform: translateY(-1px);
}

.tf-single-post {
  margin-block-start: 0;
  padding: clamp(30px, 5vw, 58px) clamp(20px, 5vw, 64px);
  background: var(--tf-paper);
}

.tf-single-post-hero {
  max-width: 880px;
  margin-inline: auto;
  margin-bottom: clamp(22px, 3vw, 34px);
  padding-bottom: clamp(18px, 3vw, 28px);
  border-bottom: 1px solid var(--tf-line);
}

.tf-single-post-hero .wp-block-post-title {
  font-size: clamp(2.25rem, 4.2vw, 3.95rem);
  line-height: 1.04;
}

.tf-single-post-meta {
  gap: 18px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.tf-single-post-meta a {
  color: var(--tf-moss);
  text-decoration: none;
}

.tf-single-post-meta time,
.tf-single-post-meta a,
.tf-single-post-meta .wp-block-post-author-name {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}

.tf-blog-article {
  max-width: 840px;
  margin-inline: auto;
}

.tf-blog-post-lede {
  color: var(--tf-ink) !important;
  font-family: var(--wp--preset--font-family--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem) !important;
  line-height: 1.38 !important;
}

.tf-blog-article h2 {
  margin: clamp(36px, 5vw, 58px) 0 14px;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-subsection);
  line-height: var(--tf-leading-heading);
}

.tf-blog-article p + p {
  margin-top: 14px;
}

.tf-blog-article h2 + p {
  margin-top: 0;
}

.tf-blog-article ul,
.tf-blog-article ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding: 20px 22px;
  border: 1px solid rgba(73, 99, 51, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 243, 0.68);
}

.tf-blog-article blockquote {
  margin: clamp(28px, 5vw, 46px) 0;
  padding: clamp(22px, 4vw, 34px);
  border-left: 4px solid var(--tf-moss);
  border-radius: 18px;
  background: var(--tf-sage);
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  line-height: 1.34;
}

.tf-article-support-note,
.tf-article-next-reading {
  max-width: 920px;
  margin-inline: auto;
}

.tf-article-support-note {
  margin-top: clamp(28px, 5vw, 48px);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(73, 99, 51, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(223, 230, 216, 0.9), rgba(255, 253, 243, 0.95)),
    var(--tf-sage);
}

.tf-article-support-note span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--tf-moss);
  font-size: var(--tf-type-label);
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tf-article-support-note p {
  margin: 0;
  color: var(--tf-muted);
  line-height: 1.62;
}

.tf-article-next-reading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  margin-top: clamp(18px, 4vw, 34px);
  padding: clamp(28px, 5vw, 44px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(17, 20, 14, 0.95), rgba(73, 99, 51, 0.94)),
    var(--tf-charcoal);
  color: var(--tf-paper);
}

.tf-article-next-reading h2 {
  margin: 0;
  color: var(--tf-paper);
  font-family: var(--wp--preset--font-family--serif);
  font-size: var(--tf-type-subsection);
  line-height: var(--tf-leading-heading);
}

.tf-article-next-reading p:not(.tf-section-eyebrow) {
  max-width: 700px;
  color: rgba(251, 248, 237, 0.78);
  line-height: 1.62;
}

.tf-article-next-reading .tf-section-eyebrow {
  color: var(--tf-gold);
}

.tf-article-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.tf-experience-detail-hero {
  display: block;
  margin-bottom: clamp(18px, 3vw, 30px);
}

.tf-experience-detail-kicker {
  margin: 0 0 10px;
  color: var(--tf-moss);
  font-size: var(--tf-type-label);
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tf-experience-detail-title {
  max-width: 860px;
  margin: 0;
  font-family: var(--wp--preset--font-family--serif);
  font-size: clamp(2.05rem, 3.65vw, 3.45rem);
  line-height: 1.04;
}

.tf-experience-detail-lede {
  display: -webkit-box;
  max-width: 940px;
  margin: 12px 0 0;
  overflow: hidden;
  color: var(--tf-muted);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.56;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.tf-experience-detail-image {
  margin: clamp(14px, 2vw, 20px) 0 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(73, 99, 51, 0.16);
  aspect-ratio: 16 / 4.4;
  background: var(--tf-stone);
  box-shadow: var(--tf-soft-shadow);
}

.tf-experience-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-experience-support-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto clamp(24px, 4vw, 42px);
}

.tf-experience-support-strip article {
  min-height: 162px;
  padding: 22px;
  border: 1px solid rgba(73, 99, 51, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 243, 0.9), rgba(251, 248, 237, 0.72)),
    var(--tf-panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.tf-experience-support-strip span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--tf-moss);
  font-weight: 860;
}

.tf-experience-support-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.08;
}

.tf-experience-support-strip p {
  margin: 0;
  color: var(--tf-muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.tf-experience-detail-body {
  max-width: 820px;
  margin-inline: auto;
}

.tf-experience-care-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 46px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(73, 99, 51, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(223, 230, 216, 0.92), rgba(255, 253, 243, 0.96)),
    var(--tf-sage);
  box-shadow: 0 20px 50px rgba(17, 20, 14, 0.07);
}

.tf-experience-care-panel h2 {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  line-height: var(--tf-leading-heading);
}

.tf-experience-care-panel p:not(.tf-section-eyebrow) {
  margin-bottom: 0;
  color: var(--tf-muted);
  line-height: 1.62;
}

.tf-experience-detail-body h2,
.tf-experience-detail-body h3 {
  margin: clamp(26px, 4vw, 42px) 0 12px;
  padding-top: clamp(18px, 2.5vw, 28px);
  border-top: 1px solid rgba(73, 99, 51, 0.14);
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  line-height: 1.05;
}

.tf-experience-detail-body h2 {
  font-size: var(--tf-type-subsection);
}

.tf-experience-detail-body h3 {
  font-size: var(--tf-type-card);
}

.tf-experience-detail-body p,
.tf-experience-detail-body li {
  color: var(--tf-muted);
  font-size: var(--tf-type-body);
  line-height: 1.82;
}

.tf-experience-detail-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding: 20px 22px;
  border: 1px solid rgba(73, 99, 51, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 243, 0.66);
  list-style-position: inside;
}

.tf-experience-detail-cta {
  margin-top: clamp(42px, 6vw, 70px);
  padding: clamp(28px, 5vw, 44px);
  border-radius: 20px;
  background: var(--tf-charcoal);
  color: var(--tf-paper);
}

.tf-experience-detail-cta p {
  color: rgba(251, 248, 237, 0.8);
}

.tf-final-cta-inner {
  padding: clamp(34px, 5vw, 58px);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(17, 20, 14, 0.94), rgba(73, 99, 51, 0.94)),
    var(--tf-moss);
  color: var(--tf-paper);
  box-shadow: var(--tf-shadow);
}

.tf-final-cta-inner h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.3rem);
  line-height: var(--tf-leading-tight);
}

.tf-final-cta-inner p:not(.tf-section-eyebrow) {
  max-width: 680px;
  color: rgba(251, 248, 237, 0.8);
  font-size: var(--tf-type-body);
}

.tf-home-faq {
  padding-block: clamp(42px, 5vw, 64px);
  background: var(--tf-paper) !important;
}

.tf-home-faq > * {
  max-width: 900px;
}

.tf-home-faq h2 {
  margin: 0 0 18px;
  color: var(--tf-ink);
  font-family: var(--wp--preset--font-family--serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.05;
}

.tf-home-faq details {
  border-top: 1px solid var(--tf-line);
}

.tf-home-faq details:last-child {
  border-bottom: 1px solid var(--tf-line);
}

.tf-home-faq summary {
  padding: 18px 0;
  color: var(--tf-ink);
  font-weight: 820;
  cursor: pointer;
}

.tf-home-faq details p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--tf-muted);
}

.tf-premium-footer {
  margin-block-start: 0;
  padding: clamp(42px, 6vw, 58px) clamp(20px, 5vw, 64px) 28px;
  background:
    linear-gradient(180deg, #1a1e15 0%, #11140e 100%),
    #171b12;
  color: var(--tf-paper);
}

.tf-footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.22fr) minmax(210px, 0.86fr) repeat(2, minmax(140px, 0.62fr));
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  width: min(1240px, 100%);
  margin-inline: auto;
}

.tf-logo-footer {
  width: min(238px, 72vw);
  margin-bottom: 14px;
}

.tf-footer-brand p,
.tf-premium-footer p,
.tf-premium-footer li {
  color: rgba(251, 248, 237, 0.7);
}

.tf-footer-brand p {
  max-width: 340px;
  margin: 0;
  line-height: 1.58;
}

.tf-premium-footer h3 {
  margin: 0 0 12px;
  color: var(--tf-gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tf-premium-footer h3:not(:first-child) {
  margin-top: 22px;
}

.tf-premium-footer ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tf-premium-footer p {
  margin-top: 0;
}

.tf-premium-footer a {
  color: rgba(251, 248, 237, 0.78);
  text-decoration: none;
}

.tf-premium-footer a:hover {
  color: var(--tf-gold);
}

.tf-footer-phone a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(220, 233, 130, 0.2);
  border-radius: 999px;
  background: rgba(220, 233, 130, 0.07);
  color: var(--tf-paper);
  font-weight: 820;
}

.tf-cookie-reset {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(251, 248, 237, 0.78);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.tf-cookie-reset:hover {
  color: var(--tf-gold);
}

.tf-cookie-banner {
  position: fixed;
  z-index: 80;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(620px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(220, 233, 130, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(17, 20, 14, 0.96), rgba(47, 62, 36, 0.96)),
    var(--tf-charcoal);
  color: var(--tf-paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.tf-cookie-banner[hidden] {
  display: none;
}

.tf-cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--tf-gold);
  font-size: 0.82rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tf-cookie-banner p {
  margin: 0;
  color: rgba(251, 248, 237, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.tf-cookie-banner > a {
  grid-column: 1 / -1;
  width: fit-content;
  color: rgba(251, 248, 237, 0.72);
  font-size: 0.86rem;
}

.tf-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.tf-cookie-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(251, 248, 237, 0.22);
  border-radius: 999px;
  background: rgba(251, 248, 237, 0.06);
  color: var(--tf-paper);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 820;
  cursor: pointer;
}

.tf-cookie-accept {
  border-color: transparent;
  background: var(--tf-gold);
  color: var(--tf-charcoal);
}

.tf-cookie-button:hover {
  transform: translateY(-1px);
}

.tf-floating-cta {
  position: fixed;
  z-index: 70;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(520px, calc(100vw - 36px));
  padding: 14px;
  border: 1px solid rgba(220, 233, 130, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(17, 20, 14, 0.95), rgba(47, 62, 36, 0.95)),
    var(--tf-charcoal);
  color: var(--tf-paper);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.tf-floating-cta p {
  margin: 0;
  color: rgba(251, 248, 237, 0.74);
  font-size: 0.86rem;
  line-height: 1.35;
}

.tf-floating-cta .tf-button {
  min-height: 42px;
  padding-inline: 18px;
}

.tf-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tf-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 46px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(251, 248, 237, 0.14);
  border-radius: 999px;
  background: rgba(251, 248, 237, 0.04);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.02em;
}

.tf-social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tf-social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(220, 233, 130, 0.42);
  background: rgba(220, 233, 130, 0.08);
}

.tf-footer-bottom {
  width: min(1240px, 100%);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 248, 237, 0.12);
  color: rgba(251, 248, 237, 0.58);
  font-size: 0.85rem;
}

.tf-disclaimer {
  margin-block-start: 0;
  padding: 18px clamp(20px, 5vw, 64px);
  background: #0f120c;
  color: rgba(251, 248, 237, 0.54);
  font-size: 0.76rem;
}

.tf-disclaimer p {
  max-width: 1180px;
  margin-inline: auto;
  line-height: 1.58;
}

.tf-reveal {
  opacity: 0.88;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.tf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tf-stagger > * {
  opacity: 0.9;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.tf-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.tf-stagger.is-visible > *:nth-child(2) {
  transition-delay: 80ms;
}

.tf-stagger.is-visible > *:nth-child(3) {
  transition-delay: 160ms;
}

.tf-stagger.is-visible > *:nth-child(4) {
  transition-delay: 240ms;
}

.tf-stagger.is-visible > *:nth-child(5) {
  transition-delay: 320ms;
}

.tf-stagger.is-visible > *:nth-child(n + 6) {
  transition-delay: 380ms;
}

.tf-scroll-depth {
  transform: translateY(10px) scale(0.985);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tf-reveal.is-visible .tf-scroll-depth,
.tf-scroll-depth.tf-reveal.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes tfFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tfScrollCue {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, 0);
  }
  45% {
    opacity: 1;
    transform: translate(-50%, 8px);
  }
}

@media (max-width: 980px) {
  .tf-main-nav {
    display: none;
  }

  .tf-mobile-menu-toggle {
    display: inline-flex;
  }

  .tf-mobile-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .tf-header-cta {
    display: none;
  }

  .tf-hero-grid,
  .tf-section-head-with-media,
  .tf-section-head-split,
  .tf-experiences-intro,
  .tf-about-hero,
  .tf-about-mission,
  .tf-about-story,
  .tf-contact-hero,
  .tf-contact-path,
  .tf-contact-process,
  .tf-contact-note,
  .tf-intake-section,
  .tf-blog-hero,
  .tf-blog-featured,
  .tf-blog-feature-card-large,
  .tf-blog-topics,
  .tf-blog-newsletter,
  .tf-pattern-editorial-cta,
  .tf-pattern-conversion-intro,
  .tf-pattern-page-hero,
  .tf-pattern-split-story,
  .tf-pattern-experience-intro,
  .tf-article-next-reading,
  .tf-not-found-card,
  .tf-experience-detail-hero,
  .tf-footer-grid {
    grid-template-columns: 1fr;
  }

  .tf-experiences-trust {
    justify-content: flex-start;
  }

  .tf-experience-filter-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .tf-trust-band,
  .tf-process-grid,
  .tf-experience-grid,
  .tf-about-principles,
  .tf-contact-methods,
  .tf-blog-card-grid,
  .tf-pattern-trust-grid,
  .tf-form-grid,
  .tf-quote-grid,
  .tf-story-grid,
  .tf-experience-support-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tf-experience-care-panel {
    grid-template-columns: 1fr;
  }

  .tf-article-next-actions {
    justify-content: flex-start;
  }

  .tf-home-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tf-about-story {
    padding: clamp(34px, 6vw, 52px);
  }

  .tf-footer-grid {
    gap: 26px;
  }

  .tf-wide-media {
    aspect-ratio: 4 / 3;
  }

  .tf-pattern-page-hero-media,
  .tf-pattern-split-story figure,
  .tf-pattern-experience-intro figure {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  :root {
    --tf-type-hero: clamp(3.4rem, 18vw, 5.2rem);
    --tf-type-page: clamp(2.35rem, 10.4vw, 2.85rem);
    --tf-type-body: 1rem;
  }

  .tf-site-header {
    position: relative;
    padding-inline: 20px;
  }

  .tf-header-inner {
    width: 100%;
    flex-wrap: wrap !important;
    gap: 16px !important;
  }

  .tf-logo {
    width: min(218px, 62vw);
  }

  .tf-mobile-menu-toggle {
    margin-left: auto;
  }

  .tf-mobile-nav.is-open {
    grid-template-columns: 1fr;
  }

  .tf-hero-title {
    font-size: var(--tf-type-hero);
  }

  .tf-premium-hero-bg {
    object-position: 64% center;
    opacity: 0.56;
  }

  .tf-premium-hero::before {
    background:
      linear-gradient(90deg, rgba(17, 20, 14, 0.9), rgba(17, 20, 14, 0.72)),
      linear-gradient(180deg, rgba(17, 20, 14, 0.18), rgba(17, 20, 14, 0.52));
  }

  .tf-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tf-hero-scroll {
    left: auto;
    right: 20px;
    bottom: 18px;
    transform: none;
  }

  .tf-hero-scroll:hover {
    transform: translateY(-2px);
  }

  .tf-button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .tf-pattern-page-hero,
  .tf-pattern-split-story,
  .tf-pattern-experience-intro,
  .tf-pattern-testimonial-row,
  .tf-pattern-legal-note {
    padding: 32px 20px;
  }

  .tf-pattern-page-hero h1,
  .tf-pattern-experience-intro h1 {
    font-size: var(--tf-type-page);
  }

  .tf-pattern-split-story > div {
    padding: 24px;
  }

  .tf-hero-lede,
  .tf-hero-trust {
    overflow-wrap: anywhere;
  }

  .tf-experience-filter-bar {
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 16px;
    padding: 8px;
  }

  .tf-experiences-intro {
    gap: 12px;
    margin-bottom: 10px;
  }

  .tf-all-experiences .tf-section-heading {
    font-size: clamp(1.78rem, 7.1vw, 2.08rem);
    line-height: 1.04;
  }

  .tf-all-experiences .tf-section-lede {
    margin-top: 10px;
    line-height: 1.5;
  }

  .tf-experiences-trust {
    gap: 8px;
  }

  .tf-experiences-trust span {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .tf-experience-filters {
    width: 100%;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .tf-experience-filters::-webkit-scrollbar {
    display: none;
  }

  .tf-experience-filters button {
    flex: 0 0 auto;
    min-height: 34px;
    padding-inline: 12px;
  }

  .tf-experience-count {
    font-size: 0.82rem;
    white-space: normal;
  }

  .tf-experience-detail-image {
    margin-top: 12px;
    aspect-ratio: 16 / 4.6;
  }

  .tf-trust-band,
  .tf-process-grid,
  .tf-experience-grid,
  .tf-about-principles,
  .tf-contact-methods,
  .tf-quote-grid,
  .tf-story-grid,
  .tf-experience-support-strip {
    grid-template-columns: 1fr;
  }

  .tf-experience-support-strip article {
    min-height: 0;
    padding: 20px;
  }

  .tf-experience-care-panel {
    padding: 24px;
  }

  .tf-story-featured {
    grid-row: auto;
    min-height: 0;
  }

  .tf-story-card {
    padding: 26px;
  }

  .tf-home-trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-block: 8px;
    background: var(--tf-stone);
  }

  .tf-home-trust-band .tf-trust-item {
    min-height: 0;
    padding: 14px;
    border-radius: 12px;
  }

  .tf-home-trust-band .tf-trust-item strong {
    font-size: clamp(1.12rem, 5.3vw, 1.42rem);
  }

  .tf-home-trust-band .tf-trust-item p {
    margin-bottom: 0;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .tf-home-experience-grid {
    grid-template-columns: 1fr;
  }

  .tf-home-experience-card .tf-card-label {
    margin-top: 18px;
  }

  .tf-process-section .tf-wide-media {
    aspect-ratio: 16 / 6.4;
    margin-bottom: 16px;
  }

  .tf-process-card {
    padding: 20px;
  }

  .tf-about-hero {
    padding-bottom: 34px;
  }

  .tf-about-hero-copy h1 {
    font-size: var(--tf-type-page);
    line-height: 1.04;
  }

  .tf-about-hero-copy > p:not(.tf-section-eyebrow),
  .tf-about-copy p,
  .tf-about-story p,
  .tf-about-cta p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .tf-about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tf-about-hero-image {
    aspect-ratio: 4 / 3;
  }

  .tf-about-story,
  .tf-about-cta {
    padding: 24px;
    border-radius: 18px;
  }

  .tf-about-principles article {
    min-height: auto;
    padding: 22px;
  }

  .tf-about-mission {
    padding-block: 32px;
  }

  .tf-about-principles {
    padding-bottom: 34px;
  }

  .tf-contact-hero {
    padding-bottom: 42px;
  }

  .tf-contact-hero-copy h1 {
    font-size: var(--tf-type-page);
    line-height: 1.04;
  }

  .tf-contact-hero-copy > p:not(.tf-section-eyebrow),
  .tf-contact-card p,
  .tf-contact-methods p,
  .tf-contact-steps p,
  .tf-contact-note p {
    font-size: 1rem;
  }

  .tf-contact-card,
  .tf-contact-note,
  .tf-intake-section {
    padding: 28px;
    border-radius: 18px;
  }

  .tf-contact-hero-actions,
  .tf-pattern-actions,
  .tf-article-next-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tf-article-support-note,
  .tf-article-next-reading {
    border-radius: 18px;
  }

  .tf-contact-trust-list {
    grid-template-columns: 1fr;
  }

  .tf-intake-copy h2 {
    font-size: var(--tf-type-page);
    line-height: 1.04;
  }

  .tf-intake-copy p {
    font-size: 1rem;
  }

  .tf-form-grid {
    grid-template-columns: 1fr;
  }

  .tf-intake-form .tf-button {
    width: 100%;
  }

  .tf-contact-methods a {
    min-height: auto;
  }

  .tf-blog-hero h1,
  .tf-single-post-hero .wp-block-post-title,
  .tf-experience-detail-title {
    font-size: clamp(1.9rem, 7.6vw, 2.25rem);
    line-height: 1.04;
  }

  .tf-experience-detail-kicker {
    margin-bottom: 8px;
  }

  .tf-experience-detail-lede {
    margin-top: 10px;
    font-size: 0.98rem;
    line-height: 1.5;
    -webkit-line-clamp: 5;
  }

  .tf-blog-hero > p,
  .tf-blog-hero-panel p,
  .tf-blog-feature-card p,
  .tf-blog-mini-card p,
  .tf-blog-newsletter p,
  .tf-blog-topics p,
  .tf-blog-article p,
  .tf-blog-article li {
    font-size: 1rem;
  }

  .tf-blog-feature-card,
  .tf-blog-hero-panel,
  .tf-blog-mini-card,
  .tf-blog-newsletter,
  .tf-blog-topics {
    padding: 28px;
    border-radius: 18px;
  }

  .tf-blog-card-grid,
  .tf-pattern-trust-grid {
    grid-template-columns: 1fr;
  }

  .tf-pattern-editorial-cta,
  .tf-pattern-conversion-intro,
  .tf-pattern-trust-grid {
    padding-inline: 20px;
  }

  .tf-not-found-page {
    padding-block: 52px;
  }

  .tf-not-found-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tf-not-found-panel {
    padding: 22px;
  }

  .tf-blog-post-image {
    aspect-ratio: 4 / 3;
  }

  .tf-premium-footer {
    padding-top: 36px;
  }

  .tf-logo-footer {
    width: min(224px, 70vw);
  }

  .tf-social-links {
    max-width: 210px;
  }

  .tf-footer-bottom {
    margin-top: 28px;
  }

  .tf-disclaimer {
    font-size: 0.72rem;
  }

  .tf-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 16px;
  }

  .tf-cookie-actions {
    justify-content: stretch;
  }

  .tf-cookie-button {
    flex: 1 1 auto;
  }

  .tf-floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 12px;
    border-radius: 18px;
  }

  .tf-floating-cta p {
    text-align: center;
  }

  .tf-floating-cta .tf-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .tf-reveal,
  .tf-stagger > *,
  .tf-scroll-depth,
  .tf-premium-hero[data-hero-motion] .tf-premium-hero-bg,
  .tf-premium-hero[data-hero-motion] .tf-hero-copy,
  .tf-premium-hero[data-hero-motion] .tf-hero-scroll,
  .tf-hero-scroll i::before {
    opacity: 1 !important;
    transform: none !important;
  }

  .tf-hero-atmosphere {
    display: none !important;
  }
}
