:root {
    --dark: #0d1212;
    --dark-soft: #151d1d;
    --dark-lighter: #1e2929;

    --white: #ffffff;
    --light: #f3f4f1;
    --light-soft: #eaeeeb;

    --accent: #9eb7bb;
    --accent-soft: #c8d5d7;

    --text-muted: rgba(13, 18, 18, .62);
    --line: rgba(13, 18, 18, .11);

    --container: 1540px;

    --page-padding-desktop: 7vw;
    --page-padding-tablet: 42px;
    --page-padding-mobile: 22px;
}


/* =========================================================
   RESET / BASE
   ========================================================= */

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


html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}


body {
    margin: 0;

    min-width: 320px;

    overflow-x: hidden;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;

    background: var(--light);
    color: var(--dark);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


::selection {
    background: var(--dark);
    color: white;
}


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


button,
input,
textarea,
select {
    font: inherit;
}


button {
    color: inherit;
}


img,
video {
    max-width: 100%;
}


img {
    height: auto;
}


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

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    transition:
        background .4s ease,
        backdrop-filter .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


.site-header.scrolled {
    background: rgba(243, 244, 241, .88);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border-bottom: 1px solid rgba(13,18,18,.07);

    box-shadow:
        0 10px 40px
        rgba(13,18,18,.025);
}


.header-inner {
    width: 100%;
    max-width: var(--container);

    margin: 0 auto;

    height: 100px;

    padding:
        0
        42px;

    display: flex;

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

    gap: 35px;
}


.brand {
    position: relative;

    z-index: 20;

    display: flex;
    align-items: center;

    gap: 14px;

    flex-shrink: 0;
}


.brand-mark {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

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

    background: var(--dark);

    color: white;

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

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


.brand:hover .brand-mark {
    transform: translateY(-1px);

    background: #202b2b;
}


.brand-text {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.brand-name {
    font-size: 18px;
    font-weight: 600;

    letter-spacing: 5px;

    white-space: nowrap;
}


.brand-claim {
    font-size: 8px;

    letter-spacing: 3px;

    opacity: .55;

    white-space: nowrap;
}


.main-nav {
    display: flex;

    align-items: center;

    gap: clamp(20px, 2.1vw, 34px);

    font-size: 12px;
}


.main-nav a {
    position: relative;

    letter-spacing: .3px;

    white-space: nowrap;
}


.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 0;
    height: 1px;

    background: var(--dark);

    transition:
        width .25s ease;
}


.main-nav a:hover::after {
    width: 100%;
}


.header-actions {
    display: flex;

    align-items: center;

    gap: 24px;

    flex-shrink: 0;
}


.language-switcher {
    display: flex;

    gap: 10px;
}


.language-switcher button {
    padding: 5px 2px;

    border: 0;

    background: transparent;

    cursor: pointer;

    font-size: 9px;

    opacity: .42;

    transition: opacity .2s ease;
}


.language-switcher button:hover {
    opacity: .85;
}


.language-switcher button:first-child {
    opacity: 1;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-button {
    position: relative;

    z-index: 1200;

    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.menu-button span {
    position: absolute;

    left: 11px;

    width: 24px;
    height: 1px;

    margin: 0;

    background: var(--dark);

    transition:
        transform .3s ease,
        top .3s ease,
        opacity .3s ease;
}


.menu-button span:first-child {
    top: 18px;
}


.menu-button span:last-child {
    top: 27px;
}


.mobile-menu {
    display: none;
}


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

.hero {
    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;

    align-items: center;

    padding:
        150px
        max(
            var(--page-padding-desktop),
            calc((100vw - 1540px) / 2 + 60px)
        )
        90px;

    overflow: hidden;

    isolation: isolate;
}


.hero-background {
    position: absolute;

    inset: 0;

    z-index: -10;

    background:
        radial-gradient(
            circle at 78% 24%,
            rgba(158,183,187,.48),
            transparent 31%
        ),
        radial-gradient(
            circle at 48% 80%,
            rgba(255,255,255,.80),
            transparent 37%
        ),
        linear-gradient(
            125deg,
            #f3f4f1 0%,
            #e7ece9 50%,
            #c7d5d5 100%
        );
}


.hero-grid,
.rental-grid,
.manifesto-grid {
    position: absolute;

    inset: 0;

    pointer-events: none;
}


.hero-grid {
    z-index: -8;

    background-image:
        linear-gradient(
            rgba(13,18,18,.038) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(13,18,18,.038) 1px,
            transparent 1px
        );

    background-size:
        90px
        90px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.4),
            black 40%,
            rgba(0,0,0,.2)
        );

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.4),
            black 40%,
            rgba(0,0,0,.2)
        );
}


.hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(1px);

    pointer-events: none;
}


.hero-orb-one {
    width: 620px;
    height: 620px;

    right: -180px;
    top: 100px;

    border:
        1px solid
        rgba(255,255,255,.55);

    z-index: -5;
}


.hero-orb-two {
    width: 400px;
    height: 400px;

    right: 10vw;
    top: 210px;

    border:
        1px solid
        rgba(13,18,18,.06);

    z-index: -5;
}


.hero-architecture {
    position: absolute;

    right: -6vw;
    bottom: 5vh;

    width: 57vw;
    height: 55vh;

    z-index: -4;

    opacity: .52;

    transform:
        perspective(1200px)
        rotateY(-7deg);
}


.architecture-line {
    position: absolute;

    right: 0;

    height: 1px;

    background:
        linear-gradient(
            to left,
            rgba(13,18,18,.1),
            transparent
        );

    transform-origin:
        right
        center;
}


.architecture-line-1 {
    width: 95%;

    bottom: 15%;

    transform:
        rotate(-14deg);
}


.architecture-line-2 {
    width: 75%;

    bottom: 39%;

    transform:
        rotate(-21deg);
}


.architecture-line-3 {
    width: 55%;

    bottom: 61%;

    transform:
        rotate(-30deg);
}


.hero-content {
    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1150px;
}


.hero-kicker,
.section-label,
.section-meta,
.mini-label {
    font-size: 9px;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.hero-kicker {
    opacity: .6;
}


.hero h1 {
    max-width: 1200px;

    margin:
        40px
        0;

    font-size:
        clamp(
            70px,
            10.5vw,
            172px
        );

    line-height: .82;

    letter-spacing:
        clamp(
            -7px,
            -.5vw,
            -4px
        );

    font-weight: 430;

    text-wrap: balance;
}


.hero h1 span {
    display: block;

    color:
        rgba(
            72,
            96,
            99,
            .52
        );
}


.hero-description {
    max-width: 680px;

    margin:
        0;

    font-size: 18px;

    line-height: 1.75;

    color: var(--text-muted);
}


.hero-buttons {
    margin-top: 45px;

    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


.button {
    min-height: 56px;

    padding:
        0
        29px;

    display: inline-flex;

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

    font-size: 11px;

    letter-spacing: 1.3px;

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


.button:hover {
    transform:
        translateY(-2px);
}


.button-primary {
    background: var(--dark);

    color: white;
}


.button-primary:hover {
    background: #202b2b;
}


.button-secondary {
    border:
        1px solid
        rgba(13,18,18,.22);
}


.button-secondary:hover {
    background:
        rgba(255,255,255,.35);
}


.hero-signature {
    position: absolute;

    right: 7vw;
    bottom: 45px;

    display: flex;

    gap: 25px;

    font-size: 8px;

    letter-spacing: 2.4px;

    opacity: .38;
}


.hero-signature span {
    display: flex;

    align-items: center;

    gap: 15px;
}


.hero-signature span:not(:last-child)::after {
    content: "";

    width: 22px;
    height: 1px;

    background:
        currentColor;
}


.hero-side-text {
    position: absolute;

    right: 26px;
    top: 48%;

    transform:
        rotate(90deg)
        translateX(50%);

    transform-origin:
        right
        center;

    font-size: 8px;

    letter-spacing: 3px;

    opacity: .35;
}


.scroll-indicator {
    position: absolute;

    left: 7vw;
    bottom: 42px;

    display: flex;

    align-items: center;

    gap: 16px;

    font-size: 8px;

    letter-spacing: 2.7px;

    text-transform: uppercase;

    opacity: .45;
}


.scroll-indicator > span {
    width: 55px;
    height: 1px;

    background: var(--dark);
}


/* =========================================================
   GENERAL SECTION
   ========================================================= */

.section {
    width: 100%;

    max-width: var(--container);

    margin: 0 auto;

    padding:
        145px
        var(--page-padding-desktop);
}


.section-topline {
    padding-bottom: 20px;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    border-bottom:
        1px solid
        var(--line);
}


.section-label,
.section-meta {
    opacity: .48;
}


.intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, .85fr);

    gap: 100px;

    padding-top: 65px;
}


.intro h2,
.section-heading h2,
.team-heading h2 {
    margin: 0;

    font-size:
        clamp(
            48px,
            6vw,
            98px
        );

    line-height: .95;

    letter-spacing: -4px;

    font-weight: 430;
}


.intro-copy p {
    margin-top: 25px;

    font-size: 15px;

    line-height: 1.85;

    color: var(--text-muted);
}


.intro-copy .large-text {
    margin-top: 0;

    font-size: 24px;

    line-height: 1.52;

    color: var(--dark);
}


/* =========================================================
   STATS
   ========================================================= */

.stats-wrapper {
    position: relative;

    overflow: hidden;

    background: var(--dark);

    color: white;
}


.stats-background-text {
    position: absolute;

    left: -1vw;
    bottom: -4vw;

    font-size: 19vw;

    font-weight: 500;

    letter-spacing: -1vw;

    line-height: .75;

    color:
        rgba(255,255,255,.015);

    pointer-events: none;
}


.stats-section {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );
}


.stat {
    position: relative;

    min-width: 0;

    min-height: 430px;

    padding:
        42px
        55px
        50px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-right:
        1px solid
        rgba(255,255,255,.09);
}


.stat:last-child {
    border-right: 0;
}


.stat::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--accent);

    transition:
        width
        1s
        cubic-bezier(.2,.7,.2,1);
}


.stat.counted::before {
    width: 100%;
}


.stat-top {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 8px;

    letter-spacing: 2.5px;

    color:
        rgba(255,255,255,.35);
}


.stat-value {
    margin-top: auto;

    margin-bottom: 18px;

    overflow: hidden;
}


.counter {
    display: block;

    max-width: 100%;

    font-size:
        clamp(
            62px,
            7.2vw,
            128px
        );

    line-height: .85;

    letter-spacing:
        clamp(
            -7px,
            -.45vw,
            -4px
        );

    font-weight: 350;

    font-variant-numeric:
        tabular-nums;

    white-space: nowrap;
}


.stat-label {
    font-size: 10px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.42);
}


/* =========================================================
   PHILOSOPHY
   ========================================================= */

.philosophy-grid {
    padding-top: 75px;

    display: grid;

    grid-template-columns:
        1.2fr
        .8fr;

    gap: 100px;
}


.philosophy-statement span {
    display: block;

    margin-bottom: 25px;

    font-size: 15px;

    color: var(--text-muted);
}


.philosophy-statement strong {
    display: block;

    max-width: 820px;

    font-size:
        clamp(
            52px,
            6.2vw,
            95px
        );

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 420;
}


.philosophy-note {
    align-self: end;

    max-width: 420px;

    padding-top: 25px;

    border-top:
        1px solid
        var(--line);
}


.philosophy-note .mini-label {
    opacity: .45;
}


.philosophy-note p {
    margin-top: 25px;

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-muted);
}


/* =========================================================
   BUSINESS
   ========================================================= */

.section-heading {
    position: relative;

    margin-top: 75px;
    margin-bottom: 100px;
}


.section-index {
    position: absolute;

    right: 0;
    top: 10px;

    font-size: 180px;

    line-height: .8;

    font-weight: 300;

    letter-spacing: -10px;

    color:
        rgba(13,18,18,.035);

    pointer-events: none;
}


.business-grid {
    border-top:
        1px solid
        var(--line);
}


.business-card {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        70px
        minmax(0,1fr)
        auto;

    align-items: center;

    gap: 30px;

    padding:
        50px
        0;

    border-bottom:
        1px solid
        var(--line);

    overflow: hidden;

    transition:
        padding .4s ease,
        background .4s ease;
}


.business-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(158,183,187,.15),
            rgba(158,183,187,.025)
        );

    transition:
        width
        .55s
        cubic-bezier(.2,.7,.2,1);
}


.business-card:hover::before {
    width: 100%;
}


.business-card:hover {
    padding-left: 25px;
    padding-right: 25px;
}


.business-number {
    font-size: 9px;

    letter-spacing: 2px;

    opacity: .38;
}


.business-small {
    display: block;

    margin-bottom: 13px;

    font-size: 8px;

    letter-spacing: 3px;

    opacity: .35;
}


.business-card h3 {
    margin:
        0
        0
        12px;

    font-size:
        clamp(
            34px,
            4.2vw,
            65px
        );

    line-height: 1;

    letter-spacing: -2.5px;

    font-weight: 420;
}


.business-card p {
    max-width: 750px;

    margin: 0;

    line-height: 1.65;

    color: var(--text-muted);
}


.business-card .arrow {
    font-size: 38px;

    font-weight: 200;

    transition:
        transform .3s ease;
}


.business-card:hover .arrow {
    transform:
        translate(
            6px,
            -6px
        );
}


/* =========================================================
   DARK MANIFESTO
   ========================================================= */

.dark-manifesto {
    position: relative;

    min-height: 770px;

    display: flex;

    align-items: center;

    padding:
        10vw
        var(--page-padding-desktop);

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(158,183,187,.13),
            transparent 30%
        ),
        var(--dark);

    color: white;

    overflow: hidden;
}


.manifesto-grid {
    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:
        110px
        110px;
}


.manifesto-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: var(--container);

    margin: auto;
}


.manifesto-kicker {
    display: block;

    margin-bottom: 55px;

    font-size: 9px;

    letter-spacing: 4px;

    color:
        rgba(255,255,255,.38);
}


.manifesto-inner h2 {
    max-width: 1250px;

    margin: 0;

    font-size:
        clamp(
            55px,
            7.2vw,
            112px
        );

    line-height: .93;

    letter-spacing: -5px;

    font-weight: 390;
}


.manifesto-bottom {
    margin-top: 80px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;
}


.manifesto-bottom p {
    max-width: 580px;

    margin: 0;

    font-size: 16px;

    line-height: 1.75;

    color:
        rgba(255,255,255,.52);
}


.manifesto-bottom span {
    font-size: 8px;

    letter-spacing: 3px;

    color:
        rgba(255,255,255,.3);

    white-space: nowrap;
}


/* =========================================================
   STRENGTHS
   ========================================================= */

.strengths-intro {
    margin-top: 70px;
    margin-bottom: 95px;

    display: grid;

    grid-template-columns:
        1.2fr
        .8fr;

    gap: 80px;
}


.strengths-intro h2 {
    margin: 0;

    font-size:
        clamp(
            45px,
            5.5vw,
            85px
        );

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 420;
}


.strengths-intro p {
    align-self: end;

    max-width: 520px;

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-muted);
}


.strength-list {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap: 1px;

    background: var(--line);
}


.strength-item {
    min-width: 0;

    min-height: 420px;

    padding: 40px;

    background: var(--light);

    transition:
        background .4s ease,
        transform .4s ease;
}


.strength-item:hover {
    background: var(--light-soft);

    transform:
        translateY(-5px);
}


.strength-number {
    font-size: 9px;

    letter-spacing: 2px;

    opacity: .38;
}


.strength-line {
    width: 100%;
    height: 1px;

    margin:
        30px
        0
        80px;

    background: var(--line);
}


.strength-item h3 {
    margin:
        0
        0
        25px;

    font-size: 29px;

    line-height: 1.15;

    font-weight: 430;
}


.strength-item p {
    margin: 0;

    line-height: 1.75;

    color: var(--text-muted);
}


/* =========================================================
   RENTAL
   ========================================================= */

.rental-section {
    position: relative;

    min-height: 760px;

    display: flex;

    align-items: center;

    padding:
        8vw;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(181,207,210,.18),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #172020,
            #405254
        );
}


.rental-grid {
    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:
        100px
        100px;
}


.rental-large-word {
    position: absolute;

    right: -4vw;
    bottom: -2vw;

    font-size: 20vw;

    line-height: .72;

    font-weight: 500;

    letter-spacing: -1.2vw;

    color:
        rgba(255,255,255,.025);

    pointer-events: none;
}


.rental-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 930px;
}


.section-label.light {
    color: white;

    opacity: .45;
}


.rental-content h2 {
    max-width: 1000px;

    margin:
        45px
        0;

    font-size:
        clamp(
            58px,
            8vw,
            120px
        );

    line-height: .89;

    letter-spacing: -6px;

    font-weight: 400;
}


.rental-content p {
    max-width: 570px;

    margin: 0;

    font-size: 17px;

    line-height: 1.75;

    color:
        rgba(255,255,255,.58);
}


.button-light {
    margin-top: 28px;

    background: white;

    color: var(--dark);
}


.button-light:hover {
    background:
        var(--accent-soft);
}


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

.team-heading {
    margin:
        65px
        0
        90px;
}


.team-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap: 24px;
}


.team-card {
    min-width: 0;

    border-top:
        1px solid
        var(--line);
}


.team-image-placeholder {
    position: relative;

    aspect-ratio:
        4 / 4.8;

    overflow: hidden;

    display: flex;

    justify-content: flex-end;
    align-items: flex-end;

    padding: 28px;

    background:
        linear-gradient(
            150deg,
            #dfe7e5,
            #94aaad
        );
}


.team-image-placeholder::before {
    content: "";

    position: absolute;

    width: 120%;
    height: 1px;

    left: -10%;
    top: 50%;

    background:
        rgba(255,255,255,.35);

    transform:
        rotate(-25deg);

    z-index: 1;

    pointer-events: none;

    transition:
        opacity .3s ease;
}


.team-image-placeholder span {
    position: relative;

    z-index: 2;

    font-size: 76px;

    line-height: 1;

    letter-spacing: -6px;

    font-weight: 250;

    color:
        rgba(255,255,255,.5);
}


.team-photo {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position:
        center
        center;

    z-index: 5;

    transition:
        transform
        .7s
        cubic-bezier(.2,.7,.2,1),
        filter
        .5s ease;
}


.team-image-placeholder:has(.team-photo)::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 6;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(13,18,18,.16),
            transparent 35%
        );
}


.team-image-placeholder:has(.team-photo)::before {
    opacity: 0;
}


.team-card:hover .team-photo {
    transform:
        scale(1.025);
}


.team-photo + span {
    display: none;
}


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


.team-index {
    display: block;

    margin-bottom: 22px;

    font-size: 8px;

    letter-spacing: 2px;

    opacity: .35;
}


.team-card h3 {
    margin:
        0
        0
        8px;

    font-size: 25px;

    font-weight: 470;
}


.team-role {
    display: block;

    max-width: 360px;

    font-size: 11px;

    line-height: 1.5;

    opacity: .57;
}


.team-card p {
    margin-top: 15px;

    font-size: 11px;

    line-height: 1.6;

    opacity: .38;
}


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

.contact-cta {
    min-height: 520px;

    padding:
        90px
        var(--page-padding-desktop);

    display: flex;

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

    gap: 70px;

    color: white;

    background:
        linear-gradient(
            120deg,
            #0d1212,
            #151e1e
        );
}


.cta-label {
    display: block;

    margin-bottom: 35px;

    font-size: 8px;

    letter-spacing: 3px;

    color:
        rgba(255,255,255,.35);
}


.contact-cta h2 {
    margin: 0;

    font-size:
        clamp(
            48px,
            6.5vw,
            105px
        );

    line-height: .92;

    letter-spacing: -5px;

    font-weight: 390;
}


.contact-cta > a {
    min-width: 320px;

    padding:
        25px
        0;

    display: flex;

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

    gap: 30px;

    border-top:
        1px solid
        rgba(255,255,255,.22);

    border-bottom:
        1px solid
        rgba(255,255,255,.22);

    font-size: 13px;

    transition:
        padding .3s ease,
        border-color .3s ease;
}


.contact-cta > a:hover {
    padding-left: 15px;
    padding-right: 15px;

    border-color:
        rgba(255,255,255,.5);
}


.contact-cta > a strong {
    font-size: 31px;

    font-weight: 200;
}


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

.site-footer {
    padding:
        90px
        var(--page-padding-desktop)
        30px;

    background: #080d0d;

    color: white;
}


.footer-top {
    width: 100%;
    max-width: var(--container);

    margin: auto;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1.2fr;

    gap: 60px;
}


.footer-title {
    font-size: 35px;

    letter-spacing: 8px;
}


.footer-claim {
    margin-top: 10px;

    font-size: 9px;

    letter-spacing: 4px;

    opacity: .35;
}


.footer-column {
    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}


.footer-column a,
.footer-column p {
    margin: 0;

    font-size: 12px;

    line-height: 1.7;

    color:
        rgba(255,255,255,.58);
}


.footer-column a {
    transition:
        color .2s ease;
}


.footer-column a:hover {
    color: white;
}


.footer-label {
    margin-bottom: 15px;

    font-size: 9px;

    letter-spacing: 3px;

    opacity: .35;
}


.footer-bottom {
    width: 100%;
    max-width: var(--container);

    margin:
        90px
        auto
        0;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    font-size: 10px;

    color:
        rgba(255,255,255,.3);
}


.footer-bottom div {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;
}


/* =========================================================
   REVEAL EFFECT
   ========================================================= */

.reveal-ready {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity
        .85s
        cubic-bezier(.2,.7,.2,1),
        transform
        .85s
        cubic-bezier(.2,.7,.2,1);
}


.reveal-ready.revealed {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   LAPTOP / SMALL DESKTOP
   1001px - 1250px
   ========================================================= */

@media (max-width: 1250px) {

    .header-inner {
        padding:
            0
            32px;
    }


    .main-nav {
        gap: 20px;

        font-size: 11px;
    }


    .header-actions {
        gap: 16px;
    }


    .hero {
        padding-left: 6vw;
        padding-right: 6vw;
    }


    .section {
        padding-left: 6vw;
        padding-right: 6vw;
    }


    .stat {
        padding:
            38px
            35px
            42px;
    }


    .counter {
        font-size:
            clamp(
                60px,
                7vw,
                100px
            );
    }


    .strength-item {
        padding: 32px;
    }


    .footer-top {
        gap: 40px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .main-nav,
    .language-switcher {
        display: none;
    }


    .menu-button {
        display: block;
    }


    .site-header.scrolled {
        background:
            rgba(243,244,241,.95);
    }


    .header-inner {
        height: 88px;

        padding:
            0
            var(--page-padding-tablet);
    }


    /*
    |--------------------------------------------------------------------------
    | MOBILE NAVIGATION
    |--------------------------------------------------------------------------
    */

    .mobile-menu {
        position: fixed;

        inset: 0;

        z-index: 950;

        display: flex;

        flex-direction: column;

        justify-content: center;

        gap: 0;

        padding:
            125px
            var(--page-padding-tablet)
            50px;

        background:
            radial-gradient(
                circle at 90% 15%,
                rgba(158,183,187,.28),
                transparent 35%
            ),
            var(--light);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-10px);

        transition:
            opacity .35s ease,
            visibility .35s ease,
            transform .35s ease;
    }


    .mobile-menu.open {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0);
    }


    .mobile-menu a {
        position: relative;

        padding:
            18px
            0;

        border-bottom:
            1px solid
            rgba(13,18,18,.10);

        font-size:
            clamp(
                32px,
                7vw,
                58px
            );

        line-height: 1;

        letter-spacing: -2px;

        font-weight: 420;
    }


    .mobile-menu a:first-child {
        border-top:
            1px solid
            rgba(13,18,18,.10);
    }


    /*
    |--------------------------------------------------------------------------
    | HERO TABLET
    |--------------------------------------------------------------------------
    */

    .hero {
        min-height: 900px;

        padding:
            145px
            var(--page-padding-tablet)
            100px;

        align-items: center;
    }


    .hero h1 {
        max-width: 850px;

        margin:
            32px
            0;

        font-size:
            clamp(
                70px,
                12vw,
                120px
            );

        letter-spacing:
            -5px;
    }


    .hero-description {
        max-width: 620px;

        font-size: 17px;
    }


    .hero-orb-one {
        width: 500px;
        height: 500px;

        right: -220px;
    }


    .hero-orb-two {
        width: 320px;
        height: 320px;

        right: -30px;
    }


    .hero-architecture {
        width: 75vw;

        opacity: .35;
    }


    .hero-side-text {
        display: none;
    }


    .hero-signature {
        right: var(--page-padding-tablet);

        gap: 15px;
    }


    .scroll-indicator {
        left: var(--page-padding-tablet);
    }


    /*
    |--------------------------------------------------------------------------
    | GENERAL TABLET
    |--------------------------------------------------------------------------
    */

    .section {
        padding:
            115px
            var(--page-padding-tablet);
    }


    .intro-grid,
    .philosophy-grid,
    .strengths-intro {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .intro-grid {
        padding-top: 55px;
    }


    .intro-copy {
        max-width: 700px;
    }


    .intro-copy .large-text {
        font-size: 22px;
    }


    /*
    |--------------------------------------------------------------------------
    | STATS TABLET
    |--------------------------------------------------------------------------
    */

    .stats-section {
        grid-template-columns: 1fr;
    }


    .stat {
        min-height: 285px;

        padding:
            35px
            var(--page-padding-tablet)
            40px;

        border-right: 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.08);
    }


    .stat:last-child {
        border-bottom: 0;
    }


    .counter {
        font-size:
            clamp(
                75px,
                13vw,
                120px
            );
    }


    /*
    |--------------------------------------------------------------------------
    | BUSINESS TABLET
    |--------------------------------------------------------------------------
    */

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


    .section-index {
        font-size: 120px;
    }


    .business-card {
        padding:
            42px
            0;
    }


    /*
    |--------------------------------------------------------------------------
    | MANIFESTO TABLET
    |--------------------------------------------------------------------------
    */

    .dark-manifesto {
        min-height: 700px;

        padding:
            120px
            var(--page-padding-tablet);
    }


    .manifesto-inner h2 {
        font-size:
            clamp(
                55px,
                9vw,
                88px
            );
    }


    /*
    |--------------------------------------------------------------------------
    | STRENGTHS TABLET
    |--------------------------------------------------------------------------
    */

    .strength-list {
        grid-template-columns: 1fr;
    }


    .strength-item {
        min-height: auto;

        padding:
            45px
            35px;
    }


    .strength-line {
        margin:
            28px
            0
            55px;
    }


    /*
    |--------------------------------------------------------------------------
    | RENTAL TABLET
    |--------------------------------------------------------------------------
    */

    .rental-section {
        min-height: 700px;

        padding:
            110px
            var(--page-padding-tablet);
    }


    .rental-content h2 {
        font-size:
            clamp(
                60px,
                11vw,
                100px
            );
    }


    /*
    |--------------------------------------------------------------------------
    | TEAM TABLET
    |--------------------------------------------------------------------------
    */

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

        gap:
            55px
            24px;
    }


    .team-image-placeholder {
        aspect-ratio:
            4 / 4.7;
    }


    /*
    |--------------------------------------------------------------------------
    | CTA TABLET
    |--------------------------------------------------------------------------
    */

    .contact-cta {
        min-height: 600px;

        padding:
            100px
            var(--page-padding-tablet);

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;
    }


    .contact-cta > a {
        width: 100%;
        min-width: 0;

        max-width: 650px;
    }


    /*
    |--------------------------------------------------------------------------
    | FOOTER TABLET
    |--------------------------------------------------------------------------
    */

    .site-footer {
        padding:
            80px
            var(--page-padding-tablet)
            30px;
    }


    .footer-top {
        grid-template-columns:
            1.4fr
            1fr;

        gap:
            60px
            45px;
    }

}


/* =========================================================
   LARGE MOBILE / SMALL TABLET
   ========================================================= */

@media (max-width: 768px) {

    .header-inner {
        padding:
            0
            28px;
    }


    .hero {
        min-height: 820px;

        padding:
            135px
            28px
            90px;
    }


    .hero h1 {
        font-size:
            clamp(
                62px,
                14vw,
                100px
            );

        line-height: .84;
    }


    .hero-signature {
        display: none;
    }


    .section {
        padding:
            100px
            28px;
    }


    .section-topline {
        gap: 15px;
    }


    .section-meta {
        font-size: 8px;

        letter-spacing: 2px;
    }


    .team-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }


    .team-card {
        max-width: 620px;
    }


    .team-image-placeholder {
        aspect-ratio:
            4 / 4.4;
    }


    .footer-top {
        grid-template-columns:
            1fr
            1fr;
    }

}


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

@media (max-width: 650px) {

    /*
    |--------------------------------------------------------------------------
    | HEADER MOBILE
    |--------------------------------------------------------------------------
    */

    .header-inner {
        height: 78px;

        padding:
            0
            var(--page-padding-mobile);
    }


    .brand {
        gap: 10px;
    }


    .brand-mark {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 13px;
    }


    .brand-name {
        font-size: 14px;

        letter-spacing: 4px;
    }


    .brand-claim {
        font-size: 6px;

        letter-spacing: 2px;
    }


    .menu-button {
        width: 42px;
        height: 42px;
    }


    .menu-button span {
        left: 9px;
    }


    .mobile-menu {
        padding:
            108px
            var(--page-padding-mobile)
            35px;
    }


    .mobile-menu a {
        padding:
            16px
            0;

        font-size:
            clamp(
                31px,
                10vw,
                44px
            );
    }


    /*
    |--------------------------------------------------------------------------
    | HERO MOBILE
    |--------------------------------------------------------------------------
    */

    .hero {
        min-height:
            100svh;

        padding:
            118px
            var(--page-padding-mobile)
            75px;

        align-items: center;
    }


    .hero-background {
        background:
            radial-gradient(
                circle at 90% 20%,
                rgba(158,183,187,.50),
                transparent 35%
            ),
            radial-gradient(
                circle at 45% 78%,
                rgba(255,255,255,.75),
                transparent 42%
            ),
            linear-gradient(
                145deg,
                #f3f4f1 0%,
                #e6ebe8 53%,
                #cbd8d8 100%
            );
    }


    .hero-grid {
        background-size:
            58px
            58px;
    }


    .hero-kicker {
        max-width: 260px;

        font-size: 7px;

        line-height: 1.7;

        letter-spacing: 3px;
    }


    .hero h1 {
        margin:
            29px
            0
            28px;

        max-width: 100%;

        font-size:
            clamp(
                54px,
                16.8vw,
                82px
            );

        line-height: .84;

        letter-spacing:
            -3.5px;
    }


    .hero-description {
        max-width: 440px;

        font-size: 15px;

        line-height: 1.65;
    }


    .hero-buttons {
        width: 100%;

        margin-top: 34px;

        flex-direction: column;

        align-items: stretch;

        gap: 10px;
    }


    .button {
        width: 100%;

        min-height: 54px;

        padding:
            0
            20px;
    }


    .hero-orb-one {
        width: 350px;
        height: 350px;

        right: -210px;
        top: 100px;

        opacity: .8;
    }


    .hero-orb-two {
        width: 220px;
        height: 220px;

        right: -90px;
        top: 220px;
    }


    .hero-architecture {
        width: 115vw;
        height: 45vh;

        right: -50vw;
        bottom: 10vh;

        opacity: .25;
    }


    .hero-side-text,
    .hero-signature {
        display: none;
    }


    .scroll-indicator {
        left:
            var(--page-padding-mobile);

        bottom: 25px;

        gap: 11px;

        font-size: 6px;

        letter-spacing: 2px;
    }


    .scroll-indicator > span {
        width: 35px;
    }


    /*
    |--------------------------------------------------------------------------
    | GENERAL MOBILE
    |--------------------------------------------------------------------------
    */

    .section {
        padding:
            92px
            var(--page-padding-mobile);
    }


    .section-topline {
        padding-bottom: 15px;
    }


    .section-label {
        font-size: 7px;

        letter-spacing: 3px;
    }


    .section-meta {
        display: none;
    }


    .intro-grid {
        gap: 40px;

        padding-top: 45px;
    }


    .intro h2,
    .section-heading h2,
    .team-heading h2 {
        font-size:
            clamp(
                43px,
                13vw,
                62px
            );

        line-height: .96;

        letter-spacing: -2.5px;
    }


    .intro-copy .large-text {
        font-size: 20px;

        line-height: 1.5;
    }


    .intro-copy p {
        font-size: 14px;

        line-height: 1.75;
    }


    /*
    |--------------------------------------------------------------------------
    | STATS MOBILE
    |--------------------------------------------------------------------------
    */

    .stat {
        min-height: 250px;

        padding:
            30px
            var(--page-padding-mobile)
            34px;
    }


    .counter {
        font-size:
            clamp(
                64px,
                21vw,
                90px
            );

        letter-spacing:
            -4px;
    }


    .stat-top {
        font-size: 7px;

        letter-spacing: 2px;
    }


    .stat-label {
        font-size: 8px;

        letter-spacing: 2px;
    }


    /*
    |--------------------------------------------------------------------------
    | PHILOSOPHY MOBILE
    |--------------------------------------------------------------------------
    */

    .philosophy-grid {
        padding-top: 50px;

        gap: 50px;
    }


    .philosophy-statement span {
        font-size: 14px;
    }


    .philosophy-statement strong {
        font-size:
            clamp(
                42px,
                12vw,
                58px
            );

        letter-spacing: -2.5px;
    }


    .philosophy-note p {
        font-size: 14px;

        line-height: 1.7;
    }


    /*
    |--------------------------------------------------------------------------
    | BUSINESS MOBILE
    |--------------------------------------------------------------------------
    */

    .section-heading {
        margin-top: 50px;
        margin-bottom: 55px;
    }


    .section-index {
        display: none;
    }


    .business-card {
        grid-template-columns:
            34px
            minmax(0,1fr);

        gap: 12px;

        padding:
            30px
            0;
    }


    .business-card:hover {
        padding-left: 0;
        padding-right: 0;
    }


    .business-card .arrow {
        display: none;
    }


    .business-card h3 {
        font-size:
            clamp(
                33px,
                10vw,
                48px
            );

        letter-spacing: -2px;
    }


    .business-small {
        font-size: 7px;

        letter-spacing: 2px;
    }


    .business-card p {
        font-size: 13px;

        line-height: 1.6;
    }


    /*
    |--------------------------------------------------------------------------
    | MANIFESTO MOBILE
    |--------------------------------------------------------------------------
    */

    .dark-manifesto {
        min-height: 650px;

        padding:
            95px
            var(--page-padding-mobile);
    }


    .manifesto-grid {
        background-size:
            70px
            70px;
    }


    .manifesto-kicker {
        margin-bottom: 38px;

        font-size: 7px;

        line-height: 1.6;

        letter-spacing: 3px;
    }


    .manifesto-inner h2 {
        font-size:
            clamp(
                45px,
                13vw,
                62px
            );

        line-height: .96;

        letter-spacing: -2.8px;
    }


    .manifesto-bottom {
        margin-top: 55px;

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }


    .manifesto-bottom p {
        font-size: 14px;

        line-height: 1.7;
    }


    /*
    |--------------------------------------------------------------------------
    | STRENGTHS MOBILE
    |--------------------------------------------------------------------------
    */

    .strengths-intro {
        margin-top: 50px;
        margin-bottom: 60px;

        gap: 35px;
    }


    .strengths-intro h2 {
        font-size:
            clamp(
                42px,
                12vw,
                59px
            );

        letter-spacing: -2.6px;
    }


    .strengths-intro p {
        font-size: 14px;

        line-height: 1.7;
    }


    .strength-item {
        padding:
            32px
            24px;
    }


    .strength-line {
        margin:
            25px
            0
            45px;
    }


    .strength-item h3 {
        font-size: 25px;
    }


    .strength-item p {
        font-size: 14px;
    }


    /*
    |--------------------------------------------------------------------------
    | RENTAL MOBILE
    |--------------------------------------------------------------------------
    */

    .rental-section {
        min-height: 680px;

        padding:
            95px
            var(--page-padding-mobile);
    }


    .rental-grid {
        background-size:
            65px
            65px;
    }


    .rental-content h2 {
        margin:
            35px
            0;

        font-size:
            clamp(
                48px,
                14vw,
                68px
            );

        line-height: .93;

        letter-spacing: -3px;
    }


    .rental-content p {
        font-size: 15px;

        line-height: 1.7;
    }


    .rental-large-word {
        right: -8vw;

        font-size: 28vw;

        opacity: .8;
    }


    /*
    |--------------------------------------------------------------------------
    | TEAM MOBILE
    |--------------------------------------------------------------------------
    */

    .team-heading {
        margin:
            50px
            0
            58px;
    }


    .team-grid {
        gap: 65px;
    }


    .team-card {
        width: 100%;
    }


    .team-image-placeholder {
        width: 100%;

        aspect-ratio:
            4 / 4.6;

        padding: 22px;
    }


    .team-image-placeholder span {
        font-size: 60px;

        letter-spacing: -4px;
    }


    .team-info {
        padding-top: 19px;
    }


    .team-index {
        margin-bottom: 17px;
    }


    .team-card h3 {
        font-size: 23px;
    }


    .team-role {
        font-size: 11px;
    }


    /*
    |--------------------------------------------------------------------------
    | CTA MOBILE
    |--------------------------------------------------------------------------
    */

    .contact-cta {
        min-height: auto;

        padding:
            90px
            var(--page-padding-mobile);

        gap: 55px;
    }


    .cta-label {
        margin-bottom: 28px;

        font-size: 7px;

        line-height: 1.6;

        letter-spacing: 2.3px;
    }


    .contact-cta h2 {
        font-size:
            clamp(
                45px,
                13vw,
                62px
            );

        line-height: .94;

        letter-spacing: -2.8px;
    }


    .contact-cta > a {
        min-width: 0;

        padding:
            22px
            0;

        font-size: 12px;
    }


    /*
    |--------------------------------------------------------------------------
    | FOOTER MOBILE
    |--------------------------------------------------------------------------
    */

    .site-footer {
        padding:
            75px
            var(--page-padding-mobile)
            25px;
    }


    .footer-top {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .footer-title {
        font-size: 29px;

        letter-spacing: 7px;
    }


    .footer-bottom {
        margin-top: 65px;

        flex-direction: column;

        gap: 18px;
    }

}


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

@media (max-width: 420px) {

    .brand-claim {
        display: none;
    }


    .hero h1 {
        font-size:
            clamp(
                50px,
                17vw,
                70px
            );

        letter-spacing: -3px;
    }


    .hero-kicker {
        max-width: 220px;
    }


    .counter {
        font-size:
            clamp(
                58px,
                20vw,
                78px
            );
    }


    .intro h2,
    .section-heading h2,
    .team-heading h2,
    .philosophy-statement strong,
    .strengths-intro h2,
    .manifesto-inner h2,
    .contact-cta h2 {
        overflow-wrap: normal;

        word-break: normal;
    }


    .team-image-placeholder {
        aspect-ratio:
            4 / 4.8;
    }

}


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

@media (hover: none) {

    .button:hover,
    .business-card:hover,
    .strength-item:hover,
    .team-card:hover .team-photo {
        transform: none;
    }


    .business-card:hover {
        padding-left: 0;
        padding-right: 0;
    }

}


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

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }


    .reveal-ready {
        opacity: 1;

        transform: none;
    }

}