.tk-hero__title {
  font-size:clamp(1.6rem,3vw,2.2rem);
  color:var(--navy);
  margin:0 0 20px;
  padding-top:calc(var(--nav-height) + 32px);
}
 
.tk-hero {
  position:relative;       
  min-height:420px;
  display:flex; align-items:center;  
  overflow:hidden;
}
.tk-hero__bg { position:absolute; inset:0; z-index:0; }
.tk-hero__img { width:100%; height:100%; object-fit:cover; }
 
.tk-hero__overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    90deg,
    rgba(11,45,108,.85) 0%,
    rgba(11,45,108,.65) 38%,
    rgba(11,45,108,.30) 60%,
    rgba(11,45,108,.05) 100%
  );
}

.tk-hero__inner {
  position:relative; z-index:2;
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}
.tk-hero__content { max-width:620px; text-align:left; }
 
.tk-hero__innertitle {
  color:var(--white);
  font-size:clamp(1.25rem,4.5vw,3.4rem);
  font-weight:800; line-height:1.12;
  letter-spacing:-0.02em;
  text-transform:uppercase;
  margin:0 0 16px;
  text-shadow:0 2px 12px rgba(0,0,0,.35);
}
.tk-hero__innertitle span { color:var(--gold-light);}
.tk-hero__tagline {
  color:rgba(255,255,255,.92);
  font-size:clamp(1rem,1.6vw,1.15rem);
  line-height:1.6; margin:0;
  max-width:520px;
}
 
@media (max-width:768px) {
  .tk-hero { min-height:340px; }
  .tk-hero__overlay {
    background:linear-gradient(90deg, rgba(11,45,108,.82) 0%, rgba(11,45,108,.55) 100%);
  }
  .tk-hero__content { max-width:100%; }
}

.tk-video { padding:48px 0; }
.tk-video__frame {
  position:relative; width:100%;
  aspect-ratio:16/9;
  border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-md); background:#000;
}
.tk-video__frame iframe {
  position:absolute; inset:0;
  width:100%; height:100%; border:0;
}

.tk-values { padding:var(--section-pad) 0; }
.tk-values__intro { text-align:center; max-width:640px; margin:0 auto 48px; }
.tk-values__intro p { color:var(--text-body); margin-top:14px; }

.tk-values__grid {
  display:grid; grid-template-columns:1fr 1fr; gap:28px;
}
.tk-card {
  background:var(--navy);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  padding:40px 36px;
  box-shadow:var(--shadow-sm);
}
.tk-card__head {
  font-size:2rem; color:#fce26d; font-weight:2000;
  text-align:center; margin-bottom:28px;
}

.tk-motto { display:flex; align-items:center; gap:28px; justify-content:center; }
.tk-motto__big {
  font-size:clamp(3.5rem,7vw,10rem); font-weight:800;
  color:var(--gold); line-height:1; letter-spacing:-.04em;
}
.tk-motto__list { display:flex; flex-direction:column; gap:6px; }
.tk-motto__list li {
  list-style:none;
  font-weight:700; font-size:1.5rem; color:var(--white);
  letter-spacing:.02em;
}
.tk-mission { display:flex; flex-direction:column; gap:16px; max-width:400px; margin:0 auto; }
.tk-mission__row { display:flex; align-items:baseline; gap:50px; }
.tk-mission__letter {
  font-size:2rem; font-weight:800; color:var(--gold);
  width:28px; text-align:center; flex:0 0 28px;
}
.tk-mission__word {
  font-size:1.5rem; font-weight:800; color:var(--white);
  letter-spacing:-.01em;
}

.tk-history {
  padding:var(--section-pad) 0;
  background:var(--off-white);
}
.timeline {
  position:relative;
  margin-top:48px;
}
.timeline::before {
  content:'';
  position:absolute; top:0; bottom:0; left:50%;
  width:4px; transform:translateX(-50%);
  background:var(--gray-100);
  border-radius:99px;
}
.tl-item {
  position:relative;
  display:grid;
  grid-template-columns:1fr 64px 1fr;
  align-items:center;
  margin-bottom:40px;
}
.tl-item:last-child { margin-bottom:0; }

.tl-media {
  border-radius:var(--radius-md); overflow:hidden;
  box-shadow:var(--shadow-sm); aspect-ratio:16/9;
  background:var(--gray-100);
}
.tl-media img { width:100%; height:100%; object-fit:cover; }

.tl-content h3 { font-size:1.15rem; color:var(--navy); margin-bottom:8px; }
.tl-content p  { font-size:.9rem; color:var(--text-body); line-height:1.7; }

.tl-dot {
  width:28px; height:28px; border-radius:50%;
  background:var(--navy);
  border:5px solid var(--off-white);
  box-shadow:0 0 0 2px var(--navy);
  margin:0 auto; z-index:1;
}

.tl-item--right .tl-content { text-align:left; padding-left:32px; }
.tl-item--right .tl-media   { margin-right:32px; }
.tl-item--left .tl-content { text-align:right; padding-right:32px; }
.tl-item--left .tl-media   { margin-left:32px; }

.tk-cta { padding:48px 0 var(--section-pad); text-align:center; }

@media (max-width:768px) {
  .tk-values__grid { grid-template-columns:1fr; }

  .timeline::before { left:18px; }
  .tl-item {
    grid-template-columns:36px 1fr;
    gap:14px;
    margin-bottom:32px;
  }
  .tl-item--right .tl-media,
  .tl-item--left  .tl-media {
    grid-column:2; margin:14px 0 0 0;
  }
  .tl-item--right .tl-content,
  .tl-item--left  .tl-content {
    grid-column:2; text-align:left;
    padding:0;
  }
  .tl-dot { grid-column:1; grid-row:1; }
}
@media (max-width:480px) {
  .tk-motto { flex-direction:column; gap:16px; }
  .tk-hero__media { aspect-ratio:16/9; }
}