/* ================================================================
   Praxis TP — Main Stylesheet
   Design tokens, layout, and all component styles.
   Implements "Variante A – Warm Editorial" from the prototype.
   ================================================================ */

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  /* Colours */
  --tp-bg:          oklch(0.985 0.01 75);   /* warm off-white */
  --tp-bg-alt:      oklch(0.96  0.018 70);  /* soft warm cream */
  --tp-accent:      oklch(0.62  0.13  45);  /* terracotta */
  --tp-accent-dark: oklch(0.55  0.13  45);  /* deep terracotta */
  --tp-cta:         oklch(0.67  0.15  52);  /* warm amber CTA */
  --tp-cta-hover:   oklch(0.60  0.15  50);
  --tp-dark:        oklch(0.27  0.022 50);  /* near-black brown */
  --tp-text:        oklch(0.27  0.025 50);  /* headline text */
  --tp-text-mid:    oklch(0.43  0.02  50);  /* body text */
  --tp-text-light:  oklch(0.46  0.02  50);  /* muted text */
  --tp-text-faint:  oklch(0.55  0.02  50);  /* faint labels */
  --tp-border:      oklch(0.92  0.012 70);  /* card borders */
  --tp-border-alt:  oklch(0.9   0.015 65);  /* separator lines */
  --tp-card:        #ffffff;

  /* Typography */
  --tp-serif:  'Newsreader', Georgia, 'Times New Roman', serif;
  --tp-sans:   'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --tp-gutter:  clamp(20px, 5vw, 56px);
  --tp-section: clamp(56px, 8vw, 110px);
  --tp-max-w:   1200px;

  /* Radius */
  --tp-r-sm:  12px;
  --tp-r-md:  16px;
  --tp-r-lg:  22px;
  --tp-r-xl:  28px;
  --tp-r-full: 999px;

  /* Shadows */
  --tp-shadow-card:  0 24px 48px -28px rgba(80, 50, 25, 0.35);
  --tp-shadow-cta:   0 10px 26px -10px oklch(0.67 0.15 52 / 0.7);
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--tp-sans);
  color: var(--tp-text);
  background: var(--tp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Active nav link */
.tp-nav__links a[aria-current="page"],
.tp-nav__drawer a[aria-current="page"] {
  color: var(--tp-accent);
  font-weight: 600;
}

/* Skip-to-content */
.tp-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--tp-accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0s;
}
.tp-skip-link:focus { top: 0; }

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes tpFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── Layout helpers ──────────────────────────────────────────── */
.tp-container {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding-inline: var(--tp-gutter);
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
.tp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(0.985 0.01 75 / 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--tp-border-alt);
}

.tp-nav__inner {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: 18px var(--tp-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tp-nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.tp-nav__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--tp-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--tp-serif);
  font-size: 17px;
  font-weight: 500;
  flex-shrink: 0;
}

.tp-nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.tp-nav__logo-name {
  font-family: var(--tp-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.tp-nav__logo-sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-text-faint);
}

.tp-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}

.tp-nav__links a {
  text-decoration: none;
  color: oklch(0.34 0.02 50);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.tp-nav__links a:hover { color: var(--tp-accent); }

.tp-nav__cta {
  white-space: nowrap;
  background: var(--tp-cta);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: var(--tp-r-full);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.25s ease;
  box-shadow: var(--tp-shadow-cta);
  flex-shrink: 0;
}
.tp-nav__cta:hover { background: var(--tp-cta-hover); }

/* Hamburger */
.tp-nav__ham {
  display: none;
  background: none;
  border: 1px solid var(--tp-border-alt);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 10px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.tp-nav__ham span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--tp-accent);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile drawer */
.tp-nav__drawer {
  display: none;
  flex-direction: column;
  background: oklch(0.985 0.01 75 / 0.98);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 20px var(--tp-gutter) 28px;
  border-top: 1px solid var(--tp-border-alt);
}
.tp-nav__drawer.is-open { display: flex; }

.tp-nav__drawer a {
  font-size: 17px;
  font-weight: 500;
  color: oklch(0.34 0.02 50);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid oklch(0.92 0.012 70);
}
.tp-nav__drawer a:last-child {
  border-bottom: none;
  background: var(--tp-cta);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--tp-r-full);
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  margin-top: 14px;
}

/* ── HERO ────────────────────────────────────────────────────── */
.tp-hero {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: clamp(48px, 7vw, 96px) var(--tp-gutter) clamp(40px, 6vw, 80px);
}

.tp-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.tp-hero__content {
  animation: tpFadeUp 0.9s ease both;
}

.tp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--tp-accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.tp-hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--tp-accent);
  flex-shrink: 0;
}

.tp-hero__h1 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: oklch(0.26 0.025 50);
}

.tp-hero__h1 em {
  font-style: italic;
  color: var(--tp-accent);
}

.tp-hero__lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
  color: var(--tp-text-mid);
  max-width: 30em;
  margin: 0 0 34px;
}

.tp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* Primary CTA button */
.tp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tp-cta);
  color: #fff !important;
  padding: 16px 28px;
  border-radius: var(--tp-r-full);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: var(--tp-shadow-cta);
}
.tp-btn:hover { background: var(--tp-cta-hover); transform: translateY(-1px); }

/* Ghost / text link */
.tp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: oklch(0.36 0.02 50);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.25s ease;
}
.tp-link:hover { color: var(--tp-accent); gap: 12px; }

/* Hero image area */
.tp-hero__media {
  position: relative;
  border-radius: var(--tp-r-xl);
  overflow: hidden;
  min-height: 480px;
  background: repeating-linear-gradient(
    135deg,
    oklch(0.93 0.04 62),
    oklch(0.93 0.04 62) 11px,
    oklch(0.91 0.05 60) 11px,
    oklch(0.91 0.05 60) 22px
  );
  box-shadow: 0 30px 60px -30px rgba(80, 50, 25, 0.4);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.tp-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tp-hero__media:hover img { transform: scale(1.04); }

.tp-hero__media-label {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: oklch(0.45 0.04 50);
  background: rgba(255, 255, 255, 0.75);
  padding: 7px 12px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

/* Trust strip */
.tp-hero__trust {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--tp-border-alt);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
  font-size: 14.5px;
  color: var(--tp-text-light);
}

.tp-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
}
.tp-trust-item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tp-accent);
  flex-shrink: 0;
}

/* ── ANSATZ ──────────────────────────────────────────────────── */
.tp-ansatz {
  background: var(--tp-bg-alt);
}

.tp-ansatz__inner {
  max-width: 920px;
  margin-inline: auto;
  padding: var(--tp-section) var(--tp-gutter);
  text-align: center;
}

.tp-eyebrow {
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--tp-accent);
  font-weight: 600;
}

.tp-ansatz__quote {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 22px 0 0;
  color: oklch(0.3 0.025 50);
}

.tp-ansatz__quote em {
  font-style: italic;
  color: var(--tp-accent);
}

/* ── LEISTUNGEN ──────────────────────────────────────────────── */
.tp-leistungen {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: var(--tp-section) var(--tp-gutter);
}

.tp-leistungen__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.tp-leistungen__h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
  color: oklch(0.27 0.025 50);
}

.tp-leistungen__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

/* Service card */
.tp-card {
  background: var(--tp-card);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-r-lg);
  padding: 34px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.tp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tp-shadow-card);
}

.tp-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: oklch(0.94 0.045 60);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.tp-card__h3 {
  font-family: var(--tp-serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 12px;
  color: oklch(0.27 0.025 50);
}

.tp-card__p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--tp-text-light);
  margin: 0 0 22px;
  flex: 1;
}

.tp-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tp-accent);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: gap 0.25s ease;
}
.tp-card__link:hover { gap: 13px; }

/* ── ÜBER MICH ───────────────────────────────────────────────── */
.tp-ueber {
  background: var(--tp-bg-alt);
}

.tp-ueber__inner {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: var(--tp-section) var(--tp-gutter);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.tp-ueber__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 440px;
  background: repeating-linear-gradient(
    135deg,
    oklch(0.92 0.035 64),
    oklch(0.92 0.035 64) 11px,
    oklch(0.9  0.045 62) 11px,
    oklch(0.9  0.045 62) 22px
  );
  box-shadow: 0 26px 52px -28px rgba(80, 50, 25, 0.4);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.tp-ueber__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tp-ueber__media:hover img { transform: scale(1.04); }

.tp-ueber__h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 14px 0 20px;
  color: oklch(0.27 0.025 50);
}

.tp-ueber__p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--tp-text-mid);
  margin: 0 0 18px;
}

.tp-ueber__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tp-badge {
  background: var(--tp-card);
  border: 1px solid oklch(0.91 0.015 65);
  border-radius: var(--tp-r-full);
  padding: 9px 16px;
  font-size: 14px;
  color: oklch(0.38 0.02 50);
  white-space: nowrap;
}

/* ── STATS ROW ───────────────────────────────────────────────── */
.tp-stats {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: clamp(40px, 5vw, 64px) var(--tp-gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  border-top: 1px solid var(--tp-border-alt);
}

.tp-stat {
  background: var(--tp-card);
  border: 1px solid var(--tp-border);
  border-radius: 20px;
  padding: 24px 26px;
}

.tp-stat__number {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--tp-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.tp-stat__label {
  font-size: 14.5px;
  color: var(--tp-text-light);
  margin-top: 6px;
}

/* ── METHODEN ────────────────────────────────────────────────── */
.tp-methoden {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: var(--tp-section) var(--tp-gutter);
}

.tp-methoden__intro {
  max-width: 620px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.tp-methoden__h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 14px 0 14px;
  color: oklch(0.27 0.025 50);
}

.tp-methoden__sub {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--tp-text-light);
  margin: 0;
}

.tp-methoden__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--tp-border-alt);
}

.tp-methode {
  padding: 28px 26px;
  border-bottom: 1px solid var(--tp-border-alt);
}
.tp-methode:nth-child(2),
.tp-methode:nth-child(3),
.tp-methode:nth-child(5),
.tp-methode:nth-child(6) {
  border-left: 1px solid var(--tp-border-alt);
}
.tp-methode:nth-child(n+4) {
  border-bottom: none;
}

.tp-methode__num {
  font-family: var(--tp-serif);
  font-size: 13px;
  color: var(--tp-accent);
  margin-bottom: 10px;
}

.tp-methode__h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: oklch(0.29 0.025 50);
}

.tp-methode__p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--tp-text-light);
  margin: 0;
}

/* ── ANLIEGEN ────────────────────────────────────────────────── */
.tp-anliegen {
  background: var(--tp-accent);
  color: oklch(0.97 0.02 75);
}

.tp-anliegen__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding: var(--tp-section) var(--tp-gutter);
}

.tp-anliegen__eyebrow {
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: oklch(0.9 0.06 70);
  font-weight: 600;
}

.tp-anliegen__h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 14px 0 44px;
  color: #fff;
}

.tp-anliegen__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.tp-anliegen__item {
  background: oklch(0.66 0.12 46);
  border: 1px solid oklch(0.7 0.1 48);
  border-radius: var(--tp-r-md);
  padding: 22px 24px;
  font-size: 16px;
  line-height: 1.5;
}

.tp-anliegen__footer-text {
  margin: 36px 0 0;
  font-size: 16px;
  color: oklch(0.92 0.04 72);
  line-height: 1.65;
}

/* ── KONTAKT ─────────────────────────────────────────────────── */
.tp-kontakt {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: var(--tp-section) var(--tp-gutter);
}

.tp-kontakt__card {
  background: var(--tp-card);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-r-xl);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  box-shadow: 0 30px 60px -40px rgba(80, 50, 25, 0.4);
}

.tp-kontakt__h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 14px 0 18px;
  color: oklch(0.27 0.025 50);
}

.tp-kontakt__lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: oklch(0.45 0.02 50);
  max-width: 30em;
  margin: 0 0 30px;
}

.tp-kontakt__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tp-kontakt__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid oklch(0.93 0.012 70);
}
.tp-kontakt__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tp-kontakt__row-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: oklch(0.95 0.04 62);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-kontakt__row-label {
  font-size: 13px;
  color: var(--tp-text-faint);
  margin-bottom: 3px;
}

.tp-kontakt__row-val {
  font-size: 16px;
  font-weight: 600;
  color: oklch(0.3 0.025 50);
}

.tp-kontakt__row-val a {
  color: inherit;
  text-decoration: none;
}
.tp-kontakt__row-val a:hover { color: var(--tp-accent); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.tp-footer {
  background: var(--tp-dark);
  color: oklch(0.86 0.012 75);
}

.tp-footer__inner {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: clamp(48px, 6vw, 80px) var(--tp-gutter) 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.tp-footer__brand {
  /* first column — no span needed */
}

.tp-footer__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

.tp-footer__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tp-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--tp-serif);
  font-size: 16px;
  flex-shrink: 0;
}

.tp-footer__logo-name {
  font-family: var(--tp-serif);
  font-size: 18px;
  color: #fff;
}

.tp-footer__brand-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: oklch(0.68 0.012 75);
}

.tp-footer__col-title {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.6 0.04 55);
  margin-bottom: 16px;
  font-weight: 600;
}

.tp-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 15px;
}

.tp-footer__col-links a {
  color: oklch(0.86 0.012 75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.tp-footer__col-links a:hover { color: oklch(0.94 0.05 70); }

.tp-footer__col-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 15px;
  color: oklch(0.78 0.012 75);
}

.tp-footer__bar {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: 24px var(--tp-gutter) 36px;
  border-top: 1px solid oklch(0.35 0.02 50);
  font-size: 13px;
  color: oklch(0.6 0.012 75);
}

/* ── YOUTUBE VIDEO EMBED ─────────────────────────────────────── */
.tp-video-wrap {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: 0 var(--tp-gutter) clamp(32px, 4vw, 56px);
}

.tp-video-wrap__h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.18;
  color: var(--tp-dark);
  margin: 10px 0 28px;
}

.tp-video-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: oklch(0.22 0.022 50);
  box-shadow: 0 20px 50px -18px oklch(0.27 0.03 50 / 0.42),
              0 4px 18px -4px oklch(0.27 0.03 50 / 0.14);
  cursor: pointer;
}

.tp-video-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.45s ease;
  filter: brightness(0.68);
}

.tp-video-facade:hover img,
.tp-video-facade:focus-within img {
  transform: scale(1.03);
  filter: brightness(0.52);
}

.tp-video-facade__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  pointer-events: none;
}

.tp-video-facade__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: oklch(0.62 0.13 45 / 0.9);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.tp-video-facade:hover .tp-video-facade__play,
.tp-video-facade:focus-within .tp-video-facade__play {
  transform: scale(1.12);
  background: var(--tp-accent);
}

.tp-video-facade__label {
  font-family: var(--tp-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.025em;
  opacity: 0.9;
}

.tp-video-facade__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.tp-video-facade__btn:focus-visible {
  outline: 3px solid var(--tp-accent);
  outline-offset: -3px;
}

.tp-video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tp-video-dsgvo {
  font-size: 12.5px;
  color: var(--tp-text-faint);
  text-align: center;
  margin-top: 12px;
}
.tp-video-dsgvo a {
  color: var(--tp-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ── BANDEROLEN ──────────────────────────────────────────────── */
.tp-band {
  padding: clamp(60px, 8vw, 100px) 0;
}

.tp-band--alt {
  background: var(--tp-bg-alt);
}

.tp-band__inner {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: 0 var(--tp-gutter);
}

/* Text-only: lesbarer Zeilenblock */
.tp-band--text-only .tp-band__inner {
  max-width: 820px;
}

/* Zwei Spalten: Text + Bild */
.tp-band--with-img .tp-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

/* Bild links: Mediaelement visuell nach vorne ziehen */
.tp-band--img-left .tp-band__media { order: -1; }

/* Bildcontainer */
.tp-band__media {
  border-radius: var(--tp-r-xl);
  overflow: hidden;
  background: linear-gradient(145deg, oklch(0.94 0.026 70) 0%, oklch(0.89 0.036 58) 100%);
  position: relative;
}
.tp-band--alt .tp-band__media {
  background: linear-gradient(145deg, oklch(0.97 0.016 74) 0%, oklch(0.93 0.024 66) 100%);
}

.tp-band__media--landscape { aspect-ratio: 4 / 3; }
.tp-band__media--portrait  { aspect-ratio: 3 / 4; }

.tp-band__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tp-band__media:hover img { transform: scale(1.04); }

/* Typografie in Banderolen */
.tp-band__h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 42px);
  color: var(--tp-dark);
  margin: 12px 0 22px;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.tp-band__p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--tp-text-light);
  margin: 0 0 14px;
}
.tp-band__p:last-of-type { margin-bottom: 0; }

.tp-band__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  font-family: var(--tp-sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--tp-accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.tp-band__link svg { flex-shrink: 0; transition: transform 0.2s ease; }
.tp-band__link:hover svg { transform: translateX(4px); }

/* ── Scroll-reveal ───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Disable all motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }

  .tp-hero__media img,
  .tp-ueber__media img,
  .tp-two-col__media img,
  .tp-video-facade img { transition: none !important; }
  .tp-video-facade__play { transition: none !important; }
}

/* ================================================================
   INNER PAGE COMPONENTS
   ================================================================ */

/* ── Page Hero (banner for subpages) ────────────────────────── */
.tp-page-hero {
  background: var(--tp-bg-alt);
  border-bottom: 1px solid var(--tp-border-alt);
}

.tp-page-hero__inner {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: clamp(48px, 7vw, 80px) var(--tp-gutter) clamp(40px, 5vw, 64px);
}

.tp-page-hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--tp-accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}
.tp-page-hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--tp-accent);
  flex-shrink: 0;
}

.tp-page-hero__h1 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: oklch(0.26 0.025 50);
}
.tp-page-hero__h1 em {
  font-style: italic;
  color: var(--tp-accent);
}

.tp-page-hero__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--tp-text-mid);
  max-width: 36em;
}

.tp-page-hero__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

/* ── Section wrapper for inner pages ────────────────────────── */
.tp-section {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: var(--tp-section) var(--tp-gutter);
}

.tp-section--alt {
  background: var(--tp-bg-alt);
}

.tp-section__header {
  margin-bottom: clamp(32px, 4vw, 52px);
}

.tp-section__h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 14px 0 14px;
  color: oklch(0.27 0.025 50);
}

.tp-section__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--tp-text-light);
  max-width: 34em;
}

/* ── Two-column content layout ───────────────────────────────── */
.tp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.tp-two-col--media-left .tp-two-col__media { order: -1; }

.tp-two-col__media {
  position: relative;
  border-radius: var(--tp-r-xl);
  overflow: hidden;
  min-height: 380px;
  background: repeating-linear-gradient(
    135deg,
    oklch(0.93 0.04 62),
    oklch(0.93 0.04 62) 11px,
    oklch(0.91 0.05 60) 11px,
    oklch(0.91 0.05 60) 22px
  );
  box-shadow: 0 24px 48px -28px rgba(80, 50, 25, 0.4);
}

.tp-two-col__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tp-two-col__media:hover img { transform: scale(1.04); }

.tp-two-col__h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 14px 0 18px;
  color: oklch(0.27 0.025 50);
}

.tp-two-col__body p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--tp-text-mid);
  margin: 0 0 16px;
}
.tp-two-col__body p:last-child { margin: 0; }

/* ── Scenario / use-case cards (accent bg) ───────────────────── */
.tp-scenarios {
  background: var(--tp-accent);
  color: #fff;
}

.tp-scenarios__inner {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: var(--tp-section) var(--tp-gutter);
}

.tp-scenarios__eyebrow {
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: oklch(0.9 0.06 70);
  font-weight: 600;
}

.tp-scenarios__h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.12;
  margin: 14px 0 40px;
  color: #fff;
  letter-spacing: -0.01em;
}

.tp-scenarios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.tp-scenario {
  background: oklch(0.66 0.12 46);
  border: 1px solid oklch(0.7 0.1 48);
  border-radius: var(--tp-r-md);
  padding: 24px;
}

.tp-scenario__title {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 8px;
  color: #fff;
}

.tp-scenario__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: oklch(0.92 0.04 72);
  margin: 0;
}

/* ── Process steps ───────────────────────────────────────────── */
.tp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tp-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--tp-border-alt);
}
.tp-step:last-child { border-bottom: none; }

.tp-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: oklch(0.94 0.045 60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tp-serif);
  font-size: 20px;
  color: var(--tp-accent);
  flex-shrink: 0;
}

.tp-step__h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 8px;
  color: oklch(0.28 0.025 50);
  padding-top: 10px;
}

.tp-step__p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--tp-text-light);
  margin: 0;
}

/* ── FAQ accordion ───────────────────────────────────────────── */
.tp-faq {
  max-width: 820px;
}

.tp-faq__item {
  border-bottom: 1px solid var(--tp-border-alt);
}

.tp-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--tp-sans);
  font-size: 17px;
  font-weight: 600;
  color: oklch(0.28 0.025 50);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.tp-faq__q::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: oklch(0.94 0.045 60);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M5 1v8M1 5h8' stroke='%23b85c2a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
}

.tp-faq__item.is-open .tp-faq__q::after {
  transform: rotate(45deg);
}

.tp-faq__a {
  display: none;
  padding: 0 0 22px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--tp-text-light);
}
.tp-faq__item.is-open .tp-faq__a { display: block; }

/* ── Method detail cards ─────────────────────────────────────── */
.tp-method-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.tp-method-card {
  background: var(--tp-card);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-r-lg);
  padding: 32px 28px;
}

.tp-method-card__num {
  font-family: var(--tp-serif);
  font-size: 13px;
  color: var(--tp-accent);
  margin-bottom: 10px;
}

.tp-method-card__h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 12px;
  color: oklch(0.27 0.025 50);
}

.tp-method-card__p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--tp-text-light);
  margin: 0;
}

/* ── Inline CTA block ────────────────────────────────────────── */
.tp-cta-block {
  background: var(--tp-bg-alt);
  border: 1px solid var(--tp-border-alt);
  border-radius: var(--tp-r-xl);
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
}

.tp-cta-block__h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: oklch(0.27 0.025 50);
}

.tp-cta-block__p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--tp-text-light);
  max-width: 32em;
  margin: 0 auto 28px;
}

/* ── Contact page form ───────────────────────────────────────── */
.tp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.tp-contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--tp-border-alt);
}
.tp-contact-info__item:first-child { padding-top: 0; }
.tp-contact-info__item:last-child { border-bottom: none; }

.tp-contact-info__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: oklch(0.94 0.045 60);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tp-contact-info__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-text-faint);
  margin-bottom: 4px;
}

.tp-contact-info__val {
  font-size: 16px;
  font-weight: 600;
  color: oklch(0.3 0.025 50);
  line-height: 1.4;
}

.tp-contact-info__val a {
  color: inherit;
  text-decoration: none;
}
.tp-contact-info__val a:hover { color: var(--tp-accent); }

/* Appointment note box */
.tp-appointment-box {
  background: oklch(0.94 0.05 60);
  border: 1px solid oklch(0.88 0.07 58);
  border-radius: var(--tp-r-lg);
  padding: 28px 30px;
}

.tp-appointment-box__h3 {
  font-family: var(--tp-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  color: oklch(0.3 0.03 50);
}

.tp-appointment-box__p {
  font-size: 15.5px;
  line-height: 1.7;
  color: oklch(0.4 0.025 50);
  margin: 0 0 20px;
}

/* Hours table */
.tp-hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.tp-hours td {
  padding: 10px 0;
  border-bottom: 1px solid oklch(0.9 0.012 70);
  vertical-align: top;
}
.tp-hours tr:last-child td { border-bottom: none; }
.tp-hours td:first-child { color: var(--tp-text-faint); width: 160px; }
.tp-hours td:last-child { color: oklch(0.3 0.025 50); font-weight: 500; }

/* Career timeline */
.tp-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.tp-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--tp-border-alt);
}

.tp-timeline__item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.tp-timeline__item:last-child { padding-bottom: 0; }

.tp-timeline__dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--tp-card);
  border: 2px solid var(--tp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.tp-timeline__dot svg { color: var(--tp-accent); }

.tp-timeline__year {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--tp-accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tp-timeline__h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
  color: oklch(0.28 0.025 50);
}

.tp-timeline__p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--tp-text-light);
  margin: 0;
}

/* ================================================================
   CONTACT FORM
   ================================================================ */

.tp-contact-hours-title {
  font-family: var(--tp-serif);
  font-weight: 500;
  font-size: 20px;
  margin: 32px 0 16px;
  color: oklch(0.27 0.025 50);
}

/* ── Form card wrapper ───────────────────────────────────────── */
.tp-form-card {
  background: var(--tp-card);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-r-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 20px 40px -24px rgba(80, 50, 25, 0.28);
}

.tp-form-card__title {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  color: oklch(0.27 0.025 50);
  margin: 0 0 8px;
}

.tp-form-card__sub {
  font-size: 15.5px;
  color: var(--tp-text-light);
  line-height: 1.6;
  margin: 0 0 28px;
}

/* ── Form layout ─────────────────────────────────────────────── */
.tp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tp-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tp-form__label {
  font-size: 14px;
  font-weight: 600;
  color: oklch(0.32 0.025 50);
  letter-spacing: 0.01em;
}

.tp-form__req {
  color: var(--tp-accent);
  margin-left: 2px;
}

/* ── Inputs & textarea ───────────────────────────────────────── */
.tp-form__input,
.tp-form__textarea {
  font-family: var(--tp-sans);
  font-size: 15.5px;
  color: oklch(0.27 0.025 50);
  background: oklch(0.985 0.008 72);
  border: 1.5px solid var(--tp-border-alt);
  border-radius: var(--tp-r-sm);
  padding: 13px 16px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.tp-form__input::placeholder,
.tp-form__textarea::placeholder {
  color: oklch(0.65 0.015 65);
}

.tp-form__input:focus,
.tp-form__textarea:focus {
  outline: none;
  border-color: var(--tp-accent);
  background: #fff;
  box-shadow: 0 0 0 3px oklch(0.62 0.13 45 / 0.14);
}

.tp-form__input:invalid:not(:placeholder-shown),
.tp-form__textarea:invalid:not(:placeholder-shown) {
  border-color: oklch(0.6 0.18 20);
}

.tp-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

/* ── Custom checkbox ─────────────────────────────────────────── */
.tp-form__field--checkbox { gap: 0; }

.tp-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.tp-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.tp-form__checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--tp-border-alt);
  background: oklch(0.985 0.008 72);
  margin-top: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-form__checkbox-custom::after {
  content: '';
  width: 11px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.tp-form__checkbox:checked ~ .tp-form__checkbox-custom,
.tp-form__checkbox-label:has(.tp-form__checkbox:checked) .tp-form__checkbox-custom {
  background: var(--tp-accent);
  border-color: var(--tp-accent);
}
.tp-form__checkbox:checked ~ .tp-form__checkbox-custom::after,
.tp-form__checkbox-label:has(.tp-form__checkbox:checked) .tp-form__checkbox-custom::after {
  opacity: 1;
}

.tp-form__checkbox:focus-visible ~ .tp-form__checkbox-custom,
.tp-form__checkbox-label:has(.tp-form__checkbox:focus-visible) .tp-form__checkbox-custom {
  box-shadow: 0 0 0 3px oklch(0.62 0.13 45 / 0.2);
}

.tp-form__checkbox-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--tp-text-light);
}
.tp-form__checkbox-text a {
  color: var(--tp-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Submit & hint ───────────────────────────────────────────── */
.tp-form__submit {
  align-self: flex-start;
}

.tp-form__hint {
  font-size: 13px;
  color: var(--tp-text-faint);
  line-height: 1.55;
  margin: 0;
}

/* ── Honeypot (visually hidden) ──────────────────────────────── */
.tp-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ── Feedback messages ───────────────────────────────────────── */
.tp-form__success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: oklch(0.96 0.06 145);
  border: 1px solid oklch(0.82 0.1 145);
  border-radius: var(--tp-r-lg);
  padding: 24px 28px;
  color: oklch(0.32 0.1 145);
}
.tp-form__success strong { display: block; font-size: 17px; margin-bottom: 4px; }
.tp-form__success p { font-size: 15px; margin: 0; }

.tp-form__error {
  background: oklch(0.96 0.06 20);
  border: 1px solid oklch(0.82 0.1 20);
  border-radius: var(--tp-r-sm);
  padding: 14px 18px;
  font-size: 14.5px;
  color: oklch(0.42 0.14 20);
  margin-bottom: 4px;
}

/* ================================================================
   GOOGLE MAPS
   ================================================================ */

.tp-map-section {
  border-top: 1px solid var(--tp-border-alt);
}

.tp-map-section__inner {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: clamp(36px, 5vw, 56px) var(--tp-gutter);
}

.tp-map-section__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: oklch(0.36 0.025 50);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tp-map-section__ext {
  margin-left: auto;
  font-size: 13.5px;
  color: var(--tp-accent);
  text-decoration: none;
  font-weight: 600;
}
.tp-map-section__ext:hover { text-decoration: underline; }

.tp-map-section__frame {
  border-radius: var(--tp-r-lg);
  overflow: hidden;
  border: 1px solid var(--tp-border-alt);
  box-shadow: 0 8px 24px -12px rgba(80, 50, 25, 0.25);
  height: 420px;
}

.tp-map-section__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── UNTERSEITEN: Breadcrumb ─────────────────────────────────── */
.tp-breadcrumb {
  margin-bottom: 22px;
}
.tp-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2px;
}
.tp-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--tp-text-faint);
}
.tp-breadcrumb li + li::before {
  content: '›';
  margin: 0 7px;
  color: var(--tp-border-alt);
}
.tp-breadcrumb a {
  color: var(--tp-text-faint);
  text-decoration: none;
  transition: color 0.15s;
}
.tp-breadcrumb a:hover { color: var(--tp-accent); text-decoration: underline; text-underline-offset: 2px; }
.tp-breadcrumb li:last-child { color: var(--tp-text-mid); font-weight: 500; }

/* ── UNTERSEITEN: Hero-Actions (landing page CTAs im Hero) ───── */
.tp-hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.tp-hero-actions__secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--tp-text-mid);
  text-decoration: none;
  transition: color 0.2s;
  padding-left: 36px;
  border-left: 1px solid var(--tp-border-alt);
}
.tp-hero-actions__secondary:hover { color: var(--tp-accent); }
.tp-hero-actions__secondary svg { flex-shrink: 0; color: var(--tp-accent); opacity: 0.85; }

/* ── UNTERSEITEN: Symptom-Grid ───────────────────────────────── */
.tp-symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 36px;
}
.tp-symptom-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  background: var(--tp-card);
  border-radius: var(--tp-r-sm);
  border: 1px solid var(--tp-border);
}
.tp-symptom-item__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: oklch(0.95 0.04 62);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.tp-symptom-item__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--tp-text-mid);
}

/* ── UNTERSEITEN: Zurück-Navigation ──────────────────────────── */
.tp-subpage-back {
  border-top: 1px solid var(--tp-border-alt);
}
.tp-subpage-back__inner {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: 20px var(--tp-gutter);
}
.tp-subpage-back__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-text-faint);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.tp-subpage-back__link:hover { color: var(--tp-accent); gap: 12px; }
.tp-subpage-back__link svg { flex-shrink: 0; transition: transform 0.2s ease; }
.tp-subpage-back__link:hover svg { transform: translateX(-3px); }

/* ── IMPRESSUM / DATENSCHUTZ: Legal Content ─────────────────── */
.tp-legal-content {
  max-width: 760px;
}

.tp-legal-content h2 {
  font-family: var(--tp-serif);
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--tp-dark);
  margin: 48px 0 14px;
  line-height: 1.2;
}

.tp-legal-content h2:first-child {
  margin-top: 0;
}

.tp-legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: oklch(0.29 0.025 50);
  margin: 28px 0 8px;
}

.tp-legal-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--tp-text-light);
  margin: 0 0 14px;
}

.tp-legal-content a {
  color: var(--tp-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tp-legal-content a:hover {
  opacity: 0.8;
}

.tp-legal-content ul {
  margin: 8px 0 14px 20px;
  padding: 0;
}

.tp-legal-content ul li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--tp-text-light);
  margin-bottom: 4px;
}

/* ── PAARBERATUNG: Kostenrechner ─────────────────────────────── */
.tp-rechner-header {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.tp-rechner-header .tp-band__h2 {
  margin-top: 14px;
}

.tp-rechner-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--tp-text-light);
  margin: 0;
}

.tp-rechner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.tp-rechner__left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.tp-rechner__right {
  position: sticky;
  top: 90px;
}

.tp-rechner__group-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--tp-text-faint);
  margin: 0 0 14px;
}

.tp-rechner__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--tp-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0;
}

.tp-rechner__optional {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--tp-text-faint);
  opacity: 0.85;
}

/* Package cards */
.tp-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tp-pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 18px 18px;
  background: var(--tp-card);
  border: 2px solid var(--tp-border);
  border-radius: var(--tp-r-md);
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  user-select: none;
}

.tp-pkg:hover {
  border-color: oklch(0.62 0.13 45 / 0.45);
  box-shadow: 0 4px 18px oklch(0 0 0 / 0.07);
}

.tp-pkg:has(.tp-pkg__radio:checked) {
  border-color: var(--tp-accent);
  background: oklch(0.99 0.01 62);
  box-shadow: 0 6px 24px oklch(0.62 0.13 45 / 0.14);
}

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

.tp-pkg__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  min-height: 24px;
}

.tp-pkg__num {
  font-family: var(--tp-serif);
  font-size: 12px;
  color: var(--tp-text-faint);
  line-height: 1;
}

.tp-pkg__saving {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: oklch(0.45 0.13 148);
  background: oklch(0.94 0.04 148);
  padding: 2px 7px;
  border-radius: 99px;
  white-space: nowrap;
}

.tp-pkg__name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--tp-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.tp-pkg__price {
  font-family: var(--tp-serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 400;
  color: oklch(0.27 0.025 50);
  line-height: 1;
  margin-bottom: 5px;
  transition: color 0.18s;
}

.tp-pkg:has(.tp-pkg__radio:checked) .tp-pkg__price {
  color: var(--tp-accent);
}

.tp-pkg__per {
  font-size: 12px;
  color: var(--tp-text-faint);
  line-height: 1.4;
}

.tp-pkg__check {
  position: absolute;
  top: 12px; right: 12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--tp-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.18s, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.tp-pkg:has(.tp-pkg__radio:checked) .tp-pkg__check {
  opacity: 1;
  transform: scale(1);
}

/* Income segmented control */
.tp-seg-ctrl {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.tp-seg {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px 11px;
  background: var(--tp-card);
  border: 2px solid var(--tp-border);
  border-radius: var(--tp-r-sm);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}

.tp-seg:hover {
  border-color: oklch(0.62 0.13 45 / 0.4);
}

.tp-seg:has(.tp-seg__radio:checked) {
  border-color: var(--tp-accent);
  background: var(--tp-accent);
}

/* "Keine Angabe" — first option, dashed/neutral */
.tp-seg:first-child {
  border-style: dashed;
}
.tp-seg:first-child:has(.tp-seg__radio:checked) {
  background: oklch(0.97 0.012 70);
  border-style: solid;
  border-color: var(--tp-border-alt);
}

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

.tp-seg__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--tp-text-mid);
  line-height: 1.35;
}

.tp-seg:has(.tp-seg__radio:checked) .tp-seg__name {
  color: #fff;
}
.tp-seg:first-child:has(.tp-seg__radio:checked) .tp-seg__name {
  color: var(--tp-text-mid);
}

.tp-seg__badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--tp-text-faint);
  letter-spacing: 0.02em;
}

.tp-seg:has(.tp-seg__radio:checked) .tp-seg__badge {
  color: oklch(1 0 0 / 0.8);
}
.tp-seg:first-child:has(.tp-seg__radio:checked) .tp-seg__badge {
  color: var(--tp-text-faint);
}

/* Result card */
.tp-rechner__result {
  background: var(--tp-card);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-r-md);
  padding: 28px 28px 24px;
}

.tp-rechner__result-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-text-faint);
  margin: 0 0 18px;
}

.tp-rechner__rows {
  border-top: 1px solid var(--tp-border-alt);
  padding-top: 10px;
  margin-bottom: 0;
}

.tp-rechner__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--tp-text-mid);
  border-bottom: 1px solid oklch(0.94 0.01 70);
}

.tp-rechner__row:last-child { border-bottom: none; }
.tp-rechner__row[hidden] { display: none; }

.tp-rechner__discount-val {
  font-weight: 600;
  color: oklch(0.44 0.13 148);
}

.tp-rechner__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 2px solid var(--tp-border-alt);
  padding-top: 18px;
  margin-top: 10px;
}

.tp-rechner__total-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--tp-dark);
}

.tp-rechner__total-price {
  font-family: var(--tp-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--tp-accent);
  line-height: 1;
}

.tp-rechner__note {
  font-size: 12px;
  color: var(--tp-text-faint);
  line-height: 1.65;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--tp-border-alt);
}

.tp-rechner__cta {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}

/* ── ÜBER MICH: Praxis-Galerie ───────────────────────────────── */
.tp-praxis-intro {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--tp-text-light);
  margin: 0 0 36px;
}

.tp-praxis-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 10px;
}

.tp-praxis-gallery__item {
  border-radius: var(--tp-r-md);
  overflow: hidden;
  background: var(--tp-bg-alt);
}

.tp-praxis-gallery__item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.tp-praxis-gallery__item:last-child {
  grid-column: 2 / 4;
}

.tp-praxis-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.tp-praxis-gallery__item:hover .tp-praxis-gallery__img {
  transform: scale(1.03);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */

/* Tablet: ≤820px */
@media (max-width: 820px) {
  /* Nav: hide links, show hamburger */
  .tp-nav__links,
  .tp-nav__cta { display: none; }
  .tp-nav__ham { display: flex; }

  /* Hero: stack to single column */
  .tp-hero__grid { grid-template-columns: 1fr; }
  .tp-hero__media { order: -1; min-height: 300px; }

  /* Über mich: stack */
  .tp-ueber__inner { grid-template-columns: 1fr; }

  /* Stats: 2-column */
  .tp-stats { grid-template-columns: repeat(2, 1fr); }

  /* Banderolen: stack auf Tablet */
  .tp-band--with-img .tp-band__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tp-band--img-left .tp-band__media { order: 0; }
  .tp-band__media--portrait { aspect-ratio: 4 / 3; }

  /* Footer: brand full-width, 3 columns below */
  .tp-footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .tp-footer__brand { grid-column: 1 / -1; }

  /* Inner pages: stack two-column layouts */
  .tp-page-hero__two-col { grid-template-columns: 1fr; }
  .tp-two-col { grid-template-columns: 1fr; }
  .tp-two-col--media-left .tp-two-col__media { order: 0; }
  .tp-contact-grid { grid-template-columns: 1fr; }

  /* Unterseiten: Symptom-Grid 2-spaltig auf Tablet */
  .tp-symptom-grid { grid-template-columns: 1fr 1fr; }

  /* Kostenrechner: Single-column auf Tablet */
  .tp-rechner { grid-template-columns: 1fr; }
  .tp-rechner__right { position: static; }
  .tp-seg-ctrl { grid-template-columns: repeat(3, 1fr); }

  /* Praxis-Galerie: 2 Spalten auf Tablet */
  .tp-praxis-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .tp-praxis-gallery__item { height: 200px; }
  .tp-praxis-gallery__item:first-child { grid-column: 1 / 3; }
  .tp-praxis-gallery__item:last-child { grid-column: auto; }
}

/* Mobile: ≤560px */
@media (max-width: 560px) {
  /* Hero heading slightly smaller */
  .tp-hero__h1 { font-size: clamp(30px, 9vw, 42px); }

  /* Contact form: stack name + email fields */
  .tp-form__row { grid-template-columns: 1fr; }
  .tp-form__submit { width: 100%; justify-content: center; }

  /* Map: shorter on mobile */
  .tp-map-section__frame { height: 280px; }
  .tp-map-section__ext { margin-left: 0; }

  /* Footer: brand full-width, 2 nav columns */
  .tp-footer__inner { grid-template-columns: 1fr 1fr; }
  .tp-footer__brand { grid-column: 1 / -1; }

  /* Banderolen: Abstand reduzieren */
  .tp-band { padding: 44px 0; }

  /* Method detail & scenarios: single column */
  .tp-method-detail { grid-template-columns: 1fr; }
  .tp-scenarios__grid { grid-template-columns: 1fr; }

  /* Unterseiten: Symptom-Grid und Hero-Actions stapeln */
  .tp-symptom-grid { grid-template-columns: 1fr; }
  .tp-hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .tp-hero-actions__secondary { padding-left: 0; border-left: none; }

  /* Kostenrechner: Mobile-optimiert */
  .tp-pkg-grid { grid-template-columns: 1fr; }
  .tp-seg-ctrl { grid-template-columns: repeat(2, 1fr); }
  .tp-seg:first-child { grid-column: 1 / -1; }
  .tp-rechner__result { padding: 22px 20px; }

  /* Praxis-Galerie: 1 Spalte auf Mobile */
  .tp-praxis-gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .tp-praxis-gallery__item { height: 220px; }
  .tp-praxis-gallery__item:first-child { grid-column: 1; }
  .tp-praxis-gallery__item:last-child { grid-column: 1; }
}

/* ── Paartherapie Themen-Navigation ─────────────────────────── */
.tp-paar-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.tp-paar-topic {
  display: flex;
  flex-direction: column;
  padding: 30px 32px 26px;
  background: var(--tp-card);
  border: 1.5px solid var(--tp-border);
  border-top: 3px solid var(--tp-accent);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.tp-paar-topic:hover,
.tp-paar-topic:focus-visible {
  border-color: var(--tp-accent-dark);
  border-top-color: var(--tp-accent-dark);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.08);
  outline: none;
}

.tp-paar-topic__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-accent);
  margin-bottom: 12px;
  font-family: var(--tp-sans);
}

.tp-paar-topic__h3 {
  font-size: 19px;
  font-weight: 650;
  line-height: 1.2;
  color: var(--tp-text);
  margin-bottom: 10px;
  font-family: var(--tp-sans);
}

.tp-paar-topic__p {
  font-size: 14.5px;
  color: var(--tp-text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.tp-paar-topic__more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--tp-accent);
}

@media (max-width: 820px) {
  .tp-paar-topics { grid-template-columns: 1fr; gap: 14px; }
}

/* ── SEMINARE SEITE ──────────────────────────────────────────── */
.tp-seminar-list {
  max-width: var(--tp-max-w);
  margin-inline: auto;
  padding: var(--tp-section) var(--tp-gutter);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tp-seminar {
  background: var(--tp-card);
  border: 1.5px solid var(--tp-border);
  border-top: 3px solid var(--tp-accent);
  border-radius: 10px;
  padding: clamp(28px, 4vw, 44px);
}

.tp-seminar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tp-accent);
  margin-bottom: 14px;
}

.tp-seminar__h2 {
  font-family: var(--tp-serif);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--tp-text);
  margin: 0 0 14px;
}

.tp-seminar__lead {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--tp-text-mid);
  max-width: 640px;
  margin-bottom: 28px;
}

.tp-seminar__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--tp-border);
  border: 1px solid var(--tp-border);
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 32px;
}

.tp-seminar__meta-item {
  background: var(--tp-bg-alt);
  padding: 14px 18px;
}

.tp-seminar__meta-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tp-text-faint);
  margin-bottom: 4px;
}

.tp-seminar__meta-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--tp-text);
}

.tp-termine__heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tp-text-faint);
  margin-bottom: 10px;
}

.tp-termin-list {
  border: 1.5px solid var(--tp-border);
  border-radius: 8px;
  overflow: hidden;
}

.tp-termin {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 0 20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--tp-border);
  transition: background 0.16s;
}

.tp-termin:last-child { border-bottom: none; }
.tp-termin:hover { background: oklch(0.975 0.014 72); }

.tp-termin__date { text-align: center; line-height: 1; }

.tp-termin__day {
  display: block;
  font-family: var(--tp-serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--tp-accent);
  line-height: 1;
}

.tp-termin__month {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tp-text-faint);
  margin-top: 3px;
}

.tp-termin__label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--tp-text);
}

.tp-termin__sub {
  font-size: 12.5px;
  color: var(--tp-text-faint);
  margin-top: 2px;
}

.tp-termin__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.tp-termin__spots {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--tp-text-faint);
  white-space: nowrap;
  background: var(--tp-bg-alt);
  border: 1px solid var(--tp-border);
  padding: 4px 10px;
  border-radius: 100px;
}

.tp-termin__cta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--tp-accent);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.18s;
}

.tp-termin__cta:hover { color: var(--tp-accent-dark); }
.tp-termin__cta svg { transition: transform 0.18s; }
.tp-termin__cta:hover svg { transform: translateX(2px); }

.tp-seminar-notice {
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  color: var(--tp-text-faint);
  font-style: italic;
  padding: 32px 20px;
  border: 1.5px dashed var(--tp-border);
  border-radius: 8px;
}

@media (max-width: 680px) {
  .tp-seminar__meta { grid-template-columns: repeat(2, 1fr); }
  .tp-termin { grid-template-columns: 48px 1fr; grid-template-rows: auto auto; gap: 10px 14px; }
  .tp-termin__right { grid-column: 2; justify-content: flex-start; }
}
