/* =========================================================
   THE INNER SHIFT — ABOUT / FOUNDER PAGE
   Premium editorial + emotional storytelling system
   ---------------------------------------------------------
   Palette follows the existing site:
   Black / warm cream / muted gold / deep brown
   ========================================================= */
/* =========================================================
   ABOUT HERO — ROLES
   ========================================================= */

.about-hero__roles {
    display: flex;
    flex-direction: column;
    gap: 0px;

    width: min(520px, 100%);
    margin-top: 35px;
}


/* =========================================================
   ROLE CARD
   ========================================================= */

.about-hero__role {
    position: relative;

    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 25px;
    align-items: center;
    gap: 16px;

    min-height: 65px;

    padding: 10px 18px;

    border-top: 1px solid rgba(194, 138, 43, .32);
    border-bottom: 1px solid rgba(194, 138, 43, .14);

    background:
        linear-gradient(
            90deg,
            rgba(194, 138, 43, .035),
            transparent 75%
        );

    transition:
        background .45s ease,
        transform .45s cubic-bezier(.22,1,.36,1),
        border-color .45s ease;
}


/* left gold accent */

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

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 100%;

    background: #c28a2b;

    transform: scaleY(0);
    transform-origin: bottom;

    transition:
        transform .45s cubic-bezier(.22,1,.36,1);
}


/* =========================================================
   NUMBER
   ========================================================= */

.about-hero__role-number {
    align-self: start;

    padding-top: 3px;

    color: #c28a2b;

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

    letter-spacing: .12em;
}


/* =========================================================
   CONTENT
   ========================================================= */

.about-hero__role-content {
    display: flex;
    flex-direction: column;
    gap: 6px;

    min-width: 0;
}


/* small label */

.about-hero__role-label {
    color: rgba(194, 138, 43, .72);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .22em;
}


/* main role */

.about-hero__role-content strong {
    color: inherit;

    font-size: 17px;
    font-weight: 500;

    line-height: 1.35;
    letter-spacing: -.025em;

    transition:
        color .35s ease,
        transform .35s ease;
}


/* =========================================================
   ARROW
   ========================================================= */

.about-hero__role-arrow {
    display: flex;

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

    width: 25px;
    height: 25px;
background-color: #ffffff;
    border: 1px solid rgba(194, 138, 43, .22);
    border-radius: 50%;

    color: #c28a2b;

    font-size: 12px;

    opacity: .65;

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        background .35s ease,
        color .35s ease,
        opacity .35s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.about-hero__role:hover {
    transform: translateX(8px);

    border-top-color:
        rgba(194, 138, 43, .6);

    background:
        linear-gradient(
            90deg,
            rgba(194, 138, 43, .09),
            transparent
        );
}


.about-hero__role:hover::before {
    transform: scaleY(1);
}


.about-hero__role:hover strong {
    color: #c28a2b;

    transform: translateX(3px);
}


.about-hero__role:hover .about-hero__role-arrow {
    transform: rotate(45deg);

    background: #c28a2b;

    color: #171614;

    opacity: 1;
}


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

@media (max-width: 600px) {

    .about-hero__roles {
        width: 100%;
        margin-top: 28px;
        gap: 9px;
    }


    .about-hero__role {

        grid-template-columns:
            27px
            minmax(0, 1fr)
            22px;

        gap: 11px;

        min-height: 68px;

        padding:
            13px
            12px;
    }


    .about-hero__role-number {
        font-size: 7px;
    }


    .about-hero__role-label {
        font-size: 6px;
        letter-spacing: .18em;
    }


    .about-hero__role-content strong {
        font-size: 14px;
        line-height: 1.35;
    }


    .about-hero__role-arrow {
        width: 21px;
        height: 21px;

        font-size: 10px;
    }


    .about-hero__role:hover {
        transform: none;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .about-hero__role {
        grid-template-columns:
            23px
            minmax(0, 1fr)
            20px;

        gap: 9px;

        padding: 12px 9px;
    }


    .about-hero__role-content strong {
        font-size: 13px;
    }


    .about-hero__role-label {
        font-size: 5.5px;
    }


    .about-hero__role-arrow {
        width: 19px;
        height: 19px;
    }
}


/* =========================================================
   TOUCH DEVICES
   ========================================================= */

@media (hover: none) and (pointer: coarse) {

    .about-hero__role:hover {
        transform: none;
    }

    .about-hero__role:hover::before {
        transform: scaleY(0);
    }

    .about-hero__role:hover strong {
        transform: none;
        color: inherit;
    }

    .about-hero__role:hover .about-hero__role-arrow {
        background: transparent;
        color: #c28a2b;
        transform: none;
    }
}
.about-founder-page {
    --about-ink: #10100f;
    --about-ink-soft: #1b1916;
    --about-cream: #f7f5f1;
    --about-paper: #eeeae3;
    --about-gold: #c28a2b;
    --about-gold-light: #d6a64d;
    --about-brown: #7d5a2b;
    --about-line: rgba(16, 16, 15, .12);
    --about-white-line: rgba(255,255,255,.16);
    --about-shadow: 0 30px 90px rgba(0,0,0,.16);
    color: var(--about-ink);
    overflow: hidden;
}

.about-container {
    width: min(1240px, calc(100% - 72px));
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

.about-reveal { will-change: transform, opacity; }

/* =========================================================
   SECTION 01 — HERO
   ========================================================= */

.about-hero {
    position: relative;
    min-height: 920px;
    padding: 155px 0 110px;
    background:
        radial-gradient(circle at 12% 75%, rgba(194,138,43,.10), transparent 26%),
        linear-gradient(120deg, #f7f5f1 0%, #f3eee7 54%, #e9dfd2 100%);
    isolation: isolate;
}

.about-hero__texture {
    position: absolute;
    inset: 0;
    opacity: .32;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(16,16,15,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,16,15,.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.about-hero__word {
    position: absolute;
    right: -2vw;
    top: 19%;
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(110px, 19vw, 300px);
    line-height: .7;
    font-weight: 800;
    /* letter-spacing: -.08em; */
    color: rgba(16,16,15,.035);
    pointer-events: none;
    white-space: nowrap;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
    gap: clamp(50px, 7vw, 110px);
    align-items: center;
}

.about-kicker,
.about-section-marker {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.about-kicker__number,
.about-section-marker > span {
    color: var(--about-gold);
        font-family: Georgia, Times New Roman, serif;
    font-size: 24px;
    letter-spacing: 0;
}

.about-kicker__line,
.about-section-marker > i {
    display: block;
    width: 54px;
    height: 1px;
    background: var(--about-gold);
}

.about-hero__mini,
.about-eyebrow {
    margin: 54px 0 18px;
    color: var(--about-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.about-hero h1 {
    margin: 0;
        font-family: Georgia, Times New Roman, serif;
    font-size: clamp(70px, 8vw, 120px);
    line-height: .84;
    /* letter-spacing: -.075em; */
    font-weight: 500;
    font-style: italic;
}

.about-hero h1 span {
    display: block;
    color: var(--about-gold);
    font-style: italic;
    font-weight: 500;
}
.about-hero h1 .meeth1{
    font-size: 65px ;
    /* letter-spacing: -4px; */
    color: var(--about-ink);
}
.about-hero__roles {
    margin: 35px 0 0;
    font-size: clamp(16px, 1.35vw, 22px);
    line-height: 1.65;
    color: rgba(16,16,15);
    letter-spacing: 0px;
}

.about-hero__intro {
    margin-top: 44px;
    padding-left: 21px;
    border-left: 2px solid var(--about-gold);
    max-width: 470px;
}

.about-hero__intro span {
    display: block;
        font-family: Georgia, Times New Roman, serif;
    font-size: 17px;
    font-weight: 700;
}

.about-hero__intro p {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(16,16,15,.62);
}

.about-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    margin-top: 43px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(16,16,15,.22);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    transition: gap .35s ease, color .35s ease, border-color .35s ease;
}

.about-scroll-link i {
    color: var(--about-gold);
    font-size: 18px;
    font-style: normal;
    transition: transform .35s ease;
}

.about-scroll-link:hover {
    gap: 24px;
    color: var(--about-gold);
    border-color: var(--about-gold);
}

.about-scroll-link:hover i { transform: translateY(5px); }

.about-hero__visual { position: relative; }

.about-hero__frame {
    position: relative;
    width: min(100%, 610px);
    margin-left: auto;
    padding: 18px;
    border: 1px solid rgba(194,138,43,.45);
    background: rgba(255,255,255,.32);
    box-shadow: var(--about-shadow);
}

.about-hero__image-wrap {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: #6c4a30;
}

.about-founder-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 36%;
    filter: saturate(.92) contrast(1.02);
    transform: scale(1.03);
    transition: transform 1s cubic-bezier(.22,1,.36,1), filter .6s ease;
}

.about-hero__frame:hover .about-founder-image {
    transform: scale(1.075);
    filter: saturate(1) contrast(1.04);
}

.about-hero__stamp {
    position: absolute;
    right: -32px;
    top: 74px;
    width: 126px;
    height: 126px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--about-gold);
    background: var(--about-cream);
    box-shadow: 0 18px 50px rgba(0,0,0,.13);
    text-align: center;
    transform: rotate(9deg);
}

.about-hero__stamp span,
.about-hero__stamp small {
    font-size: 7px;
    letter-spacing: .16em;
}

.about-hero__stamp strong {
    margin: 4px 0;
        font-family: Georgia, Times New Roman, serif;
    font-size: 20px;
    letter-spacing: .06em;
}

.about-hero__caption {
    position: absolute;
    left: 42px;
    bottom: 38px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.about-hero__caption span:first-child {
        font-family: Georgia, Times New Roman, serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .08em;
}

.about-hero__caption span:last-child {
    font-size: 8px;
    letter-spacing: .18em;
}

.about-hero__bottom {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: min(1240px, calc(100% - 72px));
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 17px;
    border-top: 1px solid rgba(16,16,15,.12);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .25em;
    color: rgba(16,16,15,.46);
}

/* =========================================================
   SECTION MARKERS
   ========================================================= */

.about-section-marker { margin-bottom: 72px; }
.about-section-marker small { color: rgba(16,16,15,.54); }
.about-section-marker--light small { color: rgba(255,255,255,.55); }
.about-section-marker--light > i { background: var(--about-gold-light); }

/* =========================================================
   SECTION 02 — STORY
   ========================================================= */

.about-story {
    position: relative;
    padding: 150px 0 170px;
    background: var(--about-cream);
}

.about-story__glow {
    position: absolute;
    width: 540px;
    height: 540px;
    right: -240px;
    top: 80px;
    border-radius: 50%;
    background: rgba(194,138,43,.08);
    filter: blur(8px);
    pointer-events: none;
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
    gap: clamp(60px, 9vw, 135px);
    align-items: start;
}

.about-photo-card {
    position: relative;
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 14px;
    border: 1px solid rgba(194,138,43,.45);
    background: #e6ded3;
    box-shadow: 0 25px 75px rgba(16,16,15,.12);
    transform: rotate(-2deg);
    transition: transform .6s cubic-bezier(.22,1,.36,1), box-shadow .6s ease;
}

.about-photo-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 0 35px 90px rgba(16,16,15,.18);
}

.about-photo-card img {
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about-photo-card__label {
    position: absolute;
    left: 27px;
    bottom: 27px;
    padding: 9px 12px;
    background: rgba(16,16,15,.8);
    color: #fff;
    font-size: 8px;
    letter-spacing: .19em;
}

.about-story__floating-note {
    position: absolute;
    right: -45px;
    bottom: 55px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 170px;
    padding: 20px 18px;
    background: var(--about-ink);
    color: #fff;
    box-shadow: 0 20px 55px rgba(0,0,0,.2);
}

.about-story__floating-note span { font-size: 7px; letter-spacing: .2em; color: rgba(255,255,255,.5); }
.about-story__floating-note strong {     font-family: Georgia, Times New Roman, serif; font-size: 17px; line-height: 1.05; letter-spacing: -.03em; }
.about-story__floating-note strong:last-child { color: var(--about-gold-light); }

.about-story__content { padding-top: 6px; }
.about-story__content .about-eyebrow { margin-top: 0; }

.about-story h2 {
    margin: 0;
        font-family: Georgia, Times New Roman, serif;
    font-size: clamp(47px, 5.7vw, 78px);
    line-height: .94;
    letter-spacing: -.04em;
}

.about-story h2 em { color: var(--about-gold); font-style: italic; font-weight: 500; }

.about-story__copy {
    max-width: 680px;
    margin-top: 42px;
}

.about-story__copy p {
    margin: 0 0 21px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(16,16,15,.68);
}

.about-story__copy p:first-child {
        font-family: Georgia, Times New Roman, serif;
    font-size: 21px;
    line-height: 1.45;
    color: var(--about-ink);
    font-weight: 600;
}

.about-story__turn {
    margin-top: 48px;
    padding: 27px 0 0 25px;
    border-left: 2px solid var(--about-gold);
}

.about-story__turn span {
    display: block;
    margin-bottom: 10px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .21em;
    color: var(--about-gold);
}

.about-story__turn strong {
    display: block;
        font-family: Georgia, Times New Roman, serif;
    font-size: 22px;
    line-height: 1.35;
}

.about-story__turn p { margin: 8px 0 0; color: rgba(16,16,15,.55); }

/* =========================================================
   SECTION 03 — THE SHIFT
   ========================================================= */

.about-shift {
    position: relative;
    padding: 155px 0;
    background: var(--about-ink);
    color: #fff;
    overflow: hidden;
}

.about-shift::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(194,138,43,.14), transparent 30%),
        linear-gradient(100deg, rgba(255,255,255,.02), transparent 55%);
    pointer-events: none;
}

.about-shift__bg-word {
    position: absolute;
    left: -3vw;
    bottom: 0;
        font-family: Georgia, Times New Roman, serif;
    font-size: clamp(150px, 24vw, 360px);
    line-height: .7;
    font-weight: 800;
    letter-spacing: -.1em;
    color: rgba(255,255,255,.035);
    pointer-events: none;
}

.about-shift__grid {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: clamp(60px, 9vw, 140px);
    align-items: center;
}

.about-eyebrow--light { color: var(--about-gold-light); }
.about-shift__content .about-eyebrow { margin-top: 62px; }

.about-shift h2 {
    margin: 0;
    max-width: 720px;
        font-family: Georgia, Times New Roman, serif;
    font-size: clamp(50px, 6vw, 86px);
    line-height: .93;
    letter-spacing: -.065em;
    font-weight: 600;
}

.about-shift h2 span {
    display: block;
    color: var(--about-gold-light);
    font-style: italic;
    font-weight: 400;
}

.about-shift__lead {
    max-width: 630px;
    margin: 37px 0 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,.67);
}

.about-shift__quote {
    margin-top: 48px;
    max-width: 550px;
    padding: 23px 0 0 22px;
    border-left: 1px solid var(--about-gold);
}

.about-shift__quote span { font-size: 8px; font-weight: 800; letter-spacing: .2em; color: rgba(255,255,255,.46); }
.about-shift__quote p { margin: 10px 0 0;     font-family: Georgia, Times New Roman, serif; font-size: 20px; line-height: 1.45; }

.about-child-frame {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border: 1px solid rgba(214,166,77,.45);
    box-shadow: 0 35px 100px rgba(0,0,0,.35);
}

.about-child-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}

.about-child-frame:hover img { transform: scale(1.065); }

.about-child-frame__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,16,15,.88), transparent 58%);
}

.about-child-frame__caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
}

.about-child-frame__caption span {
    display: block;
    font-size: 8px;
    letter-spacing: .2em;
    color: rgba(255,255,255,.55);
}

.about-child-frame__caption strong {
    display: block;
    margin-top: 7px;
    max-width: 310px;
        font-family: Georgia, Times New Roman, serif;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -.035em;
}

/* =========================================================
   SECTION 04 — WHAT I BELIEVE / MANIFESTO
   ---------------------------------------------------------
   A complete visual redesign of the old belief cards.
   Editorial manifesto + interactive principles.
   ========================================================= */

.about-beliefs--manifesto {
    position: relative;
    padding: 145px 0 135px;
    background:
        radial-gradient(circle at 88% 12%, rgba(194,138,43,.12), transparent 24%),
        linear-gradient(135deg, #f4f0e9 0%, #ece6dc 55%, #e4d9cb 100%);
    overflow: hidden;
    isolation: isolate;
}

.about-beliefs--manifesto::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image:
        linear-gradient(rgba(16,16,15,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,16,15,.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
}

.beliefs-orbit {
    position: absolute;
    right: -170px;
    top: 90px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(194,138,43,.17);
    border-radius: 50%;
    pointer-events: none;
}

.beliefs-orbit::before,
.beliefs-orbit::after {
    content: "";
    position: absolute;
    inset: 55px;
    border: 1px solid rgba(194,138,43,.14);
    border-radius: 50%;
}

.beliefs-orbit::after { inset: 125px; }

.beliefs-orbit span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--about-gold);
}

.beliefs-orbit span:nth-child(1) { top: 56px; left: 50%; }
.beliefs-orbit span:nth-child(2) { right: 44px; bottom: 105px; }
.beliefs-orbit span:nth-child(3) { left: 80px; bottom: 28px; }

.beliefs-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--about-line);
}

.beliefs-head__label {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.beliefs-head__number {
        font-family: Georgia, Times New Roman, serif;
    color: var(--about-gold);
    font-size: 26px;
    letter-spacing: 0;
}

.beliefs-head__label i {
    width: 58px;
    height: 1px;
    background: var(--about-gold);
}

.beliefs-head__aside {
    display: flex;
    gap: 25px;
    color: rgba(16,16,15,.38);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .19em;
}

.beliefs-head__aside span:last-child { color: var(--about-gold); }

.beliefs-manifesto {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
    gap: clamp(60px, 8vw, 125px);
    align-items: center;
    min-height: 555px;
    padding: 85px 0 75px;
}

.beliefs-small-label,
.beliefs-pullquote span {
    margin: 0 0 17px;
    color: var(--about-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .23em;
}

.beliefs-manifesto__statement h2 {
    max-width: 820px;
    margin: 0;
        font-family: Georgia, Times New Roman, serif;
    font-size: clamp(56px, 6.7vw, 96px);
    line-height: .9;
    letter-spacing: -.075em;
    font-weight: 600;
}

.beliefs-manifesto__statement h2 em {
    display: block;
    color: var(--about-gold);
    font-style: italic;
    font-weight: 400;
}

.beliefs-manifesto__lead {
    max-width: 640px;
    margin: 34px 0 0;
    color: rgba(16,16,15,.62);
    font-size: 16px;
    line-height: 1.82;
}

.beliefs-pullquote {
    display: flex;
    flex-direction: column;
    gap: 7px;
    max-width: 510px;
    margin-top: 38px;
    padding: 22px 0 0 22px;
    border-left: 2px solid var(--about-gold);
}

.beliefs-pullquote span { margin: 0; color: rgba(16,16,15,.42); }

.beliefs-pullquote strong {
        font-family: Georgia, Times New Roman, serif;
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -.035em;
}

.beliefs-manifesto__visual {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #151311;
    border: 1px solid rgba(194,138,43,.45);
    box-shadow: 0 30px 80px rgba(16,16,15,.16);
}

.beliefs-manifesto__visual::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,.09);
    pointer-events: none;
}

.beliefs-visual__number {
    position: absolute;
    top: 18px;
    left: 24px;
    color: rgba(255,255,255,.4);
        font-family: Georgia, Times New Roman, serif;
    font-size: 10px;
    letter-spacing: .15em;
}

.beliefs-visual__circle {
    position: relative;
    z-index: 2;
    width: min(275px, 65vw);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214,166,77,.7);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 0 18px rgba(194,138,43,.025), 0 0 0 48px rgba(194,138,43,.018);
    transition: transform .7s cubic-bezier(.22,1,.36,1), background .5s ease;
}

.beliefs-manifesto__visual:hover .beliefs-visual__circle {
    transform: scale(1.06) rotate(4deg);
    background: rgba(194,138,43,.07);
}

.beliefs-visual__circle span {
    color: var(--about-gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .25em;
}

.beliefs-visual__circle strong {
    margin-top: 12px;
    color: #fff;
        font-family: Georgia, Times New Roman, serif;
    font-size: clamp(25px, 3vw, 38px);
    line-height: .95;
    letter-spacing: -.06em;
}

.beliefs-visual__line {
    position: absolute;
    width: 72%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214,166,77,.55), transparent);
    transform: rotate(-35deg);
}

.beliefs-visual__caption {
    position: absolute;
    right: 23px;
    bottom: 22px;
    color: rgba(255,255,255,.48);
    font-size: 8px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .18em;
    text-align: right;
}

.beliefs-principles {
    position: relative;
    direction: ltr;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--about-line);
    border-left: 1px solid var(--about-line);
}

.belief-principle {
    position: relative;
    order: 0;
    opacity: 1;
    min-height: 305px;
    padding: 24px 24px 28px;
    border-right: 1px solid var(--about-line);
    border-bottom: 1px solid var(--about-line);
    background: rgba(255,255,255,.12);
    overflow: hidden;
    transition: transform .45s cubic-bezier(.22,1,.36,1), background .45s ease, box-shadow .45s ease;
}

.belief-principle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--about-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.22,1,.36,1);
}

.belief-principle:hover {
    z-index: 3;
    transform: translateY(-10px);
    background: rgba(255,255,255,.65);
    box-shadow: 0 30px 65px rgba(16,16,15,.12);
}

.belief-principle:hover::after { transform: scaleX(1); }

/* Keep the intended visual sequence: 01 → 02 → 03 → 04 */
.beliefs-principles .belief-principle:nth-child(1) { grid-column: 1; }
.beliefs-principles .belief-principle:nth-child(2) { grid-column: 2; }
.beliefs-principles .belief-principle:nth-child(3) { grid-column: 3; }
.beliefs-principles .belief-principle:nth-child(4) { grid-column: 4; }


.belief-principle__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.belief-principle__top span {
    color: var(--about-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.belief-principle__top i {
    color: rgba(16,16,15,.3);
    font-size: 19px;
    font-style: normal;
    transition: transform .35s ease, color .35s ease;
}

.belief-principle:hover .belief-principle__top i {
    color: var(--about-gold);
    transform: translate(4px,-4px);
}

.belief-principle__icon {
    margin-top: 54px;
    color: var(--about-gold);
    font-size: 30px;
    transition: transform .5s ease;
}

.belief-principle:hover .belief-principle__icon { transform: rotate(12deg) scale(1.08); }

.belief-principle h3 {
    margin: 18px 0 9px;
        font-family: Georgia, Times New Roman, serif;
    font-size: 27px;
    line-height: 1;
    letter-spacing: -.045em;
}

.belief-principle p {
    max-width: 240px;
    margin: 0;
    color: rgba(16,16,15,.57);
    font-size: 13px;
    line-height: 1.68;
}

.beliefs-bottom {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
    color: rgba(16,16,15,.4);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .2em;
}

.beliefs-bottom i {
    height: 1px;
    background: rgba(16,16,15,.14);
}

.beliefs-bottom strong { color: rgba(16,16,15,.65); }

/* =========================================================
   SECTION 05 — WORK
   ========================================================= */

.about-work {
    position: relative;
    padding: 150px 0 165px;
    background: #171512;
    color: #fff;
    overflow: hidden;
}

.about-work::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 35%, rgba(194,138,43,.13), transparent 28%);
}

.about-work__word {
    position: absolute;
    right: -5vw;
    top: 10%;
        font-family: Georgia, Times New Roman, serif;
    font-size: clamp(130px, 23vw, 330px);
    font-weight: 800;
    letter-spacing: -.1em;
    color: rgba(255,255,255,.035);
    line-height: .7;
}

.about-work__intro { max-width: 830px; }
.about-work__intro .about-eyebrow { margin-top: 0; }
.about-work h2 { margin: 0;     font-family: Georgia, Times New Roman, serif; font-size: clamp(55px, 6.7vw, 95px); line-height: .9; letter-spacing: -.07em; }
.about-work h2 em { color: var(--about-gold-light); font-style: italic; font-weight: 400; }
.about-work__lead { max-width: 650px; margin: 32px 0 0; font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.59); }

.about-work__list {
    margin-top: 78px;
    border-top: 1px solid var(--about-white-line);
}

.about-work-item {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr 50px;
    align-items: center;
    min-height: 88px;
    gap: 20px;
    border-bottom: 1px solid var(--about-white-line);
    transition: padding .45s cubic-bezier(.22,1,.36,1), background .45s ease;
}

.about-work-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(194,138,43,.08);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .45s cubic-bezier(.22,1,.36,1);
}

.about-work-item:hover { padding-inline: 18px; }
.about-work-item:hover::before { transform: scaleY(1); }
.about-work-item > * { position: relative; z-index: 1; }
.about-work-item span { color: rgba(255,255,255,.38); font-size: 9px; letter-spacing: .15em; }
.about-work-item strong {     font-family: Georgia, Times New Roman, serif; font-size: clamp(20px, 2vw, 27px); font-weight: 500; letter-spacing: -.035em; }
.about-work-item i { justify-self: end; color: var(--about-gold-light); font-size: 21px; font-style: normal; transition: transform .35s ease; }
.about-work-item:hover i { transform: translate(5px,-5px); }

/* =========================================================
   SECTION 06 — CLOSING
   ========================================================= */

.about-closing {
    position: relative;
    min-height: 900px;
    padding: 140px 0 90px;
    color: #fff;
    background: #120f0c;
    overflow: hidden;
    isolation: isolate;
}

.about-closing__image,
.about-closing__veil { position: absolute; inset: 0; }

.about-closing__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .7;
    filter: saturate(.78) contrast(1.08);
    transform: scale(1.04);
}

.about-closing__veil {
    background:
        linear-gradient(90deg, rgba(16,16,15,.94) 0%, rgba(16,16,15,.79) 42%, rgba(16,16,15,.25) 100%),
        linear-gradient(0deg, rgba(16,16,15,.96) 0%, transparent 35%, rgba(16,16,15,.25) 100%);
    z-index: 1;
}

.about-closing__inner {
    min-height: 670px;
    display: grid;
    grid-template-columns: 1.15fr .6fr;
    grid-template-rows: auto 1fr;
    column-gap: 100px;
    align-items: center;
}

.about-closing__quote { align-self: start; max-width: 790px; }
.about-closing__number { display: block; margin-bottom: 45px; color: var(--about-gold-light);     font-family: Georgia, Times New Roman, serif; font-size: 25px; }
.about-closing__quote .about-eyebrow { margin: 0 0 25px; }
.about-closing blockquote { margin: 0;     font-family: Georgia, Times New Roman, serif; font-size: clamp(38px, 4.6vw, 67px); line-height: 1.02; letter-spacing: -.06em; font-weight: 500; }
.about-closing blockquote em { color: var(--about-gold-light); font-style: italic; font-weight: 400; }

.about-signature { display: flex; flex-direction: column; gap: 5px; margin-top: 45px; }
.about-signature strong {     font-family: Georgia, Times New Roman, serif; font-size: 17px; }
.about-signature span { font-size: 8px; letter-spacing: .19em; color: rgba(255,255,255,.48); text-transform: uppercase; }

.about-closing__portrait { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.about-closing__portrait-frame { width: min(100%, 330px); margin-left: auto; padding: 10px; border: 1px solid rgba(214,166,77,.45); background: rgba(255,255,255,.04); transform: rotate(2deg); transition: transform .6s cubic-bezier(.22,1,.36,1); }
.about-closing__portrait-frame:hover { transform: rotate(0deg) translateY(-7px); }
.about-closing__portrait img { width: 100%; height: 500px; display: block; object-fit: cover; object-position: center 42%; }

.about-closing__cta { grid-column: 1; max-width: 540px; align-self: end; }
.about-closing__cta p { margin: 0 0 25px; font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.6); }

.about-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    min-height: 54px;
    padding: 0 20px 0 23px;
    border: 1px solid var(--about-gold-light);
    background: var(--about-gold);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    transition: transform .35s ease, background .35s ease, gap .35s ease;
}

.about-primary-button i { font-size: 19px; font-style: normal; transition: transform .35s ease; }
.about-primary-button:hover { transform: translateY(-4px); background: #a97120; gap: 26px; }
.about-primary-button:hover i { transform: translate(3px,-3px); }

.about-closing__bottom {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    width: min(1240px, calc(100% - 72px));
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.4);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .23em;
}

/* =========================================================
   RESPONSIVE
   ---------------------------------------------------------
   Consolidated responsive rules
   Desktop → Tablet → Mobile → Small Mobile
   ========================================================= */


/* =========================================================
   TABLET — 1050px
   ========================================================= */

@media (max-width: 1050px) {

    /* ---------- Global container ---------- */

    .about-container,
    .about-hero__bottom,
    .about-closing__bottom {
        width: min(100% - 48px, 900px);
    }


    /* ---------- HERO ---------- */

    .about-hero {
        min-height: auto;
        padding-top: 145px;
    }

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

    .about-hero__content {
        max-width: 760px;
    }

    .about-hero__visual {
        width: min(100%, 720px);
        margin-inline: auto;
    }

    .about-hero__frame {
        margin: 25px auto 0;
    }

    .about-hero__bottom {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 80px;
    }


    /* ---------- STORY ---------- */

    .about-story__grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .about-story__visual {
        width: min(100%, 620px);
    }

    .about-photo-card {
        margin-left: 0;
    }

    .about-story__content {
        max-width: 800px;
    }


    /* ---------- SHIFT ---------- */

    .about-shift__grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .about-child-frame {
        max-width: 720px;
    }


    /* ---------- BELIEFS ---------- */

    .about-beliefs--manifesto .about-container {
        width: min(100% - 48px, 900px);
    }

    .beliefs-manifesto {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .beliefs-manifesto__visual {
        width: 100%;
        max-width: 620px;
        margin-inline: auto;
    }

    /*
       Four principle cards become 2 × 2.
       Important: no fixed grid-column values here.
    */

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

    .belief-principle {
        min-width: 0;
        min-height: 285px;
    }

    .belief-principle__icon {
        margin-top: 45px;
    }


    /* ---------- WORK ---------- */

    .about-work__list {
        margin-top: 62px;
    }


    /* ---------- CLOSING ---------- */

    .about-closing__inner {
        grid-template-columns: 1fr .65fr;
        column-gap: 55px;
    }
}


/* =========================================================
   MOBILE — 760px
   ========================================================= */

@media (max-width: 760px) {

    /* ---------- Global ---------- */

    .about-container,
    .about-hero__bottom,
    .about-closing__bottom {
        width: calc(100% - 34px);
    }

    .desktop-only {
        display: none;
    }


    /* ---------- HERO ---------- */

    .about-hero {
        min-height: auto;
        padding: 112px 0 70px;
    }

    .about-hero__grid {
        gap: 45px;
    }

    .about-hero__mini {
        margin-top: 40px;
    }

    .about-hero h1 {
        font-size: clamp(58px, 17vw, 82px);
    }

    .about-hero__roles {
        font-size: 15px;
        line-height: 1.55;
    }

    .about-hero__intro {
        margin-top: 32px;
    }

    .about-hero__frame {
        padding: 9px;
    }

    .about-hero__image-wrap {
        height: min(125vw, 600px);
    }

    .about-hero__stamp {
        right: -7px;
        top: 28px;
        width: 92px;
        height: 92px;
    }

    .about-hero__stamp strong {
        font-size: 14px;
    }

    .about-hero__caption {
        left: 24px;
        bottom: 24px;
    }

    .about-hero__bottom {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 65px;
        display: none;
    }

    .about-hero__bottom span:nth-child(2),
    .about-hero__bottom span:nth-child(4) {
        display: none;
    }


    /* ---------- SECTION SPACING ---------- */

    .about-story,
    .about-shift,
    .about-beliefs--manifesto,
    .about-work {
        padding: 100px 0 110px;
    }

    .about-section-marker {
        margin-bottom: 48px;
    }


    /* ---------- STORY ---------- */

    .about-story__grid {
        gap: 55px;
    }

    .about-photo-card {
        width: calc(100% - 12px);
        margin-inline: 6px;
        transform: rotate(-1deg);
    }

    .about-photo-card img {
        height: min(125vw, 520px);
    }

    .about-story__floating-note {
        right: -3px;
        bottom: 28px;
        width: 142px;
        padding: 15px;
    }

    .about-story__copy {
        margin-top: 30px;
    }

    .about-story__copy p {
        font-size: 15px;
        line-height: 1.75;
    }

    .about-story__copy p:first-child {
        font-size: 18px;
    }


    /* ---------- SHIFT ---------- */

    .about-shift__grid {
        gap: 50px;
    }

    .about-shift__content .about-eyebrow {
        margin-top: 45px;
    }

    .about-shift h2 {
        font-size: clamp(44px, 13vw, 68px);
    }

    .about-shift__lead {
        font-size: 16px;
    }

    .about-child-frame {
        min-height: min(135vw, 560px);
    }


    /* ---------- BELIEFS HEADER ---------- */

    .beliefs-orbit {
        right: -280px;
        top: 110px;
        width: 420px;
        height: 420px;
        opacity: .7;
    }

    .beliefs-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .beliefs-head__aside {
        width: 100%;
        justify-content: space-between;
    }


    /* ---------- BELIEFS MANIFESTO ---------- */

    .beliefs-manifesto {
        min-height: auto;
        padding: 65px 0 60px;
    }

    .beliefs-manifesto__statement h2 {
        font-size: clamp(46px, 13vw, 72px);
    }

    .beliefs-manifesto__lead {
        font-size: 15px;
        line-height: 1.75;
    }

    .beliefs-pullquote strong {
        font-size: 19px;
    }

    .beliefs-manifesto__visual {
        min-height: min(110vw, 500px);
    }


    /* =====================================================
       BELIEFS PRINCIPLE CARDS
       01 02
       03 04
       ===================================================== */

    .beliefs-principles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .belief-principle {
        min-width: 0;
        min-height: 245px;
        padding: 20px 17px 23px;
    }

    .belief-principle__top span {
        font-size: 8px;
    }

    .belief-principle__top i {
        font-size: 17px;
    }

    .belief-principle__icon {
        margin-top: 34px;
        font-size: 27px;
    }

    .belief-principle h3 {
        margin-top: 15px;
        font-size: 22px;
    }

    .belief-principle p {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.6;
    }


    /* ---------- BELIEFS BOTTOM ---------- */

    .beliefs-bottom {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 30px;
    }

    .beliefs-bottom i {
        display: none;
    }

    .beliefs-bottom strong {
        font-size: 7px;
    }


    /* ---------- WORK ---------- */

    .about-work h2 {
        font-size: clamp(47px, 13vw, 72px);
    }

    .about-work__lead {
        font-size: 15px;
    }

    .about-work-item {
        grid-template-columns: 32px minmax(0, 1fr) 26px;
        min-height: 76px;
        gap: 11px;
    }

    .about-work-item strong {
        font-size: 18px;
    }

    .about-work-item i {
        font-size: 17px;
    }


    /* ---------- CLOSING ---------- */

    .about-closing {
        min-height: auto;
        padding: 105px 0 80px;
    }

    .about-closing__inner {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 58px;
    }

    .about-closing__quote {
        order: 1;
    }

    .about-closing__portrait {
        order: 2;
    }

    .about-closing__cta {
        order: 3;
    }

    .about-closing__portrait-frame {
        width: min(100%, 330px);
        margin-inline: auto;
    }

    .about-closing__portrait img {
        height: min(130vw, 450px);
    }

    .about-closing blockquote {
        font-size: clamp(33px, 9.2vw, 54px);
    }

    .about-closing__bottom {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 65px;
    }
}


/* =========================================================
   SMALL MOBILE — 480px
   ========================================================= */

@media (max-width: 480px) {

    /* ---------- Global ---------- */

    .about-container,
    .about-hero__bottom,
    .about-closing__bottom {
        width: calc(100% - 28px);
    }


    /* ---------- HERO ---------- */

    .about-hero {
        padding-top: 98px;
    }

    .about-kicker,
    .about-section-marker {
        gap: 9px;
        letter-spacing: .16em;
    }

    .about-kicker__line,
    .about-section-marker > i {
        width: 38px;
    }

    .about-kicker__number,
    .about-section-marker > span {
        font-size: 21px;
    }

    .about-hero__mini {
        margin-top: 32px;
        letter-spacing: .18em;
    }

    .about-hero h1 {
        font-size: clamp(54px, 18vw, 72px);
    }

    .about-hero__roles {
        font-size: 14px;
    }

    .about-hero__intro span {
        font-size: 15px;
    }

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

    .about-hero__image-wrap {
        height: 125vw;
        min-height: 430px;
    }

    .about-hero__stamp {
        right: -4px;
        width: 78px;
        height: 78px;
        top: 24px;
    }

    .about-hero__stamp span,
    .about-hero__stamp small {
        font-size: 5px;
    }

    .about-hero__stamp strong {
        font-size: 12px;
    }

    .about-hero__caption span:first-child {
        font-size: 14px;
    }

    .about-hero__caption span:last-child {
        font-size: 6px;
    }


    /* ---------- SECTION SPACING ---------- */

    .about-story,
    .about-shift,
    .about-beliefs--manifesto,
    .about-work {
        padding: 82px 0 92px;
    }


    /* ---------- STORY ---------- */

    .about-story h2 {
        font-size: clamp(41px, 12.8vw, 60px);
    }

    .about-story__floating-note {
        width: 128px;
        padding: 13px;
    }

    .about-story__floating-note strong {
        font-size: 14px;
    }

    .about-story__turn {
        padding-left: 17px;
    }

    .about-story__turn strong {
        font-size: 19px;
    }


    /* ---------- SHIFT ---------- */

    .about-shift h2 {
        font-size: clamp(41px, 13vw, 61px);
    }

    .about-shift__quote p {
        font-size: 17px;
    }

    .about-child-frame {
        min-height: 122vw;
    }

    .about-child-frame__caption {
        left: 19px;
        right: 19px;
        bottom: 19px;
    }

    .about-child-frame__caption strong {
        font-size: 19px;
    }


    /* ---------- BELIEFS HEADER ---------- */

    .beliefs-head__aside {
        gap: 10px;
        font-size: 7px;
    }


    /* ---------- BELIEFS MANIFESTO ---------- */

    .beliefs-manifesto {
        padding: 55px 0 50px;
    }

    .beliefs-manifesto__statement h2 {
        font-size: clamp(42px, 13.5vw, 62px);
    }

    .beliefs-manifesto__lead {
        font-size: 14px;
    }

    .beliefs-manifesto__visual {
        min-height: 105vw;
    }

    .beliefs-visual__circle {
        width: 210px;
    }

    .beliefs-visual__caption {
        font-size: 6px;
        right: 16px;
        bottom: 16px;
    }


    /* =====================================================
       PRINCIPLE CARDS — SINGLE COLUMN
       01
       02
       03
       04
       ===================================================== */

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

    .belief-principle {
        min-height: auto;
        padding: 21px 19px 24px;
    }

    .belief-principle__icon {
        margin-top: 27px;
        font-size: 26px;
    }

    .belief-principle h3 {
        margin: 13px 0 8px;
        font-size: 24px;
    }

    .belief-principle p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.65;
    }

    .beliefs-bottom strong {
        line-height: 1.5;
    }


    /* ---------- WORK ---------- */

    .about-work-item {
        grid-template-columns: 27px minmax(0, 1fr) 20px;
        padding-block: 5px;
    }

    .about-work-item strong {
        font-size: 16px;
        line-height: 1.25;
    }

    .about-work-item span {
        font-size: 8px;
    }


    /* ---------- CLOSING ---------- */

    .about-closing__number {
        margin-bottom: 30px;
    }

    .about-closing blockquote {
        font-size: clamp(31px, 9.5vw, 46px);
    }

    .about-signature {
        margin-top: 32px;
    }

    .about-primary-button {
        width: 100%;
        justify-content: space-between;
    }
}


/* =========================================================
   TOUCH DEVICES
   Disable desktop hover movement on touch screens
   ========================================================= */

@media (hover: none) {

    .about-founder-page .about-hero__frame:hover .about-founder-image,
    .about-founder-page .about-photo-card:hover,
    .about-founder-page .about-child-frame:hover img,
    .about-founder-page .about-closing__portrait-frame:hover,
    .about-founder-page .beliefs-manifesto__visual:hover .beliefs-visual__circle,
    .about-founder-page .belief-principle:hover {
        transform: none;
    }

    .about-founder-page .belief-principle:hover {
        background: rgba(255, 255, 255, .12);
        box-shadow: none;
    }

    .about-founder-page .belief-principle:hover::after {
        transform: scaleX(0);
    }

    .about-founder-page .belief-principle:hover .belief-principle__top i {
        color: rgba(16, 16, 15, .3);
        transform: none;
    }

    .about-founder-page .belief-principle:hover .belief-principle__icon {
        transform: none;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-founder-page *,
    .about-founder-page *::before,
    .about-founder-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

