@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans Condensed";
  src: local("Open Sans Condensed Bold"), local("OpenSansCondensed-Bold"),
       url("../fonts/OpenSansCondensed-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/*
 * WICHTIG: Für die exakte Darstellung muss assets/fonts/Mulish-Light.ttf
 * auf dem Server liegen. Die Datei wird ausschließlich lokal von der eigenen
 * Domain geladen; es gibt keine Verbindung zu Google Fonts.
 */

:root {
  --navy: #1f365c;
  --navy-2: #203961;
  --accent: #ffb536;
  --accent-hover: #f4a215;
  --text: #8c95a2;
  --text-dark: #1f365c;
  --soft: #f5f5f5;
  --line: rgba(51, 51, 51, .12);
  --white: #fff;
  --content: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: #fff;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.ts-container {
  width: min(var(--content), calc(100% - 100px));
  margin-inline: auto;
}

.ts-skip {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 10px;
  padding: 10px 14px;
  background: #fff;
  color: var(--navy);
  transform: translateY(-160%);
}
.ts-skip:focus { transform: none; }

/* Top bar */
.ts-topbar {
  min-height: 36px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.ts-topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ts-topbar__left,
.ts-topbar__social { display: flex; align-items: center; gap: 22px; }
.ts-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1;
}
.ts-topbar__item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ts-topbar__social { gap: 11px; }
.ts-topbar__social a {
  width: 20px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
  text-decoration: none;
}
.ts-topbar__social a:hover { color: var(--accent); }
.ts-topbar__social svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.ts-topbar__social svg path { fill: currentColor; stroke: none; }
.ts-topbar__social .fill { fill: currentColor; stroke: none; }

/* Classic header: dimensions and typography follow the former The7 header closely. */
.ts-header { background: #fff; position: relative; z-index: 50; }
.ts-header__main {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ts-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.ts-brand img {
  width: 160px;
  height: 156px;
  object-fit: contain;
}
.ts-header__callout {
  margin-left: auto;
  text-align: right;
  color: var(--navy);
  line-height: 1.04;
}
.ts-header__callout span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}
.ts-header__callout a {
  color: var(--navy);
  text-decoration: none;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .005em;
}
.ts-header__callout a:hover { color: var(--navy); }

.ts-navrow {
  min-height: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.ts-navrow.is-fixed {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 5px 18px rgba(31,54,92,.1);
}
.ts-navrow__inner {
  min-height: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 32px;
}
.ts-nav {
  display: grid;
  grid-template-columns: .9fr 1.05fr 1.4fr .82fr 1fr;
  min-height: 60px;
  width: 100%;
  align-items: stretch;
}
.ts-nav > a {
  position: relative;
  min-height: 60px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #46403d;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.ts-nav > a:first-child { border-left: 1px solid var(--line); }
.ts-nav > a > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 60px;
}
.ts-nav > a > span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.ts-nav > a:hover,
.ts-nav > a.is-active { color: var(--navy); }
.ts-nav > a:hover > span::after,
.ts-nav > a.is-active > span::after { transform: scaleX(1); }

.ts-nav-cta {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  background: var(--accent);
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  white-space: nowrap;
}
.ts-nav-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--navy);
}
.ts-nav-cta svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.95;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ts-nav-cta svg .calendar-dot {
  fill: currentColor;
  stroke: none;
}
.ts-menu-toggle { display: none; }

/* Hero / Slider: dimensions matched to the former Slider Revolution desktop layout. */
.ts-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url("../images/Slider_TS_Bild.jpg");
  background-repeat: no-repeat;
  /* The original image layer sits slightly left of the viewport's right edge. */
  background-position: calc(100% - clamp(60px, 5.9vw, 121px)) center;
  background-size: auto 100%;
}
.ts-hero__navy,
.ts-hero__navy-right {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--navy);
}
/* Original left blue trapezoid: about 53.5% at the top and 45% at the bottom. */
.ts-hero__navy {
  clip-path: polygon(0 0, 54% 0, 45% 100%, 0 100%);
}
/* The Revolution Slider also masked the far right with a second blue diagonal. */
.ts-hero__navy-right {
  clip-path: polygon(94.2% 0, 100% 0, 100% 100%, 85% 100%);
}
.ts-hero__content {
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
}
.ts-hero__copy {
  width: 550px;
  max-width: 46%;
  padding-top: 148px;
  color: #fff;
}
.ts-hero h1 {
  width: 550px;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-family: "Open Sans Condensed", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 86px;
  font-weight: 700;
  line-height: 88px;
  letter-spacing: 0;
}
.ts-hero__line {
  width: 550px;
  max-width: 100%;
  height: 6px;
  margin: 23px 0 41px;
  background: var(--accent);
}
.ts-hero p {
  width: 550px;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
}

/* Four original-style info boxes */
.ts-features { padding: 80px 0 50px; background: #fff; }
.ts-features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.ts-feature { text-align: center; padding: 0 24px 24px; }
.ts-feature__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
}
.ts-feature__icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ts-feature h3 {
  margin: 0 0 10px;
  color: var(--navy);
  text-transform: uppercase;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}
.ts-feature p {
  margin: 0;
  color: var(--text);
  font-family: "Mulish", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}

/* Shared heading */
.ts-heading { text-align: center; margin-bottom: 62px; }
.ts-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
}
.ts-heading span { display: block; width: 200px; height: 5px; margin: 18px auto 0; background: var(--accent); }

/* About */
.ts-about-section { padding: 80px 0 40px; background: var(--soft); }
.ts-about-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 46px; align-items: start; }
.ts-about-intro { padding-bottom: 30px; }
/* Höhe explizit auf auto zurücksetzen, damit das HTML-height-Attribut das Bild nicht streckt. */
.ts-about-intro img { width: 100%; height: auto; aspect-ratio: 1200 / 620; object-fit: cover; margin-bottom: 26px; }
.ts-about-intro h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.ts-about-intro p { margin: 0 0 14px; color: var(--text); }
.ts-about-benefits { padding-top: 7px; }
.ts-about-benefits ul { list-style: none; margin: 0; padding: 0; }
.ts-about-benefits li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 13px;
  margin-bottom: 23px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.5;
  text-transform: uppercase;
}
.ts-about-benefits strong { font-weight: 300; }
.ts-check-icon {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.ts-owner-card { background: #fff; padding: 30px; text-align: center; }
.ts-owner-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}
.ts-owner-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.ts-owner-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
}
.ts-owner-role { margin: 1px 0 13px; color: var(--navy); font-size: 16px; font-weight: 700; }
.ts-owner-card p { max-width: 330px; margin: 0 auto 16px; color: var(--text); }
.ts-owner-phone,
.ts-owner-mail { display: block; text-decoration: none; font-size: 16px; font-weight: 700; line-height: 1.5; }
.ts-owner-phone { color: var(--navy); }
.ts-owner-mail { color: var(--accent-hover); }

/* CTA */
.ts-cta { padding: 60px 0 70px; background: var(--navy); text-align: center; }
.ts-cta h2 {
  margin: 0;
  color: var(--accent);
  font-family: "Open Sans Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}
.ts-cta a {
  width: min(400px, 100%);
  min-height: 66px;
  margin: 30px auto 0;
  padding: 18px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Open Sans Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.ts-cta a:hover { background: var(--accent-hover); }

/* Services */
.ts-services-section { padding: 80px 0; background: #fff; }
.ts-services-section .ts-heading h2,
.ts-faq-section .ts-heading h2 { font-weight: 700; }
.ts-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 65px; }
.ts-service { text-align: center; }
.ts-service img {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: cover;
}
.ts-service h3 {
  margin: 0 0 17px;
  color: var(--navy);
  font-family: "Open Sans Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ts-service p { max-width: 350px; margin: 0 auto; color: var(--text); font-size: 14px; line-height: 1.6; }
.ts-ba-heading { text-align: center; margin: 78px 0 35px; }
.ts-ba-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
}
.ts-ba-heading h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  margin: 18px auto 0;
  background: var(--accent);
}
.ts-ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ts-ba {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #ddd;
  --position: 50%;
}
.ts-ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; user-select: none; pointer-events: none; }
.ts-ba__after { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.ts-ba__range { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.ts-ba__line { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--position); width: 2px; transform: translateX(-50%); background: rgba(255,255,255,.95); pointer-events: none; }
.ts-ba__handle {
  position: absolute;
  z-index: 4;
  left: var(--position);
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(31,54,92,.22);
  color: #fff;
  font-size: 17px;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.22);
}

/* FAQ - intentionally plain like the original accordion */
.ts-faq-section { padding: 80px 0 100px; background: rgba(170,170,170,.1); }
.ts-faq-section .ts-heading { margin-bottom: 26px; }
.ts-faq-intro { margin: 0 auto 48px; text-align: center; color: var(--text); line-height: 1.65; }
.ts-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 36px; align-items: start; }
.ts-faq-col details { border-bottom: 1px solid rgba(31,54,92,.17); background: transparent; }
.ts-faq-col summary {
  position: relative;
  list-style: none;
  padding: 15px 34px 15px 0;
  color: var(--navy);
  text-transform: uppercase;
  font-family: "Mulish", Helvetica, Arial, Verdana, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  cursor: pointer;
}
.ts-faq-col summary::-webkit-details-marker { display: none; }
.ts-faq-col summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
}
.ts-faq-col details[open] summary::after { content: "−"; }
.ts-faq-col details > div { padding: 0 24px 17px 0; color: var(--text); }
.ts-faq-col p { margin: 0 0 12px; }
.ts-faq-col p:last-child { margin-bottom: 0; }

/* Contact / original compact footer */
.ts-footer { background: var(--navy); color: #949fb2; }
.ts-footer__grid {
  padding-top: 55px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.ts-footer h2 {
  margin: 0 0 25px;
  color: #fff;
  font-family: "Open Sans Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
.ts-footer dl { margin: 0; }
.ts-footer dl > div { display: block; margin-bottom: 12px; }
.ts-footer dt { margin: 0 0 2px; color: #fff; font-weight: 700; }
.ts-footer dd { margin: 0; }
.ts-footer a { color: inherit; text-decoration: none; }
.ts-footer a:hover { color: var(--accent); }
.ts-footer-social-label { display: none; }
.ts-footer-social { display: flex; gap: 7px; }
.ts-footer-social a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.10);
  color: #fff;
}
.ts-footer-social a:hover { background: var(--accent); color: #fff; }
.ts-footer-social svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.ts-footer-social svg path { fill: currentColor; stroke: none; }
.ts-footer-social .fill { fill: currentColor; stroke: none; }

.ts-contact-form { display: grid; gap: 10px; }
.ts-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 10px; }
.ts-contact-form label { display: grid; gap: 5px; }
.ts-contact-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ts-contact-form input[type="text"],
.ts-contact-form input[type="email"],
.ts-contact-form input[type="tel"],
.ts-contact-form textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(51,51,51,.12);
  border-radius: 8px;
  background: #fff;
  color: #3e4653;
  padding: 7px 12px;
  outline: none;
}
.ts-contact-form textarea { min-height: 78px; resize: vertical; }
.ts-contact-form input:focus,
.ts-contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(255,181,54,.18); }
.ts-privacy { display: block !important; }
.ts-privacy input { float: left; margin: 3px 9px 0 0; accent-color: var(--accent); }
.ts-privacy span {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  color: #c8ced8;
  font-size: 12px;
  line-height: 1.5;
}
.ts-privacy a { color: #fff; text-decoration: underline; }
.ts-contact-form button {
  justify-self: start;
  min-width: 84px;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  padding: 9px 18px;
  background: var(--accent);
  color: #fff;
  font-family: "Open Sans Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}
.ts-contact-form button:hover { background: var(--accent-hover); }
.ts-form-notice { margin: 0; padding: 9px 11px; border-radius: 6px; font-size: 12px; }
.ts-form-notice--success { background: #eaf8ef; color: #21623b; }
.ts-form-notice--error { background: #fff1f1; color: #9d2b2b; }
.ts-hp { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.ts-bottom-bar { min-height: 60px; border-top: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: #fff; }
.ts-bottom-bar__inner { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ts-bottom-bar nav { display: flex; align-items: center; gap: 15px; font-size: 12px; }
.ts-bottom-bar nav a { color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (max-width: 1180px) {
  .ts-container { width: min(var(--content), calc(100% - 60px)); }
  .ts-navrow__inner { column-gap: 20px; }
  .ts-nav > a { padding-inline: 12px; font-size: 13px; }
  .ts-hero { min-height: 500px; background-position: calc(100% - 55px) center; }
  .ts-hero__content { min-height: 500px; }
  .ts-hero__copy { width: 430px; max-width: 47%; padding-top: 92px; }
  .ts-hero h1 { width: 430px; font-size: 58px; line-height: 58px; }
  .ts-hero__line { width: 430px; margin-top: 28px; margin-bottom: 29px; }
  .ts-hero p { width: 430px; font-size: 17px; max-width: 100%; }
  .ts-about-grid { gap: 28px; }
  .ts-about-benefits li { font-size: 15px; }
  .ts-services-grid { gap: 34px; }
}

@media (max-width: 992px) {
  .ts-topbar__address { display: none; }
  .ts-header__main { height: 126px; }
  .ts-brand img { width: 122px; height: 120px; }
  .ts-header__callout span { font-size: 14px; }
  .ts-header__callout a { font-size: 27px; }
  .ts-navrow, .ts-navrow__inner, .ts-nav { min-height: 54px; }
  .ts-navrow__inner { column-gap: 14px; }
  .ts-nav > a, .ts-nav > a > span { min-height: 54px; }
  .ts-nav > a { padding-inline: 8px; font-size: 11px; }
  .ts-nav-cta { min-height: 34px; padding: 7px 12px; font-size: 10px; }
  .ts-hero { min-height: 450px; background-position: calc(100% - 44px) center; }
  .ts-hero__content { min-height: 450px; }
  .ts-hero__navy { clip-path: polygon(0 0, 57% 0, 47% 100%, 0 100%); }
  .ts-hero__navy-right { clip-path: polygon(96% 0, 100% 0, 100% 100%, 90% 100%); }
  .ts-hero__copy { width: 390px; max-width: 54%; padding-top: 86px; }
  .ts-hero h1 { width: 390px; font-size: 49px; line-height: 49px; }
  .ts-hero__line { width: 390px; height: 4px; margin: 24px 0 29px; }
  .ts-hero p { width: 390px; font-size: 15px; line-height: 1.6; }
  .ts-features__grid { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .ts-about-grid { grid-template-columns: 1fr 1fr; }
  .ts-owner-card { grid-column: 1 / -1; max-width: 500px; width: 100%; margin: 0 auto; }
  .ts-faq-grid { grid-template-columns: 1fr; gap: 0; }
  .ts-footer__grid { gap: 40px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .ts-container { width: calc(100% - 40px); }
  .ts-topbar { display: none; }
  .ts-header__main { height: 78px; }
  .ts-brand img { width: 66px; height: 64px; }
  .ts-header__callout { display: none; }
  .ts-menu-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    cursor: pointer;
  }
  .ts-menu-toggle span { width: 100%; height: 2px; background: #fff; align-self: center; }
  .ts-navrow { min-height: 0; border-top: 0; }
  .ts-navrow__inner { min-height: 0; display: block; width: 100%; }
  .ts-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    min-height: 0;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 10px 24px rgba(31,54,92,.12);
  }
  .ts-nav.is-open { display: flex; }
  .ts-nav > a,
  .ts-nav > a:first-child {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 20px;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .ts-nav > a > span { min-height: 48px; }
  .ts-nav > a > span::after { display: none; }
  .ts-nav-cta { display: none; }

  .ts-hero {
    min-height: 520px;
    background-position: 61% center;
    background-size: auto 100%;
  }
  .ts-hero__navy { background: rgba(31,54,92,.91); clip-path: none; }
  .ts-hero__navy-right { display: none; }
  .ts-hero__content { min-height: 520px; align-items: flex-end; padding-bottom: 58px; }
  .ts-hero__copy { width: 100%; max-width: 100%; padding-top: 0; }
  .ts-hero h1 { width: 100%; font-size: clamp(43px, 13vw, 64px); line-height: 1.05; }
  .ts-hero__line { width: 180px; margin: 20px 0 24px; }
  .ts-hero p { width: 100%; font-size: 16px; max-width: 520px; }

  .ts-features { padding: 55px 0 35px; }
  .ts-features__grid { grid-template-columns: 1fr; row-gap: 35px; }
  .ts-feature { padding-bottom: 10px; }
  .ts-feature p br { display: none; }

  .ts-about-section,
  .ts-services-section,
  .ts-faq-section { padding-top: 58px; padding-bottom: 58px; }
  .ts-heading { margin-bottom: 42px; }
  .ts-heading h2 { font-size: 31px; }
  .ts-heading span { width: 150px; height: 4px; }
  .ts-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .ts-owner-card { grid-column: auto; }
  .ts-about-benefits li { font-size: 15px; }

  .ts-cta { padding: 45px 0 50px; }
  .ts-cta h2 { font-size: 30px; }
  .ts-cta a { min-height: 54px; font-size: 16px; }

  .ts-services-grid { grid-template-columns: 1fr; gap: 48px; }
  .ts-service img { width: 205px; height: 205px; }
  .ts-ba-heading { margin-top: 60px; }
  .ts-ba-heading h2 { font-size: 31px; }
  .ts-ba-heading h2::after { width: 150px; height: 4px; }
  .ts-ba-grid { grid-template-columns: 1fr; gap: 20px; }
  .ts-ba { max-width: 440px; width: 100%; margin-inline: auto; }

  .ts-faq-intro br { display: none; }
  .ts-faq-intro { margin-bottom: 30px; }

  .ts-footer__grid { grid-template-columns: 1fr; gap: 42px; padding-top: 45px; }
  .ts-contact-form__row { grid-template-columns: 1fr; }
  .ts-bottom-bar__inner { flex-direction: column; justify-content: center; gap: 6px; padding: 12px 0; text-align: center; }
}

@media (max-width: 420px) {
  .ts-container { width: calc(100% - 30px); }
  .ts-hero { min-height: 480px; }
  .ts-hero__content { min-height: 480px; padding-bottom: 45px; }
  .ts-hero h1 { font-size: 40px; }
  .ts-hero p { font-size: 14px; }
  .ts-footer dl > div { grid-template-columns: 1fr; gap: 1px; }
}
@media (min-width: 761px) {
  .ts-header.nav-fixed { padding-bottom: 60px; }
}

/* Mobile direct contact in hamburger */
.ts-mobile-contact { display: none; }

/* Privacy settings buttons in footer */
.ts-privacy-footer-button,
.ts-footer-legal-mobile button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.ts-privacy-footer-button:hover,
.ts-footer-legal-mobile button:hover { color: var(--accent); }

.ts-footer-legal-mobile { display: none; }

/* DSGVO / privacy notice */
body.ts-privacy-open { overflow: hidden; }
.ts-privacy-consent {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}
.ts-privacy-consent.is-visible { display: flex; }
.ts-privacy-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 24, 45, .48);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.ts-privacy-consent__panel {
  position: relative;
  width: min(720px, 100%);
  padding: 26px 28px 24px;
  border: 1px solid rgba(255, 181, 54, .34);
  border-radius: 20px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 22px 70px rgba(10, 28, 56, .28);
  color: #6f7988;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.ts-privacy-consent__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-hover);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ts-privacy-consent h2 {
  margin: 0 42px 10px 0;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: none;
}
.ts-privacy-consent p {
  margin: 0;
  color: #727d8d;
  font-size: 13px;
  line-height: 1.65;
}
.ts-privacy-consent__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(31, 54, 92, .12);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.ts-privacy-consent__essential {
  margin-top: 18px;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: center;
  border: 1px solid rgba(31, 54, 92, .10);
  border-radius: 12px;
  background: rgba(245, 247, 250, .78);
}
.ts-privacy-consent__check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.ts-privacy-consent__essential strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 13px;
}
.ts-privacy-consent__essential small {
  display: block;
  color: #818b99;
  font-size: 11px;
  line-height: 1.45;
}
.ts-privacy-consent__actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.ts-privacy-consent__link,
.ts-privacy-consent__accept {
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.ts-privacy-consent__link {
  border: 1px solid rgba(31, 54, 92, .18);
  color: var(--navy);
  background: #fff;
}
.ts-privacy-consent__accept {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--navy);
  cursor: pointer;
}
.ts-privacy-consent__accept:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

@media (max-width: 760px) {
  .ts-menu-toggle { position: relative; z-index: 102; }
  .ts-menu-toggle span { transition: transform .2s ease, opacity .2s ease; transform-origin: center; }
  .ts-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .ts-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .ts-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .ts-nav {
    z-index: 101;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .ts-mobile-contact {
    display: grid;
    gap: 0;
    padding: 10px 20px 14px;
    background: #f7f8fa;
    border-bottom: 1px solid var(--line);
  }
  .ts-mobile-contact a {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
  }
  .ts-mobile-contact svg {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--accent-hover);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Legal links remain reachable above Chrome's bottom toolbar. */
  .ts-footer-legal-mobile {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 11px;
    color: #fff;
    font-size: 12px;
  }
  .ts-footer-legal-mobile a { color: #fff; text-decoration: none; }
  .ts-footer-legal-mobile a:hover { color: var(--accent); }
  .ts-footer-legal-mobile button { color: #fff; }

  .ts-bottom-bar { position: relative; z-index: 2; }
  .ts-bottom-bar__inner {
    min-height: 82px;
    padding: 14px 0 calc(18px + env(safe-area-inset-bottom));
  }
  .ts-bottom-bar nav {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .ts-privacy-consent {
    align-items: flex-end;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  }
  .ts-privacy-consent__panel {
    padding: 22px 18px 18px;
    border-radius: 18px;
  }
  .ts-privacy-consent h2 { font-size: 23px; }
  .ts-privacy-consent__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .ts-privacy-consent__link,
  .ts-privacy-consent__accept { width: 100%; }
}

.ts-privacy-inline-button {
  margin-top: 16px;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  background: rgba(255,181,54,.10);
  color: var(--navy);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.ts-privacy-inline-button:hover { background: var(--accent); }

/* 2026-08-23: Mobile sticky header + off-canvas navigation */
@media (max-width: 760px) {
  body { padding-top: 82px; }

  .ts-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1005;
    background: #fff;
    box-shadow: 0 2px 12px rgba(31,54,92,.10);
  }

  .ts-header__main {
    position: relative;
    z-index: 1006;
    height: 82px;
    background: #fff;
  }

  .ts-brand img {
    width: 78px;
    height: 74px;
    object-fit: contain;
  }

  .ts-navrow {
    position: static;
    border: 0;
    min-height: 0;
  }

  .ts-navrow__inner {
    position: static;
    width: 100%;
    min-height: 0;
  }

  .ts-nav {
    display: flex;
    position: fixed;
    z-index: 1004;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(82vw, 390px);
    max-height: none;
    padding: 104px 0 28px;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    background: #fff;
    box-shadow: -12px 0 34px rgba(20,42,73,.18);
    transform: translateX(105%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .26s ease, opacity .2s ease, visibility .26s step-end;
    overscroll-behavior: contain;
  }

  .ts-nav.is-open {
    display: flex;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .26s ease, opacity .2s ease, visibility 0s;
  }

  .ts-nav > a,
  .ts-nav > a:first-child {
    min-height: 64px;
    padding: 0 30px;
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid rgba(31,54,92,.13);
    color: #26364c;
    font-size: 17px;
    font-weight: 500;
  }

  .ts-nav > a > span { min-height: 64px; }
  .ts-nav > a.is-active { color: var(--accent-hover); }

  .ts-menu-toggle {
    position: relative;
    z-index: 1007;
    width: 48px;
    height: 48px;
    padding: 13px 11px;
    border-radius: 0;
    background: var(--navy);
  }

  .ts-menu-toggle span {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    margin: 0;
    background: #fff;
    transform: none;
    opacity: 1;
    transition: top .2s ease, transform .2s ease, opacity .15s ease;
  }
  .ts-menu-toggle span:nth-child(1) { top: 15px; }
  .ts-menu-toggle span:nth-child(2) { top: 23px; }
  .ts-menu-toggle span:nth-child(3) { top: 31px; }

  .ts-menu-toggle.is-open {
    background: var(--navy);
  }
  .ts-menu-toggle.is-open span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
  }
  .ts-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .ts-menu-toggle.is-open span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
  }

  .ts-menu-backdrop {
    position: fixed;
    z-index: 1003;
    inset: 0;
    background: rgba(18,42,70,.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s step-end;
  }
  .ts-menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .22s ease, visibility 0s;
  }

  body.ts-menu-open { overflow: hidden; }
}

/* 2026-08-23 final mobile fixed header override */
@media (max-width: 760px) {
  html { scroll-padding-top: 86px !important; }
  body { padding-top: 82px !important; }

  .ts-topbar { display: none !important; }
  .ts-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100% !important;
    height: 82px !important;
    z-index: 2147483000 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: 0 2px 14px rgba(31,54,92,.12) !important;
    transform: translate3d(0,0,0) !important;
    -webkit-transform: translate3d(0,0,0) !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: layout paint;
  }

  .ts-header__main {
    position: relative !important;
    z-index: 3 !important;
    width: calc(100% - 30px) !important;
    height: 82px !important;
    min-height: 82px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #fff !important;
  }

  .ts-brand {
    position: relative !important;
    z-index: 4 !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  .ts-brand img {
    width: 78px !important;
    height: 74px !important;
    object-fit: contain !important;
  }

  .ts-menu-toggle {
    display: block !important;
    position: relative !important;
    z-index: 5 !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
  }

  .ts-navrow,
  .ts-navrow__inner {
    position: static !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .ts-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 2147482999 !important;
    width: min(82vw,390px) !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    padding-top: 102px !important;
  }

  .ts-menu-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147482998 !important;
  }
}

/* 2026-08-23 final mobile fixed header override */
@media (max-width: 760px) {
  html { scroll-padding-top: 86px !important; }
  body { padding-top: 82px !important; }
  .ts-topbar { display: none !important; }
  .ts-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100% !important;
    height: 82px !important;
    z-index: 2147483000 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: 0 2px 14px rgba(31,54,92,.12) !important;
    transform: translate3d(0,0,0) !important;
    -webkit-transform: translate3d(0,0,0) !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: layout paint;
  }
  .ts-header__main {
    position: relative !important;
    z-index: 3 !important;
    width: calc(100% - 30px) !important;
    height: 82px !important;
    min-height: 82px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #fff !important;
  }
  .ts-brand { position: relative !important; z-index: 4 !important; display: inline-flex !important; align-items: center !important; }
  .ts-brand img { width: 78px !important; height: 74px !important; object-fit: contain !important; }
  .ts-menu-toggle {
    display: block !important;
    position: relative !important;
    z-index: 5 !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
  }
  .ts-navrow, .ts-navrow__inner {
    position: static !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }
  .ts-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 2147482999 !important;
    width: min(82vw,390px) !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    padding-top: 102px !important;
  }
  .ts-menu-backdrop { position: fixed !important; inset: 0 !important; z-index: 2147482998 !important; }
}


/* Mobile header logo visibility fix */
@media (max-width: 760px) {
  .ts-header .ts-brand {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 auto !important;
    width: 96px !important;
    height: 76px !important;
    overflow: visible !important;
  }
  .ts-header .ts-brand img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 92px !important;
    height: 72px !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: left center !important;
    filter: none !important;
    transform: none !important;
  }
}


/* 2026-08-23 mobile menu repair: fixed header + unclipped drawer */
@media (max-width: 760px) {
  .ts-header {
    transform: none !important;
    -webkit-transform: none !important;
    contain: none !important;
    overflow: visible !important;
  }

  .ts-navrow,
  .ts-navrow__inner {
    overflow: visible !important;
  }

  .ts-nav {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(86vw, 390px) !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    padding: 96px 0 24px !important;
    background: #fff !important;
    overflow-y: auto !important;
    transform: translate3d(105%,0,0) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 2147483001 !important;
  }

  .ts-nav.is-open {
    transform: translate3d(0,0,0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .ts-header__main { z-index: 2147483003 !important; }
  .ts-menu-toggle { z-index: 2147483004 !important; }

  .ts-menu-backdrop {
    z-index: 2147482999 !important;
  }

  .ts-mobile-contact {
    display: grid !important;
    gap: 0 !important;
    margin-top: 8px !important;
    padding: 10px 24px 20px !important;
    background: #f7f8fa !important;
    border-bottom: 0 !important;
  }
  .ts-mobile-contact a {
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: var(--navy) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
  }
  .ts-mobile-contact svg {
    flex: 0 0 auto !important;
    width: 20px !important;
    height: 20px !important;
    fill: none !important;
    stroke: var(--accent-hover) !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }
}
