:root {
  --tl-bg: #e6e6e6;
  --tl-dark: #565656;
  --tl-text: #4c4c4c;
}

.tl-body {
  background: var(--tl-bg);
  color: var(--tl-text);
}

.tl-main {
  padding: 70px 0 120px;
}

.tl-hero-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  margin-bottom: 36px;
}

.tl-hero-media {
  position: relative;
  min-height: 620px;
  background-position: center;
  background-size: cover;
}

.tl-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.tl-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px 20px;
  color: #fff;
}

.tl-hero-logo {
  width: 240px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.tl-hero-title {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 500;
  margin: 0;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.tl-hero-title b {
  font-weight: 700;
}

.tl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.tl-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  border-radius: 999px;
  background: rgba(115, 115, 115, 0.9);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.tl-title {
  text-align: center;
  margin: 40px 0 30px;
}

.tl-title h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  margin: 0;
  color: #4a4a4a;
}

.tl-title p {
  margin: 6px 0 0;
  color: #7a7a7a;
  font-size: 1rem;
}

.tl-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--tl-dark);
  border-radius: 22px;
  padding: 22px 14px;
  color: #fff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.tl-stat {
  text-align: center;
  padding: 12px 8px;
}

.tl-stat + .tl-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.tl-stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  display: block;
}

.tl-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
}

.tl-stat-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  margin-top: 6px;
}

.tl-gallery {
  margin-top: 36px;
}

.tl-photo-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  background: #111;
}

.tl-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tl-plus {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.tl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 32px;
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bdbdbd;
}

.tl-dot.is-active {
  background: #707070;
}

.tl-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tl-cta-btn {
  padding: 10px 32px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-decoration: none;
}

.tl-cta-btn--light {
  background: #d4d4d4;
  color: #444;
}

.tl-cta-btn--dark {
  background: #5f5f5f;
  color: #fff;
}

@media (max-width: 991px) {
  .tl-main {
    padding: 55px 0 100px;
  }

  .tl-hero-media {
    min-height: 500px;
  }

  .tl-hero-logo {
    width: 180px;
  }

  .tl-stats {
    grid-template-columns: 1fr;
  }

  .tl-stat + .tl-stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}

@media (max-width: 575px) {
  .tl-hero-media {
    min-height: 420px;
  }

  .tl-hero-title {
    font-size: 1.5rem;
  }

  .tl-hero-btn {
    padding: 10px 24px;
  }
}
