/* =========================================================
   REFLEXEDGE SOLUTIONS LTD — OUR PEOPLE / TEAM PAGE
   Cleaned stylesheet
   - Duplicate rules removed
   - Unused/old responsive selectors removed
   - Desktop motion retained
   - Mobile motion disabled
   ========================================================= */

:root {
    --pink: #b01657;
    --pink-dark: #850d40;
    --pink-light: #f8e9ef;

    --green: #046307;
    --green-dark: #034705;
    --green-light: #e8f2e8;

    --ink: #111111;
    --muted: #6b6b6b;
    --line: #e5e5e5;
    --white: #ffffff;
    --off-white: #f8f9f8;

    --max-width: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;

    width: 100%;
    height: 76px;
    padding: 0 4.5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;

    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand img {
    width: 112px;
    height: 48px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    position: relative;
    color: #666666;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--green);
}

.desktop-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: var(--pink);
}

.search-button {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    background: var(--green-light);

    cursor: pointer;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.search-button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #222;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.search-button:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: translateY(-2px);
}

.search-button:hover svg {
    stroke: var(--white);
}

.menu-button {
    display: none;

    width: 44px;
    height: 44px;
    padding: 0;

    border: 0;
    background: transparent;
    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-button span {
    display: block;
    width: 25px;
    height: 2px;

    background: var(--green);
    border-radius: 10px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-button.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.open span:nth-child(2) {
    opacity: 0;
}

.menu-button.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HERO
   ========================================================= */

.team-hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image: url("../images/team-background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.team-hero::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 80px;

    background: linear-gradient(
        to bottom,
        transparent,
        #ffffff
    );

    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 3;

    width: min(100% - 40px, var(--max-width));
    max-width: 720px;
    margin: auto;

    animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }   
}

.eyebrow {
    display: inline-block;

    margin-bottom: 18px;
    padding: 7px 12px;

    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;

    border-left: 3px solid var(--pink);
    background: rgba(255, 255, 255, 0.08);
}

.hero-content h1 {
    margin-bottom: 25px;

    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -3px;
}

.hero-content h1 span {
    color: var(--green);
}

.hero-content p {
    max-width: 650px;

    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   EMAIL TOOLTIP
   ========================================================= */

.email-link {
    position: relative;
}

.email-tooltip {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);

    z-index: 20;

    padding: 9px 13px;

    color: #ffffff;
    background: #111111;
    border-radius: 6px;

    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(6px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

.email-tooltip::after {
    content: "";

    position: absolute;
    right: 14px;
    top: 100%;

    border-width: 5px;
    border-style: solid;
    border-color:
        #111111
        transparent
        transparent
        transparent;
}

.email-link:hover .email-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================================
   PEOPLE INTRO
   ========================================================= */

.people-intro {
    width: min(calc(100% - 40px), var(--max-width));
    margin: auto;
    padding: 110px 0;

    display: grid;
    grid-template-columns: 0.7fr 1.5fr;
    gap: 80px;
}

.intro-label {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.intro-label span {
    width: 30px;
    height: 2px;
    background: var(--green);
}

.intro-content {
    max-width: 800px;
}

.intro-content h2 {
    margin-bottom: 30px;

    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.intro-content h2 span {
    color: var(--green);
}

.intro-content p {
    max-width: 760px;
    margin-bottom: 18px;

    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   TEAM SECTION
   ========================================================= */

.team-section {
    padding: 110px 20px;
    background: var(--off-white);
}

.section-heading {
    width: min(100%, 780px);
    margin: 0 auto 65px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 20px;

    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.section-heading h2 span {
    color: var(--green);
}

.section-heading p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}
.team-grid {
    width: min(100%, var(--max-width));
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    overflow: hidden;

    background: var(--white);
    border-radius: 18px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;

    animation: teamFloat 6s ease-in-out infinite;
}

.team-card:nth-child(2) {
    animation-delay: 0.8s;
}

.team-card:nth-child(3) {
    animation-delay: 1.6s;
}

.team-card:nth-child(4) {
    animation-delay: 2.4s;
}

@keyframes teamFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.team-image {
    position: relative;
    height: 310px;
    overflow: hidden;
    background: var(--green-light);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-socials {
    position: absolute;
    right: 18px;
    bottom: 18px;

    display: flex;
    gap: 8px;

    opacity: 0;
    transform: translateY(10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.team-card:hover .team-socials {
    opacity: 1;
    transform: translateY(0);
}

.team-socials a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: var(--green);
    background: var(--white);
    border-radius: 50%;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.team-socials a:hover {
    color: var(--white);
    background: var(--green);
}

.team-info {
    padding: 25px;
}

.team-role {
    display: block;
    margin-bottom: 8px;

    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.team-info h3 {
    margin-bottom: 7px;
    font-size: 18px;
}

.team-info p {
    color: var(--muted);
    font-size: 14px;
}


/* =========================================================
   INTEGRITY
   ========================================================= */

.integrity-section {
    padding: 120px 20px;
    background: var(--white);
}

.integrity-container {
    width: min(100%, var(--max-width));
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 100px;
    align-items: center;
}

.integrity-content {
    max-width: 680px;
}

.integrity-content h2 {
    margin-bottom: 30px;

    font-size: clamp(40px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -3px;
}

.integrity-content h2 span {
    color: var(--green);
}

.integrity-content p {
    margin-bottom: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.integrity-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 20px;
    padding: 15px 23px;

    color: var(--white);
    background: var(--green);
    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.integrity-button:hover,
.cta-button:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

.integrity-visual {
    position: relative;

    min-height: 430px;

    display: grid;
    place-items: center;
}

.trust-card {
    position: relative;
    z-index: 2;

    width: min(100%, 400px);
    padding: 50px 40px;

    color: var(--white);
    background: var(--green);
    border-radius: 25px;

    box-shadow: 0 30px 70px rgba(4, 99, 7, 0.20);

    animation: trustFloat 6s ease-in-out infinite;
}

@keyframes trustFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.trust-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    font-size: 25px;
}

.trust-card h3 {
    margin-bottom: 15px;
    font-size: 30px;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.trust-decoration {
    position: absolute;

    width: 280px;
    height: 280px;

    border: 2px solid var(--green-light);
    border-radius: 50%;

    animation: decorationRotate 12s linear infinite;
}

@keyframes decorationRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   PRINCIPLES
   ========================================================= */

.principles-section {
    padding: 110px 20px;
    background: var(--off-white);
}

.principles-grid {
    width: min(100%, var(--max-width));
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.principle-card {
    position: relative;

    min-height: 290px;
    padding: 35px 30px;

    background: var(--white);
    border-radius: 16px;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.principle-number {
    position: absolute;
    top: 22px;
    right: 25px;

    color: #aaa;
    font-size: 12px;
    font-weight: 700;
}

.principle-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    color: var(--green);
    background: var(--green-light);
    border-radius: 12px;

    font-size: 20px;
}

.principle-card h3 {
    margin-bottom: 14px;
    font-size: 21px;
}

.principle-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.team-cta {
    padding: 120px 20px;

    text-align: center;

    color: var(--white);

    background: linear-gradient(
        135deg,
        var(--green),
        var(--green-dark)
    );
}

.cta-content {
    width: min(100%, 750px);
    margin: auto;
}

.team-cta .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.team-cta h2 {
    margin-bottom: 25px;

    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.team-cta p {
    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.team-cta .cta-button {
    color: var(--green);
    background: var(--white);
}

.team-cta .cta-button:hover {
    color: var(--white);
    background: var(--pink);
}


/* =========================================================
   ABOUT REFLEXEDGE
   ========================================================= */

.about-reflexedge {
    position: relative;

    width: 100%;
    padding: 110px 0;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.82),
            rgba(255, 255, 255, 0.82)
        ),
        url("../images/pexels-luna-lovegood-4087271.jpg")
        center / cover no-repeat;
}

.about-reflexedge::before {
    content: "";

    position: absolute;
    inset: -15px;

    background:
        url("../images/pexels-luna-lovegood-4087271.jpg")
        center / cover no-repeat;

    filter: blur(5px);

    z-index: 0;
}

.about-reflexedge::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 100px;

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        #ffffff
    );

    pointer-events: none;
    z-index: 1;
}

.about-reflexedge-container {
    position: relative;
    z-index: 2;

    width: min(1240px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.about-reflexedge-content {
    width: 100%;
    max-width: 850px;

    animation: aboutReflexedgeIn 1s ease both;
}

@keyframes aboutReflexedgeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-reflexedge-label {
    position: relative;

    display: inline-block;

    margin-bottom: 15px;
    padding-left: 38px;

    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-reflexedge-label::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 26px;
    height: 2px;

    background: var(--pink);

    transform: translateY(-50%);
}

.about-reflexedge-content h2 {
    margin: 0 0 25px;

    color: #333333;
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 700;
    line-height: 1.08;
}

.about-reflexedge-content h2 span {
    display: block;
    color: var(--green);
}

.about-reflexedge-content > p {
    max-width: 760px;
    margin: 0 0 18px;

    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.about-reflexedge-content::after {
    content: "";

    display: block;

    width: 50px;
    height: 3px;

    margin-top: 28px;

    background: var(--pink);
}


/* =========================================================
   ABOUT HIGHLIGHTS
   ========================================================= */

.about-reflexedge-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-top: 35px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 5px 0;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.about-highlight:hover {
    transform: translateX(5px);
}

.about-highlight > i {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green);
    background: var(--green-light);
    border-radius: 50%;

    font-size: 17px;
}

.about-highlight h4 {
    margin: 0 0 3px;

    color: var(--ink);
    font-size: 16px;
}

.about-highlight p {
    margin: 0;

    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   ABOUT VISUAL
   ========================================================= */

.about-reflexedge-visual {
    position: relative;
    padding: 20px;
}

.about-image-wrapper {
    position: relative;

    width: 100%;
    height: 520px;

    overflow: hidden;

    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-image-wrapper::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.25),
        transparent 50%
    );

    pointer-events: none;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-accent-card {
    position: absolute;
    left: -5px;
    bottom: 0;

    max-width: 245px;
    padding: 22px 25px;

    display: flex;
    flex-direction: column;
    gap: 5px;

    color: #ffffff;
    background: var(--pink);
    border-radius: 14px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.about-accent-card strong {
    font-size: 21px;
}

.about-accent-card span {
    opacity: 0.9;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   OUR TEAM INTRO
   ========================================================= */

.our-team {
    width: 100%;
    padding: 110px 0;
    background: var(--white);
}

.team-header {
    width: min(800px, 92%);
    margin: 0 auto 60px;
    text-align: center;
}

.team-header .team-label {
    padding-left: 0;
}

.team-header .team-label::before {
    display: none;
}

.team-header h2 {
    margin-bottom: 20px;

    color: var(--ink);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
}

.team-header h2 span {
    color: var(--green);
}

.team-header p {
    max-width: 650px;
    margin: 0 auto;

    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    width: 100%;
    background: var(--white);
    color: #000000;
}

.footer-grid {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
    padding: 55px 0 45px;

    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.1fr;
    gap: 45px;
    align-items: start;
}

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-logo span {
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.footer-brand > p {
    max-width: 310px;
    margin-top: 15px;

    color: #888888;
    font-size: 10px;
    line-height: 1.75;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.social-links a {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #333333;
    border: 1px solid var(--green-dark);
    border-radius: 8px;

    font-size: 10px;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.social-links a:hover {
    color: #000000;
    background: #ffffff;
    border-color: #333333;
    transform: translateY(-2px);
}

.footer-column {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column h4 {
    margin-bottom: 7px;
    color: #333333;
    font-size: 11px;
    font-weight: 700;
}

.footer-column a {
    width: fit-content;

    color: #888888;
    font-size: 10px;
    line-height: 1.5;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover {
    color: #333333;
    transform: translateX(3px);
}

.footer-column p {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    margin: 0;

    color: #888888;
    font-size: 10px;
    line-height: 1.55;
}

.footer-column p i {
    width: 13px;
    flex-shrink: 0;
    margin-top: 3px;

    color: var(--green);
    font-size: 9px;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid var(--green);
}

.footer-bottom .container {
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    margin: 0;

    color: #626262;
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 1000px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* =========================================================
   MOBILE 
   ========================================================= */

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 900px) {
    .site-header {
        height: 70px;
        padding: 0 20px;
    }

    .brand {
        gap: 8px;
        font-size: 14px;
    }

    .brand img {
        width: 92px;
        height: 42px;
    }

    .menu-button {
        display: flex;
        position: relative;
        z-index: 3001;
    }

    .desktop-nav {
        position: fixed;
        top: 70px;
        left: 0;

        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 10px 20px 25px;

        background: #ffffff;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;

        z-index: 3000;
    }

    .desktop-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .desktop-nav a {
        display: block;
        width: 100%;

        padding: 16px 5px;

        color: #444444;
        font-size: 15px;
        font-weight: 500;

        border-bottom: 1px solid #eeeeee;
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
        color: var(--green);
    }

    .desktop-nav a::after {
        display: none !important;
    }

    .desktop-nav .search-button {
        display: flex;
        width: 38px;
        height: 38px;

        margin-top: 16px;
        align-self: flex-start;
    }


    /* Page layout */

    .team-hero {
        min-height: 500px;
    }

    .hero-content h1 {
        letter-spacing: -2px;
    }

    .people-intro {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 80px 0;
    }

    .team-section,
    .integrity-section,
    .principles-section {
        padding: 80px 20px;
    }

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

    .team-image {
        height: 360px;
    }

    .integrity-visual {
        min-height: 380px;
    }

    .about-reflexedge {
        padding: 80px 0;
    }

    .about-reflexedge-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-reflexedge-content {
        max-width: 100%;
    }

    .about-reflexedge-content h2 {
        font-size: 46px;
    }

    .about-reflexedge-visual {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
    }

    .about-image-wrapper {
        height: 450px;
    }

    .about-accent-card {
        left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   MOBILE — NO ANIMATION
   ========================================================= */

@media (max-width: 600px) {
    *,
    *::before,
    *::after {
        animation: none !important;
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;

        transition: none !important;
        transition-delay: 0s !important;
        transition-duration: 0s !important;

        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }

    /* Make every animated/revealed element visible immediately */
    .hero-content,
    .team-card,
    .trust-card,
    .trust-decoration,
    .about-reflexedge-content,
    .about-reflexedge-label,
    .about-reflexedge-content h2,
    .about-reflexedge-content > p,
    .about-highlight,
    .about-reflexedge-label::before,
    .about-reflexedge-content h2 span::after {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    .menu-button span,
    .menu-button.open span:nth-child(1),
    .menu-button.open span:nth-child(2),
    .menu-button.open span:nth-child(3) {
        transition: none !important;
    }

    .site-header {
        height: 66px;
        padding: 0 15px;
    }

    .brand {
        font-size: 13px;
    }

    .brand img {
        width: 82px;
        height: 40px;
    }

    .desktop-nav {
        top: 66px;
        max-height: calc(100vh - 66px);
        padding: 8px 15px 20px;
    }

    .desktop-nav a {
        padding: 15px 4px;
        font-size: 14px;
    }

    .team-hero {
        min-height: 470px;
    }

    .hero-content {
        width: min(100% - 30px, var(--max-width));
    }

    .hero-content h1 {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -2px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .people-intro {
        width: min(100% - 30px, var(--max-width));
        padding: 65px 0;
    }

    .intro-content h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .intro-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .team-section,
    .integrity-section,
    .principles-section {
        padding: 65px 15px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .section-heading p {
        font-size: 14px;
    }

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

    .team-card:hover,
    .principle-card:hover,
    .integrity-button:hover,
    .cta-button:hover,
    .social-links a:hover {
        transform: none;
    }

    .team-card:hover .team-image img,
    .about-image-wrapper:hover img {
        transform: none;
    }

    .team-image {
        height: 330px;
    }

    .team-socials {
        opacity: 1;
        transform: none;
    }

    .team-info {
        padding: 22px 20px;
    }

    .team-info h3 {
        font-size: 17px;
    }

    .team-info p {
        font-size: 13px;
    }

    .integrity-content h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .trust-card {
        width: 100%;
        max-width: 400px;
        padding: 40px 30px;
    }

    .trust-card h3 {
        font-size: 26px;
    }

    .trust-decoration {
        width: 230px;
        height: 230px;
    }

    .principle-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .principle-card h3 {
        font-size: 19px;
    }

    .principle-card p {
        font-size: 13px;
    }

    .team-cta {
        padding: 75px 20px;
    }

    .team-cta h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .team-cta p {
        font-size: 14px;
    }

    .about-reflexedge {
        padding: 65px 0 85px;
    }

    .about-reflexedge-container {
        width: 90%;
        gap: 40px;
    }

    .about-reflexedge-label {
        margin-bottom: 17px;
        padding-left: 32px;
        font-size: 11px;
        letter-spacing: 1.8px;
    }

    .about-reflexedge-label::before {
        width: 22px;
    }

    .about-reflexedge-content h2 {
        margin-bottom: 25px;
        font-size: 36px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .about-reflexedge-content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-reflexedge-content::after {
        width: 42px;
        height: 2px;
        margin-top: 24px;
    }

    .about-reflexedge-highlights {
        margin-top: 28px;
        gap: 15px;
    }

    .about-highlight {
        align-items: flex-start;
        gap: 14px;
    }

    .about-highlight > i {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .about-highlight h4 {
        font-size: 15px;
    }

    .about-highlight p {
        font-size: 13px;
    }

    .about-reflexedge-visual {
        padding: 8px 0 35px;
    }

    .about-image-wrapper {
        height: 330px;
        border-radius: 18px;
    }

    .about-accent-card {
        left: 15px;
        bottom: 0;

        max-width: 210px;
        padding: 17px 20px;
    }

    .about-accent-card strong {
        font-size: 18px;
    }

    .about-accent-card span {
        font-size: 12px;
    }

    .our-team {
        padding: 70px 0;
    }

    .team-header {
        margin-bottom: 40px;
    }

    .team-header h2 {
        font-size: 34px;
    }

    .team-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .footer-grid {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 0 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand > p {
        max-width: 100%;
        font-size: 11px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h4 {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 11px;
    }

    .footer-bottom .container {
        min-height: 48px;
        padding: 10px 20px;
    }

    .footer-bottom p {
        font-size: 9px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {
    .brand {
        font-size: 11px;
    }

    .brand img {
        width: 68px;
        height: 36px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .team-image {
        height: 300px;
    }

    .footer-grid {
        width: calc(100% - 30px);
        gap: 30px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 10px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .hero-content,
    .team-card,
    .trust-card,
    .trust-decoration,
    .about-reflexedge-content,
    .about-reflexedge-label,
    .about-reflexedge-content h2,
    .about-reflexedge-content > p,
    .about-highlight {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
}
