    :root {
        --brand-gold: #a68a36;
        --brand-dark: #1a1a1a;
        --text-muted: #6B7280;
        --text-body: #4B5563;
        --card-radius: 1rem;
        --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-hero {
        width: 100%;
        background: #fff3e7;
        padding: 80px 0;
    }

    .team-hero__badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background-color: #a68a361a;
        color: var(--brand-gold);
        border-radius: 50px;
        font-size: 0.875rem;
    }

    iconify-icon {
        font-size: 14px;
        vertical-align: middle;
    }

    .team-hero__title {
        font-size: 3.75rem;
        color: var(--brand-dark);
        line-height: 1.15;
        font-family: var(--font-sans);
    }

    .team-hero__title--highlight {
        color: var(--brand-gold);
    }

    .team-hero__desc {
        color: #6c757d;
        font-size: 1.25rem;
        max-width: 900px;
        line-height: 1.75;
    }

    @media (max-width: 1024px) {
        .team-hero {
            padding: 60px 0;
        }

        .team-hero__title {
            font-size: 3rem;
        }

        .team-hero__desc {
            font-size: 1.1rem;
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        .team-hero {
            padding: 50px 0;
            text-align: center;
        }

        .team-hero__title {
            font-size: 2.4rem;
        }

        .team-hero__desc {
            font-size: 1rem;
            line-height: 1.6;
        }

        .team-hero__badge {
            font-size: 0.8rem;
            padding: 6px 14px;
        }
    }

    @media (max-width: 480px) {
        .team-hero {
            padding: 40px 0;
        }

        .team-hero__title {
            font-size: 1.9rem;
        }

        .team-hero__desc {
            font-size: 0.95rem;
        }

        .team-hero__badge {
            font-size: 0.75rem;
            padding: 5px 12px;
            gap: 6px;
        }

        iconify-icon {
            font-size: 12px;
        }
    }

    .leadership-team {
        background-color: #ffffff;
        padding: 5rem 0;
    }

    @media (min-width: 992px) {
        .leadership-team {
            padding: 8rem 0;
        }
    }

    .leadership-team__divider {
        width: 6rem;
        height: 2px;
        background-color: var(--brand-gold);
        margin: 0 auto 1.5rem;
    }

    .leadership-team__title {
        font-size: clamp(1.75rem, 4vw, 3rem);
        color: var(--brand-dark);
        margin-bottom: 0.75rem;
        letter-spacing: -0.02em;
    }

    .leadership-team__subtitle {
        color: var(--text-muted);
        font-size: 1.0625rem;
        margin-bottom: 0;
    }

    .leader-card__image-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: var(--card-radius);
        height: 300px;
        margin-bottom: 1.5rem;
    }

    .leader-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform var(--transition);
    }

    .leader-card__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
        opacity: 0;
        display: flex;
        align-items: flex-end;
        padding: 1.5rem;
        transition: opacity var(--transition);
    }

    .leader-card__socials {
        display: flex;
        gap: 0.75rem;
        opacity: 0;
        transition: opacity var(--transition);
    }

    .leader-card__image-wrapper:hover .leader-card__image {
        transform: scale(1.06);
    }

    .leader-card__image-wrapper:hover .leader-card__overlay,
    .leader-card__image-wrapper:hover .leader-card__socials {
        opacity: 1;
    }

    .leader-card__social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--brand-gold);
        text-decoration: none;
        font-size: 0.875rem;
        transition: background-color var(--transition), color var(--transition);
    }

    .leader-card__social-btn:hover {
        background-color: var(--brand-gold);
        color: #ffffff;
    }

    .leader-card__name {
        font-size: 1.375rem;
        color: var(--brand-dark);
        margin-bottom: 0.35rem;
        letter-spacing: -0.01em;
    }

    .leader-card__role {
        color: var(--brand-gold);
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .leader-card__bio {
        color: var(--text-body);
        font-size: 0.875rem;
        line-height: 1.7;
        margin-bottom: 0;
    }


    .tour-guides-section {
        background-color: #fff3e7;
        padding: 5rem 0;
    }

    .tour-guides__divider {
        width: 6rem;
        height: 2px;
        background-color: var(--brand-gold);
        margin-bottom: 1.5rem;
    }

    .tour-guides__header {
        margin-bottom: 4rem;
    }

    .tour-guides__title {
        font-size: 1.875rem;
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    .tour-guides__subtitle {
        color: #6b7280;
        font-size: 1.125rem;
        margin-bottom: 0;
    }

    .guide-card {
        background-color: #fff;
        border: 1px solid #f3f4f6;
        border-radius: 0.75rem;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .guide-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

    .guide-card__image-wrapper {
        position: relative;
        overflow: hidden;
    }

    .guide-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .guide-card:hover .guide-card__image {
        transform: scale(1.05);
    }

    .guide-card__badge {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        background-color: var(--brand-gold);
        color: #fff;
        font-size: 0.625rem;
        padding: 0.125rem 0.625rem;
        border-radius: 9999px;
    }

    .guide-card__body {
        padding: 0.75rem;
    }

    .guide-card__name {
        font-size: 1rem;
        color: var(--brand-dark);
        margin-bottom: 0.25rem;
    }

    .guide-card__role {
        color: var(--brand-gold);
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .guide-card__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .guide-card__tag {
        display: inline-block;
        font-size: 0.625rem;
        padding: 0.125rem 0.375rem;
        border-radius: 0.25rem;
    }

    .guide-card .tag--blue {
        background-color: #dbeafe;
        color: #1d4ed8;
    }

    .guide-card .tag--green {
        background-color: #dcfce7;
        color: #15803d;
    }

    .guide-card .tag--purple {
        background-color: #f3e8ff;
        color: #7e22ce;
    }

    .guide-card .tag--orange {
        background-color: #ffedd5;
        color: #c2410c;
    }

    .guide-card .tag--teal {
        background-color: #ccfbf1;
        color: #0f766e;
    }

    .guide-card .tag--pink {
        background-color: #fce7f3;
        color: #be185d;
    }

    .guide-card__bio {
        color: #4b5563;
        font-size: 0.75rem;
        line-height: 1.625;
        margin-bottom: 0.75rem;
    }

    .guide-card__socials {
        display: flex;
        gap: 0.5rem;
    }

    .guide-card__social-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.75rem;
        height: 1.75rem;
        background-color: #f3f4f6;
        color: #4b5563;
        border-radius: 50%;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .guide-card__social-btn:hover {
        background-color: var(--brand-gold);
        color: #fff;
    }

    /* SM */
    @media (min-width: 576px) {

        .guide-card__image-wrapper {
            height: 16rem;
        }

        .guide-card__badge {
            top: 1rem;
            right: 1rem;
            font-size: 0.75rem;
            padding: 0.25rem 0.75rem;
        }

        .guide-card__body {
            padding: 1rem;
        }

        .guide-card__name {
            font-size: 1.125rem;
        }

        .guide-card__role {
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }

        .guide-card__tags {
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .guide-card__tag {
            font-size: 0.75rem;
            padding: 0.25rem 0.5rem;
        }

        .guide-card__bio {
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .guide-card__social-btn {
            width: 2rem;
            height: 2rem;
        }
    }

    /* LG */
    @media (min-width: 992px) {

        .tour-guides-section {
            padding: 8rem 0;
        }

        .tour-guides__title {
            font-size: 3rem;
        }

        .guide-card {
            border-radius: 1rem;
        }

        .guide-card__image-wrapper {
            height: 18rem;
        }

        .guide-card__body {
            padding: 1.5rem;
        }

        .guide-card__name {
            font-size: 1.25rem;
        }

        .leader-card__image-wrapper {
            height: 400px;
        }
    }

    .hospitality-team {
        width: 100%;
        background-color: #fff;
        padding: 5rem 0;
    }

    .hospitality-team__header {
        margin-bottom: 4rem;
    }

    .hospitality-team__rule {
        width: 6rem;
        height: 2px;
        background-color: var(--brand-gold);
        margin-bottom: 1.5rem;
    }

    .hospitality-team__title {
        font-size: 1.875rem;
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    .hospitality-team__subtitle {
        color: #6b7280;
        font-size: 1.125rem;
        margin-bottom: 0;
    }

    .hospitality-team-card {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        background-color: #fff3e7;
        padding: 1rem;
        border-radius: 0.75rem;
        transition: box-shadow 0.3s ease;
        height: 100%;
    }

    .hospitality-team-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .hospitality-team-card__avatar {
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
    }

    .hospitality-team-card__body {
        flex: 1;
        min-width: 0;
    }

    .hospitality-team-card__name {
        font-size: 1rem;
        color: var(--brand-dark);
        margin-bottom: 0.25rem;
    }

    .hospitality-team-card__role {
        color: var(--brand-gold);
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .hospitality-team-card__bio {
        color: #4b5563;
        font-size: 0.75rem;
        line-height: 1.625;
        margin-bottom: 0;
    }

    .booking-team {
        width: 100%;
        background-color: #fff3e7;
        padding: 5rem 0;
    }

    .booking-team__header {
        margin-bottom: 4rem;
    }

    .booking-team__rule {
        width: 6rem;
        height: 2px;
        background-color: var(--brand-gold);
        margin-bottom: 1.5rem;
    }

    .booking-team__title {
        font-size: 1.875rem;
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    .booking-team__subtitle {
        color: #6b7280;
        font-size: 1.125rem;
        margin-bottom: 0;
    }

    .booking-card {
        background-color: #fff;
        border-radius: 0.75rem;
        padding: 1.25rem;
        text-align: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        transition: box-shadow 0.3s ease;
        height: 100%;
    }

    .booking-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .booking-card__avatar-wrap {
        width: 5rem;
        height: 5rem;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid var(--brand-gold);
        margin-bottom: 1rem;
    }

    .booking-card__avatar {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .booking-card__name {
        font-size: 1rem;
        color: var(--brand-dark);
        margin-bottom: 0.25rem;
    }

    .booking-card__role {
        color: var(--brand-gold);
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .booking-card__tags {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: 0.75rem;
    }

    .booking-card__badge {
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        font-size: 0.75rem;
    }

    .booking-card__tag--blue {
        background-color: #dbeafe;
        color: #1d4ed8;
    }

    .booking-card__tag--green {
        background-color: #dcfce7;
        color: #15803d;
    }

    .booking-card__tag--orange {
        background-color: #ffedd5;
        color: #c2410c;
    }

    .booking-card__tag--purple {
        background-color: #f3e8ff;
        color: #7e22ce;
    }

    .booking-card__tag--red {
        background-color: #fee2e2;
        color: #b91c1c;
    }

    .booking-card__tag--pink {
        background-color: #dbeafe;
        color: #1d4ed8;
    }

    .booking-card__tag--teal {
        background-color: #dbeafe;
        color: #1d4ed8;
    }

    .booking-card__bio {
        color: #4b5563;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .booking-card__contacts {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
    }

    .booking-card__contact-link {
        color: var(--brand-gold);
        font-size: 1rem;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .booking-card__contact-link:hover {
        color: #8A721C;
    }

    /* SM */
    @media (min-width: 576px) {

        .hospitality-team-card {
            gap: 1rem;
            padding: 1.5rem;
        }

        .hospitality-team-card__avatar {
            width: 5rem;
            height: 5rem;
        }

        .hospitality-team-card__name {
            font-size: 1.125rem;
        }

        .hospitality-team-card__role {
            font-size: 0.875rem;
        }

        .hospitality-team-card__bio {
            font-size: 0.875rem;
        }

        .booking-card {
            padding: 1.5rem;
        }

        .booking-card__avatar-wrap {
            width: 6rem;
            height: 6rem;
        }

        .booking-card__name {
            font-size: 1.125rem;
        }

        .booking-card__role {
            font-size: 0.875rem;
        }

        .booking-card__bio {
            font-size: 0.875rem;
        }

        .booking-card__contact-link {
            font-size: 1.125rem;
        }
    }

    /* LG */
    @media (min-width: 992px) {

        .hospitality-team {
            padding: 8rem 0;
        }

        .hospitality-team__title {
            font-size: 3rem;
        }

        .booking-team {
            padding: 8rem 0;
        }

        .booking-team__title {
            font-size: 3rem;
        }
    }

    .drivers-team {
        width: 100%;
        background-color: #fff;
        padding: 5rem 0;
    }

    @media (min-width: 992px) {
        .drivers-team {
            padding: 8rem 0;
        }
    }

    .drivers-team__header {
        margin-bottom: 4rem;
    }

    .drivers-team__rule {
        width: 6rem;
        height: 2px;
        background-color: var(--brand-gold);
        margin-bottom: 1.5rem;
    }

    .drivers-team__title {
        font-size: 1.875rem;
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    @media (min-width: 992px) {
        .drivers-team__title {
            font-size: 3rem;
        }
    }

    .drivers-team__subtitle {
        color: #6b7280;
        font-size: 1.125rem;
        margin-bottom: 0;
    }

    .driver-card__avatar-wrap {
        width: 8rem;
        height: 8rem;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid var(--brand-gold);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        margin-bottom: 1rem;
        transition: transform 0.3s ease;
    }

    .driver-card__avatar-wrap:hover {
        transform: scale(1.05);
    }

    .driver-card__avatar {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .driver-card__name {
        font-size: 1.125rem;
        color: var(--brand-dark);
        margin-bottom: 0.25rem;
    }

    .driver-card__role {
        color: var(--brand-gold);
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .driver-card__experience {
        color: #6b7280;
        font-size: 0.75rem;
        margin-bottom: 0;
    }

    .drivers-stats {
        margin-top: 3rem;
        background-color: #fff3e7;
        border-radius: 1rem;
        padding: 2rem;
    }

    .drivers-stats__item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        justify-content: center;
    }

    .drivers-stats__icon {
        width: 3rem;
        height: 3rem;
        min-width: 3rem;
        background-color: var(--brand-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.125rem;
    }

    .drivers-stats__body {
        text-align: left;
    }

    .drivers-stats__label {
        color: var(--brand-dark);
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    .drivers-stats__desc {
        font-size: 0.875rem;
        color: #4b5563;
        margin-bottom: 0;
    }

    .join-team-cta {
        width: 100%;
        background: linear-gradient(to bottom right, var(--brand-gold), #8A721C);
        padding: 5rem 0;
        color: #fff;
    }

    .join-team-cta__title {
        font-size: 1.875rem;
        color: #fff;
        margin-bottom: 1.5rem;
    }

    @media (min-width: 992px) {
        .join-team-cta__title {
            font-size: 3rem;
        }
    }

    .join-team-cta__desc {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.75;
        margin-bottom: 2rem;
    }

    @media (min-width: 992px) {
        .join-team-cta__desc {
            font-size: 1.25rem;
        }
    }

    .join-team-cta__actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    @media (min-width: 576px) {
        .join-team-cta__actions {
            flex-direction: row;
            justify-content: center;
        }
    }

    .join-team-cta__btn {
        padding: 1rem 2rem;
        border-radius: 0.75rem;
        font-size: 1.125rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        border: 2px solid transparent;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .join-team-cta__btn--primary {
        background: linear-gradient(135deg,
                #ffffff 0%,
                #fff7e8 100%);
        color: var(--brand-gold);
        box-shadow:
            0 6px 18px rgba(0, 0, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }


    .join-team-cta__btn--primary:hover {
        transform: translateY(-3px);

        background: linear-gradient(135deg,
                #fff7e8 0%,
                #ffffff 100%);

        color: var(--brand-gold);

        box-shadow:
            0 14px 30px rgba(0, 0, 0, 0.18);
    }

    .join-team-cta__btn--primary:active {
        transform: translateY(0);
    }

    .join-team-cta__btn--outline {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: #ffffff;
        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .join-team-cta__btn--outline:hover {
        background: #ffffff;
        color: var(--brand-gold);
        transform: translateY(-3px);
        box-shadow:
            0 14px 30px rgba(0, 0, 0, 0.16);
    }

    .join-team-cta__btn--outline:active {
        transform: translateY(0);
    }