/* =========================
   DESIGN SYSTEM
========================= */

:root {
    --background: #f3efe7;
    --surface: #faf8f3;
    --surface-deep: #e9e1d4;

    --text-primary: #17191d;
    --text-secondary: #626268;

    --accent: #94663f;
    --accent-dark: #694326;
    --accent-soft: #ded0be;

    --dark: #17191d;
    --dark-soft: #22252a;

    --contact-accent: #d7b894;
    --contact-accent-light: #e5cbae;

    --border: rgba(23, 25, 29, 0.14);

    --content-width: 1240px;

    --radius-small: 10px;
    --radius-medium: 20px;
    --radius-large: 32px;

    --shadow:
        0 25px 65px
        rgba(35, 27, 18, 0.08);
}


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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;

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

    background: var(--background);
    color: var(--text-primary);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

p {
    margin-top: 0;
}

section {
    scroll-margin-top: 90px;
}


/* =========================
   ACCESSIBILITY
========================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}


/* =========================
   SKIP LINK
========================= */

.skip-link {
    position: fixed;

    top: -100px;
    left: 20px;

    z-index: 9999;

    padding: 12px 18px;

    border-radius: 8px;

    background: var(--dark);
    color: #ffffff;
}

.skip-link:focus {
    top: 20px;
}


/* =========================
   NAVIGATION
========================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    border-bottom:
        1px solid
        rgba(23, 25, 29, 0.08);

    background:
        rgba(243, 239, 231, 0.91);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-container {
    width: min(92%, var(--content-width));
    height: 78px;

    margin: 0 auto;

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

    gap: 35px;
}

.brand {
    width: 50px;
    height: 50px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--dark);
    color: #ffffff;

    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;

    transition:
        background 180ms ease,
        transform 180ms ease;
}

.brand:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.site-nav {
    display: flex;
    align-items: center;

    gap:
        clamp(22px, 3vw, 42px);

    color: var(--text-secondary);

    font-size: 0.82rem;
    font-weight: 600;
}

.site-nav a {
    position: relative;

    white-space: nowrap;

    transition: color 180ms ease;
}

.site-nav a:hover {
    color: var(--text-primary);
}

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

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 100%;
    height: 1px;

    background: var(--accent);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform 180ms ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 22px;
    height: 1.5px;

    margin: 6px auto;

    background: var(--text-primary);

    transition: transform 180ms ease;
}


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

.hero {
    width: min(92%, var(--content-width));

    min-height:
        calc(100svh - 78px);

    margin: 0 auto;

    padding:
        clamp(80px, 8vw, 115px)
        0
        clamp(85px, 8vw, 110px);

    display: flex;
    align-items: center;
}

.hero-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.28fr)
        minmax(300px, 0.72fr);

    align-items: center;

    gap:
        clamp(35px, 5vw, 70px);
}

.hero-content {
    min-width: 0;

    position: relative;

    z-index: 2;
}

.eyebrow {
    margin-bottom: 28px;

    color: var(--accent);

    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.17em;

    text-transform: uppercase;
}


/* Larger company identity in hero */

.hero .eyebrow {
    margin-bottom: 27px;

    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.hero h1 {
    max-width: 760px;

    margin:
        0
        0
        36px;

    font-size:
        clamp(3.8rem, 5.7vw, 6.6rem);

    font-weight: 560;
    letter-spacing: -0.062em;
    line-height: 0.92;
}

.hero h1 span {
    color: var(--accent);
}

.hero-statement {
    max-width: 650px;

    margin-bottom: 38px;

    color: var(--text-secondary);

    font-size:
        clamp(1.18rem, 1.8vw, 1.55rem);

    line-height: 1.5;
    letter-spacing: -0.02em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


/* =========================
   BUTTONS
========================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding:
        0
        23px;

    border-radius: 50px;

    font-size: 0.86rem;
    font-weight: 700;

    transition:
        transform 180ms ease,
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

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

.button-primary {
    background: var(--dark);
    color: #ffffff;
}

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

.button-secondary {
    border:
        1px solid
        var(--border);

    background:
        rgba(255, 255, 255, 0.35);

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

.button-secondary:hover {
    border-color: var(--accent);

    background:
        rgba(255, 255, 255, 0.65);
}


/* =========================
   HERO INDIA ↔ EUROPE ARTWORK
========================= */

.hero-visual {
    width: 100%;
    min-width: 0;

    margin: 0;

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

    justify-self: end;
}

.hero-network-image {
    display: block;

    width: 100%;
    max-width: 430px;

    height: auto;

    margin: 0;

    object-fit: contain;

    opacity: 0.90;

    border-radius: 18px;

    box-shadow: none;

    filter:
        saturate(0.88)
        contrast(0.97);
}

.hero-line {
    grid-column: 1 / -1;

    width: 100%;
    height: 1px;

    margin-top: 25px;

    background:
        linear-gradient(
            to right,
            var(--accent),
            rgba(148, 102, 63, 0.15),
            transparent
        );
}


/* =========================
   SHARED SECTIONS
========================= */

.section {
    width: min(92%, var(--content-width));

    margin: 0 auto;

    padding:
        135px
        0;
}

.section-grid {
    display: grid;

    grid-template-columns:
        minmax(250px, 0.65fr)
        minmax(0, 1.35fr);

    gap:
        clamp(55px, 10vw, 150px);
}

.section-heading h2,
.section-header h2 {
    margin: 0;

    font-size:
        clamp(2.8rem, 5vw, 5.5rem);

    font-weight: 560;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.section-content {
    max-width: 760px;
}

.section-content > p {
    color: var(--text-secondary);

    font-size: 1.02rem;
    line-height: 1.85;
}

.large-copy {
    margin-bottom:
        38px !important;

    color:
        var(--text-primary) !important;

    font-size:
        clamp(
            1.75rem,
            3vw,
            2.7rem
        ) !important;

    line-height:
        1.35 !important;

    letter-spacing: -0.035em;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 75px;
}

.section-header > p {
    max-width: 430px;

    margin: 0;

    color: var(--text-secondary);

    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================
   DARK FOCUS SECTION
========================= */

.section-dark {
    width: 100%;
    max-width: none;

    padding:
        135px
        max(
            4%,
            calc(
                (100vw - var(--content-width))
                / 2
            )
        );

    background: var(--dark);

    color: #ffffff;
}

.section-dark .section-header > p {
    color:
        rgba(
            255,
            255,
            255,
            0.54
        );
}

.focus-grid {
    display: grid;

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

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.16
        );
}

.focus-card {
    min-height: 300px;

    padding: 42px;

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

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

.focus-card:nth-child(2n) {
    border-right: 0;
}

.focus-card h3 {
    max-width: 430px;

    margin:
        35px
        0
        22px;

    font-size:
        clamp(
            1.7rem,
            3vw,
            2.8rem
        );

    font-weight: 540;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.focus-card p {
    max-width: 490px;

    margin-bottom: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.58
        );

    font-size: 0.92rem;
    line-height: 1.75;
}


/* =========================
   VENTURES
========================= */

.ventures-section {
    padding-bottom: 150px;
}

.venture-feature {
    overflow: hidden;

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

    border-radius:
        var(--radius-medium);

    background: var(--surface);

    box-shadow: var(--shadow);
}

.venture-status {
    display: flex;
    align-items: center;

    gap: 9px;

    padding:
        16px
        24px;

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

    color: var(--accent-dark);

    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--accent);
}

.venture-main {
    padding:
        clamp(
            40px,
            7vw,
            85px
        );
}

.venture-category {
    margin-bottom: 18px;

    color: var(--accent);

    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.venture-main h3 {
    max-width: 850px;

    margin:
        0
        0
        28px;

    font-size:
        clamp(
            2.7rem,
            6vw,
            6.3rem
        );

    font-weight: 550;
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.venture-main > p:last-child {
    max-width: 650px;

    margin: 0;

    color: var(--text-secondary);

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================
   APPROACH
========================= */

.approach-section {
    width: 100%;

    padding:
        150px
        max(
            4%,
            calc(
                (100vw - var(--content-width))
                / 2
            )
        );

    background: var(--accent-soft);
}

.approach-inner {
    max-width: 980px;
}

.approach-inner h2 {
    margin:
        0
        0
        45px;

    font-size:
        clamp(
            3.2rem,
            7vw,
            7.2rem
        );

    font-weight: 540;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.approach-inner > p:last-child {
    max-width: 650px;

    margin-bottom: 0;

    color: var(--text-secondary);

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================
   FOUNDER
========================= */

.founder-grid {
    align-items: start;
}

.founder-content {
    max-width: 760px;
}

.founder-name {
    margin-bottom: 24px;

    color: var(--accent);

    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.075em;

    text-transform: uppercase;
}

.founder-content > p:not(
    .large-copy
):not(
    .founder-name
) {
    color: var(--text-secondary);

    font-size: 1.02rem;
    line-height: 1.85;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 18px;

    color: var(--accent-dark);

    font-size: 0.88rem;
    font-weight: 750;

    transition:
        gap 180ms ease,
        color 180ms ease;
}

.text-link:hover {
    gap: 13px;

    color: var(--accent);
}


/* =========================
   CONTACT
========================= */

.contact-section {
    width: 100%;

    padding:
        145px
        max(
            4%,
            calc(
                (100vw - var(--content-width))
                / 2
            )
        );

    background: var(--dark);

    color: #ffffff;
}

.contact-inner {
    width: min(
        100%,
        var(--content-width)
    );

    margin: 0 auto;
}

.contact-header {
    max-width: 1080px;

    margin-bottom: 70px;
}

.contact-section .eyebrow {
    color: var(--contact-accent);
}

.contact-header h2,
.contact-section h2 {
    max-width: 1050px;

    margin:
        0
        0
        34px;

    font-size:
        clamp(
            3.4rem,
            7vw,
            7.3rem
        );

    font-weight: 540;
    letter-spacing: -0.06em;
    line-height: 0.94;
}

.contact-intro {
    max-width: 680px;

    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.60
        );

    font-size: 1rem;
    line-height: 1.8;
}

.contact-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(250px, 0.55fr);

    gap:
        clamp(
            60px,
            8vw,
            120px
        );

    align-items: start;
}


/* =========================
   CONTACT FORM
========================= */

.contact-form {
    width: 100%;

    max-width: 820px;
}

.form-row {
    display: grid;

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

    gap: 18px;
}

.form-field {
    width: 100%;

    margin-bottom: 24px;
}

.form-field label {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 9px;

    color:
        rgba(
            255,
            255,
            255,
            0.80
        );

    font-size: 0.77rem;
    font-weight: 650;
    letter-spacing: 0.03em;
}

.form-field label span {
    color:
        rgba(
            255,
            255,
            255,
            0.38
        );

    font-size: 0.68rem;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    display: block;

    width: 100%;

    margin: 0;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.18
        );

    border-radius: 14px;

    outline: none;

    appearance: none;
    -webkit-appearance: none;

    background:
        rgba(
            255,
            255,
            255,
            0.055
        );

    color: #ffffff;

    font-size: 0.95rem;

    box-shadow: none;

    transition:
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.form-field input {
    height: 56px;

    padding:
        0
        16px;
}

.form-field textarea {
    min-height: 190px;

    padding:
        15px
        16px;

    line-height: 1.6;

    resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
    border-color:
        rgba(
            255,
            255,
            255,
            0.32
        );
}

.form-field input:focus,
.form-field textarea:focus {
    border-color:
        var(--contact-accent);

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );

    box-shadow:
        0
        0
        0
        3px
        rgba(
            215,
            184,
            148,
            0.10
        );
}


/* Honeypot */

.form-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    margin: -1px !important;
    padding: 0 !important;

    overflow: hidden !important;

    clip:
        rect(
            0,
            0,
            0,
            0
        ) !important;

    clip-path:
        inset(50%) !important;

    border: 0 !important;

    white-space:
        nowrap !important;
}


/* Submit button */

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding:
        0
        21px;

    border:
        1px solid
        var(--contact-accent);

    border-radius: 50px;

    appearance: none;
    -webkit-appearance: none;

    background: var(--contact-accent);
    color: var(--dark);

    cursor: pointer;

    font-size: 0.84rem;
    font-weight: 750;

    box-shadow:
        0
        8px
        24px
        rgba(
            0,
            0,
            0,
            0.14
        );

    transition:
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.form-submit:hover {
    background:
        var(--contact-accent-light);

    border-color:
        var(--contact-accent-light);

    transform:
        translateY(-2px);

    box-shadow:
        0
        11px
        28px
        rgba(
            0,
            0,
            0,
            0.20
        );
}

.form-submit:disabled {
    cursor: wait;

    opacity: 0.72;

    transform: none;

    box-shadow: none;
}


/* Form result */

.form-status {
    min-height: 24px;

    margin-top: 18px;

    font-size: 0.8rem;
    line-height: 1.6;
}

.form-status.success {
    color: var(--contact-accent-light);
}

.form-status.error {
    color: #f0b6b6;
}


/* =========================
   CONTACT SIDE
========================= */

.contact-side {
    width: 100%;

    padding-top: 2px;
}

.contact-side-label {
    margin:
        0
        0
        22px;

    color:
        var(--contact-accent);

    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.contact-side > p:not(
    .contact-side-label
):not(
    .contact-side-note
) {
    max-width: 340px;

    margin-bottom: 22px;

    color:
        rgba(
            255,
            255,
            255,
            0.58
        );

    font-size: 0.9rem;
    line-height: 1.75;
}

.contact-side-note {
    max-width: 320px;

    margin:
        34px
        0
        0;

    padding-top: 22px;

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

    color:
        rgba(
            255,
            255,
            255,
            0.38
        );

    font-size: 0.72rem;
    line-height: 1.7;
}


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

.site-footer {
    min-height: 110px;

    padding:
        0
        max(
            4%,
            calc(
                (100vw - var(--content-width))
                / 2
            )
        );

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 30px;

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

    background: var(--dark-soft);

    color:
        rgba(
            255,
            255,
            255,
            0.52
        );

    font-size: 0.76rem;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 13px;
}

.footer-brand strong {
    display: grid;
    place-items: center;

    width: 36px;
    height: 36px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.22
        );

    border-radius: 50%;

    color: #ffffff;

    font-size: 0.62rem;
    letter-spacing: 0.07em;
}

.site-footer p {
    margin: 0;

    text-align: center;
}

.site-footer > a {
    justify-self: end;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.18
        );

    border-radius: 50%;

    color: #ffffff;

    transition:
        border-color 180ms ease,
        background 180ms ease;
}

.site-footer > a:hover {
    border-color:
        var(--contact-accent);

    background:
        rgba(
            255,
            255,
            255,
            0.05
        );
}


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

@media (max-width: 1000px) {

    .hero {
        min-height: auto;

        padding:
            80px
            0
            90px;
    }

    .hero-grid {
        grid-template-columns:
            minmax(0, 1.18fr)
            minmax(250px, 0.82fr);

        gap: 28px;
    }

    .hero .eyebrow {
        font-size: 0.84rem;
    }

    .hero h1 {
        max-width: 560px;

        font-size:
            clamp(
                3.2rem,
                6.8vw,
                4.7rem
            );

        line-height: 0.94;
    }

    .hero-statement {
        max-width: 540px;

        font-size:
            clamp(
                1.05rem,
                2vw,
                1.35rem
            );
    }

    .hero-network-image {
        max-width: 340px;
    }

}


/* =========================
   MOBILE NAV + TABLET STACKING
========================= */

@media (max-width: 900px) {

    .nav-container {
        height: 70px;
    }

    .menu-toggle {
        display: block;

        position: relative;

        z-index: 1200;
    }

    .site-nav {
        position: fixed;

        inset:
            70px
            0
            0
            0;

        width: 100vw;
        height:
            calc(100dvh - 70px);

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding:
            26px
            5%
            50px;

        overflow-y: auto;

        background: var(--background);

        transform:
            translateX(100%);

        transition:
            transform
            220ms
            ease;
    }

    .site-nav.open {
        transform:
            translateX(0);
    }

    .site-nav a {
        width: 100%;

        padding:
            18px
            0;

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

        color: var(--text-primary);

        font-size: 1.05rem;
    }

    .site-nav a::after {
        display: none;
    }

    .menu-toggle.active
    span:first-child {
        transform:
            translateY(3.7px)
            rotate(45deg);
    }

    .menu-toggle.active
    span:last-child {
        transform:
            translateY(-3.7px)
            rotate(-45deg);
    }


    /* Sections */

    .section,
    .section-dark {
        padding:
            100px
            5%;
    }

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

        gap: 50px;
    }

    .section-header {
        display: block;

        margin-bottom: 55px;
    }

    .section-header > p {
        margin-top: 25px;
    }


    /* Approach */

    .approach-section {
        padding:
            110px
            5%;
    }


    /* Contact */

    .contact-section {
        padding:
            110px
            5%;
    }

    .contact-layout {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .contact-form,
    .contact-side {
        max-width: 900px;
    }


    /* Footer */

    .site-footer {
        min-height: auto;

        grid-template-columns: 1fr;

        padding-top: 32px;
        padding-bottom: 32px;

        gap: 22px;
    }

    .site-footer p {
        text-align: left;
    }

    .site-footer > a {
        justify-self: start;
    }

}


/* =========================
   SMALLER IPAD
========================= */

@media (max-width: 760px) and (min-width: 601px) {

    .hero {
        width: 90%;
    }

    .hero-grid {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(210px, 0.85fr);

        gap: 20px;
    }

    .hero h1 {
        font-size:
            clamp(
                2.9rem,
                7vw,
                3.8rem
            );
    }

    .hero-network-image {
        max-width: 280px;
    }

}


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

@media screen and (max-width: 600px) {

    /* Hero */

    .hero {
        width: 90%;

        min-height: auto;

        padding:
            70px
            0
            80px;
    }

    .hero-grid {
        grid-template-columns:
            1fr !important;

        gap:
            0 !important;
    }

    .hero-visual,
    .hero-network-image {
        display:
            none !important;
    }

    .hero .eyebrow {
        font-size: 0.76rem;

        letter-spacing: 0.15em;
    }

    .hero h1 {
        max-width: 100%;

        margin-bottom: 28px;

        font-size:
            clamp(
                3.15rem,
                14vw,
                4.6rem
            );

        line-height: 0.94;
    }

    .hero-statement {
        margin-bottom: 30px;

        font-size:
            clamp(
                1.1rem,
                5.5vw,
                1.4rem
            );
    }

    .hero-actions {
        display: grid;

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

        width: 100%;

        gap: 10px;
    }

    .hero-actions .button {
        width: 100%;

        min-width: 0;

        padding:
            0
            12px;

        font-size: 0.8rem;
    }

    .hero-line {
        grid-column: 1;

        margin-top: 55px;
    }


    /* Section titles */

    .section-heading h2,
    .section-header h2 {
        font-size:
            clamp(
                2.7rem,
                13vw,
                4.3rem
            );
    }


    /* Focus */

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .focus-card,
    .focus-card:nth-child(2n) {
        min-height: auto;

        padding:
            35px
            0;

        border-right: 0;
    }

    .focus-card h3 {
        margin:
            15px
            0
            20px;
    }


    /* Ventures */

    .venture-main {
        padding:
            38px
            24px;
    }

    .venture-main h3 {
        font-size:
            clamp(
                2.5rem,
                13vw,
                4.2rem
            );
    }


    /* Approach */

    .approach-inner h2 {
        font-size:
            clamp(
                3rem,
                14vw,
                5rem
            );
    }


    /* Founder */

    .founder-name {
        font-size: 0.95rem;
    }


    /* Contact */

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-header h2,
    .contact-section h2 {
        font-size:
            clamp(
                3.1rem,
                14vw,
                5rem
            );
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-submit {
        width: 100%;
    }

}


/* =========================
   PHONE LANDSCAPE
========================= */

@media (max-width: 950px) and (max-height: 700px) {

    .hero-visual,
    .hero-network-image {
        display:
            none !important;
    }

    .hero-grid {
        grid-template-columns:
            1fr !important;

        gap:
            0 !important;
    }

    .hero {
        min-height:
            auto !important;

        padding-top: 55px;
        padding-bottom: 70px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        max-width: 760px;
    }

}


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

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

    html {
        scroll-behavior: auto;
    }

    * {
        transition:
            none !important;
    }

}
