
.tk-about-hero,
.tk-about-intro,
.tk-about-details,
.tk-team,
.tk-departments {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.tk-about-hero {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.85)),
        url("https://terrakulture.com/wp-content/uploads/2023/03/IMG-20230316-WA0016.jpg") center/cover fixed no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px;
    text-align: center;
}

.tk-about-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(255,122,0,.28);
    filter: blur(120px);
    border-radius: 50%;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.tk-about-text {
    position: relative;
    max-width: 950px;
    color: #fff;
    z-index: 2;
}

.tk-about-text span,
.tk-about-copy span,
.tk-details-content span,
.tk-team-head span,
.tk-dept-head span,
.tk-department-content span {
    color: #ff7a00;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.tk-about-text h1 {
    font-size: clamp(46px, 7vw, 96px);
    line-height: 1.02;
    font-weight: 900;
    margin: 22px 0;
    color: #fff;
    text-shadow: 0 20px 60px rgba(0,0,0,.55);
}

.tk-about-text p {
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255,255,255,.9);
}

.tk-about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    overflow: hidden;
}

.tk-about-copy {
    padding: 120px 8vw;
}

.tk-about-copy h2,
.tk-team-head h2,
.tk-dept-head h2 {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1.05;
    font-weight: 900;
    color: #111;
    margin: 20px 0 28px;
}

.tk-about-copy p {
    font-size: 17px;
    line-height: 1.95;
    color: #555;
    margin-bottom: 22px;
}

.tk-about-image {
    padding: 55px;
}

.tk-about-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 35px 90px rgba(0,0,0,.18);
    transform: rotate(-2deg);
    transition: transform .7s ease, box-shadow .7s ease;
}

.tk-about-image img:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 45px 110px rgba(0,0,0,.25);
}

.tk-about-details {
    background:
        radial-gradient(circle at 80% 20%, rgba(255,122,0,.16), transparent 35%),
        #050505;
    color: #fff;
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 90vh;
    overflow: hidden;
}

.tk-side-title {
    background: linear-gradient(180deg, #ff7a00, #ff9500);
    color: #000;
    font-size: 90px;
    font-weight: 900;
    letter-spacing: 4px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sidePulse 4s ease-in-out infinite;
}

@keyframes sidePulse {
    0%,100% { letter-spacing: 4px; }
    50% { letter-spacing: 8px; }
}

.tk-details-content {
    padding: 120px 8vw;
    max-width: 1000px;
}

.tk-details-content h2 {
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 900;
    margin: 20px 0 35px;
    color: #fff;
    text-transform: uppercase;
}

.tk-details-content h2 strong {
    color: #ff7a00;
}

.tk-details-content p {
    font-size: 17px;
    line-height: 2;
    color: rgba(255,255,255,.75);
    margin-bottom: 24px;
    border-left: 2px solid rgba(255,122,0,.45);
    padding-left: 18px;
}

.tk-team {
    background: #fff;
    padding: 110px 20px;
}

.tk-team-head,
.tk-dept-head {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.tk-team-head p,
.tk-dept-head p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.tk-team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tk-team-card {
    background: #fff;
    border-radius: 28px;
    padding: 18px 18px 30px;
    text-align: center;
    box-shadow: 0 20px 55px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.tk-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 75px rgba(0,0,0,0.15);
}

.tk-team-img {
    height: 360px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 24px;
}

.tk-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tk-team-card:hover img {
    transform: scale(1.08);
}

.tk-team-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: #111;
    margin-bottom: 6px;
}

.tk-team-card > span {
    display: inline-block;
    margin-bottom: 14px;
}

.tk-team-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.tk-departments {
    background: #050505;
    padding: 120px 20px;
    overflow: hidden;
    position: relative;
}

.tk-departments::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,122,0,0.08);
    border-radius: 50%;
    filter: blur(120px);
    top: -220px;
    right: -180px;
}

.tk-dept-head {
    position: relative;
    z-index: 2;
}

.tk-dept-head h2 {
    color: #fff;
}

.tk-dept-head p {
    color: rgba(255,255,255,0.75);
}

.tk-department-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    position: relative;
    z-index: 2;
}

.tk-department-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 32px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.tk-department-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,122,0,0.45);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 40px rgba(255,122,0,0.12);
}

.tk-department-image {
    height: 320px;
    overflow: hidden;
}

.tk-department-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tk-department-card:hover img {
    transform: scale(1.08);
}

.tk-department-content {
    padding: 38px;
}

.tk-department-content h3 {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
    margin: 14px 0 18px;
}

.tk-department-content p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.72);
    margin-bottom: 24px;
}

.tk-department-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tk-department-content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

.tk-department-content ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #ff7a00;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

@media (max-width: 980px) {
    .tk-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tk-department-grid {
        grid-template-columns: 1fr;
    }

    .tk-department-image {
        height: 260px;
    }
}

@media (max-width: 900px) {
    .tk-about-hero {
        min-height: 75vh;
        background-attachment: scroll;
    }

    .tk-about-intro,
    .tk-about-details {
        grid-template-columns: 1fr;
    }

    .tk-side-title {
        writing-mode: initial;
        transform: none;
        font-size: 42px;
        padding: 25px;
    }

    .tk-about-copy,
    .tk-details-content {
        padding: 75px 25px;
    }

    .tk-about-image {
        padding: 25px;
    }

    .tk-about-image img {
        min-height: 380px;
        transform: none;
    }
}

@media (max-width: 650px) {
    .tk-team {
        padding: 80px 16px;
    }

    .tk-team-grid {
        grid-template-columns: 1fr;
    }

    .tk-team-img {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .tk-departments {
        padding: 90px 16px;
    }

    .tk-department-content {
        padding: 28px;
    }

    .tk-department-content h3 {
        font-size: 28px;
    }
}
