/* =========================================================
   ROOT
========================================================= */

:root {

    --cream: #f4eee5;
    --cream-light: #faf7f1;
    --sand: #e9ded0;
    --sand-dark: #d9c7b5;

    --ink: #29231f;
    --muted: #766c64;

    --terracotta: #a4513d;
    --terracotta-dark: #833b2d;

    --line: rgba(41, 35, 31, .16);

    --serif: "Playfair Display", serif;
    --sans: "Manrope", sans-serif;
    --body: "DM Sans", sans-serif;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    background: var(--cream);

    color: var(--ink);

    font-family: var(--body);

    overflow-x: hidden;
}


img {
    display: block;
    max-width: 100%;
}


button {
    font: inherit;
}


a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   LOADER
========================================================= */

.loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: var(--ink);

    color: var(--cream);

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}


body.loaded .loader {

    opacity: 0;

    visibility: hidden;

}


.loader-inner {

    width: min(500px, 80%);

}


.loader-top {

    display: flex;

    justify-content: space-between;

    font-size: 10px;

    letter-spacing: .22em;

    opacity: .6;

    margin-bottom: 25px;
}


.loader-line {

    height: 1px;

    background: rgba(255,255,255,.2);

    overflow: hidden;
}


.loader-line span {

    display: block;

    width: 0;

    height: 100%;

    background: var(--terracotta);

    animation: loaderLine 1.2s ease forwards;
}


.loader-bottom {

    margin-top: 18px;

    font-size: 10px;

    letter-spacing: .25em;

    color: #d8cdc1;
}


@keyframes loaderLine {

    to {
        width: 100%;
    }

}


/* =========================================================
   NAVIGATION
========================================================= */

.site-nav {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 90px;

    padding: 0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 20;
}


.brand {

    display: flex;

    align-items: center;

    gap: 13px;
}


.brand-mark {

    width: 42px;

    height: 42px;

    border: 1px solid var(--ink);

    display: grid;

    place-items: center;

    position: relative;
}


.brand-mark::before {

    content: "";

    position: absolute;

    width: 8px;

    height: 8px;

    background: var(--terracotta);

    top: -4px;

    right: -4px;
}


.brand-mark span {

    font-family: var(--serif);

    font-size: 21px;
}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}


.brand-text strong {

    font-family: var(--sans);

    font-size: 15px;

    letter-spacing: .14em;
}


.brand-text small {

    margin-top: 5px;

    font-size: 8px;

    letter-spacing: .3em;

    color: var(--muted);
}


.nav-message {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    font-size: 9px;

    letter-spacing: .24em;

    color: var(--muted);
}


.nav-message span {

    color: var(--terracotta);

    margin: 0 8px;
}


.menu-button {

    border: 0;

    background: none;

    width: 40px;

    height: 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 7px;

    cursor: pointer;
}


.menu-button span {

    display: block;

    width: 28px;

    height: 1px;

    background: var(--ink);

    margin-left: auto;

    transition: .3s ease;
}


.menu-button span:last-child {

    width: 18px;
}


.menu-button:hover span:last-child {

    width: 28px;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    display: grid;

    grid-template-columns: 49% 51%;

    position: relative;

    overflow: hidden;
}


/* =========================================================
   HERO LEFT
========================================================= */

.hero-left {

    position: relative;

    padding:
        160px
        7vw
        80px
        10vw;

    display: flex;

    align-items: center;

    background: var(--cream);

}


.hero-index {

    position: absolute;

    left: 5vw;

    top: 50%;

    transform: translateY(-50%);

    writing-mode: vertical-rl;

    display: flex;

    gap: 12px;

    align-items: center;

    font-size: 9px;

    letter-spacing: .2em;

    color: var(--muted);
}


.hero-index i {

    width: 1px;

    height: 70px;

    background: var(--line);
}


.hero-content {

    max-width: 590px;

    position: relative;

    z-index: 5;
}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 13px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .25em;

    color: var(--terracotta);

    margin-bottom: 28px;
}


.eyebrow-line {

    width: 38px;

    height: 1px;

    background: var(--terracotta);
}


.hero h1 {

    font-family: var(--serif);

    font-weight: 500;

    font-size: clamp(64px, 7vw, 112px);

    line-height: .88;

    letter-spacing: -.045em;

    margin-left: -5px;
}


.hero h1 em {

    color: var(--terracotta);

    font-weight: 500;
}


.hero-description {

    max-width: 440px;

    margin-top: 38px;

    font-size: 15px;

    line-height: 1.8;

    color: var(--muted);
}


.hero-status {

    margin-top: 42px;

    display: flex;

    align-items: center;

    gap: 15px;
}


.status-dot {

    width: 9px;

    height: 9px;

    background: var(--terracotta);

    border-radius: 50%;

    position: relative;
}


.status-dot::after {

    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid var(--terracotta);

    border-radius: 50%;

    animation: pulse 2s infinite;
}


@keyframes pulse {

    0% {
        transform: scale(.7);
        opacity: .8;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}


.hero-status small {

    display: block;

    font-size: 8px;

    letter-spacing: .2em;

    color: var(--muted);

    margin-bottom: 4px;
}


.hero-status strong {

    font-size: 11px;

    letter-spacing: .15em;
}


.hero-scroll {

    margin-top: 75px;

    display: flex;

    align-items: center;

    gap: 14px;

    font-size: 8px;

    letter-spacing: .22em;

    color: var(--muted);
}


.scroll-arrow {

    width: 28px;

    height: 28px;

    border: 1px solid var(--line);

    display: grid;

    place-items: center;

    font-size: 14px;

    color: var(--terracotta);
}


/* =========================================================
   HERO RIGHT / OWNER IMAGE
========================================================= */

.hero-right {

    min-height: 100vh;

    position: relative;

    background: var(--sand);

    overflow: hidden;
}


.hero-image-wrap {

    position: absolute;

    top: 13%;

    left: 10%;

    width: 67%;

    height: 74%;

    overflow: hidden;

    z-index: 3;

    box-shadow:
        25px 25px 0 rgba(164,81,61,.12);
}


.hero-image-wrap::before {

    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid rgba(255,255,255,.45);

    z-index: 5;

    pointer-events: none;
}


.hero-owner-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.04);

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1);
}


/*
   This overlay gives the photograph a warm editorial finish
   without hiding the actual person.
*/

.image-wash {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(41,35,31,.02) 20%,
            rgba(41,35,31,.38) 100%
        );

    z-index: 2;
}


.image-label {

    position: absolute;

    left: -1px;

    bottom: 35px;

    z-index: 6;

    background: var(--cream);

    padding: 18px 25px 20px 20px;

    display: flex;

    flex-direction: column;
}


.image-label span {

    font-size: 10px;

    letter-spacing: .23em;

    font-weight: 600;
}


.image-label strong {

    font-family: var(--serif);

    font-size: 28px;

    font-weight: 500;

    color: var(--terracotta);

    line-height: 1;

    margin-top: 5px;
}


.image-number {

    position: absolute;

    right: 22px;

    top: 20px;

    color: white;

    font-family: var(--serif);

    font-size: 42px;

    z-index: 6;

    opacity: .8;
}


.image-caption {

    position: absolute;

    right: -120px;

    bottom: 8%;

    z-index: 7;

    font-size: 8px;

    line-height: 1.8;

    letter-spacing: .25em;

    color: var(--ink);

    font-weight: 600;
}


.hero-word {

    position: absolute;

    right: -8%;

    bottom: 6%;

    font-family: var(--sans);

    font-size: clamp(70px, 10vw, 180px);

    font-weight: 800;

    letter-spacing: -.07em;

    color: transparent;

    -webkit-text-stroke: 1px rgba(41,35,31,.1);

    z-index: 1;

    pointer-events: none;
}


.hand-line {

    position: absolute;

    width: 300px;

    height: 130px;

    left: 55%;

    top: 10%;

    z-index: 8;

    color: var(--terracotta);

    transform: rotate(-5deg);
}


.hand-line svg {

    width: 100%;

    height: 100%;
}


.hand-line path {

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;

    stroke-dasharray: 7 7;
}


/* =========================================================
   PURPOSE
========================================================= */

.purpose {

    padding: 140px 10vw 150px;

    background: var(--cream-light);

    opacity: 0;

    transform: translateY(40px);

    transition: 1s ease;
}


.purpose.visible {

    opacity: 1;

    transform: translateY(0);
}


.purpose-top {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 80px;
}


.section-number {

    font-size: 10px;

    letter-spacing: .2em;

    color: var(--terracotta);
}


.purpose-rule {

    width: 90px;

    height: 1px;

    background: var(--line);
}


.section-label {

    font-size: 9px;

    letter-spacing: .25em;

    color: var(--muted);
}


.purpose-grid {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 12vw;

    align-items: end;
}


.purpose-title h2 {

    font-family: var(--serif);

    font-size: clamp(50px, 6vw, 90px);

    line-height: .96;

    font-weight: 500;

    letter-spacing: -.04em;
}


.purpose-title em {

    color: var(--terracotta);

    font-weight: 500;
}


.purpose-copy {

    max-width: 440px;
}


.purpose-copy .lead {

    font-family: var(--serif);

    font-size: 26px;

    line-height: 1.35;

    margin-bottom: 25px;
}


.purpose-copy > p:not(.lead) {

    font-size: 14px;

    line-height: 1.9;

    color: var(--muted);
}


.signature-line {

    margin-top: 45px;

    display: flex;

    align-items: center;

    gap: 15px;
}


.signature-line span {

    width: 40px;

    height: 1px;

    background: var(--terracotta);
}


.signature-line strong {

    font-size: 8px;

    letter-spacing: .2em;
}


/* =========================================================
   IMPACT SECTION
========================================================= */

.impact {

    padding: 120px 10vw 90px;

    background: var(--sand);

    position: relative;
}


.impact-heading {

    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 40px;

    margin-bottom: 90px;
}


.impact-number {

    font-family: var(--serif);

    font-size: 70px;

    color: var(--terracotta);

    opacity: .8;
}


.impact-eyebrow {

    display: block;

    font-size: 9px;

    letter-spacing: .25em;

    color: var(--muted);

    margin-bottom: 20px;
}


.impact-heading h2 {

    font-family: var(--serif);

    font-size: clamp(52px, 6vw, 88px);

    line-height: .95;

    font-weight: 500;

    letter-spacing: -.045em;
}


.impact-heading h2 em {

    color: var(--terracotta);

    font-weight: 500;
}


/* =========================================================
   IMPACT LIST
========================================================= */

.impact-list {

    border-top: 1px solid var(--line);
}


.impact-item {

    min-height: 155px;

    display: grid;

    grid-template-columns: 90px 70px 1fr 60px;

    align-items: center;

    gap: 30px;

    border-bottom: 1px solid var(--line);

    position: relative;

    transition:
        padding .45s ease,
        background .45s ease;
}


.impact-item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    bottom: 0;

    width: 0;

    background: var(--terracotta);

    transition: width .4s ease;
}


.impact-item:hover {

    padding-left: 25px;

    background: rgba(255,255,255,.25);
}


.impact-item:hover::before {

    width: 3px;
}


.impact-count {

    font-family: var(--serif);

    font-size: 19px;

    color: var(--muted);
}


.impact-icon {

    width: 48px;

    height: 48px;

    border: 1px solid rgba(41,35,31,.25);

    display: grid;

    place-items: center;

    font-family: var(--serif);

    font-size: 24px;

    color: var(--terracotta);

    transition:
        background .4s ease,
        color .4s ease,
        transform .4s ease;
}


.impact-item:hover .impact-icon {

    background: var(--terracotta);

    color: white;

    transform: rotate(8deg);
}


.impact-main span {

    font-size: 8px;

    letter-spacing: .25em;

    color: var(--terracotta);

    font-weight: 700;
}


.impact-main h3 {

    font-family: var(--serif);

    font-size: 35px;

    font-weight: 500;

    margin: 7px 0 8px;

    letter-spacing: -.025em;
}


.impact-main p {

    font-size: 12px;

    line-height: 1.6;

    color: var(--muted);

    max-width: 480px;
}


.impact-arrow {

    font-size: 25px;

    color: var(--terracotta);

    transition: transform .4s ease;
}


.impact-item:hover .impact-arrow {

    transform: translate(5px,-5px);
}


.impact-footer {

    margin-top: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    font-size: 8px;

    letter-spacing: .2em;

    color: var(--muted);
}


.impact-footer i {

    width: 4px;

    height: 4px;

    background: var(--terracotta);

    border-radius: 50%;
}


/* =========================================================
   HUMAN MESSAGE
========================================================= */

.human-message {

    min-height: 75vh;

    background: var(--cream);

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 100px 8vw;
}


.human-number {

    position: absolute;

    top: 60px;

    left: 10vw;

    font-family: var(--serif);

    color: var(--terracotta);

    font-size: 18px;
}


.human-background-text {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    font-family: var(--sans);

    font-size: clamp(100px, 19vw, 300px);

    font-weight: 800;

    letter-spacing: -.08em;

    color: transparent;

    -webkit-text-stroke: 1px rgba(41,35,31,.07);

    white-space: nowrap;

    user-select: none;
}


.human-content {

    position: relative;

    z-index: 3;

    max-width: 900px;

    opacity: 0;

    transform: translateY(40px);

    transition: 1s ease;
}


.human-content.visible {

    opacity: 1;

    transform: translateY(0);
}


.human-eyebrow {

    font-size: 9px;

    letter-spacing: .3em;

    color: var(--muted);
}


.human-content h2 {

    font-family: var(--serif);

    font-weight: 500;

    font-size: clamp(60px, 8vw, 120px);

    line-height: .9;

    letter-spacing: -.05em;

    margin: 35px 0;
}


.human-content h2 em {

    color: var(--terracotta);

    font-weight: 500;
}


.human-content > p {

    font-size: 14px;

    line-height: 1.8;

    color: var(--muted);
}


.human-line {

    margin: 45px auto 25px;

    width: 180px;

    height: 1px;

    background: var(--line);

    position: relative;
}


.human-line span {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    width: 35px;

    height: 1px;

    background: var(--terracotta);
}


.human-note {

    display: flex;

    justify-content: center;

    gap: 30px;

    font-size: 8px;

    letter-spacing: .2em;
}


.human-note span {

    color: var(--terracotta);
}


/* =========================================================
   FINAL CTA
========================================================= */

.final {

    padding: 100px 10vw 120px;

    background: var(--terracotta);

    color: var(--cream);
}


.final-top {

    display: flex;

    justify-content: space-between;

    padding-bottom: 35px;

    border-bottom: 1px solid rgba(255,255,255,.25);

    font-size: 8px;

    letter-spacing: .25em;

    opacity: .7;
}


.final-content {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 12vw;

    padding-top: 90px;

    opacity: 0;

    transform: translateY(40px);

    transition: 1s ease;
}


.final-content.visible {

    opacity: 1;

    transform: translateY(0);
}


.final-small {

    font-size: 9px;

    letter-spacing: .25em;

    opacity: .7;
}


.final-left h2 {

    margin-top: 30px;

    font-family: var(--serif);

    font-size: clamp(60px, 7vw, 105px);

    line-height: .9;

    font-weight: 500;

    letter-spacing: -.05em;
}


.final-left h2 em {

    color: #e8c8b8;

    font-weight: 500;
}


.final-right {

    align-self: end;

    max-width: 390px;
}


.final-right p {

    font-size: 14px;

    line-height: 1.9;

    color: rgba(255,255,255,.72);
}


.connect-button {

    margin-top: 40px;

    border: 1px solid rgba(255,255,255,.45);

    background: transparent;

    color: white;

    padding: 0;

    width: 220px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-left: 20px;

    cursor: pointer;

    transition: .4s ease;
}


.connect-button span {

    font-size: 8px;

    letter-spacing: .2em;
}


.connect-button b {

    width: 58px;

    height: 58px;

    border-left: 1px solid rgba(255,255,255,.35);

    display: grid;

    place-items: center;

    font-size: 20px;

    font-weight: 400;
}


.connect-button:hover {

    background: var(--cream);

    color: var(--terracotta);
}


.connect-button:hover b {

    border-color: rgba(164,81,61,.25);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    min-height: 70px;

    background: var(--terracotta-dark);

    color: rgba(255,255,255,.6);

    padding: 0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 7px;

    letter-spacing: .2em;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero {

        grid-template-columns: 50% 50%;
    }


    .hero-left {

        padding-left: 9vw;
    }


    .hero h1 {

        font-size: clamp(58px, 7vw, 82px);
    }


    .image-caption {

        right: -80px;
    }


    .purpose-grid {

        gap: 7vw;
    }


    .impact-item {

        grid-template-columns:
            60px
            55px
            1fr
            40px;

        gap: 20px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {

    body {
        overflow-x: hidden;
    }


    /* NAV */

    .site-nav {

        height: 75px;

        padding: 0 6vw;
    }


    .nav-message {

        display: none;
    }


    .brand-mark {

        width: 36px;

        height: 36px;
    }


    .brand-text strong {

        font-size: 13px;
    }


    /* HERO */

    .hero {

        display: flex;

        flex-direction: column;

        min-height: auto;
    }


    .hero-left {

        min-height: 90vh;

        padding:
            140px
            8vw
            70px;
    }


    .hero-index {

        display: none;
    }


    .hero h1 {

        font-size: clamp(62px, 18vw, 100px);

        line-height: .88;
    }


    .hero-description {

        font-size: 14px;

        margin-top: 30px;
    }


    .hero-scroll {

        margin-top: 50px;
    }


    /* OWNER IMAGE */

    .hero-right {

        min-height: 700px;

        height: 700px;
    }


    .hero-image-wrap {

        top: 8%;

        left: 8%;

        width: 76%;

        height: 78%;
    }


    .image-caption {

        right: auto;

        left: 86%;

        bottom: 9%;

        white-space: nowrap;
    }


    .hero-word {

        right: -25%;

        bottom: 5%;

        font-size: 80px;
    }


    .hand-line {

        left: 45%;

        top: 5%;

        width: 200px;
    }


    /* PURPOSE */

    .purpose {

        padding:
            90px
            8vw
            100px;
    }


    .purpose-top {

        margin-bottom: 55px;
    }


    .purpose-grid {

        display: block;
    }


    .purpose-title h2 {

        font-size: 58px;

        margin-bottom: 55px;
    }


    .purpose-copy {

        max-width: 100%;
    }


    /* IMPACT */

    .impact {

        padding:
            90px
            7vw
            70px;
    }


    .impact-heading {

        grid-template-columns: 55px 1fr;

        gap: 15px;

        margin-bottom: 55px;
    }


    .impact-number {

        font-size: 45px;
    }


    .impact-heading h2 {

        font-size: 55px;
    }


    .impact-item {

        min-height: 145px;

        grid-template-columns:
            35px
            45px
            1fr;

        gap: 15px;

        padding: 20px 0;
    }


    .impact-count {

        font-size: 14px;
    }


    .impact-icon {

        width: 38px;

        height: 38px;

        font-size: 18px;
    }


    .impact-main h3 {

        font-size: 27px;
    }


    .impact-main p {

        font-size: 11px;

        padding-right: 10px;
    }


    .impact-arrow {

        display: none;
    }


    .impact-footer {

        flex-wrap: wrap;

        gap: 10px;

        line-height: 2;
    }


    /* HUMAN */

    .human-message {

        min-height: 650px;

        padding: 80px 8vw;
    }


    .human-background-text {

        font-size: 100px;

        transform:
            translate(-50%, -50%)
            rotate(-90deg);
    }


    .human-content h2 {

        font-size: 65px;
    }


    .human-number {

        top: 35px;

        left: 8vw;
    }


    /* FINAL */

    .final {

        padding:
            75px
            8vw
            80px;
    }


    .final-content {

        display: block;

        padding-top: 65px;
    }


    .final-left h2 {

        font-size: 65px;

        margin-bottom: 60px;
    }


    .final-right {

        max-width: 100%;
    }


    /* FOOTER */

    .footer {

        min-height: auto;

        padding: 25px 8vw;

        flex-direction: column;

        gap: 12px;

        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hero-left {

        min-height: 85vh;

        padding-top: 120px;
    }


    .hero h1 {

        font-size: 58px;
    }


    .hero-right {

        min-height: 590px;

        height: 590px;
    }


    .hero-image-wrap {

        width: 80%;

        height: 78%;
    }


    .image-label {

        bottom: 25px;

        padding: 14px 18px;
    }


    .image-label strong {

        font-size: 23px;
    }


    .image-caption {

        left: 82%;

        font-size: 6px;
    }


    .purpose-title h2 {

        font-size: 50px;
    }


    .impact-heading h2 {

        font-size: 48px;
    }


    .impact-main h3 {

        font-size: 24px;
    }


    .human-content h2 {

        font-size: 54px;
    }


    .final-left h2 {

        font-size: 55px;
    }

}