/* ============================================================
   TrendLabs — main.css
   Strategy-led digital marketing agency.
   Fresh build: layout, typography, components, brand colors.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --tl-purple: #722b79;
  --tl-purple-deep: #4d1d52;
  --tl-purple-light: #b56cbc;
  --tl-gold: #ffad00;
  --tl-dark: #150f17;
  --tl-dark-2: #1d1420;
  --tl-dark-3: #271a2b;
  --tl-cream: #f5f0ea;
  --tl-cream-2: #ece4da;
  --tl-ink: #221a25;
  --tl-body: #5d5462;
  --tl-body-light: #b3a9b7;
  --tl-line-dark: rgba(245, 240, 234, 0.12);
  --tl-line-light: rgba(34, 26, 37, 0.12);

  /* Old-site pairing (comparison). Original new-build was:
     heading "Bricolage Grotesque", body "Spline Sans" */
  --tl-ff-heading: "Manrope", sans-serif;
  --tl-ff-body: "Inter", sans-serif;

  --tl-radius: 18px;
  --tl-radius-lg: 28px;

  --tl-highlight-on: var(--tl-ink);
  --tl-highlight-off: rgba(34, 26, 37, 0.22);
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}
body {
  font-family: var(--tl-ff-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--tl-body);
  background-color: var(--tl-cream);
  overflow-x: hidden;
}
img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
ul,
ol {
  list-style: none;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--tl-ff-heading);
  font-weight: 700;
  line-height: 1.08;
  color: var(--tl-ink);
  letter-spacing: -0.015em;
}

::selection {
  background: var(--tl-purple);
  color: #fff;
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
}
.container-wide {
  max-width: 1560px;
}
.section {
  padding-block: clamp(80px, 10vw, 140px);
}
.section-sm {
  padding-block: clamp(56px, 7vw, 90px);
}
.section-dark {
  background-color: var(--tl-dark);
  color: var(--tl-body-light);
  --tl-highlight-on: var(--tl-cream);
  --tl-highlight-off: rgba(245, 240, 234, 0.18);
}
.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark h4, .section-dark h5, .section-dark h6 {
  color: var(--tl-cream);
}
.section-dark-2 {
  background-color: var(--tl-dark-2);
}
.section-cream-2 {
  background-color: var(--tl-cream-2);
}
.section-purple {
  background-color: var(--tl-purple);
  color: rgba(255, 255, 255, 0.85);
}
.section-purple h2, .section-purple h3 {
  color: #fff;
}
.text-center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- section headings ---------- */
.sec-label {
  display: inline-block;
  font-family: var(--tl-ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tl-purple);
  margin-bottom: 22px;
}
.sec-label::before { content: "[\00a0"; opacity: 0.55; }
.sec-label::after { content: "\00a0]"; opacity: 0.55; }
.section-dark .sec-label,
.section-purple .sec-label {
  color: var(--tl-gold);
}
.sec-title {
  font-size: clamp(34px, 4.6vw, 62px);
  margin-bottom: 22px;
}
.sec-title-sm {
  font-size: clamp(26px, 3.2vw, 42px);
}
.sec-desc {
  max-width: 640px;
  font-size: 18px;
}
.sec-head {
  margin-bottom: clamp(44px, 6vw, 80px);
}
.sec-head.text-center .sec-desc {
  margin-inline: auto;
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  border-radius: 999px;
  border: 1px solid var(--tl-purple);
  background: var(--tl-purple);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--tl-ink);
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: inherit;
}
.btn:hover::after {
  transform: translateY(0);
}
.btn:hover {
  color: #fff;
  border-color: var(--tl-ink);
}
.btn .btn-arrow {
  display: inline-flex;
  transition: transform 0.3s ease;
}
.btn:hover .btn-arrow {
  transform: translateX(5px);
}
.btn-light {
  background: var(--tl-cream);
  border-color: var(--tl-cream);
  color: var(--tl-ink);
}
.btn-light::after {
  background: var(--tl-gold);
}
.btn-light:hover {
  color: var(--tl-ink);
  border-color: var(--tl-gold);
}
.btn-outline {
  background: transparent;
  color: var(--tl-purple);
}
.btn-outline::after {
  background: var(--tl-purple);
}
.btn-outline:hover {
  color: #fff;
  border-color: var(--tl-purple);
}
.section-dark .btn-outline {
  color: var(--tl-cream);
  border-color: rgba(245, 240, 234, 0.35);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--tl-purple);
}
.link-arrow svg {
  transition: transform 0.3s ease;
}
.link-arrow:hover svg {
  transform: translate(4px, -4px);
}
.section-dark .link-arrow {
  color: var(--tl-purple-light);
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.site-header.scrolled {
  background: rgba(21, 15, 23, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(245, 240, 234, 0.08);
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.site-logo img {
  height: 40px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.header-nav > li {
  position: relative;
}
.header-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-block: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(245, 240, 234, 0.78);
}
.header-nav > li > a:hover,
.header-nav > li.current > a {
  color: #fff;
}
.header-nav > li.current > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tl-gold);
}
.header-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  min-width: 270px;
  padding: 14px 0;
  background: var(--tl-dark-2);
  border: 1px solid var(--tl-line-dark);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.header-nav li:hover .sub-menu,
.header-nav li:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-nav .sub-menu a {
  display: block;
  padding: 9px 24px;
  font-size: 14.5px;
  color: rgba(245, 240, 234, 0.75);
}
.header-nav .sub-menu a:hover {
  color: #fff;
  background: rgba(114, 43, 121, 0.25);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-note {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 234, 0.55);
  text-align: right;
  line-height: 1.4;
}
.header-cta {
  padding: 13px 26px;
  font-size: 14px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(245, 240, 234, 0.3);
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--tl-cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 1199px) {
  .header-nav, .header-note { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 575px) {
  .header-cta { display: none; }
}

/* fullscreen menu */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--tl-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 24px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
body.menu-open .fullscreen-menu {
  opacity: 1;
  visibility: visible;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.fullscreen-menu .menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
}
.fullscreen-menu .menu-links > li > a {
  display: inline-block;
  font-family: var(--tl-ff-heading);
  font-size: clamp(30px, 6vw, 56px);
  font-weight: 700;
  color: rgba(245, 240, 234, 0.85);
  padding-block: 6px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, color 0.25s ease;
}
body.menu-open .fullscreen-menu .menu-links > li > a {
  transform: translateY(0);
  opacity: 1;
}
.fullscreen-menu .menu-links > li:nth-child(1) > a { transition-delay: 0.08s; }
.fullscreen-menu .menu-links > li:nth-child(2) > a { transition-delay: 0.14s; }
.fullscreen-menu .menu-links > li:nth-child(3) > a { transition-delay: 0.2s; }
.fullscreen-menu .menu-links > li:nth-child(4) > a { transition-delay: 0.26s; }
.fullscreen-menu .menu-links > li:nth-child(5) > a { transition-delay: 0.32s; }
.fullscreen-menu .menu-links > li:nth-child(6) > a { transition-delay: 0.38s; }
.fullscreen-menu .menu-links > li:nth-child(7) > a { transition-delay: 0.44s; }
.fullscreen-menu .menu-links > li > a:hover {
  color: var(--tl-gold);
}
.fullscreen-menu .menu-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  padding: 2px 0 10px;
}
.fullscreen-menu .menu-sub a {
  font-size: 16px;
  color: rgba(245, 240, 234, 0.5);
}
.fullscreen-menu .menu-sub a:hover {
  color: var(--tl-cream);
}
.fullscreen-menu .menu-meta {
  max-width: 1320px;
  width: 100%;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--tl-line-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  color: rgba(245, 240, 234, 0.5);
}
.fullscreen-menu .menu-meta a:hover {
  color: var(--tl-gold);
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 0 64px;
  background-color: var(--tl-dark);
  color: var(--tl-body-light);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  right: -18vw;
  top: -22vw;
  background: radial-gradient(circle at center, rgba(114, 43, 121, 0.5), rgba(114, 43, 121, 0.18) 45%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(245, 240, 234, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 234, 0.14) 1px, transparent 1px);
  background-size: 90px 90px;
  -webkit-mask-image: radial-gradient(ellipse at 30% 20%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at 30% 20%, black 0%, transparent 70%);
  pointer-events: none;
}
.hero > .container {
  position: relative;
  z-index: 2;
}

/* hero animated decor layers */
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-decor .hero-orb {
  position: absolute;
  border-radius: 50%;
}
.hero-decor .hero-orb-1 {
  width: 38vw;
  height: 38vw;
  left: -12vw;
  bottom: -14vw;
  background: radial-gradient(circle at center, rgba(255, 173, 0, 0.15), rgba(255, 173, 0, 0.05) 45%, transparent 70%);
  animation: tlDrift 18s ease-in-out infinite;
}
.hero-decor .hero-orb-2 {
  width: 26vw;
  height: 26vw;
  right: 16vw;
  top: 12vh;
  background: radial-gradient(circle at center, rgba(181, 108, 188, 0.26), rgba(181, 108, 188, 0.09) 45%, transparent 70%);
  animation: tlDrift 24s ease-in-out infinite reverse;
}
.hero-decor .hero-dot {
  position: absolute;
  border-radius: 50%;
}
.hero-decor .hero-dot-1 {
  width: 12px;
  height: 12px;
  left: 14vw;
  top: 24vh;
  background: var(--tl-gold);
  animation: tlPulse 3.2s ease-in-out infinite;
}
.hero-decor .hero-dot-2 {
  width: 8px;
  height: 8px;
  right: 30vw;
  top: 58vh;
  background: var(--tl-purple-light);
  animation: tlPulse 4.1s ease-in-out infinite 0.8s;
}
.hero-decor .hero-dot-3 {
  width: 10px;
  height: 10px;
  left: 38vw;
  top: 14vh;
  background: rgba(245, 240, 234, 0.5);
  animation: tlPulse 5s ease-in-out infinite 1.6s;
}
/* rotating voice line under hero sub */
.hero-rotate {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--tl-ff-heading);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  color: var(--tl-gold);
  margin-bottom: 38px;
}
.hero-rotate .hero-rotate-bracket {
  color: rgba(245, 240, 234, 0.35);
  font-weight: 400;
}
.hero-rotate .word-rotate {
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .hero-rotate {
    font-size: 15px;
  }
}
.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tl-gold);
  margin-bottom: 26px;
}
.hero-label::before { content: "[\00a0"; opacity: 0.55; }
.hero-label::after { content: "\00a0]"; opacity: 0.55; }
.hero-title {
  font-size: clamp(44px, 8.2vw, 118px);
  font-weight: 800;
  color: var(--tl-cream);
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin-bottom: 30px;
}
.hero-title em {
  font-style: normal;
  color: var(--tl-purple-light);
}
.hero-sub {
  max-width: 540px;
  font-size: 19px;
  margin-bottom: 38px;
}
.hero-sub strong {
  color: var(--tl-cream);
  font-weight: 600;
}
.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(36px, 5vw, 70px);
  padding-top: 28px;
  border-top: 1px solid var(--tl-line-dark);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tags li {
  padding: 10px 22px;
  border: 1px solid rgba(245, 240, 234, 0.22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 240, 234, 0.8);
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.hero-tags li a { display: block; }
.hero-tags li:hover {
  border-color: var(--tl-purple-light);
  background: rgba(114, 43, 121, 0.25);
  color: #fff;
}
.hero-trust {
  font-size: 14.5px;
  color: rgba(245, 240, 234, 0.55);
  max-width: 280px;
  text-align: right;
}
.hero-trust strong {
  display: block;
  font-family: var(--tl-ff-heading);
  font-size: 30px;
  color: var(--tl-cream);
}
@media (max-width: 767px) {
  .hero-trust { text-align: left; }
}

/* ---------- window-shape screen 2 (challenge) ---------- */
.window-shape-screen-2 {
  background: var(--tl-dark-2);
  color: var(--tl-body-light);
}
.window-shape-screen-2 h2,
.window-shape-screen-2 h3 {
  color: var(--tl-cream);
}
.window-shape-screen-2 .sec-label {
  color: var(--tl-gold);
}
.ws2-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(60px, 8vh, 110px);
}
.ws2-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: center;
}
@media (max-width: 991px) {
  .window-shape-screen-2 {
    padding-block: 70px;
  }
  .ws2-inner { min-height: 0; }
  .ws2-grid { grid-template-columns: 1fr; }
}
.ws2-punch {
  margin-top: clamp(36px, 5vh, 64px);
  font-size: clamp(20px, 2.6vw, 30px);
  font-family: var(--tl-ff-heading);
  font-weight: 600;
  line-height: 1.35;
  color: var(--tl-cream);
  max-width: 880px;
}
.ws2-punch em {
  font-style: normal;
  color: var(--tl-gold);
}

/* stacked active list (challenge items, about principles) */
.tl-stack-item {
  position: relative;
  padding: 26px 0;
  border-bottom: 1px solid var(--tl-line-dark);
}
.tl-stack-item:first-child {
  border-top: 1px solid var(--tl-line-dark);
}
.tl-stack-item .stack-no {
  font-family: var(--tl-ff-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--tl-body-light);
  display: block;
  margin-bottom: 8px;
}
.tl-stack-item.active .stack-no {
  color: var(--tl-gold);
}
.tl-stack-item .stack-title {
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--tl-cream);
  margin: 0;
}
.tl-stack-item .stack-content p {
  padding-top: 14px;
  max-width: 560px;
  font-size: 16px;
}
.tl-stack-light .tl-stack-item {
  border-color: var(--tl-line-light);
}
.tl-stack-light .tl-stack-item .stack-title {
  color: var(--tl-ink);
}
.tl-stack-light .tl-stack-item .stack-no {
  color: var(--tl-body);
}
.tl-stack-light .tl-stack-item.active .stack-no {
  color: var(--tl-purple);
}

/* ---------- marquee strip ---------- */
.marquee-strip {
  padding-block: 22px;
  background: var(--tl-purple);
  color: #fff;
  font-family: var(--tl-ff-heading);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 600;
}
.marquee-strip .tj-marquee-item {
  display: inline-flex;
  align-items: center;
}
.marquee-strip .tj-marquee-item::after {
  content: "\2736";
  font-size: 0.75em;
  color: var(--tl-gold);
  margin-inline: 34px;
}
.tl-marquee-row.row-gold .tj-marquee-item::after {
  color: var(--tl-purple);
}
.marquee-strip .marquee-star {
  color: var(--tl-gold);
  font-size: 0.8em;
}
.marquee-strip.strip-dark {
  background: var(--tl-dark-2);
  color: rgba(245, 240, 234, 0.7);
}
.marquee-strip.strip-outline {
  background: transparent;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 234, 0.4);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  padding-block: 10px;
}

/* fold-open marquee bands */
.tl-marquee-stack {
  position: relative;
  background: var(--tl-dark);
  overflow: hidden;
}
.tl-marquee-row {
  position: relative;
}
.tl-marquee-row.row-purple {
  background: var(--tl-purple);
  color: #fff;
  z-index: 3;
}
.tl-marquee-row.row-dark {
  background: var(--tl-dark-2);
  color: rgba(245, 240, 234, 0.75);
  z-index: 2;
}
.tl-marquee-row.row-gold {
  background: var(--tl-gold);
  color: var(--tl-ink);
  z-index: 1;
}
.tl-marquee-row .marquee-strip {
  background: transparent;
}

/* ---------- hover-active service list ---------- */
.hover-active-wrap {
  position: relative;
}
.tl-hover-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px 10px;
  border-bottom: 1px solid var(--tl-line-dark);
  cursor: pointer;
}
.tl-hover-item:first-child {
  border-top: 1px solid var(--tl-line-dark);
}
.tl-hover-item .hover-count {
  font-family: var(--tl-ff-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--tl-body-light);
  transition: color 0.3s ease;
}
.tl-hover-item.active .hover-count {
  color: var(--tl-gold);
}
.tl-hover-item .split-flip-text-2 {
  font-family: var(--tl-ff-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.tl-hover-item .flip-layer.layer1 {
  color: rgba(245, 240, 234, 0.45);
}
.tl-hover-item .flip-layer.layer2 {
  color: var(--tl-cream);
  background: transparent;
}
.tl-hover-item .hover-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tl-hover-item .hover-tags span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--tl-line-dark);
  color: var(--tl-body-light);
}
.hover-active-show {
  position: absolute;
  left: 50%;
  top: 0;
  width: 190px;
  height: 190px;
  margin-left: -95px;
  z-index: 4;
  pointer-events: none;
  border-radius: var(--tl-radius-lg);
  overflow: hidden;
  background: var(--tl-dark-3);
  border: 1px solid var(--tl-line-dark);
  opacity: 0;
  transform: scale(0.88) rotate(-4deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hover-active-wrap.show-preview .hover-active-show {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.hover-active-show .preview-glyph svg,
.hover-active-show .preview-glyph img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .hover-active-show { display: none; }
}
@media (max-width: 767px) {
  .tl-hover-item {
    grid-template-columns: 56px 1fr;
  }
  .tl-hover-item .hover-tags { display: none; }
}

/* ---------- testimonial scrub cards ---------- */
.testi-panel {
  background: var(--tl-cream);
}
@media (min-width: 768px) {
  .testi-panel {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.tl-testi-scrub {
  width: min(680px, 82vw);
  padding: 54px 44px 40px;
  border-right: 1px solid var(--tl-line-light);
  background: transparent;
  display: flex;
  flex-direction: column;
}
.tl-testi-scrub:first-child {
  border-left: 1px solid var(--tl-line-light);
}
.tl-testi-scrub .testi-quote {
  font-family: var(--tl-ff-heading);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--tl-ink);
  margin-bottom: 60px;
}
.tl-testi-scrub .testi-quote::before {
  content: "\201C";
  display: block;
  font-size: 56px;
  line-height: 0.6;
  color: var(--tl-purple);
  margin-bottom: 18px;
}
.tl-testi-scrub .testi-person {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--tl-line-light);
  font-size: 14.5px;
  color: var(--tl-body);
}
.tl-testi-scrub .testi-person strong {
  display: block;
  color: var(--tl-ink);
  font-weight: 600;
}

/* ---------- process slider (framework) ---------- */
.tl-process-wrap {
  position: relative;
  z-index: 1;
}
.tl-process-wrap.is-pinned {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 36% minmax(0, 520px);
  gap: clamp(24px, 3vw, 56px);
  align-items: center;
  padding-block: 90px;
}
.tl-process-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.tl-process-no {
  font-family: var(--tl-ff-heading);
  font-weight: 800;
  font-size: 120px;
  color: var(--tl-gold);
  letter-spacing: -0.02em;
}
@media (min-width: 992px) and (max-width: 1399px) {
  .tl-process-no { font-size: 96px; height: 96px; }
}
.tl-process-images {
  height: 72vh;
  border-radius: var(--tl-radius-lg);
}
.tl-process-img svg,
.tl-process-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* rounded on the image itself: the slides are GPU-transformed while
     sliding, which lets them escape the container's border-radius clip */
  border-radius: var(--tl-radius-lg);
}
.tl-process-items {
  min-height: 60vh;
}
.tl-process-item .process-stage {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tl-gold);
  margin-bottom: 14px;
}
.tl-process-item h3 {
  font-size: clamp(30px, 3.4vw, 48px);
  color: var(--tl-cream);
  margin-bottom: 16px;
}
.tl-process-item .process-desc {
  font-size: 17px;
  max-width: 460px;
}
.tl-process-item .process-bottom {
  margin-top: 22px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tl-process-item .process-bottom span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--tl-line-dark);
  color: var(--tl-body-light);
}
/* mobile: plain stacked stages */
@media (max-width: 991px) {
  .tl-process-left .tl-process-no { display: none; }
  .tl-process-wrap {
    display: block;
    padding-block: 70px;
  }
  .tl-process-images { display: none; }
  .tl-process-left { margin-bottom: 10px; }
  .tl-process-item {
    padding-block: 28px;
    border-bottom: 1px solid var(--tl-line-dark);
  }
}

/* ---------- perspective showcase ---------- */
.perspective-showcase-section {
  position: relative;
  background: var(--tl-dark);
  color: var(--tl-body-light);
}
.perspective-showcase-no-wrap {
  max-width: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.perspective-showcase-no {
  display: flex;
  align-items: baseline;
  font-family: var(--tl-ff-heading);
  font-weight: 800;
}
.perspective-showcase-no .current-item-no {
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.8;
  color: var(--tl-cream);
}
.perspective-showcase-no .total-item-no {
  font-size: 22px;
  color: rgba(245, 240, 234, 0.45);
}
/* the images rail is exactly ONE card tall — the rest of the stack flows
   below and is translated up by the scrub; without this the flex centering
   shows the middle of the whole stack instead of the active card */
.perspective-showcase-images {
  height: 420px;
}
.perspective-showcase-item:not(:last-child) {
  margin-bottom: 30px;
}
.perspective-showcase-img {
  display: block;
  width: min(480px, 40vw);
  aspect-ratio: 1 / 1; /* square frames: case images are generated 1:1 */
  height: auto;
  border-radius: var(--tl-radius-lg);
  overflow: hidden;
}
.perspective-showcase-img svg,
.perspective-showcase-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.ps-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tl-gold);
}
.ps-label::before { content: "[\00a0"; opacity: 0.5; }
.ps-label::after { content: "\00a0]"; opacity: 0.5; }
.perspective-showcase-title-wrap {
  max-width: 260px;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
  z-index: 2;
}
.perspective-title {
  font-family: var(--tl-ff-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--tl-cream);
  margin-bottom: 12px;
}
.perspective-showcase-img {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}
.perspective-title {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}
/* below 1200px the showcase collapses; the mobile case list takes over */
@media (max-width: 1199px) {
  .perspective-showcase-section { display: none; }
}
.work-mobile-list { display: none; }
@media (max-width: 1199px) {
  .work-mobile-list { display: block; }
}
.work-mobile-list .work-card {
  text-align: left;
  cursor: pointer;
  padding: 0;
}

/* ---------- case study modal ---------- */
.case-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.case-modal[hidden] { display: none; }
.case-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 9, 15, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.case-modal-panel {
  position: relative;
  width: min(860px, 100%);
  max-height: min(86vh, 900px);
  overflow-y: auto;
  background: var(--tl-cream);
  border-radius: var(--tl-radius-lg);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.case-modal.open .case-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.case-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tl-line-light);
  border-radius: 50%;
  background: var(--tl-cream);
  color: var(--tl-ink);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
  z-index: 2;
}
.case-modal-close:hover {
  background: var(--tl-purple);
  border-color: var(--tl-purple);
  color: #fff;
}
.case-modal-panel h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 14px 0 10px;
  max-width: 18ch;
}
.case-block {
  margin-top: 34px;
}
.case-block h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  margin-bottom: 14px;
}
.case-block .case-step {
  font-family: var(--tl-ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--tl-purple);
  border: 1px solid rgba(114, 43, 121, 0.35);
  border-radius: 999px;
  padding: 4px 11px;
  flex-shrink: 0;
}
.case-block p {
  font-size: 16px;
}
.case-block .check-list li {
  font-size: 15.5px;
}
.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.case-metric {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(114, 43, 121, 0.1);
  border: 1px solid rgba(114, 43, 121, 0.3);
  color: var(--tl-purple);
  font-weight: 600;
  font-size: 14px;
}
.case-modal-cta {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--tl-line-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.case-modal-cta p {
  font-family: var(--tl-ff-heading);
  font-weight: 600;
  font-size: 19px;
  color: var(--tl-ink);
}
/* applied to BOTH html and body — html is the actual scroller */
.case-modal-open {
  overflow: hidden;
}

/* ---------- scroll-spin star ---------- */
.cta-star {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.cta-star svg {
  width: clamp(70px, 9vw, 120px);
  height: auto;
}

/* ---------- challenge cards ---------- */
.challenge-card {
  position: relative;
  padding: 38px 32px;
  background: var(--tl-dark-2);
  border: 1px solid var(--tl-line-dark);
  border-radius: var(--tl-radius-lg);
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
  overflow: hidden;
}
.challenge-card:hover {
  transform: translateY(-8px);
  border-color: rgba(181, 108, 188, 0.5);
  background: var(--tl-dark-3);
}
.challenge-card .challenge-no {
  display: block;
  font-family: var(--tl-ff-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--tl-gold);
  margin-bottom: 50px;
}
.challenge-card h3 {
  font-size: 23px;
  color: var(--tl-cream);
  margin-bottom: 14px;
}
.challenge-card p {
  font-size: 15.5px;
}
.challenge-punch {
  max-width: 760px;
  margin: clamp(40px, 6vw, 70px) auto 0;
  font-size: clamp(22px, 3vw, 32px);
  font-family: var(--tl-ff-heading);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: var(--tl-cream);
}
.challenge-punch em {
  font-style: normal;
  color: var(--tl-purple-light);
}

/* ---------- about strip / counters ---------- */
.stat-block {
  text-align: left;
}
.stat-block .stat-number {
  font-family: var(--tl-ff-heading);
  font-size: clamp(72px, 11vw, 150px);
  font-weight: 800;
  line-height: 1;
  color: var(--tl-purple);
  letter-spacing: -0.03em;
}
.section-dark .stat-block .stat-number {
  color: var(--tl-purple-light);
}
.stat-block .stat-caption {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  max-width: 300px;
}

/* ---------- service rows (home) ---------- */
.service-rows {
  border-top: 1px solid var(--tl-line-light);
}
.section-dark .service-rows {
  border-color: var(--tl-line-dark);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px 10px;
  border-bottom: 1px solid var(--tl-line-light);
  transition: background-color 0.3s ease, padding 0.3s ease;
}
.section-dark .service-row {
  border-color: var(--tl-line-dark);
}
.service-row:hover {
  background: rgba(114, 43, 121, 0.06);
  padding-inline: 22px;
}
.section-dark .service-row:hover {
  background: rgba(114, 43, 121, 0.18);
}
.service-row .row-no {
  font-family: var(--tl-ff-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--tl-purple);
}
.section-dark .service-row .row-no {
  color: var(--tl-gold);
}
.service-row h3 {
  font-size: clamp(22px, 2.6vw, 34px);
  transition: color 0.3s ease;
}
.service-row:hover h3 {
  color: var(--tl-purple);
}
.section-dark .service-row:hover h3 {
  color: var(--tl-purple-light);
}
.service-row .row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-row .row-tags span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--tl-line-light);
  color: var(--tl-body);
}
.section-dark .service-row .row-tags span {
  border-color: var(--tl-line-dark);
  color: var(--tl-body-light);
}
.service-row .row-arrow {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tl-line-light);
  border-radius: 50%;
  color: var(--tl-ink);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.section-dark .service-row .row-arrow {
  border-color: var(--tl-line-dark);
  color: var(--tl-cream);
}
.service-row:hover .row-arrow {
  background: var(--tl-purple);
  color: #fff;
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .service-row {
    grid-template-columns: 48px 1fr auto;
  }
  .service-row .row-tags { display: none; }
}

/* ---------- work cards ---------- */
.work-panel {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tj-horizontal-track .work-card {
  width: min(620px, 78vw);
  flex-shrink: 0;
  margin-right: 36px;
}
.work-card {
  display: block;
  border-radius: var(--tl-radius-lg);
  overflow: hidden;
  background: var(--tl-dark-2);
  border: 1px solid var(--tl-line-dark);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(181, 108, 188, 0.5);
}
.work-card .work-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.work-card .work-cover svg,
.work-card .work-cover > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-card:hover .work-cover svg,
.work-card:hover .work-cover > img {
  transform: scale(1.05);
}

/* photo cards (home work teaser): text lives on the image, shown on hover over a blurred photo */
.work-card-photo .work-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.45s ease;
}
.work-card-photo:hover .work-cover img {
  transform: scale(1.06);
  filter: blur(7px) brightness(0.85);
}
.work-card-photo .work-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px 26px;
  background: linear-gradient(180deg, rgba(29, 20, 32, 0.05) 35%, rgba(29, 20, 32, 0.78) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.work-card-photo:hover .work-overlay {
  opacity: 1;
}
.work-card-photo .work-overlay .work-meta {
  padding: 0;
}
.work-card-photo .work-overlay .work-note {
  padding: 0;
  color: rgba(245, 240, 234, 0.92);
}
/* touch devices have no hover: keep the text visible, skip the blur */
@media (hover: none) {
  .work-card-photo .work-overlay {
    opacity: 1;
  }
}
.work-card .work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
}
.work-card .work-meta h3 {
  font-size: 20px;
  color: var(--tl-cream);
}
.work-card .work-meta .work-cat {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tl-gold);
}
.work-card .work-note {
  padding: 0 26px 24px;
  font-size: 14.5px;
  color: var(--tl-body-light);
}

/* light variant on work page */
.work-grid .work-card {
  background: #fff;
  border-color: var(--tl-line-light);
}
.work-grid .work-card .work-meta h3 {
  color: var(--tl-ink);
}
.work-grid .work-card .work-note {
  color: var(--tl-body);
}

/* ---------- filter pills + blog search ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.pill {
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid var(--tl-line-light);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--tl-body);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pill:hover {
  border-color: var(--tl-purple);
  color: var(--tl-purple);
}
.pill.active {
  background: var(--tl-purple);
  border-color: var(--tl-purple);
  color: #fff;
}
.pill-search {
  display: block;
  width: min(420px, 100%);
  margin-bottom: 16px;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid var(--tl-line-light);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--tl-ink);
  outline: none;
  transition: border-color 0.25s ease;
}
.pill-search::placeholder {
  color: var(--tl-body);
  font-weight: 600;
}
.pill-search:focus {
  border-color: var(--tl-purple);
}
.load-more-sentinel {
  height: 1px;
}

/* ---------- testimonials ---------- */
.testi-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--tl-line-light);
  border-radius: var(--tl-radius-lg);
  height: 100%;
}
.testi-card .testi-quote {
  font-family: var(--tl-ff-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--tl-ink);
}
.testi-card .testi-quote::before {
  content: "\201C";
  display: block;
  font-size: 54px;
  line-height: 0.6;
  color: var(--tl-purple);
  margin-bottom: 16px;
}
.testi-card .testi-person {
  margin-top: auto;
  font-size: 14.5px;
}
.testi-card .testi-person strong {
  display: block;
  color: var(--tl-ink);
  font-weight: 600;
}

/* ---------- blog cards ---------- */
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--tl-line-light);
  border-radius: var(--tl-radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -28px rgba(34, 26, 37, 0.35);
}
.post-card .post-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.post-card .post-cover svg,
.post-card .post-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-cover img {
  transform: scale(1.05);
}
.post-card .post-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  flex-grow: 1;
}
.post-card .post-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tl-purple);
}
.post-card h3 {
  font-size: 22px;
  line-height: 1.25;
}
.post-card h3 a:hover {
  color: var(--tl-purple);
}
.post-card .post-excerpt {
  font-size: 15px;
}
.post-card .post-meta {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13.5px;
  color: var(--tl-body);
  border-top: 1px solid var(--tl-line-light);
}

/* ---------- stacking blog cards (home teaser) ---------- */
.blog-stack {
  position: relative;
}
/* this deck lives in a light section — its pin spacer must not paint dark */
.pin-spacer:has(.blog-stack),
.blog-stack .pin-spacer {
  background-color: transparent;
}
.blog-stack .stack-post-card + .stack-post-card {
  margin-top: 28px;
}
.stack-post-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
  border: 1px solid var(--tl-line-light);
  border-radius: var(--tl-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(34, 26, 37, 0.45);
}
.stack-post-card .stack-cover {
  display: block;
  min-height: 300px;
}
.stack-post-card .stack-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.stack-post-card .stack-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 3.5vw, 48px);
  justify-content: center;
}
.stack-post-card .stack-body h3 {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.2;
}
.stack-post-card .stack-body h3 a:hover {
  color: var(--tl-purple);
}
.stack-post-card .stack-body p {
  font-size: 15.5px;
  max-width: 520px;
}
@media (max-width: 991px) {
  .stack-post-card {
    grid-template-columns: 1fr;
  }
  .stack-post-card .stack-cover {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

/* ---------- page banner (inner pages) ---------- */
.page-banner {
  position: relative;
  padding: 190px 0 90px;
  background: var(--tl-dark);
  color: var(--tl-body-light);
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  width: 46vw;
  height: 46vw;
  right: -14vw;
  top: -16vw;
  background: radial-gradient(circle at center, rgba(114, 43, 121, 0.45), rgba(114, 43, 121, 0.16) 45%, transparent 70%);
  pointer-events: none;
}
.page-banner::after {
  content: "";
  position: absolute;
  width: clamp(300px, 34vw, 540px);
  height: clamp(300px, 34vw, 540px);
  right: 5vw;
  top: 50%;
  margin-top: clamp(-270px, -17vw, -150px);
  border: 1px dashed rgba(181, 108, 188, 0.35);
  border-radius: 50%;
  animation: tlSpin 70s linear infinite;
  pointer-events: none;
}
@media (max-width: 991px) {
  .page-banner::after { display: none; }
}
.page-banner .banner-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.page-banner .container {
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  font-size: clamp(40px, 6.4vw, 88px);
  font-weight: 800;
  color: var(--tl-cream);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 18ch;
}
.page-banner .banner-desc {
  max-width: 620px;
  font-size: 18.5px;
}

/* ---------- principles / generic feature items ---------- */
.feature-card {
  padding: 36px 30px;
  background: #fff;
  border: 1px solid var(--tl-line-light);
  border-radius: var(--tl-radius-lg);
  height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(114, 43, 121, 0.45);
}
.feature-card .feature-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(114, 43, 121, 0.1);
  color: var(--tl-purple);
  margin-bottom: 22px;
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 15px;
}
.section-dark .feature-card {
  background: var(--tl-dark-2);
  border-color: var(--tl-line-dark);
}
.section-dark .feature-card .feature-icon {
  background: rgba(114, 43, 121, 0.3);
  color: var(--tl-purple-light);
}

.principle-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--tl-line-dark);
}
.principle-row .principle-no {
  font-family: var(--tl-ff-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--tl-gold);
}
.principle-row h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--tl-cream);
  font-weight: 600;
  line-height: 1.35;
}

/* ---------- timeline ---------- */
.timeline {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--tl-purple), var(--tl-gold));
}
.timeline-item {
  position: relative;
  padding: 0 0 46px 76px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item .timeline-dot {
  position: absolute;
  left: 0;
  top: 2px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tl-cream);
  border: 2px solid var(--tl-purple);
  color: var(--tl-purple);
}
.timeline-item .timeline-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tl-purple);
  margin-bottom: 8px;
}
.timeline-item h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.timeline-item p {
  max-width: 560px;
}

/* ---------- framework pin section ---------- */
.framework-section {
  position: relative;
}
.framework-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: 60vh;
}
.framework-stage .stage-no {
  display: block;
  font-family: var(--tl-ff-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tl-gold);
  margin-bottom: 18px;
}
.framework-stage h3 {
  font-size: clamp(34px, 4.6vw, 60px);
  color: var(--tl-cream);
  margin-bottom: 20px;
}
.framework-stage p {
  font-size: 17.5px;
  max-width: 480px;
}
.pin-steps-stage {
  position: relative;
}
.pin-steps-visuals {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.pin-steps-visuals .pin-visual svg {
  width: 100%;
  height: 100%;
}
.pin-progress {
  position: absolute;
  top: 100%;
  right: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--tl-ff-heading);
  font-weight: 700;
  color: rgba(245, 240, 234, 0.5);
  margin-top: 14px;
}
.pin-progress .pin-current {
  font-size: 40px;
  color: var(--tl-cream);
}
@media (max-width: 991px) {
  .framework-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 40px;
  }
  .pin-steps-visuals {
    margin-left: 0;
    max-width: 340px;
  }
  .pin-progress { display: none; }
}

/* ---------- lens grid (framework on service pages) ---------- */
.lens-card {
  padding: 36px 30px;
  border: 1px solid var(--tl-line-dark);
  border-radius: var(--tl-radius-lg);
  background: var(--tl-dark-2);
  height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.lens-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 173, 0, 0.45);
}
.lens-card .lens-stage {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tl-gold);
  margin-bottom: 16px;
}
.lens-card h3 {
  color: var(--tl-cream);
  font-size: 21px;
  margin-bottom: 12px;
}
.lens-card p {
  font-size: 15px;
}

/* numbered lens rows (alternate framework anatomy on some service pages) */
.lens-rows {
  border-top: 1px solid var(--tl-line-dark);
}
.lens-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--tl-line-dark);
}
.lens-row .lens-no {
  font-family: var(--tl-ff-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--tl-gold);
}
.lens-row .lens-stage {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tl-gold);
  margin-bottom: 10px;
}
.lens-row h3 {
  color: var(--tl-cream);
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 10px;
}
.lens-row p {
  max-width: 680px;
  font-size: 15.5px;
}
@media (max-width: 639px) {
  .lens-row {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
}

/* ---------- deliverables / checklists ---------- */
.check-list {
  display: grid;
  gap: 16px;
}
.check-list li {
  position: relative;
  padding-left: 38px;
  font-size: 16.5px;
}
.check-list li strong {
  color: var(--tl-ink);
  font-weight: 600;
}
.section-dark .check-list li strong {
  color: var(--tl-cream);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tl-purple);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><path d="M5 12.5l4.5 4.5L19 7"/></svg>') center / 100% no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><path d="M5 12.5l4.5 4.5L19 7"/></svg>') center / 100% no-repeat;
}
.section-dark .check-list li::before {
  background: var(--tl-gold);
}

/* numbered signals */
.signal-list {
  counter-reset: signal;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--tl-line-light);
}
.signal-list li {
  counter-increment: signal;
  position: relative;
  padding: 24px 6px 24px 62px;
  border-bottom: 1px solid var(--tl-line-light);
  font-size: 17px;
  line-height: 1.6;
  color: var(--tl-ink);
  font-weight: 600;
}
.signal-list li::before {
  content: counter(signal, decimal-leading-zero);
  position: absolute;
  left: 6px;
  top: 26px;
  font-family: var(--tl-ff-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.8;
  color: var(--tl-purple);
}
.signal-list li span {
  font-weight: 400;
  color: var(--tl-body);
}

/* ---------- inline image inside headlines ---------- */
.title-inline-img {
  display: inline-block;
  height: 0.92em;
  width: 150px;
  border-radius: 999px;
  overflow: hidden;
  vertical-align: -0.12em;
  margin-inline: 0.08em;
  will-change: width;
}
.title-inline-img svg,
.title-inline-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 860px;
  margin-inline: auto;
}

/* 2-column FAQ with a sticky note card (service pages) */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.faq-layout .faq-list {
  max-width: none;
  margin-inline: 0;
}
.faq-note {
  position: sticky;
  top: 110px;
  padding: 34px 30px;
  border-radius: var(--tl-radius-lg);
  background: #fff;
  border: 1px solid var(--tl-line-light);
}
.faq-note h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.faq-note p {
  font-size: 15px;
  margin-bottom: 18px;
}
.faq-note .footer-contact a {
  color: var(--tl-purple);
  font-weight: 600;
}
@media (max-width: 991px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-note {
    position: static;
  }
}
.faq-item {
  border-bottom: 1px solid var(--tl-line-light);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 4px;
  cursor: pointer;
  font-family: var(--tl-ff-heading);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  color: var(--tl-ink);
  transition: color 0.25s ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--tl-purple);
}
.faq-item summary .faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tl-line-light);
  border-radius: 50%;
  font-family: var(--tl-ff-body);
  font-size: 18px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  background: var(--tl-purple);
  border-color: var(--tl-purple);
  color: #fff;
}
.faq-item .faq-answer {
  padding: 0 4px 28px;
  max-width: 720px;
  font-size: 16px;
}

/* ---------- offices ---------- */
.office-card {
  padding: 38px 34px;
  border-radius: var(--tl-radius-lg);
  background: #fff;
  border: 1px solid var(--tl-line-light);
  height: 100%;
}
.office-card .office-city {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  margin-bottom: 16px;
}
.office-card .office-city .office-pin {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(114, 43, 121, 0.1);
  color: var(--tl-purple);
  flex-shrink: 0;
}
.office-card address {
  font-style: normal;
  font-size: 15.5px;
}
.section-dark .office-card {
  background: var(--tl-dark-2);
  border-color: var(--tl-line-dark);
}
.section-dark .office-card .office-city {
  color: var(--tl-cream);
}
.section-dark .office-card .office-city .office-pin {
  background: rgba(114, 43, 121, 0.35);
  color: var(--tl-purple-light);
}

/* ---------- contact form ---------- */
.contact-form-wrap {
  padding: clamp(30px, 4vw, 52px);
  background: #fff;
  border: 1px solid var(--tl-line-light);
  border-radius: var(--tl-radius-lg);
}
.section-dark .contact-form-wrap {
  background: var(--tl-dark-2);
  border-color: var(--tl-line-dark);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-grid .form-full {
  grid-column: 1 / -1;
}
@media (max-width: 639px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 9px;
  color: var(--tl-ink);
}
.section-dark .form-group label {
  color: var(--tl-cream);
}
.form-control {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--tl-line-light);
  border-radius: 14px;
  background: transparent;
  font-size: 15.5px;
  color: var(--tl-ink);
  outline: none;
  transition: border-color 0.25s ease;
}
.section-dark .form-control {
  border-color: var(--tl-line-dark);
  color: var(--tl-cream);
}
.form-control:focus {
  border-color: var(--tl-purple);
}
.section-dark .form-control:focus {
  border-color: var(--tl-purple-light);
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.alert {
  padding: 15px 22px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 8px;
}
.alert-success {
  background: rgba(31, 154, 90, 0.12);
  border: 1px solid rgba(31, 154, 90, 0.4);
  color: #1f9a5a;
}
.alert-danger {
  background: rgba(204, 51, 51, 0.1);
  border: 1px solid rgba(204, 51, 51, 0.38);
  color: #c33;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: clamp(60px, 8vw, 110px) clamp(28px, 5vw, 80px);
  border-radius: var(--tl-radius-lg);
  background: linear-gradient(120deg, var(--tl-purple-deep), var(--tl-purple) 55%, #93389b);
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 173, 0, 0.35), transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 56px);
  max-width: 20ch;
  margin: 0 auto 18px;
}
.cta-band p {
  max-width: 540px;
  margin: 0 auto 34px;
}

/* ---------- article ---------- */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(36px, 5vw, 72px);
}
@media (max-width: 991px) {
  .article-layout { grid-template-columns: 1fr; }
}
.article-body {
  font-size: 17.5px;
}
.article-body p {
  margin-bottom: 22px;
}
.article-body h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 44px 0 18px;
}
.article-body h3 {
  font-size: clamp(20px, 2.3vw, 25px);
  margin: 34px 0 14px;
}
.article-body strong {
  color: var(--tl-ink);
  font-weight: 600;
}
.article-body a:not(.btn) {
  color: var(--tl-purple);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body ul {
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}
.article-body ul li {
  position: relative;
  padding-left: 30px;
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--tl-purple);
}
.article-body ul li strong {
  color: var(--tl-ink);
}
.article-figure {
  margin: 36px 0;
  border-radius: var(--tl-radius-lg);
  overflow: hidden;
}
.article-figure svg,
.article-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 14.5px;
  color: rgba(245, 240, 234, 0.65);
}
.article-meta-bar strong {
  color: var(--tl-cream);
  font-weight: 600;
}

.author-card {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: var(--tl-radius-lg);
  background: #fff;
  border: 1px solid var(--tl-line-light);
}
.author-card .author-avatar {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--tl-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tl-ff-heading);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.author-card h3 {
  font-size: 21px;
  margin-bottom: 6px;
}
.author-card p {
  font-size: 14.5px;
}
@media (max-width: 575px) {
  .author-card { flex-direction: column; align-items: flex-start; }
}

.related-posts {
  margin-top: 44px;
}
.related-posts .sec-label {
  margin-bottom: 24px;
}
.related-posts .post-card h3 {
  font-size: 17px;
}
.related-posts .post-card .post-body {
  padding: 20px;
  gap: 8px;
}
.related-posts .post-card .post-meta {
  padding-top: 10px;
}

.sidebar-widget {
  padding: 30px 28px;
  border: 1px solid var(--tl-line-light);
  border-radius: var(--tl-radius-lg);
  background: #fff;
  margin-bottom: 28px;
}
.sidebar-widget h3 {
  font-size: 19px;
  margin-bottom: 18px;
}
.sidebar-widget .widget-links li {
  padding-block: 8px;
  border-bottom: 1px solid var(--tl-line-light);
  font-size: 15px;
}
.sidebar-widget .widget-links li:last-child {
  border-bottom: 0;
}
.sidebar-widget .widget-links a:hover {
  color: var(--tl-purple);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--tl-dark);
  color: var(--tl-body-light);
  padding-top: clamp(70px, 9vw, 120px);
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 991px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 22px;
}
.footer-brand p {
  max-width: 320px;
  font-size: 15px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tl-cream);
  margin-bottom: 22px;
}
.footer-col h4::before { content: "[\00a0"; opacity: 0.45; }
.footer-col h4::after { content: "\00a0]"; opacity: 0.45; }
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 15px;
}
.footer-col ul a:hover {
  color: var(--tl-gold);
}
.footer-office {
  margin-bottom: 26px;
}
.footer-office strong {
  display: block;
  color: var(--tl-cream);
  font-weight: 600;
  margin-bottom: 6px;
}
.footer-office address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
}
.footer-contact a {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}
.footer-contact a:hover {
  color: var(--tl-gold);
}
.footer-wordmark {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--tl-ff-heading);
  font-weight: 800;
  font-size: clamp(64px, 13.5vw, 176px); /* capped so the wordmark never outgrows the 1320px container on large monitors */
  line-height: 0.95;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, var(--tl-purple-light) 0%, var(--tl-purple) 45%, rgba(114, 43, 121, 0.05) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  pointer-events: none;
  margin-bottom: clamp(18px, 2.5vw, 36px);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  padding-block: 26px;
  border-top: 1px solid var(--tl-line-dark);
  font-size: 13.5px;
}
.footer-bottom a:hover {
  color: var(--tl-gold);
}
.footer-bottom .footer-legal {
  display: flex;
  gap: 22px;
}

/* social icon row */
.social-row {
  display: flex;
  gap: 12px;
}
.social-row a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tl-line-dark);
  border-radius: 50%;
  color: rgba(245, 240, 234, 0.75);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.social-row a:hover {
  background: var(--tl-purple);
  border-color: var(--tl-purple);
  color: #fff;
  transform: translateY(-4px);
}

/* ---------- misc ---------- */
.divider {
  border: 0;
  border-top: 1px solid var(--tl-line-light);
}
.section-dark .divider {
  border-color: var(--tl-line-dark);
}
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 18px;
}
.eyebrow-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--tl-line-light);
}
.section-dark .eyebrow-line::after {
  background: var(--tl-line-dark);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 991px) {
  .two-col { grid-template-columns: 1fr; }
}

.visual-frame {
  border-radius: var(--tl-radius-lg);
  overflow: hidden;
}
.visual-frame svg {
  display: block;
  width: 100%;
  height: auto;
}
.visual-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1; /* generated images are square; show them untrimmed */
  object-fit: cover;
}

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 1100;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--tl-dark-2);
  color: var(--tl-cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.6);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--tl-purple);
  color: #fff;
}
.back-to-top .btt-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.back-to-top .btt-track {
  stroke: rgba(245, 240, 234, 0.15);
}
.back-to-top .btt-progress {
  stroke: var(--tl-gold);
  stroke-linecap: round;
  stroke-dasharray: 138.2;
  stroke-dashoffset: 138.2;
}
.back-to-top .btt-arrow {
  position: relative;
  transition: transform 0.3s ease;
}
.back-to-top:hover .btt-arrow {
  transform: translateY(-2px);
}
@media (max-width: 575px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

/* skip link for a11y */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--tl-purple);
  color: #fff;
  padding: 12px 20px;
  z-index: 10000;
}
.skip-link:focus {
  left: 0;
}
