/* =========================================================
   KINGO ADVENTURERS
   ABOUT US — PAGE-SPECIFIC CSS
   ---------------------------------------------------------
   IMPORTANT:
   This stylesheet is intentionally scoped to .about-page.
   It must NOT modify the shared header, footer, or global
   site components.
   ========================================================= */


/* =========================================================
   ABOUT PAGE VARIABLES
   ========================================================= */

.about-page {
    --about-cream: #f4f0e7;
    --about-paper: #faf8f2;
    --about-deep: #071b15;
    --about-green: #12372a;
    --about-gold: #d6a84f;
    --about-gold-light: #e0bc6a;
    --about-muted: #68736d;
    --about-line: rgba(7, 27, 21, 0.13);

    overflow: hidden;

    background: var(--about-cream);
    color: var(--about-deep);
}


/* =========================================================
   ABOUT HERO
   ========================================================= */

.about-page .about-hero {
    position: relative;

    min-height: 72vh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    isolation: isolate;

    background: #0b2119;

    color: #ffffff;
}


.about-page .about-hero .hero-image {
    position: absolute;

    inset: 0;

    z-index: -2;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.about-page .about-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(4, 18, 13, 0.90) 0%,
            rgba(4, 18, 13, 0.58) 47%,
            rgba(4, 18, 13, 0.18) 100%
        );
}


.about-page .about-hero .container {
    width: min(1180px, calc(100% - 40px));

    margin-inline: auto;
}


.about-page .about-hero-content {
    max-width: 780px;

    padding: 145px 0 80px;
}


.about-page .about-kicker,
.about-page .about-eyebrow {
    font-size: 0.72rem;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: 0.20em;

    text-transform: uppercase;
}


.about-page .about-kicker {
    margin: 0 0 22px;

    color: #e5c274;
}


.about-page .about-hero h1 {
    margin: 0 0 28px;

    font-family: "Playfair Display", serif;

    font-size: clamp(3.2rem, 6.2vw, 6.5rem);

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.035em;
}


.about-page .about-hero h1 em {
    color: var(--about-gold);

    font-style: italic;
}


.about-page .about-hero-copy {
    max-width: 680px;

    margin: 0 0 34px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 1.08rem;

    line-height: 1.8;
}


.about-page .about-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.about-page .about-actions a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 14px 21px;

    border: 1px solid rgba(255, 255, 255, 0.4);

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    font-size: 0.70rem;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.about-page .about-actions a:hover {
    transform: translateY(-2px);
}


.about-page .about-actions .gold {
    background: var(--about-gold);

    border-color: var(--about-gold);

    color: var(--about-deep);
}


.about-page .about-actions .outline {
    color: #ffffff;

    background: transparent;
}


/* =========================================================
   SHARED ABOUT CONTAINER
   ========================================================= */

.about-page .about-container {
    width: min(1180px, calc(100% - 40px));

    margin-inline: auto;
}


/* =========================================================
   EDITORIAL INTRODUCTION
   ========================================================= */

.about-page .editorial {
    padding: 105px 0;

    background: var(--about-paper);
}


.about-page .editorial-grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.9fr)
        minmax(0, 1.2fr);

    gap: 100px;

    align-items: start;
}


.about-page .about-eyebrow {
    margin: 0 0 18px;

    color: var(--about-green);
}


.about-page .editorial h2,
.about-page .values-title h2,
.about-page .about-cta h2 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(2.5rem, 4.4vw, 4.5rem);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -0.03em;
}


.about-page .editorial h2 em,
.about-page .values-title h2 em,
.about-page .about-cta h2 em {
    color: var(--about-gold);

    font-style: italic;
}


.about-page .editorial-copy {
    padding-top: 24px;

    border-top: 1px solid var(--about-line);
}


.about-page .editorial-copy p {
    max-width: 680px;

    margin: 0 0 24px;

    color: #4e5b55;

    font-size: 1.02rem;

    line-height: 1.9;
}


.about-page .editorial-note {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-top: 30px;

    padding-top: 22px;

    border-top: 1px solid var(--about-line);
}


.about-page .editorial-note strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 1.5rem;

    font-weight: 500;
}


.about-page .editorial-note span {
    display: block;

    margin-top: 5px;

    color: var(--about-muted);

    font-size: 0.78rem;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* =========================================================
   DISCOVER KINGO / THREE CARDS
   ========================================================= */

.about-page .story-links {
    padding: 110px 0;

    background: var(--about-cream);
}


.about-page .story-head {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 48px;
}


.about-page .story-head h2 {
    max-width: 650px;

    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(2.5rem, 4.4vw, 4.5rem);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -0.03em;
}


.about-page .story-head h2 em {
    color: var(--about-gold);

    font-style: italic;
}


.about-page .story-head > p {
    max-width: 400px;

    margin: 0;

    color: var(--about-muted);

    line-height: 1.8;
}


.about-page .story-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.about-page .story-card {
    overflow: hidden;

    background: var(--about-paper);

    border: 1px solid var(--about-line);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.about-page .story-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(7, 27, 21, 0.10);
}


.about-page .story-card img {
    display: block;

    width: 100%;
    height: 270px;

    object-fit: cover;
}


.about-page .story-card-body {
    padding: 30px 28px 32px;
}


.about-page .story-card-label {
    display: block;

    margin-bottom: 13px;

    color: #9b7630;

    font-size: 0.67rem;

    font-weight: 700;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}


.about-page .story-card h3 {
    margin: 0 0 13px;

    font-family: "Playfair Display", serif;

    font-size: 2rem;

    font-weight: 500;

    line-height: 1.15;
}


.about-page .story-card p {
    margin: 0 0 22px;

    color: #5c6862;

    line-height: 1.75;
}


.about-page .story-card a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--about-green);

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.11em;

    font-size: 0.68rem;

    font-weight: 700;
}


.about-page .story-card a:hover {
    color: #9b7630;
}


.about-page .story-card a i {
    transition: transform 0.2s ease;
}


.about-page .story-card a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   WHY CHOOSE KINGO
   ========================================================= */

.about-page .feature-editorial {
    padding: 110px 0;

    background: var(--about-paper);
}


.about-page .feature-editorial-grid {
    display: grid;

    grid-template-columns: 1.08fr 0.92fr;

    min-height: 620px;
}


.about-page .feature-editorial-image {
    position: relative;

    min-height: 560px;

    overflow: hidden;
}


.about-page .feature-editorial-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about-page .feature-editorial-copy {
    display: flex;

    flex-direction: column;
    justify-content: center;

    padding:
        75px
        clamp(35px, 6vw, 85px);

    background: var(--about-green);

    color: #ffffff;
}


.about-page .feature-editorial-copy .about-eyebrow {
    color: #e0bc6a;
}


.about-page .feature-editorial-copy h2 {
    margin: 0 0 25px;

    font-family: "Playfair Display", serif;

    font-size: clamp(2.5rem, 4vw, 4.2rem);

    font-weight: 500;

    line-height: 1.02;
}


.about-page .feature-editorial-copy h2 em {
    color: var(--about-gold-light);

    font-style: italic;
}


.about-page .feature-editorial-copy > p:not(.about-eyebrow) {
    margin: 0 0 27px;

    color: rgba(255, 255, 255, 0.78);

    line-height: 1.85;
}


/* =========================================================
   FEATURE LIST
   ---------------------------------------------------------
   Scoped specifically to the feature section so it cannot
   interfere with lists elsewhere on the website.
   ========================================================= */

.about-page .feature-editorial .feature-list {
    margin: 0 0 32px;

    padding: 0;

    list-style: none;

    border-top: 1px solid rgba(255, 255, 255, 0.18);
}


.about-page .feature-editorial .feature-list li {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.18);

    color: #ffffff;

    font-size: 0.90rem;
}


.about-page .feature-editorial .feature-list i {
    color: #e0bc6a;

    font-size: 0.72rem;
}


/* =========================================================
   BUTTONS USED INSIDE ABOUT PAGE
   ========================================================= */

.about-page .dark-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    width: max-content;

    padding: 14px 20px;

    background: #ffffff;

    color: var(--about-green);

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.11em;

    font-size: 0.68rem;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.about-page .dark-button:hover {
    transform: translateY(-2px);

    background: var(--about-gold);
}


.about-page .dark-button i {
    transition: transform 0.2s ease;
}


.about-page .dark-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   VALUES / OUR BELIEF
   ========================================================= */

.about-page .values {
    padding: 110px 0;

    background: var(--about-cream);
}


.about-page .values-title {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.about-page .values-title .about-eyebrow {
    margin-bottom: 17px;
}


.about-page .values-title > p:last-child {
    max-width: 620px;

    margin: 22px auto 0;

    color: var(--about-muted);

    line-height: 1.8;
}


.about-page .values-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid var(--about-line);
    border-left: 1px solid var(--about-line);
}


.about-page .value {
    min-height: 220px;

    padding: 34px 30px 38px;

    background: rgba(250, 248, 242, 0.4);

    border-right: 1px solid var(--about-line);
    border-bottom: 1px solid var(--about-line);
}


.about-page .value i {
    display: block;

    margin-bottom: 28px;

    color: #a57b2e;

    font-size: 1.15rem;
}


.about-page .value h3 {
    margin: 0 0 10px;

    font-family: "Playfair Display", serif;

    font-size: 1.6rem;

    font-weight: 500;

    line-height: 1.2;
}


.about-page .value p {
    margin: 0;

    color: var(--about-muted);

    font-size: 0.91rem;

    line-height: 1.7;
}


/* =========================================================
   OUR PROMISE
   ========================================================= */

.about-page .promise {
    position: relative;

    min-height: 640px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #ffffff;
}


.about-page .promise > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.about-page .promise::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 18, 13, 0.90),
            rgba(4, 18, 13, 0.48),
            rgba(4, 18, 13, 0.18)
        );
}


.about-page .promise-inner {
    position: relative;

    z-index: 1;

    width: min(1180px, calc(100% - 40px));

    margin-inline: auto;
}


.about-page .promise-copy {
    max-width: 690px;
}


.about-page .promise .about-eyebrow {
    color: #e1bd6b;
}


.about-page .promise h2 {
    margin: 0 0 22px;

    font-family: "Playfair Display", serif;

    font-size: clamp(2.8rem, 5vw, 5rem);

    font-weight: 500;

    line-height: 1.02;
}


.about-page .promise h2 em {
    color: var(--about-gold-light);

    font-style: italic;
}


.about-page .promise-copy > p:not(.about-eyebrow) {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 1rem;

    line-height: 1.85;
}


/* =========================================================
   IMPACT NUMBERS
   ========================================================= */

.about-page .impact {
    display: flex;

    max-width: 760px;

    margin: 42px 0 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}


.about-page .impact > div {
    flex: 1;

    margin-right: 22px;

    padding: 22px 22px 20px 0;

    border-right: 1px solid rgba(255, 255, 255, 0.18);
}


.about-page .impact > div:last-child {
    margin-right: 0;

    border-right: 0;
}


.about-page .impact strong {
    display: block;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: 2.1rem;

    font-weight: 500;
}


.about-page .impact span {
    display: block;

    margin-top: 5px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.70rem;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


/* =========================================================
   BEGIN YOUR JOURNEY / FINAL CTA
   ========================================================= */

.about-page .about-cta {
    padding: 105px 0;

    background: var(--about-deep);

    color: #ffffff;

    text-align: center;
}


.about-page .about-cta .about-eyebrow {
    color: #dfbb68;
}


.about-page .about-cta h2 {
    max-width: 850px;

    margin: 0 auto 22px;

    font-size: clamp(2.8rem, 5vw, 5rem);
}


.about-page .about-cta > .about-container > p:not(.about-eyebrow) {
    max-width: 650px;

    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.72);

    line-height: 1.8;
}


.about-page .about-cta > .about-container > a {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 23px;

    background: var(--about-gold);

    color: var(--about-deep);

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    font-size: 0.68rem;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.about-page .about-cta > .about-container > a:hover {
    transform: translateY(-2px);

    background: var(--about-gold-light);
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .about-page .editorial-grid,
    .about-page .feature-editorial-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .about-page .story-head {
        display: block;
    }


    .about-page .story-head > p {
        margin-top: 20px;
    }


    .about-page .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .about-page .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .about-page .feature-editorial-image {
        min-height: 440px;
    }


    .about-page .feature-editorial-copy {
        min-height: auto;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .about-page .about-hero {
        min-height: 76vh;
    }


    .about-page .about-hero-content {
        padding: 125px 0 55px;
    }


    .about-page .about-hero h1 {
        font-size: 3.25rem;
    }


    .about-page .about-hero-copy {
        font-size: 0.98rem;
    }


    .about-page .editorial,
    .about-page .story-links,
    .about-page .feature-editorial,
    .about-page .values {
        padding: 78px 0;
    }


    .about-page .editorial-grid {
        gap: 38px;
    }


    .about-page .story-grid,
    .about-page .values-grid {
        grid-template-columns: 1fr;
    }


    .about-page .story-card img {
        height: 235px;
    }


    .about-page .feature-editorial-copy {
        padding: 55px 28px;
    }


    .about-page .promise {
        min-height: 720px;
    }


    .about-page .promise-inner {
        width: calc(100% - 30px);
    }


    .about-page .impact {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }


    .about-page .impact > div {
        margin: 0;

        padding-right: 10px;

        border-right: 0;
    }


    .about-page .about-container {
        width: calc(100% - 30px);
    }


    .about-page .about-hero .container {
        width: calc(100% - 30px);
    }


    .about-page .about-cta {
        padding: 78px 0;
    }
}


/* =========================================================
   VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 380px) {

    .about-page .about-hero h1 {
        font-size: 2.8rem;
    }


    .about-page .about-actions {
        flex-direction: column;
        align-items: stretch;
    }


    .about-page .about-actions a {
        width: 100%;
    }


    .about-page .impact {
        grid-template-columns: 1fr;
    }


    .about-page .impact > div {
        padding: 15px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }


    .about-page .impact > div:last-child {
        border-bottom: 0;
    }
}

