/* Termal Şok — premium public UI
   Brand: blue #1c3e98 · accent orange #ee8119
   Overlay on template-3; does not replace admin styles. */

:root {
  --ts-blue: #1c3e98;
  --ts-blue-deep: #142c6e;
  --ts-blue-ink: #0e1f52;
  --ts-orange: #ee8119;
  --ts-orange-soft: #c96c14;
  --ts-ink: #0d0d0d;
  --ts-ink-muted: #3d3d3d;
  --ts-ink-soft: #6e6e6e;
  --ts-line: rgba(13, 13, 13, 0.12);
  --ts-line-strong: rgba(13, 13, 13, 0.22);
  --ts-paper: #f6f5f2;
  --ts-white: #ffffff;
  --ts-radius: 2px;
  --ts-header-h: 76px;
  --ts-header-h-scrolled: 64px;
  --ts-space-section: clamp(5.5rem, 10vw, 8.5rem);
  --ts-max: 1240px;
  --ts-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ts-font: Inter, system-ui, -apple-system, sans-serif;
}

.ts-site {
  font-family: var(--ts-font);
  color: var(--ts-ink);
  background: var(--ts-white);
}

.ts-site .mad-page-wrapper {
  overflow-x: clip;
}

body.ts-site:not(.ts-home) {
  padding-top: var(--ts-header-h);
}

.ts-skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  padding: 0.7rem 1rem;
  background: var(--ts-blue);
  color: var(--ts-white);
  font-size: 0.875rem;
}

.ts-skip:focus {
  top: 1rem;
}

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

/* ---------- Back to top ---------- */
.mad-back-to-top {
  display: none !important;
}

.ts-back-to-top {
  position: fixed;
  top: auto;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ts-orange);
  color: var(--ts-white);
  box-shadow: 0 4px 14px rgba(238, 129, 25, 0.35);
  text-decoration: none;
}

.ts-back-to-top[hidden] {
  display: none !important;
}

.ts-back-to-top:hover,
.ts-back-to-top:focus-visible {
  background: var(--ts-orange-soft);
  color: var(--ts-white);
}

.ts-back-to-top__icon {
  display: block;
  width: 10px;
  height: 10px;
  margin-top: 3px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-45deg);
}

body.ts-has-whatsapp .ts-back-to-top {
  bottom: calc(1.25rem + 52px + 0.75rem);
}

/* ---------- WhatsApp sticky ---------- */
.ts-whatsapp-sticky {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1035;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--ts-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: background 0.2s var(--ts-ease), box-shadow 0.2s var(--ts-ease), transform 0.2s var(--ts-ease);
}

.ts-whatsapp-sticky i {
  font-size: 1.65rem;
}

.ts-whatsapp-sticky:hover,
.ts-whatsapp-sticky:focus-visible {
  background: #1ebe57;
  color: var(--ts-white);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.ts-whatsapp-sticky:active {
  transform: scale(0.96);
}

@media (max-width: 768px) {
  body.ts-has-whatsapp .ts-back-to-top {
    bottom: calc(1rem + 48px + 0.65rem);
  }

  .ts-whatsapp-sticky {
    right: 1rem;
    bottom: 1rem;
    width: 48px;
    height: 48px;
  }

  .ts-whatsapp-sticky i {
    font-size: 1.5rem;
  }
}

.ts-site a:focus-visible,
.ts-site button:focus-visible,
.ts-site input:focus-visible,
.ts-site select:focus-visible,
.ts-site textarea:focus-visible {
  outline: 2px solid var(--ts-orange);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--ts-radius);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ts-ease), color 0.2s var(--ts-ease), border-color 0.2s var(--ts-ease);
}

.ts-btn--primary {
  background: var(--ts-blue);
  color: var(--ts-white);
  border-color: var(--ts-blue);
}

.ts-btn--primary:hover,
.ts-btn--primary:focus-visible {
  background: var(--ts-blue-deep);
  color: var(--ts-white);
  text-decoration: none;
}

.ts-btn--ghost {
  background: transparent;
  color: var(--ts-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.ts-btn--ghost:hover,
.ts-btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ts-white);
  text-decoration: none;
}

.ts-btn--solid-light {
  background: var(--ts-white);
  color: var(--ts-blue);
  border-color: var(--ts-white);
}

.ts-btn--solid-light:hover {
  background: var(--ts-paper);
  color: var(--ts-blue-deep);
  text-decoration: none;
}

.ts-btn--cta {
  background: var(--ts-blue);
  color: var(--ts-white);
  border-color: var(--ts-blue);
}

.ts-header.is-solid .ts-btn--cta,
.ts-header:not(.ts-header--over-hero) .ts-btn--cta,
.ts-header.ts-header--over-hero:not(.is-solid) .ts-btn--cta {
  background: var(--ts-blue);
  color: var(--ts-white);
  border-color: var(--ts-blue);
}

/* ---------- Header ---------- */
.ts-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--ts-header-h);
  transition: height 0.22s var(--ts-ease), background 0.22s var(--ts-ease), box-shadow 0.22s var(--ts-ease);
}

.ts-header__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.ts-header__logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.ts-header.is-solid {
  height: var(--ts-header-h-scrolled);
  background: var(--ts-white);
  border-bottom: 1px solid var(--ts-line);
}

.ts-header:not(.ts-header--over-hero) {
  background: var(--ts-white);
  border-bottom: 1px solid var(--ts-line);
}

.ts-header--over-hero:not(.is-solid) {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ts-nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1100px) {
  .ts-nav-wrap {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
  }

  .ts-nav-wrap .ts-lang,
  .ts-nav-wrap .ts-header__mobile-cta {
    display: none;
  }
}

.ts-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ts-ink);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.ts-nav a:hover,
.ts-nav a.is-active {
  color: var(--ts-blue);
  text-decoration: none;
  border-bottom-color: var(--ts-orange);
}

.ts-header__actions {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-shrink: 0;
}

.ts-lang {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.ts-lang a {
  color: var(--ts-ink-muted);
  text-decoration: none;
}

.ts-lang a.is-active,
.ts-lang a:hover {
  color: var(--ts-blue);
  text-decoration: none;
}

.ts-lang__sep {
  color: var(--ts-line-strong);
}

.ts-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.ts-header__toggle span,
.ts-header__toggle span::before,
.ts-header__toggle span::after {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ts-ink);
  position: relative;
  margin: 0 auto;
  transition: transform 0.2s, opacity 0.2s, background 0.2s;
}

.ts-header__toggle span::before,
.ts-header__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.ts-header__toggle span::before {
  top: -6px;
}

.ts-header__toggle span::after {
  top: 6px;
}

.ts-header.is-open .ts-header__toggle span {
  background: transparent;
}

.ts-header.is-open .ts-header__toggle span::before {
  top: 0;
  transform: rotate(45deg);
  background: var(--ts-ink);
}

.ts-header.is-open .ts-header__toggle span::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--ts-ink);
}

@media (max-width: 1099px) {
  .ts-header__toggle {
    display: block;
  }

  .ts-nav-wrap {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--ts-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ts-white);
    padding: 0.75rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
    transform: translateX(100%);
    transition: transform 0.28s var(--ts-ease);
    overflow-y: auto;
    z-index: 1;
  }

  .ts-header.is-solid .ts-nav-wrap {
    top: var(--ts-header-h-scrolled);
  }

  .ts-header.is-open .ts-nav-wrap {
    transform: none;
  }

  .ts-nav-wrap nav {
    flex: none;
    padding: 0 clamp(1.25rem, 5vw, 1.75rem);
  }

  .ts-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .ts-nav li {
    width: 100%;
  }

  .ts-nav a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--ts-ink) !important;
    background: var(--ts-white);
    border: 1px solid var(--ts-line);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(13, 13, 13, 0.04);
  }

  .ts-nav a:hover,
  .ts-nav a.is-active {
    color: var(--ts-blue) !important;
    border-bottom-color: var(--ts-line);
    text-decoration: none;
  }

  .ts-nav a.is-active {
    box-shadow: inset 2px 0 0 var(--ts-orange), 0 4px 12px rgba(13, 13, 13, 0.04);
  }

  .ts-header--over-hero:not(.is-solid) .ts-nav a {
    color: var(--ts-ink) !important;
  }

  .ts-header__mobile-cta {
    display: flex;
    width: calc(100% - 2.5rem);
    margin: 0.85rem 1.25rem 0;
    justify-content: center;
    border-radius: 999px;
  }

  .ts-header:not(.is-open) .ts-header__mobile-cta {
    display: none;
  }
}

@media (min-width: 1100px) {
  .ts-header__mobile-cta {
    display: none;
  }
}

@media (max-width: 1099px) {
  .ts-header__actions .ts-lang {
    display: none;
  }

  .ts-header__desktop-cta {
    display: none;
  }

  .ts-header.is-open .ts-nav-wrap .ts-lang {
    display: flex;
    align-items: center;
    margin: 1.15rem 1.25rem 0;
    padding: 0;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
  }

  .ts-header.is-open .ts-nav-wrap .ts-lang a {
    color: var(--ts-ink-muted);
  }

  .ts-header.is-open .ts-nav-wrap .ts-lang a.is-active,
  .ts-header.is-open .ts-nav-wrap .ts-lang a:hover {
    color: var(--ts-blue);
  }
}

/* ---------- Hero ---------- */
.ts-hero {
  position: relative;
  height: min(92vh, 920px);
  min-height: 560px;
  background: #1a1a1a;
  color: var(--ts-white);
  overflow: hidden;
}

.ts-fold {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ts-fold .ts-hero {
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
}

.ts-hero__slides {
  position: absolute;
  inset: 0;
}

.ts-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ts-ease), visibility 0.9s;
  pointer-events: none;
}

.ts-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.ts-hero__media {
  position: absolute;
  inset: 0;
}

.ts-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ts-hero__slide[data-slide="1"] img {
  object-position: 48% 36%;
}

.ts-hero__slide[data-slide="2"] img {
  object-position: 52% 40%;
}

.ts-hero__slide[data-slide="3"] img {
  object-position: 42% 48%;
}

.ts-hero__slide[data-slide="4"] img {
  object-position: 50% 46%;
}

.ts-hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ts-hero__slide[data-copy="right"] .ts-hero__veil {
  background: linear-gradient(
    90deg,
    rgba(13, 13, 13, 0) 0%,
    rgba(13, 13, 13, 0.08) 46%,
    rgba(13, 13, 13, 0.38) 100%
  );
}

.ts-hero__slide[data-copy="left"] .ts-hero__veil {
  background: linear-gradient(
    270deg,
    rgba(13, 13, 13, 0) 0%,
    rgba(13, 13, 13, 0.08) 46%,
    rgba(13, 13, 13, 0.4) 100%
  );
}

.ts-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: calc(var(--ts-header-h) + 2rem) clamp(1.25rem, 4vw, 2.5rem) 6.5rem;
  display: flex;
  align-items: center;
}

.ts-hero__slide[data-copy="right"] .ts-hero__inner {
  justify-content: flex-end;
}

.ts-hero__slide[data-copy="left"] .ts-hero__inner {
  justify-content: flex-start;
}

.ts-hero__copy {
  max-width: 34rem;
}

.ts-hero__eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

.ts-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ts-white);
}

.ts-hero__lead {
  margin: 1.35rem 0 0;
  max-width: 30rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.ts-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.ts-hero__controls {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-hero__arrows {
  display: flex;
  gap: 0.4rem;
}

.ts-hero__arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--ts-white);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
}

.ts-hero__arrow:hover {
  border-color: var(--ts-orange);
  background: rgba(238, 129, 25, 0.15);
}

.ts-hero__dots {
  display: flex;
  gap: 0.55rem;
}

.ts-hero__dot {
  width: 28px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.ts-hero__dot.is-active {
  background: var(--ts-orange);
}

.ts-hero__live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 1099px) {
  .ts-hero {
    height: 62vh;
    min-height: 480px;
    max-height: 640px;
  }

  .ts-hero__slide[data-slide="1"] img {
    object-position: 42% 22%;
  }

  .ts-hero__slide[data-slide="2"] img {
    object-position: 62% 32%;
  }

  .ts-hero__slide[data-slide="3"] img {
    object-position: 48% 42%;
  }

  .ts-hero__slide[data-slide="4"] img {
    object-position: 50% 38%;
  }

  .ts-hero__slide[data-copy] .ts-hero__veil {
    background: linear-gradient(
      to top,
      rgba(13, 13, 13, 0.58) 0%,
      rgba(13, 13, 13, 0.22) 42%,
      rgba(13, 13, 13, 0) 72%
    );
  }

  .ts-hero__inner,
  .ts-hero__slide[data-copy="right"] .ts-hero__inner,
  .ts-hero__slide[data-copy="left"] .ts-hero__inner {
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 5.25rem;
  }

  .ts-hero__title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .ts-hero__lead {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ts-hero__slide {
    transition: none;
  }
}

/* ---------- Trust ---------- */
.ts-trust {
  position: relative;
  z-index: 4;
  margin-top: -3.5rem;
  background: var(--ts-white);
  border-top: 1px solid var(--ts-line);
  border-bottom: 1px solid var(--ts-line);
}

.ts-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
}

.ts-trust__item {
  padding: 0.25rem 1.25rem;
  border-right: 1px solid rgba(13, 13, 13, 0.08);
}

.ts-trust__item:first-child {
  padding-left: 0;
}

.ts-trust__item:last-child {
  border-right: 0;
  padding-right: 0;
}

.ts-trust__value {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ts-blue);
}

.ts-trust__label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ts-ink-soft);
  max-width: 12rem;
}

@media (max-width: 1099px) {
  .ts-fold {
    min-height: auto;
  }

  .ts-fold .ts-hero {
    height: 58vh;
    min-height: 420px;
    max-height: 560px;
    flex: none;
  }

  .ts-trust {
    margin-top: -1.75rem;
  }

  .ts-trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 0;
    padding: 1rem 1.25rem;
  }

  .ts-trust__item {
    border-right: 0;
    padding: 0 1rem 0 0;
  }

  .ts-trust__item:nth-child(odd) {
    border-right: 1px solid rgba(13, 13, 13, 0.08);
    padding-right: 1.25rem;
  }
}

@media (max-width: 767px) {
  .ts-trust__grid {
    gap: 0.75rem 0.65rem;
    padding: 0.65rem 1.15rem 0.75rem;
  }

  .ts-trust__item,
  .ts-trust__item:nth-child(odd) {
    border-right: 0;
    padding: 0.15rem 0.35rem 0.15rem 0;
  }

  .ts-trust__value {
    font-size: clamp(1.05rem, 4.5vw, 1.2rem);
    font-weight: 500;
  }

  .ts-trust__label {
    margin-top: 0.12rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 480px) {
  .ts-trust__item:nth-child(odd) {
    border-right: 0;
  }
}

/* ---------- Intro ---------- */
.ts-intro {
  background: var(--ts-paper);
  padding: clamp(3rem, 5vw, 4.25rem) 0;
}

.ts-intro__wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 16px;
}

.ts-intro__badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(28, 62, 152, 0.18);
  border-radius: 999px;
  background: rgba(28, 62, 152, 0.06);
  color: var(--ts-blue);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ts-intro__title {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ts-ink);
}

.ts-intro__text {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ts-ink-muted);
}

.ts-intro__cta {
  margin-top: 1.25rem;
}

.ts-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.ts-intro__stat {
  padding: 0.35rem 0 0;
  border-top: 1px solid var(--ts-line);
}

.ts-intro__stat-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ts-blue);
}

.ts-intro__stat-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ts-ink-soft);
}

@media (max-width: 1099px) {
  .ts-intro__wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ts-intro__media img {
    aspect-ratio: 16 / 11;
  }
}

/* ---------- Treatments ---------- */
.ts-treatments {
  background: var(--ts-white);
  padding: var(--ts-space-section) 0;
}

.ts-treatments:not(.ts-treatments--page) {
  max-width: none;
  width: 100%;
  background: var(--ts-white);
  padding-bottom: clamp(3.25rem, 6vw, 5rem);
}

.ts-treatments__head {
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto 2.5rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-treatments:not(.ts-treatments--page) .ts-treatments__head {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.ts-treatments__lead {
  margin: 0.9rem auto 0;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ts-ink-muted);
}

.ts-treatments__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-treatments:not(.ts-treatments--page) .ts-treatments__stage {
  max-width: none;
  width: 100%;
  gap: 0.75rem;
  padding: 0 clamp(0.65rem, 1.8vw, 1.35rem);
}

.ts-treatments__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--ts-line);
  border-radius: 50%;
  background: var(--ts-white);
  color: var(--ts-blue);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(13, 13, 13, 0.16);
  transition: background 0.2s var(--ts-ease), color 0.2s var(--ts-ease), border-color 0.2s var(--ts-ease);
}

.ts-treatments:not(.ts-treatments--page) .ts-treatments__arrow {
  position: static;
  flex-shrink: 0;
}

.ts-treatments__arrow:hover,
.ts-treatments__arrow:focus-visible {
  background: var(--ts-orange);
  border-color: var(--ts-orange);
  color: var(--ts-white);
}

.ts-treatments__arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.ts-treatments__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ts-blue);
}

.ts-treatments__title {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ts-ink);
}

.ts-treatments__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-treatments:not(.ts-treatments--page) .ts-treatments__grid {
  --ts-treat-gap: 1.15rem;
  display: flex;
  align-items: stretch;
  gap: var(--ts-treat-gap);
  min-width: 0;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 6px 0;
  overflow: hidden;
}

.ts-treatments:not(.ts-treatments--page) .ts-card--slide {
  display: none;
  flex: 0 0 calc((100% - 2 * var(--ts-treat-gap)) / 2.5);
  width: calc((100% - 2 * var(--ts-treat-gap)) / 2.5);
  min-width: 0;
  height: clamp(15rem, 22vw, 17.5rem);
  aspect-ratio: auto;
}

.ts-treatments:not(.ts-treatments--page) .ts-card--slide.is-visible {
  display: block;
}

.ts-treatments:not(.ts-treatments--page) .ts-card--slide.is-featured {
  display: block;
  flex: 0 0 calc((100% - 2 * var(--ts-treat-gap)) / 2.5);
  width: calc((100% - 2 * var(--ts-treat-gap)) / 2.5);
  background: #051237;
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.ts-treatments:not(.ts-treatments--page).is-equal .ts-card--slide.is-visible {
  display: block;
  flex: 1 1 0;
  width: auto;
  background: #051237;
}

.ts-card {
  display: flex;
  flex-direction: column;
  background: var(--ts-white);
  border: 1px solid var(--ts-line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.ts-card:hover,
.ts-card:focus-visible {
  text-decoration: none;
  color: inherit;
}

.ts-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.ts-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ts-ease);
}

.ts-card:hover .ts-card__media img {
  transform: scale(1.04);
}

.ts-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.4rem 1.25rem;
  background: #fdf8f5;
}

.ts-card__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ts-ink);
}

.ts-card__text {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ts-ink-muted);
}

.ts-card__more {
  margin-top: auto;
  padding-top: 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

.ts-card--slide {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 0.82;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: #051237;
  box-shadow: 0 18px 40px rgba(5, 18, 55, 0.18);
}

.ts-card--slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ts-ease);
}

.ts-card--slide:hover img {
  transform: scale(1.04);
}

.ts-card--slide .ts-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(5, 18, 55, 0) 30%,
    rgba(5, 18, 55, 0.15) 48%,
    rgba(5, 18, 55, 0.92) 100%
  );
}

.ts-card--slide .ts-card__body {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  display: block;
  flex: none;
  padding: 0;
  background: transparent;
}

.ts-card--slide .ts-card__title {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ts-white);
}

.ts-card--slide .ts-card__text {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.ts-card--slide .ts-card__more {
  display: inline-block;
  margin-top: 1rem;
  padding-top: 0;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

.ts-treatments__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin: 1.75rem 0 0;
  padding: 0;
}

.ts-treatments__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8c8c8;
  cursor: pointer;
  transition: background 0.2s var(--ts-ease), transform 0.2s var(--ts-ease);
}

.ts-treatments__dot.is-active {
  background: var(--ts-orange);
  transform: scale(1.2);
}

.ts-treatments--page {
  padding-top: 2.5rem;
}

.ts-treatments__pager,
.ts-treatments__empty {
  max-width: calc(var(--ts-max) + 6rem);
  margin: 2rem auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.ts-treatments__empty {
  color: var(--ts-ink-muted);
}

@media (max-width: 1099px) {
  .ts-treatments:not(.ts-treatments--page):not(.is-equal) .ts-card--slide.is-visible[style*="order: 1"],
  .ts-treatments:not(.ts-treatments--page):not(.is-equal) .ts-card--slide.is-visible[style*="order:1"] {
    display: none;
  }

  .ts-treatments:not(.ts-treatments--page) .ts-card--slide,
  .ts-treatments:not(.ts-treatments--page) .ts-card--slide.is-featured {
    flex: 0 0 calc((100% - var(--ts-treat-gap)) / 1.5);
    width: calc((100% - var(--ts-treat-gap)) / 1.5);
    height: clamp(14.5rem, 28vw, 17rem);
  }

  .ts-treatments:not(.ts-treatments--page) .ts-card--slide.is-featured {
    outline-width: 2px;
    outline-offset: 2px;
  }
}

@media (max-width: 767px) {
  .ts-treatments--page .ts-treatments__grid {
    grid-template-columns: 1fr;
  }

  .ts-treatments:not(.ts-treatments--page) .ts-card--slide.is-visible:not(.is-featured) {
    display: none;
  }

  .ts-treatments:not(.ts-treatments--page) .ts-card--slide.is-featured,
  .ts-treatments:not(.ts-treatments--page).is-equal .ts-card--slide.is-visible {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
    height: min(58vw, 18.5rem);
  }

  .ts-treatments:not(.ts-treatments--page).is-equal .ts-card--slide.is-visible:not(.is-featured) {
    display: none;
  }

  .ts-card--slide .ts-card__body {
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ts-card__media img,
  .ts-card--slide img,
  .ts-treatments__arrow,
  .ts-treatments__dot {
    transition: none;
  }
}

/* ---------- Blog ---------- */
.ts-blog {
  background: var(--ts-white);
  padding: 2rem 0 clamp(3.25rem, 6vw, 5.5rem);
}

.ts-blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto 2.25rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-blog__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

.ts-blog__title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ts-ink);
}

.ts-blog__lead {
  margin: 0.7rem 0 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ts-ink-muted);
}

.ts-blog__all {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  min-height: 44px;
  padding: 0.35rem 0.4rem 0.35rem 1.15rem;
  background: var(--ts-blue);
  color: var(--ts-white);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
}

.ts-blog__all:hover,
.ts-blog__all:focus-visible {
  color: var(--ts-white);
  text-decoration: none;
  background: var(--ts-blue-deep);
}

.ts-blog__all-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ts-orange);
  color: var(--ts-white);
  font-size: 0.9rem;
}

.ts-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--ts-white);
  border: 1px solid var(--ts-line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  box-shadow: 0 10px 28px rgba(13, 13, 13, 0.06);
}

.ts-blog-card:hover,
.ts-blog-card:focus-visible {
  text-decoration: none;
  color: inherit;
}

.ts-blog-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.ts-blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.2rem 1.1rem;
}

.ts-blog-card p {
  margin-bottom: 0;
}

.ts-blog-card__cat {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

.ts-blog-card__date {
  display: block;
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ts-ink-muted);
}

.ts-blog-card h2.ts-blog-card__title,
.ts-blog-card h3.ts-blog-card__title {
  margin: 0.2rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ts-ink);
}

.ts-blog-card__text {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ts-ink-muted);
}

.ts-blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0;
  padding-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ts-blue);
}

.ts-blog--page {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(3.25rem, 6vw, 5.5rem);
}

.ts-blog__grid--page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ts-blog__grid--page + .ts-blog__grid--page {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.ts-blog__empty,
.ts-blog__pager {
  max-width: calc(var(--ts-max) + 6rem);
  margin: 2rem auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.ts-blog__empty {
  margin-top: 0;
  color: var(--ts-ink-muted);
}

.ts-blog__pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ts-blog__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  min-width: 2.25rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--ts-line);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ts-blue);
  text-decoration: none;
  background: var(--ts-white);
}

.ts-blog__page:hover,
.ts-blog__page:focus-visible {
  color: var(--ts-white);
  background: var(--ts-blue);
  border-color: var(--ts-blue);
  text-decoration: none;
}

.ts-blog__page.is-current {
  color: var(--ts-white);
  background: var(--ts-blue);
  border-color: var(--ts-blue);
}

.ts-blog__page.is-disabled {
  color: var(--ts-ink-muted);
  pointer-events: none;
}

@media (max-width: 1099px) {
  .ts-blog__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .ts-blog__grid,
  .ts-blog__grid--page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 599px) {
  .ts-blog__grid,
  .ts-blog__grid--page {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact ---------- */
.ts-contact {
  background: var(--ts-paper);
  padding: clamp(3rem, 6vw, 5.25rem) 0;
}

.ts-contact__wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem;
  align-items: stretch;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-contact__media {
  position: relative;
  min-height: 28rem;
  border-radius: 16px;
  overflow: hidden;
}

.ts-contact__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-contact__card {
  background: var(--ts-white);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(13, 13, 13, 0.08);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

h2.ts-contact__title {
  display: inline-block;
  margin: 0;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(28, 62, 152, 0.18);
  border-radius: 999px;
  background: rgba(28, 62, 152, 0.08);
  color: var(--ts-blue);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}

.ts-contact__lead {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ts-ink-muted);
}

.ts-contact__flash {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  background: rgba(28, 62, 152, 0.08);
  color: var(--ts-blue);
  font-size: 0.875rem;
}

.ts-contact__errors {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem 0.75rem 1.35rem;
  border-radius: 8px;
  background: #f8ecec;
  color: #8a1f1f;
  font-size: 0.875rem;
}

.ts-contact__form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.ts-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.ts-contact__field input,
.ts-contact__field select,
.ts-contact__field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--ts-line);
  border-radius: 10px;
  background: var(--ts-white);
  color: var(--ts-ink);
  font-family: inherit;
  font-size: 0.95rem;
}

.ts-contact__field textarea {
  min-height: 7rem;
  resize: vertical;
}

.ts-contact__field input:focus,
.ts-contact__field select:focus,
.ts-contact__field textarea:focus {
  outline: none;
  border-color: var(--ts-blue);
  box-shadow: 0 0 0 3px rgba(28, 62, 152, 0.12);
}

.ts-contact__submit {
  width: 100%;
  min-height: 52px;
  border-radius: 10px;
  background: var(--ts-orange);
  border-color: var(--ts-orange);
  color: var(--ts-white);
}

.ts-contact__submit:hover,
.ts-contact__submit:focus-visible {
  background: var(--ts-orange-soft);
  border-color: var(--ts-orange-soft);
  color: var(--ts-white);
}

@media (max-width: 1099px) {
  .ts-contact__wrap {
    grid-template-columns: 1fr;
  }

  .ts-contact__media {
    min-height: 16rem;
    max-height: 20rem;
  }
}

@media (max-width: 599px) {
  .ts-contact__row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.ts-footer {
  background: #161616;
  color: rgba(255, 255, 255, 0.78);
}

.ts-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.ts-footer a:hover,
.ts-footer a:focus-visible {
  color: var(--ts-white);
  text-decoration: none;
}

.ts-footer__main {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 0.9fr;
  gap: 2rem;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: clamp(2.75rem, 5vw, 4.25rem) clamp(1.25rem, 4vw, 2.5rem) 2.25rem;
}

.ts-footer__logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.ts-footer__logo span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ts-white);
}

.ts-footer__meta {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.7;
}

.ts-footer__heading {
  margin: 0 0 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ts-white);
}

.ts-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ts-footer__col li + li {
  margin-top: 0.45rem;
}

.ts-footer__col a {
  font-size: 0.92rem;
}

.ts-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ts-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--ts-white);
}

.ts-footer__social a:hover,
.ts-footer__social a:focus-visible {
  border-color: var(--ts-orange);
  color: var(--ts-orange);
}

.ts-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem) 1.35rem;
}

.ts-footer__bottom p {
  margin: 0;
  max-width: calc(var(--ts-max) + 6rem);
  margin-left: auto;
  margin-right: auto;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.ts-footer__bottom a {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1099px) {
  .ts-footer__main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 599px) {
  .ts-footer__main {
    grid-template-columns: 1fr;
  }
}

/* ---------- Before / after ---------- */
.ts-results {
  background: var(--ts-white);
  padding: clamp(3.25rem, 6vw, 5.5rem) 0 1.25rem;
}

.ts-results__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 1.5rem;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto 2.25rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-results__copy {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  max-width: 40rem;
  text-align: center;
  pointer-events: none;
}

.ts-results__copy > * {
  pointer-events: auto;
}

.ts-results__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

h2.ts-results__title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ts-ink);
}

.ts-results__lead {
  margin: 0.7rem 0 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ts-ink-muted);
}

.ts-results__rule {
  display: block;
  width: 3rem;
  height: 3px;
  margin: 1.1rem auto 0;
  background: var(--ts-orange);
  border-radius: 99px;
}

.ts-results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-results__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  grid-column: 2;
  grid-row: 1;
  z-index: 1;
  flex-shrink: 0;
  margin-top: 1.45rem;
  min-height: 44px;
  padding: 0.35rem 0.4rem 0.35rem 1.15rem;
  background: var(--ts-blue);
  color: var(--ts-white);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
}

.ts-results__cta:hover,
.ts-results__cta:focus-visible {
  color: var(--ts-white);
  text-decoration: none;
  background: var(--ts-blue-deep);
}

.ts-results__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ts-orange);
  color: var(--ts-white);
  font-size: 0.9rem;
}

.ts-ba {
  margin: 0;
}

.ts-ba__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  border-radius: 16px;
  background: var(--ts-paper);
  touch-action: none;
  user-select: none;
  cursor: ew-resize;
}

.ts-ba__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.ts-ba__clip {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  width: 50%;
}

.ts-ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 2px;
  background: var(--ts-white);
  transform: translateX(-50%);
  pointer-events: none;
}

.ts-ba__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ts-white);
  border: 2px solid var(--ts-blue);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(13, 13, 13, 0.18);
}

.ts-ba__handle span::before,
.ts-ba__handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
}

.ts-ba__handle span::before {
  left: 0.55rem;
  border-width: 5px 6px 5px 0;
  border-color: transparent var(--ts-blue) transparent transparent;
  transform: translateY(-50%);
}

.ts-ba__handle span::after {
  right: 0.55rem;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent var(--ts-blue);
  transform: translateY(-50%);
}

.ts-ba__frame.is-dragging {
  cursor: grabbing;
}

.ts-ba__range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.ts-ba__caption {
  display: flex;
  justify-content: space-between;
  margin-top: 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ts-ink);
}

@media (max-width: 1099px) {
  .ts-results__head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .ts-results__copy {
    pointer-events: auto;
  }

  .ts-results {
    padding-top: 0.5rem;
  }

  .ts-results__cta {
    align-self: flex-start;
    order: -1;
    margin-top: 0;
    margin-bottom: 1.25rem;
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .ts-results__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Treatment journey ---------- */
.ts-journey {
  position: relative;
  isolation: isolate;
  background: var(--ts-white);
  padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.ts-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/journey-molecular.png") center / cover no-repeat;
  opacity: 0.42;
}

.ts-journey__head,
.ts-journey__steps {
  position: relative;
  z-index: 1;
}

.ts-journey__head {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.ts-journey__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

h2.ts-journey__title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ts-ink);
}

.ts-journey__head p {
  margin-block: 0;
}

.ts-journey__lead {
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ts-ink-muted);
}

.ts-journey__rule {
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.85rem auto 0;
  background: var(--ts-orange);
  border-radius: 99px;
}

.ts-journey__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0 1rem;
  list-style: none;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-journey__step {
  position: relative;
  margin: 0;
  text-align: center;
}

.ts-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.75rem;
  left: 50%;
  width: 100%;
  border-top: 1.5px dashed var(--ts-line-strong);
  z-index: 0;
  pointer-events: none;
}

.ts-journey__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--ts-white);
  box-shadow: 0 8px 24px rgba(13, 13, 13, 0.08);
  color: var(--ts-orange);
}

.ts-journey__icon svg {
  width: 2.05rem;
  height: 2.05rem;
}

.ts-journey__arrow {
  position: absolute;
  top: 2.75rem;
  left: 100%;
  z-index: 2;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--ts-orange);
  transform: translate(-50%, -50%);
}

h3.ts-journey__name {
  margin: 1.15rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ts-ink);
}

.ts-journey__text {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ts-ink-muted);
}

@media (max-width: 1099px) {
  .ts-journey {
    padding-bottom: 0.35rem;
  }

  .ts-journey__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.25rem;
  }

  .ts-journey__step:not(:last-child)::after,
  .ts-journey__arrow {
    display: none;
  }
}

@media (max-width: 699px) {
  .ts-journey__steps {
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
    max-width: 22rem;
  }

  .ts-journey__step {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    column-gap: 1rem;
    text-align: left;
    align-items: center;
  }

  .ts-journey__icon {
    grid-row: 1 / 3;
    width: 4.5rem;
    height: 4.5rem;
  }

  .ts-journey__icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  h3.ts-journey__name {
    margin-top: 0;
  }
}

/* ---------- About page ---------- */
.ts-about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(17rem, 38vw, 22.5rem);
  overflow: hidden;
  color: var(--ts-white);
}

.ts-about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px);
  transform: scale(1.1);
}

.ts-about-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.25) 0%, rgba(13, 13, 13, 0.62) 100%);
}

.ts-about-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 3.25rem clamp(1.25rem, 4vw, 2.5rem) 2.75rem;
  text-align: center;
}

.ts-about-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.ts-about-hero__crumbs a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.ts-about-hero__crumbs a:hover,
.ts-about-hero__crumbs a:focus-visible {
  color: var(--ts-white);
  text-decoration: none;
}

.ts-about-hero__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

h1.ts-about-hero__title {
  margin: 0 auto;
  max-width: 18ch;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ts-white);
}

.ts-about-intro {
  background: var(--ts-paper);
  padding: clamp(3rem, 5.5vw, 5rem) 0;
}

.ts-about-intro__wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-about-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 16px;
}

.ts-about-intro__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

h2.ts-about-intro__title {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ts-ink);
}

.ts-about-intro__body {
  margin-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ts-ink-muted);
}

.ts-about-intro__body p {
  margin: 0 0 0.9rem;
}

.ts-about-intro__body p:last-child {
  margin-bottom: 0;
}

.ts-about-intro__body ul,
.ts-about-intro__body ol {
  margin: 0 0 0.9rem;
  padding-left: 1.2rem;
}

.ts-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.35rem;
  min-height: 44px;
  padding: 0.35rem 0.4rem 0.35rem 1.15rem;
  background: var(--ts-blue);
  color: var(--ts-white);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
}

.ts-about__cta:hover,
.ts-about__cta:focus-visible {
  color: var(--ts-white);
  text-decoration: none;
  background: var(--ts-blue-deep);
}

.ts-about__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ts-orange);
  color: var(--ts-white);
  font-size: 0.9rem;
}

.ts-about__cta--ghost {
  background: transparent;
  color: var(--ts-blue);
  border: 1px solid var(--ts-blue);
  padding: 0.3rem 0.4rem 0.3rem 1.15rem;
}

.ts-about__cta--ghost:hover,
.ts-about__cta--ghost:focus-visible {
  background: var(--ts-blue);
  color: var(--ts-white);
}

.ts-about-stats {
  background: var(--ts-white);
  padding: 0 0 clamp(3rem, 5vw, 4.5rem);
}

.ts-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: calc(var(--ts-max) + 6rem);
  margin: -2.25rem auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.ts-about-stats__item {
  background: var(--ts-white);
  border: 1px solid var(--ts-line);
  border-radius: 14px;
  padding: 1.25rem 1.1rem 1.15rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(13, 13, 13, 0.06);
}

.ts-about-stats__value {
  display: block;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ts-blue);
}

.ts-about-stats__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ts-ink-soft);
}

.ts-about-values {
  background: var(--ts-white);
  padding: 0 0 clamp(3.25rem, 6vw, 5.5rem);
}

.ts-about-values__head {
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto 2.5rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: left;
}

.ts-about-values__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(238, 129, 25, 0.4);
  border-radius: 999px;
  background: rgba(238, 129, 25, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ts-orange);
  line-height: 1.3;
}

h2.ts-about-values__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ts-ink);
}

@media (min-width: 1100px) {
  h2.ts-about-values__title {
    white-space: nowrap;
  }
}

.ts-about-values__rule {
  display: block;
  width: 3rem;
  height: 3px;
  margin: 1.1rem 0 0;
  background: var(--ts-orange);
  border-radius: 99px;
}

.ts-about-values__list {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.5rem);
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-about-value {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.ts-about-value:nth-child(even) {
  grid-template-columns: 0.95fr 1.05fr;
}

.ts-about-value:nth-child(even) .ts-about-value__media {
  order: 2;
}

.ts-about-value:nth-child(even) .ts-about-value__body {
  order: 1;
}

.ts-about-value__media {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 11;
}

.ts-about-value__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-about-value__body {
  padding: 0;
}

h3.ts-about-value__name {
  display: inline-block;
  margin: 0;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(238, 129, 25, 0.4);
  border-radius: 999px;
  background: rgba(238, 129, 25, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ts-orange);
  line-height: 1.3;
}

.ts-about-value__text {
  margin: 0.7rem 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ts-ink-muted);
}

@media (max-width: 1099px) {
  .ts-about-intro__wrap,
  .ts-about-value,
  .ts-about-value:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .ts-about-value:nth-child(even) .ts-about-value__media,
  .ts-about-value:nth-child(even) .ts-about-value__body {
    order: unset;
  }

  .ts-about-stats__grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

  .ts-about-stats {
    padding-top: 0.5rem;
  }
}

@media (max-width: 599px) {
  .ts-about-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Treatment detail ---------- */
.ts-td-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(14rem, 32vw, 20rem);
  overflow: hidden;
  color: var(--ts-white);
}

.ts-td-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px);
  transform: scale(1.1);
}

.ts-td-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.28) 0%, rgba(13, 13, 13, 0.66) 100%);
}

.ts-td-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
  text-align: center;
}

.ts-td-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.ts-td-hero__crumbs a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.ts-td-hero__crumbs a:hover,
.ts-td-hero__crumbs a:focus-visible {
  color: var(--ts-white);
  text-decoration: none;
}

.ts-td-hero__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

h1.ts-td-hero__title {
  margin: 0 auto;
  max-width: 22ch;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ts-white);
}

.ts-td {
  background: var(--ts-paper);
  padding: clamp(2.5rem, 5vw, 4.25rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.ts-td__layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-td__aside {
  position: sticky;
  top: calc(var(--ts-header-h-scrolled) + 1rem);
  display: grid;
  gap: 1.15rem;
}

.ts-td__nav,
.ts-td__form {
  background: var(--ts-white);
  border: 1px solid var(--ts-line);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.35rem;
}

.ts-td__form {
  padding: 0.95rem 1rem 1.05rem;
}

.ts-td__nav-title,
.ts-td__form-title {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(28, 62, 152, 0.18);
  border-radius: 999px;
  background: rgba(28, 62, 152, 0.08);
  color: var(--ts-blue);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}

.ts-td__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ts-td__nav a {
  display: block;
  padding: 0.7rem 0.15rem;
  border-bottom: 1px solid var(--ts-line);
  color: var(--ts-ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.ts-td__nav li:last-child a {
  border-bottom: 0;
}

.ts-td__nav a:hover,
.ts-td__nav a:focus-visible {
  color: var(--ts-blue);
  text-decoration: none;
}

.ts-td__nav a.is-active {
  color: var(--ts-orange);
}

.ts-td__form-lead {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ts-ink-muted);
}

.ts-td__form .ts-contact__form {
  margin-top: 0.65rem;
  gap: 0.5rem;
}

.ts-td__form .ts-contact__field input,
.ts-td__form .ts-contact__field textarea {
  min-height: 40px;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
}

.ts-td__form .ts-contact__field textarea {
  min-height: 4rem;
}

.ts-td__form .ts-contact__submit {
  min-height: 44px;
}

.ts-td__form .ts-contact__row {
  grid-template-columns: 1fr 1fr;
}

.ts-td__main {
  min-width: 0;
}

.ts-td__media {
  overflow: hidden;
  border-radius: 16px;
}

.ts-td__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ts-td__lead {
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ts-ink);
  font-weight: 500;
}

.ts-td__body {
  margin-top: 1.15rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ts-ink-muted);
}

.ts-td__body > *:first-child {
  margin-top: 0;
}

.ts-td__body p {
  margin: 0 0 1rem;
}

.ts-td__body h2,
.ts-td__body h3,
.ts-td__body h4 {
  margin: 1.6rem 0 0.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ts-ink);
}

.ts-td__body h2 {
  font-size: 1.35rem;
}

.ts-td__body h3,
.ts-td__body h4 {
  font-size: 1.12rem;
}

.ts-td__body ul,
.ts-td__body ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.ts-td__body li + li {
  margin-top: 0.35rem;
}

.ts-td__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.ts-td__ba,
.ts-td__faq,
.ts-td__why {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
}

.ts-td__section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

.ts-td__section-eyebrow--box {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(238, 129, 25, 0.4);
  border-radius: 999px;
  background: rgba(238, 129, 25, 0.08);
  line-height: 1.3;
}

h2.ts-td__section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ts-ink);
}

.ts-td__why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.ts-td__why-card {
  background: var(--ts-white);
  border: 1px solid var(--ts-line);
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.2rem;
}

.ts-td__why-num {
  display: block;
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ts-orange);
}

h3.ts-td__why-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ts-ink);
}

.ts-td__why-text {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ts-ink-muted);
}

.ts-td__ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.ts-td__faq-box {
  background: var(--ts-white);
  border: 1px solid var(--ts-line);
  border-radius: 16px;
  padding: 1.15rem 1.25rem 0.35rem;
}

.ts-td__faq-box .ts-td__section-eyebrow {
  margin-bottom: 0.4rem;
}

.ts-td__faq-box h2.ts-td__section-title {
  margin-bottom: 0.85rem;
}

.ts-td__faq-list {
  display: block;
}

.ts-td__faq-item {
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--ts-line);
  border-radius: 0;
  background: transparent;
}

.ts-td__faq-item:last-child {
  border-bottom: 0;
}

.ts-td__faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ts-ink);
}

.ts-td__faq-item summary::-webkit-details-marker {
  display: none;
}

.ts-td__faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--ts-orange);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
}

.ts-td__faq-item[open] summary::after {
  content: "–";
}

.ts-td__faq-item p {
  margin: 0;
  padding: 0 0 0.9rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ts-ink-muted);
}

@media (max-width: 1099px) {
  .ts-td__layout {
    grid-template-columns: 1fr;
  }

  .ts-td__main {
    order: -1;
  }

  .ts-td__aside {
    position: static;
  }

  .ts-td__ba-grid,
  .ts-td__why-grid {
    grid-template-columns: 1fr;
  }

  .ts-td__form .ts-contact__row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Our results page ---------- */
.ts-or {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}

.ts-or__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-or__copy {
  min-width: 0;
}

.ts-or__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ts-ink);
}

.ts-or__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(238, 129, 25, 0.4);
  border-radius: 999px;
  background: rgba(238, 129, 25, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ts-orange);
  line-height: 1.3;
}

.ts-or__body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ts-ink-muted);
}

.ts-or__body h1,
.ts-or__body h2,
.ts-or__body h3,
.ts-or__body h4 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ts-ink);
}

.ts-or__body p {
  margin: 0 0 0.9rem;
}

.ts-or__body p:last-child {
  margin-bottom: 0;
}

.ts-or__body ul,
.ts-or__body ol {
  margin: 0 0 0.9rem;
  padding-left: 1.2rem;
}

.ts-or__intro .ts-about__cta {
  margin-top: 1.5rem;
}

.ts-or__media {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 11;
}

.ts-or__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-or__band {
  max-width: calc(var(--ts-max) + 6rem);
  margin: clamp(2.75rem, 6vw, 4rem) auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-or__band-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
}

.ts-or__dot {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--ts-orange);
}

h2.ts-or__band-title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ts-blue);
}

.ts-or__rule {
  flex: 1;
  min-width: 2rem;
  height: 1px;
  background: rgba(28, 62, 152, 0.22);
}

.ts-or__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.ts-or__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ts-or-card {
  display: flex;
  flex-direction: column;
  background: var(--ts-white);
  border: 1px solid var(--ts-line);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.ts-or-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 7;
}

.ts-or-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ts-or-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.3rem;
}

h3.ts-or-card__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ts-ink);
}

.ts-or-card__text {
  margin: 0.6rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ts-ink-muted);
}

@media (max-width: 1099px) {
  .ts-or__intro {
    grid-template-columns: 1fr;
  }

  .ts-or__grid:not(.ts-or__grid--2) {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 599px) {
  .ts-or__grid,
  .ts-or__grid--2 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Gallery page ---------- */
.ts-gallery {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

.ts-gallery.mad-gallery.mad-grid--isotope.item-col-3 .mad-grid-item {
  width: 33.3333%;
  float: left;
}

.ts-gallery.mad-gallery.mad-grid--isotope .mad-grid-sizer {
  width: 33.3333%;
}

.ts-gallery.mad-gallery.mad-grid--isotope::after {
  content: "";
  display: table;
  clear: both;
}

.ts-gallery .mad-gallery-item {
  border-radius: 16px;
  overflow: hidden;
}

.ts-gallery .mad-gallery-item a {
  border-radius: 16px;
  overflow: hidden;
}

.ts-gallery .mad-gallery-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

@media (max-width: 1099px) {
  .ts-gallery.mad-gallery.mad-grid--isotope.item-col-3 .mad-grid-item,
  .ts-gallery.mad-gallery.mad-grid--isotope .mad-grid-sizer {
    width: 50%;
  }

  .ts-gallery .mad-gallery-item img {
    height: 340px;
  }
}

@media (max-width: 599px) {
  .ts-gallery.mad-gallery.mad-grid--isotope.item-col-3 .mad-grid-item,
  .ts-gallery.mad-gallery.mad-grid--isotope .mad-grid-sizer {
    width: 100%;
  }

  .ts-gallery .mad-gallery-item img {
    height: 240px;
  }
}

/* ---------- Blog detail ---------- */
.ts-td-hero--post h1.ts-td-hero__title {
  max-width: 28ch;
}

.ts-bd {
  background: var(--ts-paper);
  padding: clamp(2.5rem, 5vw, 4.25rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.ts-bd__layout {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(0, 3fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-bd__main {
  min-width: 0;
}

.ts-bd__media {
  overflow: hidden;
  border-radius: 16px;
}

.ts-bd__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ts-bd__date {
  display: block;
  margin: 1.35rem 0 1.15rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ts-ink-muted);
}

.ts-bd__body {
  font-family: var(--ts-font);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ts-ink-muted);
}

.ts-bd__body > *:first-child {
  margin-top: 0;
}

.ts-bd__body p {
  margin: 0 0 1.4rem;
  color: var(--ts-ink-muted);
}

.ts-bd__body a {
  color: var(--ts-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.ts-bd__body a:hover,
.ts-bd__body a:focus-visible {
  color: var(--ts-blue-deep);
}

.ts-bd__body h2,
.ts-bd__body h3,
.ts-bd__body h4 {
  margin: 2.4rem 0 0.85rem;
  font-family: var(--ts-font);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ts-ink);
}

.ts-bd__body h2 {
  font-size: 1.55rem;
  line-height: 1.25;
}

.ts-bd__body h3,
.ts-bd__body h4 {
  font-size: 1.2rem;
}

.ts-bd__body > p:has(> strong:only-child) {
  margin: 2.4rem 0 0.85rem;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ts-ink);
}

.ts-bd__body > p:has(> strong:only-child) strong {
  font-weight: 700;
}

.ts-bd__body ul,
.ts-bd__body ol {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
}

.ts-bd__body li + li {
  margin-top: 0.4rem;
}

.ts-bd__body img,
.ts-bd__body figure {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.ts-bd__body img {
  display: block;
  margin: 1.5rem 0;
}

.ts-bd__body blockquote {
  margin: 1.5rem 0;
  padding: 0.25rem 0 0.25rem 1.15rem;
  border-left: 3px solid var(--ts-orange);
  color: var(--ts-ink-muted);
}

.ts-bd__quote {
  margin: 2rem 0 0;
  padding: 1.15rem 1.35rem 1.2rem;
  border-left: 3px solid var(--ts-orange);
  background: var(--ts-white);
}

.ts-bd__quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--ts-ink);
}

.ts-bd__quote cite {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--ts-ink-muted);
}

.ts-bd__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
}

.ts-bd__shot {
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

.ts-bd__shot img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.ts-bd__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ts-line);
}

.ts-bd__tags-label {
  margin-right: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ts-ink-muted);
}

.ts-bd__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: var(--ts-orange);
  color: var(--ts-white);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
}

.ts-bd__tag:hover,
.ts-bd__tag:focus-visible {
  background: var(--ts-orange-soft);
  color: var(--ts-white);
  text-decoration: none;
}

.ts-bd__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ts-line);
}

.ts-bd__nav-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
  width: fit-content;
  max-width: min(100%, 28rem);
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background: rgba(13, 13, 13, 0.05);
  color: var(--ts-blue);
  text-decoration: none;
}

.ts-bd__nav-arrow {
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--ts-blue);
}

.ts-bd__nav-copy {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.ts-bd__nav-copy span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ts-ink-muted);
}

.ts-bd__nav-copy strong {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ts-blue);
}

.ts-bd__nav-link:hover,
.ts-bd__nav-link:focus-visible {
  color: var(--ts-blue-deep);
  text-decoration: none;
}

.ts-bd__nav-link:hover .ts-bd__nav-copy strong,
.ts-bd__nav-link:focus-visible .ts-bd__nav-copy strong,
.ts-bd__nav-link:hover .ts-bd__nav-arrow,
.ts-bd__nav-link:focus-visible .ts-bd__nav-arrow {
  color: var(--ts-blue-deep);
}

.ts-bd__nav-link--next {
  margin-left: auto;
}

.ts-bd__posts {
  background: var(--ts-paper);
  border: 1px solid var(--ts-line);
  border-radius: 16px;
  padding: 1.5rem 1.35rem 1.2rem;
}

.ts-bd__posts-title {
  display: inline-block;
  margin: 0 0 1.15rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--ts-blue);
  color: var(--ts-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}

.ts-bd__posts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ts-bd__posts a {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 0;
  border-bottom: 1px dotted var(--ts-line-strong);
  color: inherit;
  text-decoration: none;
}

.ts-bd__posts li:last-child a {
  border-bottom: 0;
  padding-bottom: 0.25rem;
}

.ts-bd__posts-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ts-blue);
}

.ts-bd__posts-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ts-ink-soft);
}

.ts-bd__posts-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  color: var(--ts-ink-soft);
}

.ts-bd__posts a:hover,
.ts-bd__posts a:focus-visible {
  text-decoration: none;
}

.ts-bd__posts a:hover .ts-bd__posts-name,
.ts-bd__posts a:focus-visible .ts-bd__posts-name {
  color: var(--ts-blue-deep);
}

@media (max-width: 1099px) {
  .ts-bd__layout {
    grid-template-columns: 1fr;
  }

  .ts-bd__main {
    order: -1;
  }
}

@media (max-width: 599px) {
  .ts-bd__gallery {
    grid-template-columns: 1fr;
  }

  .ts-bd__shot img {
    height: 200px;
  }

  .ts-bd__nav-link,
  .ts-bd__nav-link--next {
    max-width: 100%;
    margin-left: 0;
  }
}

/* ---------- Contact page ---------- */
.ts-cp {
  background: var(--ts-paper);
  padding: clamp(2.5rem, 5vw, 4.25rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.ts-cp__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  max-width: calc(var(--ts-max) + 6rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-cp__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ts-orange);
}

.ts-cp__kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(238, 129, 25, 0.4);
  border-radius: 999px;
  background: rgba(238, 129, 25, 0.08);
  color: var(--ts-orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
}

h2.ts-cp__title,
h2.ts-cp__form-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ts-ink);
}

.ts-cp__lead,
.ts-cp__form-lead {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ts-ink-muted);
}

.ts-cp__facts {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0 0;
  padding: 0;
}

.ts-cp__facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1rem 1.1rem;
  background: var(--ts-white);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(13, 13, 13, 0.06);
}

.ts-cp__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--ts-blue);
  color: var(--ts-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ts-cp__fact-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.ts-cp__fact-body strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ts-ink);
}

.ts-cp__fact-body a,
.ts-cp__fact-body span {
  color: var(--ts-ink-muted);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.45;
}

.ts-cp__fact-body a:hover,
.ts-cp__fact-body a:focus-visible {
  color: var(--ts-blue);
  text-decoration: none;
}

.ts-cp__mail {
  color: var(--ts-orange) !important;
}

.ts-cp__mail:hover,
.ts-cp__mail:focus-visible {
  color: var(--ts-orange-soft) !important;
}

.ts-cp__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.ts-cp__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--ts-white);
  color: var(--ts-blue);
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(13, 13, 13, 0.06);
}

a.ts-cp__social-btn:hover,
a.ts-cp__social-btn:focus-visible {
  color: var(--ts-white);
  background: var(--ts-blue);
  text-decoration: none;
}

.ts-cp__card {
  background: var(--ts-white);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(13, 13, 13, 0.08);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.ts-cp__form-title {
  margin: 0;
}

.ts-cp__card .ts-contact__form {
  margin-top: 1.25rem;
}

.ts-cp__map {
  max-width: calc(var(--ts-max) + 6rem);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.ts-cp__map iframe,
.ts-cp__map > * {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 24px;
}

@media (max-width: 1099px) {
  .ts-cp__layout {
    grid-template-columns: 1fr;
  }

  .ts-cp__map iframe,
  .ts-cp__map > * {
    min-height: 280px;
  }
}

@media (max-width: 1099px) {
  .ts-td-hero,
  .ts-about-hero {
    min-height: clamp(12.5rem, 28vw, 17rem);
  }

  .ts-td-hero__inner,
  .ts-about-hero__inner {
    padding-top: 2.25rem;
    padding-bottom: 2rem;
  }

  .ts-hero__inner,
  .ts-hero__slide[data-copy="right"] .ts-hero__inner,
  .ts-hero__slide[data-copy="left"] .ts-hero__inner {
    padding-left: clamp(1.15rem, 4vw, 2rem);
    padding-right: clamp(1.15rem, 4vw, 2rem);
  }

  .ts-blog__all,
  .ts-results__cta {
    min-height: 44px;
  }
}

@media (max-width: 767px) {
  :root {
    --ts-space-section: clamp(3.25rem, 8vw, 5.25rem);
    --ts-header-h: 64px;
  }

  .ts-treatments__title,
  .ts-blog__title,
  h2.ts-journey__title,
  .ts-results__title,
  h2.ts-contact__title {
    letter-spacing: -0.02em;
  }

  .ts-card--slide .ts-card__title {
    font-size: 1.15rem;
  }

  .ts-card--slide .ts-card__text {
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
