@import url(https://fonts.bunny.net/css?family=permanent-marker:400);
@import url(https://fonts.bunny.net/css2?family=Caveat:wght@400&display=swap);

/* =====================================================
   GP RESET — Abstände entfernen
   ===================================================== */
.site-content,
.content-area,
#primary,
.site-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* GP Content-Wrapper Gap entfernen */
.home .site-main,
.home .content-area,
.home .site-content,
.home .inside-article,
.home .entry-content {
  padding: 0 !important;
  margin: 0 !important;
}

.home .inside-article {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
  }

.entry-content:not(:first-child) {
    margin-top: 0 !important;
  }

/* Seitentitel ausblenden */
.entry-header {
    display: none !important;
  }

/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
  --t-brown:    #3B2A15;
  --t-brown-2:  #5A4226;
  --t-sage:     #486851;
  --t-cream:    #F1EAC8;
  --t-cream-2:  #E8DFB7;
  --t-blue:     #B0C3E1;
  --t-orange:   #E55B31;
  --t-gold:     #EDCC61;

  --container:    1200px;
  --section-py:   112px;
  --section-px:   48px;
  --radius-card:  12px;
  --radius-pill:  999px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.33, 1.18, 0.48, 1);
}


/* =====================================================
   SCROLL REVEAL (.r) — Klasse .in per JS / reduced motion
   ===================================================== */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.r.in {
  opacity: 1;
  transform: none;
}

.r-d1 { transition-delay: 0.1s; }
.r-d2 { transition-delay: 0.2s; }
.r-d3 { transition-delay: 0.3s; }
.r-d4 { transition-delay: 0.4s; }
.r-d5 { transition-delay: 0.5s; }
.r-d6 { transition-delay: 0.6s; }

@media (scripting: none) {
  .r {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .r {
    opacity: 1;
    transform: none;
  }
}


/* =====================================================
   BASE RESET (scoped to .tk-page)
   ===================================================== */
.tk-page *,
.tk-page *::before,
.tk-page *::after {
  box-sizing: border-box;
}

.tk-page {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  color: var(--t-brown);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tk-page a {
  color: var(--t-orange);
}

.tk-page img,
.tk-page svg {
  display: block;
  max-width: 100%;
}

.tk-page h1,
.tk-page h2,
.tk-page h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}

/* Permanent Marker Overrides — Spezifität erhöhen */
.tk-page .tk-masematte__h2,
.tk-page .tk-hero__accent-text,
.tk-page .tk-about__quote,
.tk-page .tk-services__h2-accent,
.tk-page .tk-process__accent,
.tk-page .tk-testimonials__accent,
.tk-page .tk-cta__accent,
.tk-page .tk-masematte__hand {
  font-family: 'Permanent Marker', handwriting;
}


/* =====================================================
   GLOBAL UTILITIES
   ===================================================== */

/* ---- Foto-Platzhalter ----------------------------- */
.tk-page .photo-ph {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18), transparent 50%),
    linear-gradient(135deg, var(--t-sage) 0%, var(--t-brown-2) 100%);
  position: relative;
  overflow: hidden;
}
.tk-page .photo-ph::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-align: center;
  padding: 0 16px;
}
.tk-page .photo-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 14px,
    rgba(255,255,255,0.04) 14px 15px
  );
  pointer-events: none;
}

/* ---- Marquee -------------------------------------- */
@keyframes tk-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}
.tk-marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: tk-marquee 38s linear infinite;
  white-space: nowrap;
}
.tk-marquee:hover .tk-marquee-track {
  animation-play-state: paused;
}

/* ---- Nav-Link Underline --------------------------- */
.tk-nav-link {
  position: relative;
}
.tk-nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1.5px;
  background: var(--t-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.tk-nav-link:hover::after {
  transform: scaleX(1);
}

/* Kontakt: Unterstrich dauerhaft in Marken-Gelb */
.tk-header__kontakt.tk-nav-link::after {
  background: #EDCC61;
  transform: scaleX(1);
}


/* =====================================================
   EYEBROW LABEL
   ===================================================== */
.tk-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 500;
  line-height: 1;
}
.tk-eyebrow--gold  { color: var(--t-gold); }
.tk-eyebrow--sage  { color: var(--t-sage); }
.tk-eyebrow--brown { color: var(--t-brown); }
.tk-eyebrow--cream { color: var(--t-cream); }


/* =====================================================
   PILL
   ===================================================== */
.tk-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--t-cream-2);
  color: var(--t-brown);
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid rgba(59,42,21,0.15);
  line-height: 1;
}


/* =====================================================
   BUTTON
   ===================================================== */
.tk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0;
  /* rechts etwas mehr Luft für den absolut positionierten Pfeil */
  padding: 13px 40px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.tk-btn--orange {
  background: var(--t-orange);
  color: var(--t-cream) !important;
  border: 2px solid rgba(241, 234, 200, 0.45);
}
.tk-btn--orange:hover {
  background: #d44d28;
  border-color: rgba(241, 234, 200, 0.75);
  color: var(--t-cream) !important;
}
.tk-btn--outline-cream {
  background: transparent;
  color: var(--t-cream) !important;
  border-color: var(--t-cream);
}
.tk-btn--outline-cream:hover {
  background: rgba(241,234,200,0.12);
  color: var(--t-cream) !important;
}

/* Pfeil rechts im Button – absolut, Text bleibt zentriert (inkl. per JS ergänzt) */
.tk-btn__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  display: inline-block;
  opacity: 0;
  transform: translate(-6px, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.tk-btn:hover .tk-btn__arrow,
.tk-btn:focus-visible .tk-btn__arrow {
  opacity: 1;
  transform: translate(0, -50%);
}

.tk-btn:disabled .tk-btn__arrow,
.tk-btn[disabled] .tk-btn__arrow {
  opacity: 0;
  transform: translate(-6px, -50%);
}


/* =====================================================
   HEADER
   ===================================================== */
.tk-header {
  background: var(--t-brown);
  padding: 20px calc((100% - var(--container)) / 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.tk-header--scrolled {
  background: rgba(59, 42, 21, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(59, 42, 21, 0.15);
  padding-top: 12px;
  padding-bottom: 12px;
}

.tk-header--scrolled .tk-header__link {
    color: var(--t-cream) !important;
}

.tk-header--scrolled .tk-header__logo text:first-child {
    fill: var(--t-cream);
}

.tk-header__arrow {
    display: inline-block;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.tk-header__kontakt {
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  flex-shrink: 0;
}

/* Pfeil nicht in der Linkbreite – Unterstrich nur unter „Kontakt“ */
.tk-header__kontakt .tk-header__arrow {
  position: absolute;
  left: 100%;
  margin-left: 0.2em;
  top: 50%;
  transform: translate(-6px, -50%);
}

.tk-header__kontakt:hover .tk-header__arrow {
  opacity: 1;
  transform: translate(2px, -50%);
}

.tk-header__logo {
  display: inline-flex;
  text-decoration: none !important;
  flex-shrink: 0;
}

.tk-header__nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tk-header__link {
  color: var(--t-cream) !important;
  text-decoration: none !important;
  font-weight: 500;
}

.tk-header__cta {
  background: var(--t-orange);
  color: var(--t-cream) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.tk-header__cta:hover {
  background: #d44d28;
}


/* Homepage-Sektionen — Hintergrundfolge (DOM-Reihenfolge im HTML anpassbar):
   Hero Braun | Über Creme | Angebote Sage | Ablauf Braun | Stimmen Creme | Masematte Blau | CTA Sage | Footer Braun */

/* =====================================================
   HERO
   ===================================================== */
.tk-hero {
  background: var(--t-brown);
  color: var(--t-cream);
  position: relative;
  /* Nicht nur Inhaltshöhe: bei kurzem Copy bleibt die Sektion sonst am alten min-height kleben (z. B. 620px). */
  min-height: clamp(700px, 82vh, 960px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.tk-hero__photo {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.tk-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    var(--t-brown) 0%,
    rgba(59,42,21,0.85) 55%,
    rgba(59,42,21,0.2) 100%
  );
  pointer-events: none;
}

.tk-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  /* 8pt-Raster: Hero padding-bottom 64px */
  padding-bottom: 64px;
}

.tk-hero__h1 {
  margin: 0;
  /* Abstand Headline→Lede: siehe .tk-hero__lede { margin-top: 32px } */
  padding-bottom: 0;
  font-weight: 700;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--t-cream);
  max-width: 680px;
}

/* Wrapper um Headline — Eyebrow→Headline 16px (mit .tk-hero__headline im Markup) */
.tk-hero__headline {
  margin-bottom: 1rem;
}

.tk-hero__accent-text {
  font-family: 'Permanent Marker', handwriting;
  font-style: normal;
  color: var(--t-orange);
  font-weight: 400;
  font-size: .8em;
  display: inline-block;
  transform: rotate(-2deg);
}

.tk-hero__lede {
  /* Headline→Lede: 32px (8pt-Raster) */
  margin: 32px 0 0;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  opacity: 1;
  max-width: 560px;
  color: var(--t-cream);
}

/* Etwas mehr Platz, damit „… ändern. hier!“ wie im Ziel-Screenshot oft in einer Zeile bleibt */
.tk-hero__lede:has(.tk-hero__hier) {
  max-width: min(640px, 100%);
}

/* Optional: Lede + „hier!“ in einer Zeile — bevorzugt: „hier!“ im <p> (siehe rollbacks/tk-hero-lede-hier.snippet.html) */
.tk-hero__lede-wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 10px 16px;
  /* wie .tk-hero__lede: 16px unter Headline */
  margin-top: 1rem;
  max-width: 720px;
}

.tk-hero__lede-wrap .tk-hero__lede {
  margin: 0;
  flex: 0 1 auto;
  min-width: 0;
}

@media (max-width: 640px) {
  .tk-hero__lede-wrap {
    flex-wrap: wrap;
  }
}

/* Caveat: nur Desktop (≥860px) — mobil wie Pfeil ausgeblendet */
@media (min-width: 860px) {
  .tk-hero .tk-hero__lede .tk-hero__hier,
  .tk-hero__inner .tk-hero__lede .tk-hero__hier,
  .tk-hero .tk-hero__hier,
  .tk-hero__inner .tk-hero__hier {
    font-family: 'Caveat', cursive !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 1.15 !important;
    color: var(--t-cream) !important;
    letter-spacing: 0.01em;
    transform: rotate(-7deg) translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    vertical-align: 0.12em;
    margin-left: 0.12em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }

  .tk-hero__lede-wrap .tk-hero__hier {
    flex-shrink: 0;
    margin-left: 0;
    padding-bottom: 2px;
  }
}

/* „hier!“ neben Pfeilstart: vor JS (nur Hero mit data-tk-hero-arrow) ausblenden — .is-placed per draw() */
@media (min-width: 860px) {
  .tk-hero[data-tk-hero-arrow] .tk-hero__hier {
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: none !important;
  }

  .tk-hero[data-tk-hero-arrow] .tk-hero__hier.is-placed {
    opacity: 1 !important;
    filter: none !important;
  }
}

@media (min-width: 860px) and (prefers-reduced-motion: reduce) {
  .tk-hero[data-tk-hero-arrow] .tk-hero__hier {
    opacity: 1 !important;
  }
}

@media (max-width: 860px) {
  .tk-hero .tk-hero__hier,
  .tk-hero__inner .tk-hero__hier,
  .tk-hero .tk-hero__lede .tk-hero__hier,
  .tk-hero__inner .tk-hero__lede .tk-hero__hier,
  .tk-hero__lede-wrap .tk-hero__hier,
  .tk-hero__arrow-svg {
    display: none !important;
  }
}

/* Altes PNG-Markup (Snippet tk-hero-arrow): nicht mehr verwenden — ausgeblendet */
.tk-hero .tk-hero__arrow {
  display: none !important;
}

.tk-hero__gold {
  color: var(--t-gold);
}

.tk-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  /* Lede→Button: 48px (8pt-Raster) */
  margin-top: 48px;
  flex-wrap: wrap;
}

/* Hero: gebogener Pfeil als SVG (custom.js) — nicht von Scroll-Reveal (.r) mitziehen */
.tk-hero__arrow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 4;
  color: var(--t-cream-2);
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Zweiter CTA im Hero: statt .tk-btn--outline-cream (siehe rollbacks/tk-hero-link-offers.snippet.html) */
.tk-hero__link-offers {
  color: var(--t-cream);
  opacity: 0.8;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  align-self: center;
}
.tk-hero__link-offers:hover {
  opacity: 1;
  color: var(--t-cream);
}


/* =====================================================
   STRIP (Marquee-Leiste)
   ===================================================== */
.tk-strip {
  background: var(--t-blue);
  color: var(--t-brown);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(59, 42, 21, 0.12);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  user-select: none;
}

.tk-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.tk-strip__star {
  color: var(--t-orange);
}


/* =====================================================
   GRAIN TEXTUR — Echte Texturdateien
   ===================================================== */

.tk-about,
.tk-testimonials,
.tk-masematte {
  position: relative;
  isolation: isolate;
}

/* Cream-Sektionen: bedge-grunge */
.tk-about::after,
.tk-testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url('https://staging.tofte-keilof.de/wp-content/uploads/2026/05/bedge-grunge.webp');
  background-repeat: repeat;
  background-size: 480px 480px;
  mix-blend-mode: multiply;
  /* Cream-Sektionen (About + Testimonials) — von 0.5 minimal zurück */
  opacity: 0.45;
}

/* Blue-Sektion: beige-paper */
.tk-masematte::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url('https://staging.tofte-keilof.de/wp-content/uploads/2026/05/beige-paper.webp');
  background-repeat: repeat;
  background-size: 480px 480px;
  mix-blend-mode: soft-light;
  /* Blue-Sektion (Masematte) — von 0.8 deutlich zurück */
  opacity: 0.55;
}

/* Links in Testimonial-Cards funktionieren weiterhin */
.tk-testimonials__card {
  position: relative;
  z-index: 3;
}


/* =====================================================
   ABOUT
   ===================================================== */
.tk-about {
  padding: var(--section-py) var(--section-px);
  background: var(--t-cream);
  color: var(--t-brown);
}

.tk-about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.tk-about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  box-shadow: 0px 12px 48px 0px rgba(2, 69, 85, .16);
}

.tk-about__quote {
  font-family: 'Permanent Marker', handwriting;
  font-size: 26px;
  color: var(--t-orange);
  margin: 0;
  line-height: 1.1;
  max-width: 540px;
}

.tk-about__body {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--t-brown);
  max-width: 560px;
}
.tk-about__body p {
  margin: 0 0 16px;
}
.tk-about__body p:last-child {
  margin: 0;
}

.tk-about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}


/* =====================================================
   MASEMATTE (Hellblau — Atempause zwischen Stimmen braun und CTA sage)
   ===================================================== */
.tk-masematte {
  padding: var(--section-py) var(--section-px);
  background: var(--t-blue);
  color: var(--t-brown);
  overflow: hidden;
}

.tk-masematte .tk-eyebrow {
  color: var(--t-sage);
}

.tk-masematte__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.tk-masematte__h2 {
  margin: 0;
  font-family: 'Permanent Marker', handwriting;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.95;
  color: var(--t-brown);
  letter-spacing: -0.01em;
  font-weight: 400;
}

.tk-masematte__orange {
  color: var(--t-orange);
}

.tk-masematte__body {
  font-size: 17px;
  line-height: 1.7;
  color: #2a3d55;
  margin: 32px auto 0;
  max-width: 640px;
}
.tk-masematte__body p {
  margin: 0 0 18px;
  color: #2a3d55;
}
.tk-masematte__body p:last-child {
  margin: 0;
}

/* Auf blauem Sektions-HG: Creme-Pille statt blau-in-blau */
.tk-masematte__dialect-pill {
  display: inline-block;
  background: var(--t-cream);
  color: var(--t-brown);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  border: 1px solid rgba(59, 42, 21, 0.12);
}

.tk-masematte__hand {
  font-family: 'Permanent Marker', handwriting;
  font-size: 1.15em;
  color: var(--t-orange);
  font-style: normal;
}


/* =====================================================
   SERVICES (Angebote) — Zeilenliste (.tk-svc-row)
   ===================================================== */
.tk-services {
  padding: var(--section-py) var(--section-px);
  background: var(--t-sage);
  color: var(--t-cream);
}

.tk-services__head {
  margin-bottom: 44px;
}

.tk-services__head,
.tk-services__list {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

/* Scroll-Reveal: .r um jede Zeile (nicht auf dem Link — transform kollidiert mit Grid) */
.tk-services__list > .r {
  display: block;
  width: 100%;
}

.tk-services__h2 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  color: var(--t-cream);
  line-height: 0.95;
}

.tk-services__h2-accent {
  font-family: 'Permanent Marker', handwriting;
  font-style: italic;
  color: var(--t-orange);
  font-weight: 400;
}

.tk-svc-row {
  display: grid;
  grid-template-columns: 1fr minmax(44px, max-content);
  align-items: center;
  column-gap: 32px;
  row-gap: 0;
  padding: 24px 0;
  border-top: 0.5px solid rgba(241, 234, 200, 0.12);
  position: relative;
  transition: background 0.2s ease;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  overflow: visible;
}

.tk-svc-row:last-child {
  border-bottom: 0.5px solid rgba(241, 234, 200, 0.12);
}

.tk-svc-row::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--section-px));
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--t-orange);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tk-svc-row:hover::before {
  opacity: 1;
}

.tk-svc-row--featured::before {
  opacity: 0.5;
}

.tk-svc-row--featured:hover::before {
  opacity: 1;
}

.tk-svc-row:hover {
  background: rgba(241, 234, 200, 0.04);
}

.tk-svc-row__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 12px;
  transition: transform 0.28s var(--ease-out);
}

.tk-svc-row:hover .tk-svc-row__body {
  transform: translateX(8px);
}

.tk-svc-row__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--t-cream);
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.22s ease;
}

.tk-svc-row--featured .tk-svc-row__name {
  font-size: 20px;
}

.tk-svc-row__badge {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-gold);
  transition: color 0.22s ease;
}

.tk-svc-row__badge--new {
  color: var(--t-orange);
}

.tk-svc-row__desc {
  font-size: 12.5px;
  color: rgba(241, 234, 200, 0.5);
  margin: 0;
  line-height: 1.55;
  transition: color 0.22s ease;
}

.tk-svc-row:hover .tk-svc-row__desc {
  color: rgba(241, 234, 200, 0.92);
}

.tk-svc-row__cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 12px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
}

/* Lucide circle-arrow — Creme-RGBA auf Sage (Ruhe / Zeilen-Hover). Legacy: .angebot-arrow */
.tk-svc-row .tk-svc-row__arrow,
.tk-svc-row .angebot-arrow {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  color: rgba(241, 234, 200, 0.18);
  transition:
    color 0.2s ease,
    transform 0.2s var(--ease-spring);
  border: none;
  background: transparent;
  border-radius: 0;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: visible;
}

.tk-svc-row .tk-svc-row__arrow svg,
.tk-svc-row .angebot-arrow svg {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: inherit;
  shape-rendering: geometricPrecision;
}

.tk-svc-row .tk-svc-row__arrow svg circle,
.tk-svc-row .tk-svc-row__arrow svg path,
.tk-svc-row .angebot-arrow svg circle,
.tk-svc-row .angebot-arrow svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tk-svc-row:hover .tk-svc-row__arrow,
.tk-svc-row:hover .angebot-arrow {
  transform: scale(1.06);
  color: rgba(241, 234, 200, 0.42);
}

.tk-svc-row:hover .tk-svc-row__arrow svg,
.tk-svc-row:hover .angebot-arrow svg {
  color: inherit;
}

@media (max-width: 720px) {
  .tk-svc-row {
    grid-template-columns: 1fr minmax(44px, max-content);
    column-gap: 20px;
  }
  .tk-svc-row__cta {
    margin-right: 12px;
    justify-content: flex-end;
  }
}


/* =====================================================
   PROCESS (So läuft's ab)
   ===================================================== */
.tk-process {
  padding: var(--section-py) var(--section-px);
  background: var(--t-brown);
}

.tk-process__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}

.tk-process__lead {
  position: sticky;
  top: 100px;
}

.tk-process__h2 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: -0.025em;
  color: var(--t-cream);
  line-height: 1.05;
}

.tk-process__accent {
  font-family: 'Permanent Marker', handwriting;
  font-style: normal;
  color: var(--t-orange);
  font-weight: 400;
}

.tk-process__intro {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--t-cream);
  max-width: 380px;
}

.tk-process .tk-eyebrow {
  color: var(--t-gold);
}

.tk-process__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tk-process__step {
  background: rgba(241, 234, 200, 0.08);
  border-radius: var(--radius-card);
  padding: 32px 32px 30px;
  border: 1px solid rgba(241, 234, 200, 0.15);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}

.tk-process__num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--t-gold);
  letter-spacing: 0.05em;
  padding-top: 4px;
  white-space: nowrap;
}

.tk-process__step-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--t-cream);
  letter-spacing: -0.01em;
}

.tk-process__step-body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(241, 234, 200, 0.75);
}


/* =====================================================
   TESTIMONIALS (Stimmen) — Creme, Kopf + Slider (Google-Reviews später per API)
   ===================================================== */
.tk-testimonials {
  padding: var(--section-py) var(--section-px);
  background: var(--t-cream);
  color: var(--t-brown);
}

.tk-testimonials__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: stretch;
}

.tk-testimonials__intro {
  max-width: 640px;
}

.tk-testimonials__h2 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: -0.025em;
  color: var(--t-brown);
  line-height: 1.05;
}

.tk-testimonials__accent {
  font-family: 'Permanent Marker', handwriting;
  font-style: normal;
  color: var(--t-orange);
  font-weight: 400;
}

.tk-testimonials .tk-eyebrow {
  color: var(--t-sage);
}

.tk-testimonials__lede {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--t-brown);
}

.tk-testimonials__score {
  color: var(--t-brown);
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
}

/* Slider: volle Breite, Dots unter dem Track; je Slide 2×2-Bento; Scrollbar ausgeblendet */
.tk-testimonials__slider {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  position: relative;
  width: 100%;
  min-width: 0;
}

.tk-testimonials__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  margin: 0;
  padding: 4px 0 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  list-style: none;
}

.tk-testimonials__cards::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.tk-testimonials__cards:focus-visible {
  outline: 2px solid var(--t-orange);
  outline-offset: 4px;
}

.tk-testimonials__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  align-items: stretch;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.tk-testimonials__slide .tk-testimonials__card {
  min-width: 0;
}

/* Zeile 1: 60 % | 40 % — Zeile 2: 40 % | 60 % (5-Spalten-Raster) */
.tk-testimonials__slide .tk-testimonials__card:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1;
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(2) {
  grid-column: 4 / 6;
  grid-row: 1;
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 2;
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(4) {
  grid-column: 3 / 6;
  grid-row: 2;
}

/* Nur zwei Karten: eine Zeile 60/40 */
.tk-testimonials__slide:has(> .tk-testimonials__card:nth-child(2):last-child) {
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto;
}

.tk-testimonials__slide:has(> .tk-testimonials__card:nth-child(2):last-child) .tk-testimonials__card:nth-child(1),
.tk-testimonials__slide:has(> .tk-testimonials__card:nth-child(2):last-child) .tk-testimonials__card:nth-child(2) {
  grid-column: auto;
  grid-row: auto;
}

/* Nur eine Karte */
.tk-testimonials__slide:has(> .tk-testimonials__card:only-child) {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  max-width: min(560px, 100%);
}

.tk-testimonials__slide:has(> .tk-testimonials__card:only-child) .tk-testimonials__card:nth-child(1) {
  grid-column: 1 / -1;
  grid-row: 1;
}

.tk-testimonials__card {
  border-radius: var(--radius-card);
  padding: 24px 22px;
  margin: 0;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
  position: relative;
  cursor: pointer;
  min-height: 0;
}

/* Externes Tab-Icon: Desktop nur bei Hover sichtbar; Touch-Geräte immer leicht sichtbar */
.tk-testimonials__ext {
  position: absolute;
  top: 16px;
  right: 16px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: inherit;
  pointer-events: none;
}

@media (hover: none) {
  .tk-testimonials__ext {
    opacity: 0.45;
  }
}

.tk-testimonials__card:focus-visible {
  outline: 2px solid var(--t-orange);
  outline-offset: 3px;
  z-index: 2;
}

/* Farben pro Kartenposition im 2×2-Bento (wie Screenshot) */
.tk-testimonials__slide .tk-testimonials__card:nth-child(1) {
  background: var(--t-brown);
  border-color: transparent;
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(2),
.tk-testimonials__slide .tk-testimonials__card:nth-child(4) {
  background: var(--t-sage);
  border-color: transparent;
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(3) {
  background: var(--t-blue);
  border-color: transparent;
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(1) .tk-testimonials__quote,
.tk-testimonials__slide .tk-testimonials__card:nth-child(1) .tk-testimonials__meta,
.tk-testimonials__slide .tk-testimonials__card:nth-child(1) .tk-testimonials__meta strong,
.tk-testimonials__slide .tk-testimonials__card:nth-child(2) .tk-testimonials__quote,
.tk-testimonials__slide .tk-testimonials__card:nth-child(2) .tk-testimonials__meta,
.tk-testimonials__slide .tk-testimonials__card:nth-child(2) .tk-testimonials__meta strong,
.tk-testimonials__slide .tk-testimonials__card:nth-child(4) .tk-testimonials__quote,
.tk-testimonials__slide .tk-testimonials__card:nth-child(4) .tk-testimonials__meta,
.tk-testimonials__slide .tk-testimonials__card:nth-child(4) .tk-testimonials__meta strong {
  color: var(--t-cream);
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(3) .tk-testimonials__quote,
.tk-testimonials__slide .tk-testimonials__card:nth-child(3) .tk-testimonials__meta,
.tk-testimonials__slide .tk-testimonials__card:nth-child(3) .tk-testimonials__meta strong {
  color: #2a3d55;
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(1) .tk-testimonials__stars,
.tk-testimonials__slide .tk-testimonials__card:nth-child(2) .tk-testimonials__stars,
.tk-testimonials__slide .tk-testimonials__card:nth-child(4) .tk-testimonials__stars {
  color: var(--t-gold);
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(3) .tk-testimonials__stars {
  color: #2a3d55;
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(1) .tk-testimonials__meta,
.tk-testimonials__slide .tk-testimonials__card:nth-child(2) .tk-testimonials__meta,
.tk-testimonials__slide .tk-testimonials__card:nth-child(4) .tk-testimonials__meta {
  border-top-color: rgba(241, 234, 200, 0.2);
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(3) .tk-testimonials__meta {
  border-top-color: rgba(42, 61, 85, 0.25);
}

.tk-testimonials__stars {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.tk-testimonials__quote {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  font-style: normal;
  flex: 1;
}

.tk-testimonials__meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(59, 42, 21, 0.12);
  font-size: 13px;
}

.tk-testimonials__meta strong {
  color: inherit;
}

.tk-testimonials__meta span {
  opacity: 0.75;
}

/* Optional: Hinweis unter der Karte (kein verschachtelter Link) */
.tk-testimonials__source {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
  opacity: 0.9;
}

.tk-testimonials__slide .tk-testimonials__card:nth-child(3) .tk-testimonials__source {
  color: #2a3d55;
}

.tk-testimonials__card:hover .tk-testimonials__ext {
  opacity: 0.65;
  color: var(--t-brown);
}

.tk-testimonials__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tk-testimonials__dot {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer;
  background: transparent !important;
  box-shadow: none;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.tk-testimonials__dot::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.tk-testimonials__dot:hover,
.tk-testimonials__dot:active,
.tk-testimonials__dot:focus {
  background: transparent !important;
  box-shadow: none;
}

.tk-testimonials__dot:focus:not(:focus-visible) {
  outline: none;
}

.tk-testimonials__dot::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(59, 42, 21, 0.2);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.tk-testimonials__dot:hover::before {
  background: rgba(59, 42, 21, 0.45);
}

.tk-testimonials__dot[aria-current='true']::before {
  background: var(--t-gold);
  transform: scale(1.3);
}

.tk-testimonials__dot[aria-current='true']:hover::before {
  background: var(--t-gold);
}

.tk-testimonials__dot:focus-visible {
  outline: 2px solid var(--t-orange);
  outline-offset: 3px;
}

.tk-testimonials__slider--single .tk-testimonials__dots {
  display: none;
}

/* Hover: Gold-Fläche (ganze Karte = Link) */
.tk-testimonials__card:hover {
  background: var(--t-gold) !important;
}

.tk-testimonials__card:hover .tk-testimonials__quote,
.tk-testimonials__card:hover .tk-testimonials__meta,
.tk-testimonials__card:hover .tk-testimonials__meta strong,
.tk-testimonials__card:hover .tk-testimonials__meta span,
.tk-testimonials__card:hover .tk-testimonials__stars,
.tk-testimonials__card:hover .tk-testimonials__source {
  color: var(--t-brown) !important;
  opacity: 1;
}

.tk-testimonials__card:hover .tk-testimonials__meta {
  border-top-color: rgba(59, 42, 21, 0.15);
}


/* =====================================================
   CTA (Bereit? Ich bin's auch.)
   ===================================================== */
.tk-cta {
  padding: 120px var(--section-px);
  background: var(--t-sage);
  color: var(--t-cream);
}

.tk-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  grid-template-columns: 1fr 1.4fr;
}

/* Zwei Spalten — analog .tk-process__grid (Text links, Aktionen rechts) */
.tk-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: flex-start;
}

.tk-cta__lead {
  position: sticky;
  top: 100px;
  padding-top: 8px;
}

.tk-cta__h2 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: -0.025em;
  color: var(--t-cream);
  line-height: 0.95;
  max-width: 380px;
}

.tk-cta__accent {
  font-family: 'Permanent Marker', handwriting;
  font-style: normal;
  color: var(--t-orange);
  font-weight: 400;
  display: inline-block;
  transform: rotate(-2deg);
  margin-left: 16px;
}

.tk-cta__lede {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 380px;
  color: var(--t-cream);
}

.tk-cta__actions {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 8px;
}

.tk-cta__card {
  text-decoration: none !important;
  padding: 26px 24px;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease;
}
.tk-cta__card:hover {
  transform: translateY(-2px);
}

.tk-cta__card--featured {
  background: var(--t-orange);
  color: var(--t-cream) !important;
  border: 1.5px solid var(--t-orange);
}

.tk-cta__card--outline {
  background: var(--t-cream);
  color: var(--t-brown) !important;
  border: 1.5px solid var(--t-cream);
}

.tk-cta__label {
  font-size: 19px;
  font-weight: 700;
  display: block;
}

.tk-cta__sub {
  font-size: 13.5px;
  opacity: 0.75;
  display: block;
}
.tk-cta__card--featured .tk-cta__sub {
  opacity: 0.95;
}

/* Alte 3-Karten-Kacheln (Legacy-Markup) */
.tk-cta__card,
.tk-cta__card--featured,
.tk-cta__card--outline {
  display: none;
}

/* Primary — WhatsApp */
.tk-cta__primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--t-orange);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  margin-top: 0;
  margin-bottom: 12px;
  text-decoration: none !important;
  border: 2px solid rgba(241, 234, 200, 0.2);
  transition: background 0.2s ease, transform 0.15s ease;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

.tk-cta__primary:hover {
  background: #d44d28;
  transform: translateY(-2px);
}

.tk-cta__primary-label {
  font-size: 22px;
  font-weight: 700;
  color: var(--t-cream);
  display: block;
  margin-bottom: 6px;
}

.tk-cta__primary-sub {
  font-size: 14px;
  color: rgba(241, 234, 200, 0.8);
}

.tk-cta__primary-icon {
  width: 48px;
  height: 48px;
  background: rgba(241, 234, 200, 0.15);
  border-radius: 50%;
  padding: 12px;
  flex-shrink: 0;
  color: var(--t-cream);
}

/* Secondary Row */
.tk-cta__secondary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: none;
  width: 100%;
}

.tk-cta__secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(241, 234, 200, 0.08);
  border: 1px solid rgba(241, 234, 200, 0.15);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  text-decoration: none !important;
  transition: background 0.2s ease;
}

.tk-cta__secondary:hover {
  background: rgba(241, 234, 200, 0.13);
}

.tk-cta__secondary-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--t-cream);
  display: block;
  margin-bottom: 4px;
}

.tk-cta__secondary-sub {
  font-size: 12px;
  color: rgba(241, 234, 200, 0.55);
}

/* Secondary-Cards: Hover-Flip (rotateX) */
.tk-cta__card-wrap {
  perspective: 800px;
  height: 88px;
}

.tk-cta__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.tk-cta__card-wrap:hover .tk-cta__card-inner {
  transform: rotateX(180deg);
}

.tk-cta__card-front,
.tk-cta__card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-card);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.tk-cta__card-front {
  background: rgba(241, 234, 200, 0.08);
  border: 1px solid rgba(241, 234, 200, 0.15);
  text-align: center;
  align-items: cetnter;
}

.tk-cta__card-back {
  background: rgba(237, 204, 97, 0.12);
  border: 1px solid rgba(237, 204, 97, 0.25);
  transform: rotateX(180deg);
}

.tk-cta__back-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--t-gold);
  display: block;
  margin-bottom: 4px;
}

.tk-cta__back-sub {
  font-size: 12px;
  color: rgba(241, 234, 200, 0.65);
}

@media (prefers-reduced-motion: reduce) {
  .tk-cta__card-inner {
    transition: none;
  }
}

@media (max-width: 860px) {
  .tk-cta__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tk-cta__lead {
    position: static;
  }

  .tk-cta__primary {
    padding: 24px;
  }
  .tk-cta__primary-label {
    font-size: 18px;
  }
  .tk-cta__secondary-row {
    grid-template-columns: 1fr;
  }

  .tk-cta__card-wrap {
    height: auto;
    perspective: none;
  }

  .tk-cta__card-inner {
    transform-style: flat;
  }

  .tk-cta__card-back {
    display: none;
  }

  .tk-cta__card-front {
    position: relative;
  }
}


/* =====================================================
   FOOTER
   ===================================================== */
.tk-footer {
  padding: 48px 48px 28px;
  background: var(--t-brown);
  color: var(--t-cream);
}

.tk-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.tk-footer__tagline {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.7;
  max-width: 320px;
  color: var(--t-cream);
}

.tk-footer__nav {
  display: flex;
  gap: 28px;
  font-size: 13.5px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tk-footer__link {
  color: var(--t-cream) !important;
  text-decoration: none !important;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.tk-footer__link:hover {
  opacity: 1;
}

.tk-footer__legal {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(241,234,200,0.15);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  color: var(--t-cream);
}


/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 860px) {
  :root {
    --section-py: 80px;
    --section-px: 24px;
  }

  .tk-header {
    padding: 16px 20px;
    gap: 16px;
  }
  .tk-header__nav {
    display: none;
  }

  .tk-hero__inner {
    padding: 80px 24px 48px;
  }

  .tk-about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tk-process__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tk-process__lead {
    position: static;
  }

  .tk-testimonials__grid {
    gap: 40px;
  }

  .tk-testimonials__slider {
    gap: 16px;
  }

  .tk-testimonials__slide {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .tk-testimonials__slide .tk-testimonials__card:nth-child(1),
  .tk-testimonials__slide .tk-testimonials__card:nth-child(2),
  .tk-testimonials__slide .tk-testimonials__card:nth-child(3),
  .tk-testimonials__slide .tk-testimonials__card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .tk-testimonials__slide:has(> .tk-testimonials__card:nth-child(2):last-child) {
    grid-template-columns: 1fr;
  }

  .tk-testimonials__slide:has(> .tk-testimonials__card:only-child) {
    max-width: 100%;
  }

  .tk-footer {
    padding: 40px 24px 24px;
  }
}
