/* ── WORDPRESS RESET ── */
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
.wp-block-group, .entry-content, .site, .site-content,
#page, #content, #primary, #main, .hentry,
.site-header, .site-footer, .wp-site-blocks { all: unset; display: block; }
.admin-bar .tf-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .tf-nav { top: 46px; } }

/* ── VARIABLES ── */
:root {
  --black:  #0C0B09;
  --dark:   #141210;
  --coal:   #1C1A16;
  --stone:  #2A2720;
  --gravel: #3E3A31;
  --muted:  #9A9488;
  --light:  #D8D3CA;
  --cream:  #EDE8DE;
  --white:  #F5F2EC;
  --fire:   #E8420A;
  --ember:  #FF6B35;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--fire); }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.tf-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(12,11,9,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,66,10,0.15);
}

.tf-nav-logo { display: flex; align-items: center; text-decoration: none; }
.tf-nav-logo-img {
  width: 110px;
  height: auto;
  filter: none;
  opacity: 0.92;
  display: block;
}

.tf-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.tf-nav-links li { margin: 0; }
.tf-nav-links a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.tf-nav-links a:hover { color: var(--white); }

.tf-nav-right {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white);
  background: rgba(232,66,10,0.15);
  border: 1px solid rgba(232,66,10,0.4);
  padding: 6px 14px 6px 10px;
  backdrop-filter: blur(8px);
}
.tf-nav-dot {
  width: 8px; height: 8px;
  background: var(--fire); border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(232,66,10,.8);
  animation: tf-blink 1.4s ease-in-out infinite;
}
@keyframes tf-blink {
  0%,100%{ opacity:1; box-shadow:0 0 8px rgba(232,66,10,.8); }
  50%{ opacity:.3; box-shadow:0 0 2px rgba(232,66,10,.2); }
}

.tf-nav-hamburger { display: none; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.tf-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 64px;
}
.tf-hero-photo {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 30% 50% at 68% 62%, rgba(232,66,10,0.1) 0%, transparent 60%),
    linear-gradient(180deg, #0A0A0C 0%, #111118 18%, #16161E 35%, #1A1A22 50%, #111116 65%, #0A0A0E 80%, #080808 100%);
}
.tf-hero-photo::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(12,11,9,1) 0%, rgba(12,11,9,0.95) 20%, rgba(12,11,9,0.7) 45%, rgba(12,11,9,0.2) 75%, transparent 100%);
}
/* Slideshow aktiv: dekorative Overlays ausblenden */
.tf-hero-slides ~ .tf-hero-trees,
.tf-hero-slides ~ .tf-hero-stars,
.tf-hero-slides ~ .tf-hero-glow,
.tf-hero-slides ~ .tf-hero-grain { display: none !important; }
/* ═══ VIDEO AKTIV: ALLE DEKORATIVEN OVERLAYS WEG ═══ */
section.tf-hero.has-video .tf-hero-photo,
section.tf-hero.has-video .tf-hero-trees,
section.tf-hero.has-video .tf-hero-stars,
section.tf-hero.has-video .tf-hero-glow,
section.tf-hero.has-video .tf-hero-grain { display:none!important; }
section.tf-hero.has-video .tf-hero-photo::after,
section.tf-hero.has-video .tf-hero-photo::before { content:none!important; display:none!important; }
.tf-hero-trees {
  position: absolute; bottom: 28%; left: 0; right: 0; height: 200px;
  background:
    radial-gradient(ellipse 8% 60% at 5% 100%, #080808 0%, transparent 100%),
    radial-gradient(ellipse 10% 70% at 20% 100%, #080808 0%, transparent 100%),
    radial-gradient(ellipse 12% 80% at 38% 100%, #080808 0%, transparent 100%),
    radial-gradient(ellipse 14% 90% at 55% 100%, #080808 0%, transparent 100%),
    radial-gradient(ellipse 10% 75% at 72% 100%, #080808 0%, transparent 100%),
    radial-gradient(ellipse 12% 80% at 90% 100%, #080808 0%, transparent 100%);
  opacity: 0.9; pointer-events: none;
}
.tf-hero-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 20%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 12%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 7%, rgba(255,255,255,.35) 0%, transparent 100%);
  pointer-events: none;
}
.tf-hero-glow {
  position: absolute; bottom: 26%; left: 0; right: 0; height: 1px;
  box-shadow: 0 0 60px 20px rgba(232,66,10,0.12), 0 0 120px 60px rgba(232,66,10,0.05);
  pointer-events: none;
}
.tf-hero-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.03;
  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)'/%3E%3C/svg%3E");
}
.tf-hero-tags { display: none; }

/* ── HERO WORDMARK ───────────────────────────────────────────── */
.tf-hero-wordmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.tf-hero-wordmark span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 110px);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}
.tf-hero-wordmark-dot {
  font-size: clamp(30px, 4vw, 60px) !important;
  color: rgba(232,66,10,0.25) !important;
  letter-spacing: 0 !important;
}

@media (max-width: 768px) {
  .tf-hero-wordmark { display: none; }
}
.tf-hero-corner { position: absolute; top: 68px; right: 40px; z-index: 2; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.tf-hcs { display: flex; align-items: baseline; gap: 8px; }
.tf-hcs-val { font-family: 'Oxanium', sans-serif; font-size: 26px; font-weight: 700; color: var(--white); letter-spacing: .04em; line-height: 1; }
.tf-hcs-label { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.tf-hcs-sub { font-size: 14px !important; color: var(--muted) !important; }

.tf-hero-content { position: relative; z-index: 2; padding: 0 0 48px; width: 100%; }

.tf-hero-logo-wrap { display: none; }
.tf-hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px; padding-left: 48px;
  font-size: 10px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--fire);
}
.tf-hero-eyebrow-line { width: 28px; height: 1px; background: var(--fire); flex-shrink: 0; }
.tf-hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center; gap: 32px; padding: 0 48px;
}
.tf-hero-desc {
  font-size: 14px; font-weight: 300; line-height: 1.75;
  color: var(--white); max-width: 400px;
  border-left: 2px solid var(--fire); padding-left: 16px; margin: 0;
}
.tf-hero-stats { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.tf-hero-stat { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.tf-hero-stat-val { font-family: 'Oxanium', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: .04em; }
.tf-hero-stat-lbl { font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; white-space: nowrap; }
.tf-hero-stat-divider { width: 1px; height: 28px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.tf-hero-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; flex-shrink: 0; }
.tf-btn-main {
  font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--fire); color: var(--white);
  padding: 13px 30px; text-decoration: none; display: inline-block;
  transition: background .2s, transform .2s; border: none; cursor: pointer;
}
.tf-btn-main:hover { background: #c43408; transform: translateX(-2px); color: var(--white); }
.tf-hero-scroll {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s;
}
.tf-hero-scroll svg { width: 14px; height: 14px; }
.tf-hero-scroll:hover { color: var(--white); }
.tf-hero-scroll-ind { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 3; }
.tf-hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--fire), transparent); margin: 0 auto; animation: tf-scrollpulse 2s ease-in-out infinite; }
@keyframes tf-scrollpulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ══════════════════════════════════════════
   SECTIONS SHARED
══════════════════════════════════════════ */
.tf-section { border-top: 3px solid var(--fire); }
.tf-wrap { padding: 56px 48px; }
.tf-s-label {
  font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--fire); margin-bottom: 6px; display: flex; align-items: center; gap: 10px;
}
.tf-s-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--fire); }
.tf-s-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: .04em; text-transform: uppercase; color: var(--white); line-height: 1; margin: 0;
}
.tf-s-title span { color: var(--fire); }
.tf-s-bar { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.tf-s-more {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s;
}
.tf-s-more:hover { color: var(--fire); }
.tf-no-content { color: var(--muted); font-size: 14px; padding: 40px 0; }
.tf-reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.tf-reveal.tf-in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════════ */
.tf-video-section { background: var(--dark); border-top: 3px solid var(--fire); }
.tf-video-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 3px; background: var(--stone); margin-bottom: 3px; }
.vflex { display: grid; grid-template-columns: 1.7fr 1fr; gap: 3px; background: var(--stone); margin-bottom: 3px; }
.vflex-sidebar { display: flex; flex-direction: column; gap: 3px; }
.vrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.tf-vc { background: var(--coal); overflow: hidden; cursor: pointer; position: relative; }
.tf-vc:hover { background: var(--dark); }
.tf-vc-featured { display: flex; flex-direction: column; }
.tf-vc-thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.tf-vc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.tf-vc:hover .tf-vc-thumb img { transform: scale(1.04); }
.tf-vc-thumb-inner { position: absolute; inset: 0; transition: transform .45s ease; }
.tf-vc:hover .tf-vc-thumb-inner { transform: scale(1.04); }
.bg1 { background: linear-gradient(150deg, #141418 0%, #0C0C10 60%, #0A0A0E 100%); }
.bg2 { background: linear-gradient(150deg, #181820 0%, #10101A 60%, #0A0A12 100%); }
.bg3 { background: linear-gradient(150deg, #201810 0%, #140E08 60%, #100C06 100%); }
.bg4 { background: linear-gradient(150deg, #1A1A14 0%, #10100C 60%, #0C0C08 100%); }
.bg5 { background: linear-gradient(150deg, #141420 0%, #0C0C16 60%, #080810 100%); }
.vt1 { background: linear-gradient(150deg, #141418 0%, #0C0C10 60%, #0A0A0E 100%); }
.vt2 { background: linear-gradient(150deg, #181820 0%, #10101A 60%, #0A0A12 100%); }
.vt3 { background: linear-gradient(150deg, #201810 0%, #140E08 60%, #100C06 100%); }
.tf-vc-thumb-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,14,.75) 0%, transparent 55%); }
.tf-vc-thumb-texture { position: absolute; inset: 0; opacity: .035; background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,1) 3px, rgba(255,255,255,1) 4px); pointer-events: none; }
.tf-vc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,14,.75) 0%, transparent 55%); }
.tf-vc-dur { position: absolute; bottom: 12px; right: 12px; font-family: 'Oxanium', sans-serif; font-size: 12px; color: rgba(255,255,255,.7); z-index: 2; letter-spacing: .06em; }
.tf-vc-play-wrap { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; opacity: 0; transition: opacity .2s; }
.tf-vc:hover .tf-vc-play-wrap { opacity: 1; }
.tf-vc-play { width: 48px; height: 48px; background: rgba(232,66,10,.9); display: flex; align-items: center; justify-content: center; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%); }
.tf-vc-play svg { width: 16px; height: 16px; fill: #fff; margin-left: 3px; }
.tf-vc-new-badge { position: absolute; top: 12px; left: 12px; font-family: 'Barlow', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; background: var(--fire); color: #fff; padding: 3px 10px; z-index: 2; }
.tf-vc-body { padding: 14px 18px 18px; flex: 1; }
.tf-vc-featured .tf-vc-body { padding: 18px 22px 22px; }
.tf-vc-cat { font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--fire); margin-bottom: 5px; }
.tf-vc-title { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: .04em; text-transform: uppercase; color: var(--white); line-height: 1.1; margin: 0 0 7px; }
.tf-vc-featured .tf-vc-title { font-size: 24px; }
.tf-vc-meta { font-size: 11px; color: var(--light); display: flex; gap: 10px; flex-wrap: wrap; }

/* YouTube Feed Override */
.tf-yt-feed-wrap { width: 100%; overflow-x: hidden; }
.tf-yt-feed-wrap #sby, .tf-yt-feed-wrap .sby_feed_container { background: transparent !important; padding: 0 !important; }
.tf-yt-feed-wrap .sby_item { background: var(--coal) !important; border: none !important; }
.tf-yt-feed-wrap .sby_title, .tf-yt-feed-wrap .sby_item_title { font-family: 'Bebas Neue', sans-serif !important; font-size: 16px !important; text-transform: uppercase !important; color: var(--white) !important; }
.tf-yt-feed-wrap .sby_date, .tf-yt-feed-wrap .sby_meta { color: var(--muted) !important; font-size: 11px !important; }
.tf-yt-feed-wrap .sby_header { display: none !important; }
.tf-yt-feed-wrap .sby_play_btn { background: rgba(232,66,10,.88) !important; border-radius: 0 !important; }
.tf-yt-feed-wrap .sby_load_more_btn { font-family: 'Barlow', sans-serif !important; font-size: 12px !important; font-weight: 700 !important; letter-spacing: .18em !important; text-transform: uppercase !important; background: transparent !important; color: var(--fire) !important; border: 1px solid var(--fire) !important; padding: 12px 28px !important; border-radius: 0 !important; }

/* Tabs */
.vtabs { display: flex; gap: 0; margin-bottom: 28px; border-bottom: 1px solid var(--stone); }
.vtab { font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); background: none; border: none; padding: 10px 22px 10px 0; margin-right: 22px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s, border-color .2s; }
.vtab.active { color: var(--fire); border-bottom-color: var(--fire); }

/* ══════════════════════════════════════════
   BLOG
══════════════════════════════════════════ */
.tf-blog-section { background: var(--black); border-top: 3px solid var(--fire); }
.tf-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--stone); }
.tf-bc { background: var(--coal); overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: background .2s; }
.tf-bc:hover { background: var(--dark); }
.tf-bc-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  height: auto;
}
.tf-bc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .5s ease;
  display: block;
  position: absolute;
  inset: 0;
}
.tf-bc:hover .tf-bc-thumb img { transform: scale(1.04); }
.tf-bc-thumb-placeholder { position: absolute; inset: 0; }
.tf-bg1 { background: linear-gradient(150deg, #141418 0%, #0C0C10 100%); }
.tf-bg2 { background: linear-gradient(150deg, #201810 0%, #140E08 100%); }
.tf-bg3 { background: linear-gradient(150deg, #181820 0%, #10101A 100%); }
.tf-bc-yt { position: absolute; top: 12px; left: 0; font-size: 8px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; background: var(--fire); color: #fff; padding: 4px 12px 4px 10px; z-index: 2; }
.tf-bc-num { position: absolute; bottom: -6px; right: 8px; font-family: 'Bebas Neue', sans-serif; font-size: 70px; letter-spacing: .02em; color: rgba(255,255,255,.055); line-height: 1; z-index: 1; pointer-events: none; }
.tf-bc-body { padding: 16px 20px 22px; flex: 1; display: flex; flex-direction: column; position: relative; }
.tf-bc-body::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--fire); transition: width .35s ease; }
.tf-bc:hover .tf-bc-body::before { width: 100%; }
.tf-bc-cat { font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--fire); margin-bottom: 7px; }
.tf-bc-title { font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: .04em; text-transform: uppercase; color: var(--white); line-height: 1.1; flex: 1; margin: 0 0 12px; }
.tf-bc-title a { color: inherit; text-decoration: none; }
.tf-bc-excerpt { font-size: 12px; font-weight: 300; color: var(--light); line-height: 1.65; margin-bottom: 14px; }
.tf-bc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--stone); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.tf-bc-arrow { color: var(--fire); opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s; font-size: 14px; }
.tf-bc:hover .tf-bc-arrow { opacity: 1; transform: translateX(0); }
.tf-bc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.tf-bc-tag { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--stone); padding: 3px 8px; text-decoration: none; transition: all .15s; }
.tf-bc-tag:hover { color: var(--fire); border-color: var(--fire); }

/* Tag Filter */
.tf-tag-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tf-tag-btn { font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); background: var(--coal); border: 1px solid var(--stone); padding: 8px 18px; text-decoration: none; transition: all .18s; cursor: pointer; white-space: nowrap; }
.tf-tag-btn:hover { color: var(--white); border-color: var(--gravel); }
.tf-tag-btn.active { background: var(--fire); color: #fff; border-color: var(--fire); }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.tf-about-section { background: var(--coal); border-top: 3px solid var(--fire); }
.tf-about-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.tf-about-visual { background: linear-gradient(145deg, #1A1A1E 0%, #111116 50%, #1E1E24 100%); position: relative; overflow: hidden; }
.tf-about-visual-pattern { position: absolute; inset: 0; opacity: .04; background-image: repeating-linear-gradient(-55deg, rgba(255,255,255,1) 0px, rgba(255,255,255,1) 1px, transparent 1px, transparent 24px); }
.tf-about-terrain { position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: radial-gradient(ellipse 20% 100% at 10% 100%, #111116 0%, transparent 100%), radial-gradient(ellipse 25% 120% at 50% 100%, #111116 0%, transparent 100%), radial-gradient(ellipse 20% 100% at 90% 100%, #111116 0%, transparent 100%); opacity: .7; pointer-events: none; }
.tf-about-visual-big { position: absolute; top: 24px; right: 16px; text-align: right; font-family: 'Bebas Neue', sans-serif; font-size: 68px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.055); line-height: .9; }
.tf-about-visual-name { position: absolute; bottom: 32px; left: 32px; }
.tf-about-since { font-size: 9px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--fire); margin-bottom: 8px; }
.tf-about-name-text { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: .06em; color: var(--white); line-height: .9; }
.tf-about-name-text span { color: var(--fire); }
.tf-about-sub-text { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.tf-about-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.tf-about-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,11,9,.9) 0%, rgba(12,11,9,.2) 60%, transparent 100%); }
.tf-about-text-col { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.tf-about-lead { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: .04em; text-transform: uppercase; color: var(--white); line-height: .95; margin-bottom: 24px; }
.tf-about-dim { color: var(--fire); display: block; opacity: 0.5; }
.tf-about-accent { color: var(--fire); display: block; }
.tf-about-p { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--white); margin-bottom: 12px; }
.tf-about-p strong { font-weight: 600; color: var(--light); }
.tf-about-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 22px; }
.tf-atag { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--stone); padding: 5px 12px; transition: all .15s; cursor: default; }
.tf-atag:hover { color: var(--fire); border-color: var(--fire); }

/* ══════════════════════════════════════════
   PODCAST
══════════════════════════════════════════ */
.tf-podcast-section { background: var(--dark); border-top: 3px solid var(--fire); padding: 56px 48px; position: relative; overflow: hidden; }
.tf-podcast-texture { position: absolute; inset: 0; opacity: .025; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,1) 0px, rgba(255,255,255,1) 1px, transparent 1px, transparent 28px); pointer-events: none; }
.tf-podcast-bg-text { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-family: 'Bebas Neue', sans-serif; font-size: 160px; letter-spacing: .02em; color: rgba(255,255,255,.018); line-height: 1; pointer-events: none; white-space: nowrap; }
.tf-podcast-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; max-width: 1280px; margin: 0 auto; }
.tf-podcast-ep-label { font-size: 9px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--fire); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.tf-podcast-ep-label::before { content:''; display:block; width:20px; height:1px; background:var(--fire); }
.tf-podcast-big { margin-bottom: 16px; }
.tf-podcast-title-main { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 7vw, 88px); letter-spacing: .04em; text-transform: uppercase; color: var(--white); line-height: .9; display: block; }
.tf-podcast-meta { font-size: 14px; font-weight: 300; color: var(--white); line-height: 1.65; max-width: 380px; margin-bottom: 24px; }
.tf-podcast-nums { display: flex; gap: 36px; }
.tf-pn-val { font-family: 'Oxanium', sans-serif; font-size: 30px; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: .04em; }
.tf-pn-val b { color: var(--fire); }
.tf-pn-label { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.tf-podcast-ext-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--fire); text-decoration: none; transition: gap .2s; }
.tf-podcast-ext-link:hover { gap: 10px; }
.tf-podcast-player-col { display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.tf-podcast-player-col iframe { display: block; width: 100%; border: none; background: transparent; }
.tf-podcast-player-hint { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gravel); }
.tf-podcast-ep-name { font-size: 12px; font-weight: 500; color: var(--light); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; line-height: 1.4; }
.tf-podcast-ep-badge { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--fire); color: #fff; padding: 2px 8px; white-space: nowrap; flex-shrink: 0; }
.tf-podcast-play-btn { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.tf-podcast-play-core { width: 80px; height: 80px; background: var(--fire); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 3; transition: transform .25s, background .25s; box-shadow: 0 0 30px rgba(232,66,10,.6), 0 0 60px rgba(232,66,10,.3); }
.tf-podcast-play-btn:hover .tf-podcast-play-core { transform: scale(1.08); background: #ff5522; }
.tf-podcast-play-core svg { width: 32px; height: 32px; margin-left: 4px; }
.tf-podcast-play-ring { position: absolute; border-radius: 50%; border: 1.5px solid var(--fire); top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1); opacity: 0; }
.tf-podcast-play-ring-1 { width: 100px; height: 100px; animation: tf-ring 2.4s ease-out infinite; }
.tf-podcast-play-ring-2 { width: 120px; height: 120px; animation: tf-ring 2.4s ease-out .6s infinite; }
.tf-podcast-play-ring-3 { width: 140px; height: 140px; animation: tf-ring 2.4s ease-out 1.2s infinite; }
@keyframes tf-ring { 0% { transform: translate(-50%,-50%) scale(.6); opacity: .7; } 100% { transform: translate(-50%,-50%) scale(1.4); opacity: 0; } }
.tf-podcast-play-label { font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); position: relative; z-index: 3; transition: color .2s; }
.tf-podcast-play-btn:hover .tf-podcast-play-label { color: var(--fire); }

/* ══════════════════════════════════════════
   SPONSORS
══════════════════════════════════════════ */
.tf-sponsors { background: var(--black); border-top: 3px solid var(--fire); padding: 26px 48px; display: flex; align-items: center; gap: 32px; }
.tf-sp-label { font-size: 9px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--gravel); white-space: nowrap; flex-shrink: 0; }
.tf-sp-divider { width: 1px; height: 20px; background: var(--stone); flex-shrink: 0; }
.tf-sp-row { display: flex; flex: 1; }
.tf-sp-item { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: var(--gravel); padding: 0 24px; border-right: 1px solid var(--stone); transition: color .2s; cursor: default; }
.tf-sp-item:first-child { padding-left: 0; }
.tf-sp-item:last-child { border-right: none; }
.tf-sp-item:hover { color: var(--light); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.tf-footer { background: var(--coal); border-top: 1px solid rgba(255,255,255,.04); }
.tf-footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; border-bottom: 1px solid var(--stone); }
.tf-fc { padding: 44px 36px; border-right: 1px solid var(--stone); }
.tf-fc:last-child { border-right: none; }
.tf-f-logo { display: block; text-decoration: none; margin-bottom: 12px; }
.tf-f-logo-img { height: 36px; filter: none; opacity: .8; }
.tf-f-sub { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.7; }
.tf-fc-head { font-size: 9px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gravel); margin-bottom: 18px; }
.tf-fc-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tf-fc-links a { font-size: 13px; font-weight: 400; color: var(--muted); text-decoration: none; transition: color .2s; }
.tf-fc-links a:hover { color: var(--fire); }
.tf-footer-bar { padding: 16px 36px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.tf-f-copy { font-size: 10px; font-weight: 400; letter-spacing: .14em; color: var(--gravel); text-transform: uppercase; }
.tf-f-legal { display: flex; gap: 20px; }
.tf-f-legal a, .tf-f-legal-links a { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gravel); text-decoration: none; transition: color .2s; }
.tf-f-legal-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }

/* ══════════════════════════════════════════
   SINGLE POST
══════════════════════════════════════════ */
.tf-single-wrap { padding: 80px 48px 80px; display: flex; justify-content: center; }
.tf-single { width: 100%; max-width: 780px; }
.tf-single-cat { font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--fire); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.tf-single-cat::before { content: ''; display: block; width: 20px; height: 1px; background: var(--fire); }
.tf-single-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 58px); letter-spacing: .03em; text-transform: uppercase; color: var(--white); line-height: 1; margin: 0 0 20px; }
.tf-single-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--stone); }
.tf-single-meta-dot { color: var(--fire); }
.tf-single-video { width: 100%; aspect-ratio: 16/9; margin-bottom: 40px; background: var(--coal); }
.tf-single-video iframe { width: 100%; height: 100%; border: none; display: block; }
.tf-single-thumb { margin-bottom: 40px; }
.tf-single-thumb img { width: 100%; height: auto; display: block; }
.tf-single-body { font-size: 17px; font-weight: 300; line-height: 1.85; color: var(--white); }
.tf-single-body p { margin-bottom: 24px; }
.tf-single-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: .04em; text-transform: uppercase; color: var(--white); margin: 40px 0 16px; padding-top: 8px; border-top: 2px solid var(--fire); display: inline-block; }
.tf-single-body a { color: var(--fire); text-decoration: none; border-bottom: 1px solid rgba(232,66,10,.3); }
.tf-single-body strong { font-weight: 600; color: var(--white); }
.tf-single-body ul, .tf-single-body ol { padding-left: 24px; margin-bottom: 24px; }
.tf-single-body li { margin-bottom: 8px; }
.tf-from-yt-badge { display: none !important; }
.tf-yt-embed { aspect-ratio: 16/9; width: 100%; margin-bottom: 32px; }
.tf-yt-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════════
   ARCHIVE
══════════════════════════════════════════ */
.tf-archive-wrap { padding: 80px 48px 64px; max-width: 1280px; margin: 0 auto; }
.tf-archive-header { margin-bottom: 36px; }
.tf-archive-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 3.5vw, 44px); letter-spacing: .04em; text-transform: uppercase; color: var(--white); line-height: 1; margin: 6px 0 0; }
.tf-archive-title span { color: var(--fire); }
.tf-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--stone); margin-bottom: 40px; }
.tf-pagination { display: flex; justify-content: center; gap: 6px; padding-top: 16px; }
.tf-pagination .page-numbers { font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--muted); background: var(--coal); border: 1px solid var(--stone); padding: 8px 16px; text-decoration: none; transition: all .2s; }
.tf-pagination .page-numbers:hover, .tf-pagination .page-numbers.current { background: var(--fire); color: #fff; border-color: var(--fire); }

/* ══════════════════════════════════════════
   TABLET  769–1024px
══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .tf-nav { padding: 0 24px; }
  .tf-nav-links { gap: 16px; }
  .tf-nav-links a { font-size: 10px; }
  .tf-nav-right { display: none; }
  .tf-wrap { padding: 48px 24px; }
  .tf-hero-bottom { padding: 0 24px; gap: 16px; }
  .vflex { grid-template-columns: 1fr; }
  .vrow { grid-template-columns: 1fr 1fr; }
  .tf-blog-grid, .tf-archive-grid { grid-template-columns: 1fr 1fr; }
  .tf-about-inner { gap: 24px; }
  .tf-about-text-col { padding: 40px 24px; }
  .tf-podcast-inner { grid-template-columns: 1fr; gap: 28px; }
  .tf-footer-grid { grid-template-columns: 1fr 1fr; }
  .tf-fc { border-right: none; border-bottom: 1px solid var(--stone); }
  .tf-archive-wrap { padding: 60px 24px; }
  .tf-single-wrap { padding: 60px 24px; }
}

/* ══════════════════════════════════════════
   MOBILE  ≤ 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* NAV */
  .tf-nav { padding: 0 16px; height: 56px; }
  .tf-nav-links { display: none !important; position: fixed !important; transform: none !important; top: 56px !important; left: 0 !important; right: 0 !important; width: 100% !important; flex-direction: column !important; background: #0C0B09 !important; border-bottom: 2px solid #E8420A !important; z-index: 999 !important; padding: 0 !important; gap: 0 !important; }
  .tf-nav-right { display: none !important; }
  .tf-nav-hamburger { display: flex !important; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 1001; }
  .tf-nav-hamburger span { display: block; width: 22px; height: 2px; background: #F5F2EC; border-radius: 1px; transition: all .25s ease; transform-origin: center; }
  .tf-nav-mobile-open .tf-nav-links { display: flex !important; }
  .tf-nav-mobile-open .tf-nav-links li { border-bottom: 1px solid #2A2720; margin: 0; }
  .tf-nav-mobile-open .tf-nav-links li:last-child { border-bottom: none; }
  .tf-nav-mobile-open .tf-nav-links a { display: block !important; padding: 16px 20px !important; font-size: 15px !important; font-weight: 600 !important; color: #C8C2B6 !important; text-transform: uppercase !important; letter-spacing: .1em !important; }

  /* HERO */
  .tf-hero { height: auto !important; min-height: 100svh; padding-top: 56px; }
  .tf-hero-tags, .tf-hero-corner { display: none !important; }
  .tf-hero-content { padding: 0 0 36px; }
  .tf-hero-eyebrow { padding: 20px 16px 0; font-size: 9px; margin-bottom: 10px; }
  .tf-hero-bottom { display: flex !important; flex-direction: column !important; gap: 18px; padding: 0 16px !important; align-items: flex-start; grid-template-columns: unset !important; }
  .tf-hero-desc { font-size: 14px; max-width: 100%; }
  .tf-hero-stats { display: flex !important; flex-direction: row !important; width: 100%; gap: 0; }
  .tf-hero-stat { flex: 1; padding: 0 8px; text-align: center; }
  .tf-hero-stat:first-child { text-align: left; padding-left: 0; }
  .tf-hero-stat-val { font-size: 18px; }
  .tf-hero-stat-lbl { font-size: 8px; }
  .tf-hero-cta { flex-direction: row; gap: 12px; flex-wrap: wrap; }
  .tf-btn-main { font-size: 11px; padding: 11px 20px; }

  /* SECTIONS */
  .tf-wrap { padding: 32px 16px !important; }
  .tf-s-bar { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 16px; }
  .tf-s-title { font-size: 30px; }

  /* VIDEO */
  .vflex { display: flex !important; flex-direction: column !important; background: transparent !important; gap: 2px !important; grid-template-columns: unset !important; }
  .vflex-sidebar { display: flex !important; flex-direction: column !important; gap: 2px !important; }
  .vrow { display: flex !important; flex-direction: column !important; gap: 2px !important; grid-template-columns: unset !important; }
  .tf-video-grid { display: flex !important; flex-direction: column !important; background: transparent !important; gap: 2px !important; grid-template-columns: unset !important; }
  .tf-vc, .tf-vc-featured { width: 100% !important; }
  .tf-vc-title { font-size: 16px !important; }
  .tf-vc-body { padding: 12px 14px 16px !important; }

  /* BLOG */
  .tf-blog-grid { display: flex !important; flex-direction: column !important; background: transparent !important; gap: 2px !important; grid-template-columns: unset !important; }
  .tf-bc { width: 100% !important; }
  .tf-bc-thumb { aspect-ratio: 16/9; height: auto; }
  .tf-bc-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .tf-bc-title { font-size: 17px; }
  .tf-bc-num { font-size: 44px; }
  .tf-tag-filter { flex-wrap: nowrap !important; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .tf-tag-filter::-webkit-scrollbar { display: none; }
  .tf-tag-btn { flex-shrink: 0; font-size: 10px; padding: 7px 14px; }

  /* ÜBER MICH */
  .tf-about-inner { display: flex !important; flex-direction: column !important; grid-template-columns: unset !important; min-height: unset !important; }
  .tf-about-visual { width: 100% !important; height: 55vw !important; min-height: 220px; max-height: 320px; flex-shrink: 0; }
  .tf-about-visual-big { font-size: 40px; top: 10px; right: 8px; }
  .tf-about-visual-name { bottom: 16px; left: 16px; }
  .tf-about-name-text { font-size: 32px; }
  .tf-about-text-col { width: 100% !important; padding: 24px 16px 32px !important; }
  .tf-about-lead { font-size: 30px; margin-bottom: 14px; }
  .tf-about-p { font-size: 14px; }
  .tf-about-tags { margin-top: 14px; }

  /* PODCAST */
  .tf-podcast-section { padding: 32px 16px; }
  .tf-podcast-inner { display: flex !important; flex-direction: column !important; grid-template-columns: unset !important; gap: 24px; }
  .tf-podcast-bg-text { display: none !important; }
  .tf-podcast-title-main { font-size: 44px !important; }
  .tf-podcast-meta { max-width: 100%; }
  .tf-podcast-player-col { width: 100%; }
  .tf-podcast-player-col iframe { width: 100% !important; height: 152px; }

  /* SPONSORS */
  .tf-sponsors { flex-wrap: wrap; padding: 16px; gap: 8px; }
  .tf-sp-divider { display: none; }
  .tf-sp-row { flex-wrap: wrap; width: 100%; }
  .tf-sp-item { font-size: 11px; padding: 7px 12px; border-right: none; border-bottom: 1px solid #2A2720; }

  /* FOOTER */
  .tf-footer-grid { display: flex !important; flex-direction: column !important; grid-template-columns: unset !important; }
  .tf-fc { padding: 24px 16px !important; border-right: none !important; border-bottom: 1px solid #2A2720 !important; }
  .tf-fc:last-child { border-bottom: none !important; }
  .tf-footer-bar { flex-direction: column; gap: 8px; padding: 14px 16px; text-align: center; }

  /* SINGLE */
  .tf-single-wrap { padding: 36px 16px 48px !important; display: block !important; }
  .tf-single-title { font-size: 26px !important; }
  .tf-single-body { font-size: 15px !important; }
  .tf-single-body h2 { font-size: 22px; }

  /* ARCHIV */
  .tf-archive-wrap { padding: 36px 16px 40px !important; }
  .tf-archive-grid { display: flex !important; flex-direction: column !important; background: transparent !important; gap: 2px !important; grid-template-columns: unset !important; }
  .tf-archive-title { font-size: 30px; }
  .tf-pagination { flex-wrap: wrap; justify-content: center; gap: 4px; }
  .tf-pagination .page-numbers { padding: 7px 12px; font-size: 11px; }
}

/* ── HERO VIDEO BACKGROUND ───────────────────────────────────── */
.tf-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* YouTube iframe: Cover-Verhalten wie background-size:cover */
.tf-hero-video-wrap #tf-hero-yt-player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Mindestgröße damit der 16:9 Iframe das ganze Div füllt */
  width:  177.78vh; /* 16/9 * 100vh */
  height: 100vh;
  min-width:  100%;
  min-height: 56.25vw; /* 9/16 * 100vw */
  pointer-events: none;
}

.tf-hero-video-wrap #tf-hero-yt-player iframe {
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
}

/* Dunkler Overlay über dem Video */
.tf-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,11,9,0.15) 0%,
    rgba(12,11,9,0.05) 40%,
    rgba(12,11,9,0.3)  75%,
    rgba(12,11,9,0.75) 100%
  );
  pointer-events: none;
  z-index: 1;
}
/* ── FOOTER CREDIT ───────────────────────────────────────────── */
.tf-footer-credit {
  background: var(--black);
  border-top: 1px solid var(--stone);
  padding: 10px 36px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gravel);
  text-align: center;
}
.tf-footer-credit a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.tf-footer-credit a:hover { color: var(--fire); }

/* ── ZURÜCK INLINE ───────────────────────────────────────────── */
.tf-archive-wrap,
.tf-single-wrap,
.tf-page-wrap {
  padding-top: 96px !important;
}
.tf-back-inline,
.tf-back-inline:link,
.tf-back-inline:visited {
  font-family: 'Barlow', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  color: var(--light) !important;
  text-decoration: none !important;
  transition: color .2s;
  display: inline-block;
  margin-bottom: 16px;
}
.tf-back-inline:hover { color: var(--fire) !important; }

/* ── STATISCHE SEITEN (Impressum, Datenschutz etc.) ──────────── */
.tf-page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 48px 80px;
}
.tf-page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--fire);
  display: inline-block;
}
.tf-page-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--light);
}
.tf-page-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin: 36px 0 12px;
}
.tf-page-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 24px 0 8px;
}
.tf-page-body p { margin-bottom: 16px; }
.tf-page-body a { color: var(--fire); text-decoration: none; }
.tf-page-body a:hover { text-decoration: underline; }
.tf-page-body strong { font-weight: 600; color: var(--white); }

@media (max-width: 768px) {
  .tf-back-btn-wrap { padding: 72px 16px 0; }
  .tf-page-wrap { padding: 24px 16px 60px; }
}

/* ── KONTAKT SEKTION ─────────────────────────────────────────── */
.tf-contact-section { background: var(--coal); border-top: 3px solid var(--fire); }

.tf-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.tf-contact-desc {
  font-size: 14px; font-weight: 300; color: var(--white);
  line-height: 1.8; margin: 20px 0 28px;
  border-left: 2px solid var(--fire); padding-left: 16px;
}

.tf-contact-info { display: flex; flex-direction: column; gap: 12px; }
.tf-contact-info-item { display: flex; flex-direction: column; gap: 3px; }
.tf-contact-info-label {
  font-size: 9px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
}
.tf-contact-info-val {
  font-size: 14px; font-weight: 500; color: var(--white);
  text-decoration: none; transition: color .2s;
}
a.tf-contact-info-val:hover { color: var(--fire); }

/* Formular */
.tf-contact-form-wrap {
  background: var(--dark);
  border: 1px solid var(--stone);
  padding: 32px;
}

.tf-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.tf-cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.tf-cf-group:last-child { margin-bottom: 0; }

.tf-cf-label {
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}

.tf-cf-input {
  background: var(--coal);
  border: 1px solid var(--stone);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  width: 100%;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.tf-cf-input:focus { border-color: var(--fire); }
.tf-cf-input::placeholder { color: var(--gravel); }

.tf-cf-textarea { resize: vertical; min-height: 130px; }

.tf-cf-footer {
  display: flex; align-items: center; gap: 16px;
  margin-top: 20px; flex-wrap: wrap;
}

.tf-cf-btn { flex-shrink: 0; }
.tf-cf-btn:disabled { opacity: .6; pointer-events: none; }

.tf-cf-status {
  font-size: 13px; font-weight: 500;
  transition: all .3s;
}
.tf-cf-status.ok { color: #22c55e; }
.tf-cf-status.err { color: #ef4444; }

@media (max-width: 900px) {
  .tf-contact-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .tf-contact-form-wrap { padding: 20px 16px; }
  .tf-cf-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── HERO PHOTO SLIDESHOW ────────────────────────────────────── */
.tf-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.tf-hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity;
}
.tf-hero-slide.active {
  opacity: 1;
  animation: tf-kenburns 8s ease-out forwards;
}
.tf-hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
/* Sanfter Gradient unten für Lesbarkeit des Textes */
.tf-hero-slides::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(12,11,9,0.92) 0%, rgba(12,11,9,0.6) 30%, rgba(12,11,9,0.2) 65%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
@keyframes tf-kenburns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}
