/* =============================================================================
   about-us.css — the About Us page (/about-us). Semantic HTML on tokens.
   Mirrors the original Elementor design (extracted from post-1756.css):
   Montserrat headings, Ubuntu body, brown #B98E7F dividers, teal #35ABAA accents,
   grey highlights band, teal mission/vision band, yellow leader name badges and a
   plus/minus FAQ accordion. Fixed pixel heights are replaced with fluid
   clamp()/aspect-ratio so desktop matches the original and small screens scale.
   ============================================================================= */
.kk-about {
    /* page-local palette (page-specific brand shades kept verbatim from Elementor) */
    --kk-about-heading-font: "Montserrat", var(--kk-font-heading);
    --kk-about-body-font: "Ubuntu", var(--kk-font-body);
    --kk-about-ink: #0F0F0F;          /* section headings                        */
    --kk-about-text: #161616;         /* body copy                               */
    --kk-about-rule: #B98E7F;         /* brown divider rule                      */
    --kk-about-teal: #35ABAA;         /* accents, links, "Leaders"               */
    --kk-about-teal-bar: #44ACAF;     /* highlight left-border + mission band     */
    --kk-about-grey: #EEEEEE;         /* highlights band background              */
    --kk-about-faq-bg: #F7F7F7;       /* open accordion / panel background       */
    --kk-about-faq-border: #F1F1F1;   /* accordion item border                   */
    --kk-about-badge: #e8b847;        /* yellow leader name badge                */

    font-family: var(--kk-about-body-font);
    color: var(--kk-about-text);
    overflow-wrap: break-word;
}
.kk-about *,
.kk-about *::before,
.kk-about *::after { box-sizing: border-box; }
.kk-about img { max-width: 100%; height: auto; }

/* Boxed section wrapper (Elementor boxed width = 1140px) */
.kk-about__section {
    max-width: var(--kk-content-max);
    margin-inline: auto;
    padding: clamp(36px, 6vw, 60px) var(--kk-space-sm);
}
.kk-about__section--flush { max-width: none; padding: 0; }

/* -- Shared heading + divider ------------------------------------------------ */
.kk-about__heading {
    font-family: var(--kk-about-heading-font);
    font-size: clamp(26px, 4.5vw, 35px);
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--kk-about-ink);
    text-align: center;
    margin: 0 0 8px;
}
.kk-about__divider {
    height: 0;
    border: 0;
    border-top: 2px solid var(--kk-about-rule);
    margin: 0 auto clamp(20px, 3vw, 28px);
}
.kk-about__prose { font-size: clamp(14px, 1.6vw, 16px); line-height: 1.85; }
.kk-about__prose p { margin: 0 0 16px; }
.kk-about__prose ul { margin: 0 0 16px; padding-left: 22px; }
.kk-about__prose li { margin: 0 0 6px; }
.kk-about__prose a { color: var(--kk-about-teal); }
.kk-about__prose a:hover { text-decoration: underline; }

/* -- Focus states ------------------------------------------------------------ */
.kk-about a:focus-visible,
.kk-about summary:focus-visible,
.kk-about button:focus-visible {
    outline: 3px solid var(--kk-focus-ring);
    outline-offset: 2px;
    border-radius: 2px;
}

/* -- Intro ------------------------------------------------------------------- */
.kk-about__intro { text-align: center; overflow: hidden; }
.kk-about__watermark {
    display: block;
    width: min(62%, 420px);
    margin: 0 auto;
    opacity: 0.1;
}
.kk-about__intro-title {
    font-family: var(--kk-about-heading-font);
    font-size: clamp(28px, 5vw, 45px);
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--kk-about-ink);
    margin: clamp(-32px, -4vw, -50px) 0 12px;
}
.kk-about__intro .kk-about__divider { width: 72%; }
.kk-about__intro .kk-about__prose { text-align: left; padding-inline: clamp(0px, 3vw, 30px); }

/* -- Highlights band (grey): video + key highlights -------------------------- */
.kk-about__highlights { background: var(--kk-about-grey); }
.kk-about__highlights-inner {
    max-width: var(--kk-content-max);
    margin-inline: auto;
    padding: clamp(32px, 5vw, 50px) var(--kk-space-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
}
.kk-about__video {
    aspect-ratio: 16 / 9;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .5);
    overflow: hidden;
}
.kk-about__video iframe { width: 100%; height: 100%; border: 0; display: block; }
.kk-about__highlights-title {
    font-family: var(--kk-about-heading-font);
    font-size: clamp(20px, 3vw, 25px);
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--kk-about-ink);
    border-left: 3px solid var(--kk-about-teal-bar);
    padding: 5px 0 5px 15px;
    margin: 0 0 16px;
}
.kk-about__highlights-list {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 2;
    margin: 0;
    padding-left: 22px;
}
@media (max-width: 767px) {
    .kk-about__highlights-inner { grid-template-columns: 1fr; }
}

/* -- Values: four value cards ------------------------------------------------ */
.kk-about__values-intro { text-align: center; }
.kk-about__values-intro .kk-about__divider { width: min(18%, 200px); min-width: 90px; }
.kk-about__values-grid {
    list-style: none;
    margin: clamp(8px, 2vw, 16px) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 32px);
}
.kk-about__value { text-align: center; }
.kk-about__value-img {
    margin: 0 auto 12px;
    width: 60%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
}
.kk-about__value-img img { width: 100%; height: 100%; object-fit: cover; }
.kk-about__value-title {
    font-family: var(--kk-about-heading-font);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
.kk-about__value--empathy .kk-about__value-title { color: #bc8c82; }
.kk-about__value--resourcefulness .kk-about__value-title { color: #38acac; }
.kk-about__value--assertiveness .kk-about__value-title { color: #f46474; }
.kk-about__value--humbleness .kk-about__value-title { color: #ecb444; }
@media (max-width: 767px) {
    .kk-about__values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -- Mission / Vision band (teal) -------------------------------------------- */
.kk-about__mv { background: var(--kk-about-teal-bar); }
.kk-about__mv-inner {
    max-width: var(--kk-content-max);
    margin-inline: auto;
    padding: clamp(32px, 5vw, 50px) var(--kk-space-sm);
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) 1fr 1fr;
    gap: clamp(20px, 4vw, 30px);
    align-items: center;
}
.kk-about__mv-logo { text-align: center; }
.kk-about__mv-logo img {
    /* original renders the coloured logo as solid white on the teal band */
    filter: brightness(500%) contrast(200%) saturate(200%);
}
.kk-about__mv-card { display: flex; flex-direction: column; }
.kk-about__mv-icon { width: clamp(72px, 12vw, 128px); height: auto; margin: 0 0 12px; }
.kk-about__mv-title {
    font-family: var(--kk-about-heading-font);
    font-size: clamp(18px, 2.4vw, 20px);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px;
}
.kk-about__mv-text {
    font-family: var(--kk-about-body-font);
    font-size: 14px;
    line-height: 1.7;
    color: #F4F4F4;
    margin: 0;
}
@media (max-width: 900px) {
    .kk-about__mv-inner { grid-template-columns: 1fr 1fr; }
    .kk-about__mv-logo { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .kk-about__mv-inner { grid-template-columns: 1fr; }
}

/* -- Leaders quote intro ----------------------------------------------------- */
.kk-about__leaders-intro { text-align: center; }
.kk-about__leaders-intro .kk-about__divider { width: min(40%, 420px); min-width: 120px; }
.kk-about__quote {
    font-family: var(--kk-about-body-font);
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 500;
    line-height: 1.9;
    color: var(--kk-about-text);
    margin: 0;
}

/* -- Leaders profiles -------------------------------------------------------- */
.kk-about__leaders {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) 1fr 1fr;
    align-items: stretch;
}
.kk-about__leaders-title {
    background: #fff center / cover no-repeat
        url("/wp-content/uploads/2024/10/leaders-bg.webp");
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 5vw, 50px);
    margin: 0;
    font-family: var(--kk-about-heading-font);
    line-height: 1.05;
}
.kk-about__leaders-title-lead { display: block; font-size: clamp(28px, 6vw, 55px); font-weight: 500; color: #000; }
.kk-about__leaders-title-main { display: block; font-size: clamp(40px, 9vw, 75px); font-weight: 800; color: var(--kk-about-teal); }
.kk-about__leader {
    background: rgba(53, 171, 170, .24);   /* #35ABAA3D */
    padding: clamp(24px, 4vw, 50px) clamp(16px, 3vw, 30px);
    text-align: center;
}
.kk-about__leader-photo { margin: 0 0 -28px; }
.kk-about__leader-photo img { border-radius: 6px; }
.kk-about__leader-badge {
    background: var(--kk-about-badge);
    display: inline-block;
    position: relative;
    padding: 16px clamp(24px, 4vw, 50px);
    margin: 0 0 16px;
}
.kk-about__leader-name {
    font-family: var(--kk-about-heading-font);
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 3px;
}
.kk-about__leader-role {
    font-family: var(--kk-about-body-font);
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
}
.kk-about__leader-bio {
    font-family: var(--kk-about-body-font);
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin: 0;
}
@media (max-width: 900px) {
    .kk-about__leaders { grid-template-columns: 1fr; }
    .kk-about__leaders-title { min-height: 160px; text-align: center; align-items: center; }
}

/* -- CTA --------------------------------------------------------------------- */
.kk-about__cta .kk-about__prose {
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 500;
}
.kk-about__cta .kk-about__prose b { font-weight: 700; }
.kk-about__cta-rule { height: 0; border: 0; border-top: 1px solid #000; margin: 8px 0 0; }

/* -- FAQ accordion (native <details>) ---------------------------------------- */
.kk-about__faq-heading { }
.kk-about__faq .kk-about__divider { width: min(48%, 520px); min-width: 140px; }
.kk-about__faq-list { margin: 0; }
.kk-about__faq-item {
    border: 1px solid var(--kk-about-faq-border);
    background: #fff;
}
.kk-about__faq-item + .kk-about__faq-item { border-top: 0; }
.kk-about__faq-item[open] { background: var(--kk-about-faq-bg); }
.kk-about__faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 20px 20px 20px;
    font-family: var(--kk-about-heading-font);
    font-size: 16px;
    font-weight: 600;
    color: #000;
    min-height: 44px;
}
.kk-about__faq-q::-webkit-details-marker { display: none; }
.kk-about__faq-item:hover > .kk-about__faq-q,
.kk-about__faq-item[open] > .kk-about__faq-q { background: var(--kk-about-faq-bg); }
.kk-about__faq-q:hover,
.kk-about__faq-item[open] > .kk-about__faq-q { color: var(--kk-about-teal); }
/* plus / minus marker */
.kk-about__faq-q::after {
    content: "";
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    background:
        linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
        linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat;
}
.kk-about__faq-item[open] > .kk-about__faq-q::after {
    background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
}
.kk-about__faq-body {
    padding: 4px 20px 20px;
    font-family: var(--kk-about-body-font);
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.8;
}
.kk-about__faq-body p { margin: 0 0 12px; }
.kk-about__faq-body ul { margin: 0 0 12px; padding-left: 22px; }
.kk-about__faq-body li { margin: 0 0 6px; }
.kk-about__faq-body a { color: var(--kk-about-teal); }
