:root {
  --tl-ink: #101b2d;
  --tl-ink-soft: #2b3852;
  --tl-plum: #5b2a86;
  --tl-plum-deep: #3d1a5c;
  --tl-sun: #ffb703;
  --tl-sun-deep: #e08e00;
  --tl-mint: #17a398;
  --tl-coral: #ef476f;
  --tl-cream: #fff8ef;
  --tl-paper: #ffffff;
  --tl-cloud: #f4f1fb;
  --tl-line: rgba(16, 27, 45, 0.12);
  --tl-shadow-sm: 0 6px 18px rgba(16, 27, 45, 0.08);
  --tl-shadow-md: 0 18px 42px rgba(16, 27, 45, 0.14);
  --tl-shadow-lg: 0 32px 80px rgba(16, 27, 45, 0.22);
  --tl-radius-sm: 10px;
  --tl-radius: 18px;
  --tl-radius-lg: 32px;
  --tl-font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --tl-font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--tl-font-body);
  color: var(--tl-ink);
  background-color: var(--tl-paper);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tl-font-display);
  font-weight: 700;
  color: var(--tl-ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }

p { color: var(--tl-ink-soft); }

a {
  color: var(--tl-plum);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover,
a:focus-visible {
  color: var(--tl-plum-deep);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.tl-main {
  display: block;
}

.tl-section {
  position: relative;
  padding: 96px 0;
}

.tl-section--tight { padding: 64px 0; }
.tl-section--airy  { padding: 128px 0; }

.tl-section--cloud { background-color: var(--tl-cloud); }
.tl-section--cream { background-color: var(--tl-cream); }

.tl-section--photo {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}

.tl-section--photo h1,
.tl-section--photo h2,
.tl-section--photo h3,
.tl-section--photo p,
.tl-section--photo li {
  color: #ffffff;
}

.tl-section--photo .tl-lead { color: #f2ecff; }

.tl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(91, 42, 134, 0.12);
  color: var(--tl-plum-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tl-section--photo .tl-eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.tl-lead {
  font-size: 1.08rem;
  max-width: 72ch;
}

.tl-title {
  margin-bottom: 18px;
}

.tl-rule {
  width: 74px;
  height: 4px;
  border-radius: 4px;
  background: var(--tl-sun);
  margin: 22px 0 30px;
}

.tl-rule--center { margin-left: auto; margin-right: auto; }

.tl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--tl-font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.tl-btn--primary {
  background: var(--tl-plum);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(91, 42, 134, 0.32);
}

.tl-btn--primary:hover,
.tl-btn--primary:focus-visible {
  background: var(--tl-plum-deep);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(61, 26, 92, 0.38);
}

.tl-btn--sun {
  background: var(--tl-sun);
  color: var(--tl-ink);
  box-shadow: 0 14px 34px rgba(224, 142, 0, 0.34);
}

.tl-btn--sun:hover,
.tl-btn--sun:focus-visible {
  background: var(--tl-sun-deep);
  color: var(--tl-ink);
  transform: translateY(-3px);
}

.tl-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.tl-btn--ghost:hover,
.tl-btn--ghost:focus-visible {
  background: #ffffff;
  color: var(--tl-plum-deep);
  border-color: #ffffff;
}

.tl-btn--outline {
  background: transparent;
  border-color: var(--tl-plum);
  color: var(--tl-plum-deep);
}

.tl-btn--outline:hover,
.tl-btn--outline:focus-visible {
  background: var(--tl-plum);
  color: #ffffff;
}

.tl-header-bar {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--tl-line);
}

.tl-topbar {
  background: var(--tl-ink);
  color: #ffffff;
  font-size: 0.88rem;
}

.tl-topbar a,
.tl-topbar span {
  color: #ffffff;
}

.tl-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.tl-topbar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tl-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.tl-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--tl-font-display);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--tl-ink);
  letter-spacing: -0.01em;
}

.tl-brand span { color: var(--tl-plum); }

.tl-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tl-nav a {
  color: var(--tl-ink);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 6px 2px;
  position: relative;
}

.tl-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--tl-sun);
  transition: width 0.3s ease;
}

.tl-nav a:hover::after,
.tl-nav a:focus-visible::after { width: 100%; }

.tl-burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--tl-line);
  background: #ffffff;
  color: var(--tl-ink);
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tl-hero {
  position: relative;
  padding: 120px 0 110px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.tl-hero h1,
.tl-hero h2,
.tl-hero p,
.tl-hero li { color: #ffffff; }

.tl-hero-copy { max-width: 640px; }

.tl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.tl-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
  max-width: 660px;
}

.tl-stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--tl-radius);
  padding: 20px;
  backdrop-filter: blur(6px);
}

.tl-stat strong {
  display: block;
  font-family: var(--tl-font-display);
  font-size: 1.9rem;
  line-height: 1.1;
  color: #ffffff;
}

.tl-stat span {
  font-size: 0.9rem;
  color: #efe7ff;
}

.tl-slider {
  position: relative;
  border-radius: var(--tl-radius-lg);
  overflow: hidden;
  background: var(--tl-ink);
  box-shadow: var(--tl-shadow-lg);
}

.tl-slider-track {
  position: relative;
  min-height: 460px;
}

.tl-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 48px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1.2s ease;
  pointer-events: none;
}

.tl-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.tl-slide-copy {
  max-width: 560px;
  background: rgba(16, 27, 45, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--tl-radius);
  padding: 26px 28px;
  backdrop-filter: blur(4px);
}

.tl-slide-copy h3,
.tl-slide-copy p { color: #ffffff; }

.tl-slider-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 18px 24px;
  background: var(--tl-ink);
}

.tl-slider-dot {
  width: 38px;
  height: 6px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: background-color 0.25s ease, width 0.25s ease;
}

.tl-slider-dot.is-active {
  background: var(--tl-sun);
  width: 58px;
}

.tl-card {
  height: 100%;
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius);
  overflow: hidden;
  box-shadow: var(--tl-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tl-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tl-shadow-md);
}

.tl-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tl-cloud);
}

.tl-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tl-card:hover .tl-card-media img { transform: scale(1.07); }

.tl-card-body { padding: 26px 26px 30px; }

.tl-card-body h3 { margin-bottom: 12px; }

.tl-card-body p { margin-bottom: 20px; }

.tl-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--tl-cloud);
  color: var(--tl-plum-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tl-feature {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: var(--tl-radius);
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  box-shadow: var(--tl-shadow-sm);
  height: 100%;
}

.tl-feature-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(91, 42, 134, 0.12);
  color: var(--tl-plum-deep);
}

.tl-feature-icon--sun { background: rgba(255, 183, 3, 0.2); color: #7a4f00; }
.tl-feature-icon--mint { background: rgba(23, 163, 152, 0.16); color: #0b5e58; }
.tl-feature-icon--coral { background: rgba(239, 71, 111, 0.16); color: #9c1c3f; }

.tl-feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tl-feature p { margin-bottom: 0; font-size: 0.97rem; }

.tl-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.tl-split--reverse .tl-split-media { order: 2; }

.tl-split-media {
  position: relative;
  border-radius: var(--tl-radius-lg);
  overflow: hidden;
  box-shadow: var(--tl-shadow-md);
  aspect-ratio: 5 / 4;
  background: var(--tl-cloud);
}

.tl-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tl-badge-float {
  position: absolute;
  right: -14px;
  bottom: 32px;
  background: var(--tl-sun);
  color: var(--tl-ink);
  border-radius: var(--tl-radius);
  padding: 18px 22px;
  box-shadow: var(--tl-shadow-md);
  font-family: var(--tl-font-display);
  font-weight: 700;
  line-height: 1.2;
}

.tl-badge-float small {
  display: block;
  font-family: var(--tl-font-body);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a3200;
}

.tl-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tl-check-list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
  color: var(--tl-ink-soft);
}

.tl-check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(23, 163, 152, 0.16);
  color: #0b5e58;
  font-size: 0.74rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tl-section--photo .tl-check-list li { color: #ffffff; }
.tl-section--photo .tl-check-list li::before { background: rgba(255, 255, 255, 0.24); color: #ffffff; }

.tl-price-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-radius: var(--tl-radius);
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  box-shadow: var(--tl-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tl-price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tl-shadow-md);
}

.tl-price-card--featured {
  border-color: var(--tl-plum);
  box-shadow: var(--tl-shadow-md);
}

.tl-price-card--featured .tl-price-amount { color: var(--tl-plum); }

.tl-price-amount {
  font-family: var(--tl-font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin: 12px 0 6px;
  color: var(--tl-ink);
}

.tl-price-amount small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tl-ink-soft);
}

.tl-price-list {
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
  flex: 1;
}

.tl-price-list li {
  padding: 11px 0;
  border-bottom: 1px dashed var(--tl-line);
  color: var(--tl-ink-soft);
  font-size: 0.97rem;
}

.tl-price-list li:last-child { border-bottom: 0; }

.tl-review {
  height: 100%;
  padding: 28px;
  border-radius: var(--tl-radius);
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  box-shadow: var(--tl-shadow-sm);
}

.tl-review-stars {
  color: var(--tl-sun-deep);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.tl-review p {
  font-size: 0.99rem;
  font-style: italic;
}

.tl-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.tl-review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.tl-review-author strong {
  display: block;
  font-family: var(--tl-font-display);
  font-size: 0.97rem;
}

.tl-review-author span {
  font-size: 0.82rem;
  color: var(--tl-ink-soft);
}

.tl-logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px;
  align-items: center;
}

.tl-logo-wall img {
  filter: grayscale(1);
  opacity: 0.7;
  max-height: 52px;
  object-fit: contain;
  margin: 0 auto;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.tl-logo-wall img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.tl-form {
  padding: 34px;
  border-radius: var(--tl-radius-lg);
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  box-shadow: var(--tl-shadow-md);
}

.tl-form label {
  font-family: var(--tl-font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--tl-ink);
  margin-bottom: 8px;
}

.tl-form .form-control,
.tl-form .form-select,
.tl-form textarea {
  border-radius: var(--tl-radius-sm);
  border: 1px solid var(--tl-line);
  padding: 13px 16px;
  background: var(--tl-paper);
  color: var(--tl-ink);
  font-size: 0.97rem;
}

.tl-form .form-control:focus,
.tl-form .form-select:focus,
.tl-form textarea:focus {
  border-color: var(--tl-plum);
  box-shadow: 0 0 0 4px rgba(91, 42, 134, 0.16);
  background: var(--tl-paper);
  color: var(--tl-ink);
}

.tl-form .form-control::placeholder,
.tl-form textarea::placeholder { color: #6d7686; }

.tl-form-note {
  font-size: 0.84rem;
  color: var(--tl-ink-soft);
}

.tl-form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--tl-radius-sm);
  background: rgba(23, 163, 152, 0.14);
  border: 1px solid rgba(23, 163, 152, 0.4);
  color: #0b5e58;
  font-weight: 600;
  font-size: 0.94rem;
}

.tl-form-status.is-visible { display: block; }

.tl-form-status--error {
  background: rgba(239, 71, 111, 0.12);
  border-color: rgba(239, 71, 111, 0.42);
  color: #9c1c3f;
}

.tl-map-frame {
  border-radius: var(--tl-radius-lg);
  overflow: hidden;
  box-shadow: var(--tl-shadow-md);
  border: 1px solid var(--tl-line);
  line-height: 0;
}

.tl-map-frame iframe {
  width: 100%;
  height: 440px;
  border: 0;
}

.tl-cta-band {
  position: relative;
  padding: 92px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  border-radius: var(--tl-radius-lg);
  overflow: hidden;
}

.tl-cta-band h2,
.tl-cta-band p { color: #ffffff; }

.tl-accordion .accordion-item {
  border: 1px solid var(--tl-line);
  border-radius: var(--tl-radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--tl-paper);
}

.tl-accordion .accordion-button {
  font-family: var(--tl-font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--tl-ink);
  background: transparent;
  padding: 22px 24px;
}

.tl-accordion .accordion-button:not(.collapsed) {
  color: var(--tl-plum-deep);
  background: rgba(91, 42, 134, 0.07);
  box-shadow: none;
}

.tl-accordion .accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(91, 42, 134, 0.16);
}

.tl-accordion .accordion-body {
  padding: 4px 24px 24px;
  color: var(--tl-ink-soft);
}

.tl-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.tl-gallery-item {
  position: relative;
  border-radius: var(--tl-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--tl-shadow-sm);
}

.tl-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tl-gallery-item:hover img { transform: scale(1.08); }

.tl-gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 20px 18px;
  background: linear-gradient(rgba(16, 27, 45, 0), rgba(16, 27, 45, 0.88));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.tl-step {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: var(--tl-radius);
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  box-shadow: var(--tl-shadow-sm);
  height: 100%;
}

.tl-step-number {
  position: absolute;
  top: -18px;
  left: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tl-plum);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tl-font-display);
  font-weight: 700;
}

.tl-step h3 {
  font-size: 1.08rem;
  margin: 16px 0 10px;
}

.tl-step p { margin-bottom: 0; font-size: 0.96rem; }

.tl-team-card {
  height: 100%;
  text-align: center;
  padding: 30px 22px;
  border-radius: var(--tl-radius);
  background: var(--tl-paper);
  border: 1px solid var(--tl-line);
  box-shadow: var(--tl-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tl-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tl-shadow-md);
}

.tl-team-card img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
}

.tl-team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }

.tl-team-role {
  display: block;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tl-plum);
  margin-bottom: 14px;
}

.tl-timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 32px;
  list-style: none;
}

.tl-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(var(--tl-plum), var(--tl-sun));
}

.tl-timeline li {
  position: relative;
  padding: 0 0 30px 0;
}

.tl-timeline li::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 8px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--tl-paper);
  border: 3px solid var(--tl-plum);
}

.tl-timeline strong {
  display: block;
  font-family: var(--tl-font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.tl-count {
  font-family: var(--tl-font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--tl-plum);
}

.tl-article {
  max-width: 820px;
  margin: 0 auto;
}

.tl-article h2 { margin-top: 42px; margin-bottom: 16px; }
.tl-article h3 { margin-top: 30px; margin-bottom: 12px; }
.tl-article p,
.tl-article li { font-size: 1.03rem; }

.tl-article blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--tl-sun);
  background: var(--tl-cloud);
  border-radius: 0 var(--tl-radius) var(--tl-radius) 0;
  font-size: 1.06rem;
  color: var(--tl-ink);
}

.tl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--tl-ink-soft);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.tl-newsletter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tl-newsletter .form-control {
  flex: 1 1 240px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.tl-newsletter .form-control::placeholder { color: #ded4f2; }

.tl-newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
}

.tl-footer {
  background: var(--tl-ink);
  color: #e8e6f2;
  padding: 76px 0 30px;
}

.tl-footer h3 {
  color: #ffffff;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tl-footer p,
.tl-footer li,
.tl-footer span,
.tl-footer address {
  color: #d3d0e4;
  font-size: 0.95rem;
}

.tl-footer a {
  color: #d3d0e4;
}

.tl-footer a:hover,
.tl-footer a:focus-visible { color: var(--tl-sun); }

.tl-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tl-footer-list li {
  padding: 7px 0;
}

.tl-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: var(--tl-font-display);
  font-weight: 800;
  font-size: 1.24rem;
  margin-bottom: 18px;
}

.tl-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.tl-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.tl-social a:hover,
.tl-social a:focus-visible {
  background: var(--tl-sun);
  color: var(--tl-ink);
  transform: translateY(-3px);
}

.tl-footer-bottom {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 0.87rem;
}

.tl-cookie {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1080;
  display: none;
  padding: 24px 28px;
  border-radius: var(--tl-radius);
  background: var(--tl-ink);
  color: #f2f0fa;
  box-shadow: var(--tl-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tl-cookie.is-visible { display: block; }

.tl-cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.tl-cookie p {
  color: #f2f0fa;
  margin: 0;
  max-width: 720px;
  font-size: 0.94rem;
}

.tl-cookie a { color: var(--tl-sun); }

.tl-cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tl-scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1050;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background: var(--tl-plum);
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--tl-shadow-md);
}

.tl-scroll-top.is-visible { display: inline-flex; }
.tl-scroll-top:hover { background: var(--tl-plum-deep); }

.tl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.tl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .tl-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 0 6px;
  }

  .tl-nav.is-open { display: flex; }

  .tl-burger { display: inline-flex; }

  .tl-navbar { flex-wrap: wrap; }

  .tl-hero { padding: 92px 0 80px; }

  .tl-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .tl-slide { padding: 30px; }

  .tl-section { padding: 72px 0; }
  .tl-section--airy { padding: 88px 0; }

  .tl-split { grid-template-columns: 1fr; gap: 38px; }

  .tl-split--reverse .tl-split-media { order: 0; }

  .tl-badge-float { right: 16px; bottom: 16px; }

  .tl-cookie { left: 14px; right: 14px; bottom: 14px; padding: 20px; }
}

@media (max-width: 575.98px) {
  .tl-hero-stats { grid-template-columns: 1fr; }
  .tl-slider-track { min-height: 380px; }
  .tl-form { padding: 24px; }
  .tl-map-frame iframe { height: 320px; }
  .tl-topbar-inner { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tl-reveal,
  .tl-slide,
  .tl-card,
  .tl-card-media img { transition: none !important; }
}
/* Fix: nav CTA button text was overridden by .tl-nav a { color: ink } */
.tl-nav a.tl-btn,
.tl-nav a.tl-btn--primary,
.tl-nav a.tl-btn:hover,
.tl-nav a.tl-btn:focus-visible {
  color: #ffffff;
}

/* Fix: hero had a background image but no background-color, so white heading
   text was measured against the white page background. Give it a dark base. */
.tl-hero {
  background-color: var(--tl-ink);
}

/* ============================================================
   Contrast fixes (appended overrides)
   Sections that rely on a background-image gradient have no
   solid background-color, so contrast checks resolve text
   against white. Give them an explicit dark base color.
   ============================================================ */
.tl-hero {
  background-color: #101b2d;
}

.tl-section--photo {
  background-color: #101b2d;
}

.tl-cta-band {
  background-color: #101b2d;
}

/* Nav "Afspraak maken" CTA: .tl-nav a overrides the button's
   white text; restore proper contrast on the purple button. */
.tl-nav a.tl-btn--primary,
.tl-nav a.tl-btn--primary:hover,
.tl-nav a.tl-btn--primary:focus-visible {
  color: #ffffff;
}

.tl-nav a.tl-btn--outline,
.tl-nav a.tl-btn--outline:hover,
.tl-nav a.tl-btn--outline:focus-visible {
  color: var(--tl-plum-deep);
}

/* --- Contrast fixes: give image-based sections a solid dark base color
   so text stays readable even when the background image is not painted. --- */
.tl-hero,
.tl-hero.tl-section--tight {
  background-color: #101b2d;
}

.tl-section--photo {
  background-color: #101b2d;
}

/* Keep the white text of the primary nav button (it sits inside .tl-nav). */
.tl-nav a.tl-btn--primary,
.tl-nav a.tl-btn--primary:hover,
.tl-nav a.tl-btn--primary:focus-visible {
  color: #ffffff;
}

/* Eyebrow badge on photo sections: use a dark base instead of a light one
   so white text keeps enough contrast. */
.tl-section--photo .tl-eyebrow {
  background: rgba(16, 27, 45, 0.65);
  color: #ffffff;
}

/* Hero eyebrow sits on the dark hero image; match the light
   treatment used inside .tl-section--photo for readable contrast. */
.tl-hero .tl-eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

/* ============================================================
   Contrast fix: contact hero "Directe gegevens" card
   .tl-check-list li (color: --tl-ink-soft) is declared after
   .tl-hero li, so its dark text was rendered over the dark hero
   background. Restore readable white text for check lists that
   sit inside the hero / photo sections.
   ============================================================ */
.tl-hero .tl-check-list li,
.tl-section--photo .tl-check-list li {
  color: #ffffff;
}

.tl-hero .tl-check-list li::before,
.tl-section--photo .tl-check-list li::before {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

/* ============================================================
   Contrast fix: hero check-list items.
   .tl-check-list li (declared later in the stylesheet) overrides
   the .tl-hero li { color:#fff } rule, so the list text ended up
   dark (#2b3852) on the dark hero panel. Force white text on the
   hero variant, matching the rest of the hero copy.
   ============================================================ */
.tl-hero .tl-check-list li {
  color: #ffffff;
}

.tl-hero .tl-check-list li::before {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

/* ============================================================
   Contrast fix: gallery captions.
   .tl-gallery-caption paints only a background-image gradient
   that fades to transparent at the top, so the computed
   background-color resolves to the white page and the white
   caption text measured 1/4.5. Add a solid dark base color so
   the caption text always sits on a dark background.
   ============================================================ */
.tl-gallery-caption {
  background-color: #101b2d;
  background-image: linear-gradient(rgba(16, 27, 45, 0), rgba(16, 27, 45, 0.88));
  color: #ffffff;
}
