/* =========================================================
   SHUBHAM SONI — RESEARCH PORTFOLIO
   Modern Academic / Geomorphology / GIS
   ========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {
    --ivory: #f5f3ee;
    --white: #ffffff;

    --dark: #101716;
    --text: #343b38;
    --muted: #737b76;

    --green: #1e5b4f;
    --green-dark: #143f37;
    --green-light: #dce9e2;

    --gold: #b58b55;

    --line: #d9ddd8;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, Helvetica, sans-serif;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--sans);
    background: var(--ivory);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================================================
   NAVIGATION
========================================================= */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    background: rgba(245, 243, 238, 0.84);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

nav {
    width: min(1180px, 90%);
    height: 78px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 16px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: var(--dark);

    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    position: relative;

    font-size: 13px;
    font-weight: 500;

    color: #555d58;

    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--green);

    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    padding: 135px 0 90px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(30, 91, 79, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(181, 139, 85, 0.09),
            transparent 28%
        ),
        var(--ivory);
}


/* =========================================================
   HERO DECORATIVE CIRCLES
========================================================= */

.hero::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -210px;
    top: 120px;

    border: 1px solid rgba(30, 91, 79, 0.14);

    border-radius: 50%;

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    width: 760px;
    height: 760px;

    right: -330px;
    top: 0;

    border: 1px solid rgba(30, 91, 79, 0.07);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   HERO LAYOUT
========================================================= */

.hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    /*
       LEFT = TEXT
       RIGHT = PHOTOGRAPH
    */

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, 0.8fr);

    align-items: center;

    gap: 65px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 3;

    max-width: 760px;
}


/* =========================================================
   HERO EYEBROW
========================================================= */

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 30px;

    color: var(--green);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.8px;
}

.eyebrow::before {
    content: "";

    width: 38px;
    height: 1px;

    background: var(--green);
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero h1 {
    max-width: 780px;

    font-family: var(--serif);

    font-size: clamp(58px, 6.4vw, 92px);

    line-height: 0.98;

    font-weight: 600;

    letter-spacing: -3.5px;

    color: var(--dark);
}

.hero h1 em {
    color: var(--green);

    font-style: normal;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 600px;

    margin-top: 35px;

    font-size: 17px;

    line-height: 1.85;

    color: var(--muted);
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 40px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 13px 24px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.btn-primary {
    background: var(--green);

    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-dark);

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(30, 91, 79, 0.20);
}

.btn-outline {
    border: 1px solid var(--line);

    background: rgba(255, 255, 255, 0.35);

    color: var(--dark);
}

.btn-outline:hover {
    border-color: var(--green);

    color: var(--green);

    transform: translateY(-3px);
}


/* =========================================================
   HERO PHOTOGRAPH
========================================================= */

.hero-image {
    position: relative;

    z-index: 3;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}


/*
   Subtle offset frame behind the photograph.
*/

.hero-image::before {
    content: "";

    position: absolute;

    width: 88%;
    height: 92%;

    right: -15px;
    bottom: -15px;

    border: 1px solid var(--green);

    opacity: 0.25;

    z-index: 1;

    pointer-events: none;
}


/*
   Actual photograph.
*/

.hero-image img {
    position: relative;

    z-index: 2;

    display: block;

    width: min(390px, 100%);

    height: 500px;

    object-fit: cover;

    object-position: center;

    border-radius: 4px;

    box-shadow:
        0 25px 60px rgba(16, 23, 22, 0.16);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll {
    position: absolute;

    left: 5%;
    bottom: 30px;

    z-index: 3;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--muted);
}


/* =========================================================
   STATS
========================================================= */

.stats {
    padding: 48px 0;

    background: var(--dark);

    color: var(--white);
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);
}

.stat {
    padding: 5px 35px;

    border-right:
        1px solid rgba(255, 255, 255, 0.13);
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--serif);

    font-size: 35px;

    line-height: 1.2;

    color: var(--white);
}

.stat-label {
    margin-top: 5px;

    font-size: 12px;

    color: #aeb7b2;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

section {
    padding: 125px 0;
}

.section-label {
    margin-bottom: 20px;

    color: var(--green);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.7px;
}

.section-title {
    max-width: 850px;

    font-family: var(--serif);

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.1;

    font-weight: 600;

    letter-spacing: -1.8px;

    color: var(--dark);
}

.section-intro {
    max-width: 650px;

    margin-top: 24px;

    font-size: 16px;

    color: var(--muted);
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}

.about-text p {
    max-width: 650px;

    margin-top: 25px;

    font-size: 15px;

    color: var(--muted);
}

.about-box {
    position: relative;

    padding: 50px;

    background: var(--green-light);

    border-radius: 4px;

    overflow: hidden;
}

.about-box::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: -100px;
    bottom: -120px;

    border:
        1px solid rgba(30, 91, 79, 0.16);

    border-radius: 50%;
}

.about-box h3 {
    position: relative;

    z-index: 2;

    font-family: var(--serif);

    font-size: 34px;

    line-height: 1.25;

    font-weight: 500;

    color: var(--dark);
}

.about-box p {
    position: relative;

    z-index: 2;

    margin-top: 22px;

    font-size: 12px;

    letter-spacing: 0.5px;

    color: #53645e;
}


/* =========================================================
   RESEARCH
========================================================= */

.research-section {
    background: var(--dark);

    color: var(--white);
}

.research-section .section-label {
    color: #9bc3b5;
}

.research-section .section-title {
    color: var(--white);
}

.research-card {
    position: relative;

    margin-top: 58px;

    max-width: 980px;

    padding: 45px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.20);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.20);
}

.research-number {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #9bc3b5;
}

.research-card h3 {
    max-width: 900px;

    margin-top: 24px;

    font-family: var(--serif);

    font-size:
        clamp(30px, 4vw, 52px);

    line-height: 1.2;

    font-weight: 500;

    color: var(--white);
}

.research-card p {
    max-width: 730px;

    margin-top: 25px;

    font-size: 15px;

    line-height: 1.85;

    color: #aeb7b2;
}

.research-location {
    display: inline-block;

    margin-top: 30px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #d3dfda;
}


/* =========================================================
   RESEARCH FOCUS
========================================================= */

.focus-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    margin-top: 58px;

    background: var(--line);

    border: 1px solid var(--line);
}

.focus-card {
    min-height: 245px;

    padding: 38px 34px;

    background: var(--ivory);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.focus-card:hover {
    position: relative;

    z-index: 2;

    background: var(--white);

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.07);
}

.focus-number {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold);
}

.focus-card h3 {
    margin-top: 35px;

    font-family: var(--serif);

    font-size: 27px;

    line-height: 1.25;

    font-weight: 500;

    color: var(--dark);
}

.focus-card p {
    max-width: 300px;

    margin-top: 12px;

    font-size: 13px;

    line-height: 1.7;

    color: var(--muted);
}


/* =========================================================
   METHODS
========================================================= */

.methods {
    background: #e8e6df;
}

.method-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    margin-top: 55px;

    border-top:
        1px solid #c9ccc6;
}

.method {
    min-height: 82px;

    padding: 25px 5px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    border-bottom:
        1px solid #c9ccc6;
}

.method span:first-child {
    font-family: var(--serif);

    font-size: 22px;

    color: var(--dark);
}

.method span:last-child {
    flex-shrink: 0;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: var(--muted);
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    text-align: center;

    padding-bottom: 150px;
}

.contact .section-title {
    margin-left: auto;
    margin-right: auto;
}

.contact .section-intro {
    margin-left: auto;
    margin-right: auto;
}

.contact-email {
    display: inline-block;

    margin-top: 38px;

    font-family: var(--serif);

    font-size:
        clamp(25px, 4vw, 42px);

    color: var(--green);

    border-bottom:
        1px solid rgba(30, 91, 79, 0.25);

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.contact-email:hover {
    color: var(--green-dark);

    border-color: var(--green);
}

.contact-button {
    margin-top: 32px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 35px 0;

    background: var(--dark);

    color: #aeb7b2;

    font-size: 11px;
}

.footer-inner {
    width: min(1180px, 90%);

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.footer-name {
    color: var(--white);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.5px;
}


/* =========================================================
   ANIMATION
========================================================= */

.fade-up {
    animation:
        fadeUp 1s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

@keyframes fadeUp {

    from {
        opacity: 0;

        transform:
            translateY(28px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   SELECTION
========================================================= */

::selection {
    background: var(--green);

    color: var(--white);
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--ivory);
}

::-webkit-scrollbar-thumb {
    background: #aeb5b0;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green);
}


/* =========================================================
   TABLET / MOBILE — 800px
========================================================= */

@media (max-width: 800px) {

    /* ---------------- NAVIGATION ---------------- */

    nav {
        width: 92%;

        height: 70px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 11px;
    }


    /* ---------------- HERO ---------------- */

    .hero {
        min-height: auto;

        padding:
            120px 0 75px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size:
            clamp(52px, 13vw, 75px);

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 15px;

        line-height: 1.75;
    }


    /* ---------------- MOBILE PHOTO ---------------- */

    .hero-image {
        width: 100%;

        max-width: 340px;

        justify-content: flex-start;

        margin-top: 0;
    }

    .hero-image img {
        width: 100%;

        max-width: 340px;

        height: 360px;

        object-fit: cover;

        object-position: center;
    }

    .hero-image::before {
        width: 92%;

        height: 92%;

        right: -10px;

        bottom: -10px;
    }


    /* ---------------- DECORATION ---------------- */

    .hero::before {
        width: 350px;
        height: 350px;

        right: -180px;

        top: 180px;
    }

    .hero::after {
        width: 500px;
        height: 500px;

        right: -250px;

        top: 100px;
    }

    .scroll {
        display: none;
    }


    /* ---------------- STATS ---------------- */

    .stats {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .stat,
    .stat:first-child {
        padding: 20px 0;

        border-right: none;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }

    .stat:last-child {
        border-bottom: none;
    }


    /* ---------------- SECTIONS ---------------- */

    section {
        padding: 90px 0;
    }

    .section-title {
        font-size:
            clamp(40px, 11vw, 55px);

        letter-spacing: -1.5px;
    }

    .section-intro {
        font-size: 15px;
    }


    /* ---------------- ABOUT ---------------- */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-box {
        padding: 38px 30px;
    }

    .about-box h3 {
        font-size: 30px;
    }


    /* ---------------- RESEARCH ---------------- */

    .research-card {
        margin-top: 45px;

        padding: 35px 0;
    }

    .research-card h3 {
        font-size: 29px;
    }

    .research-card p {
        font-size: 14px;
    }


    /* ---------------- FOCUS ---------------- */

    .focus-grid {
        grid-template-columns: 1fr;

        margin-top: 45px;
    }

    .focus-card {
        min-height: auto;

        padding: 34px 28px;
    }

    .focus-card h3 {
        margin-top: 25px;
    }


    /* ---------------- METHODS ---------------- */

    .method-list {
        grid-template-columns: 1fr;

        margin-top: 40px;
    }

    .method {
        min-height: 72px;

        padding: 20px 0;
    }

    .method span:first-child {
        font-size: 19px;
    }


    /* ---------------- CONTACT ---------------- */

    .contact {
        padding-bottom: 100px;
    }

    .contact-email {
        font-size: 24px;

        word-break: break-word;
    }


    /* ---------------- FOOTER ---------------- */

    .footer-inner {
        width: 92%;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 10px;
    }

}


/* =========================================================
   SMALL MOBILE — 480px
========================================================= */

@media (max-width: 480px) {

    nav {
        width: 92%;
    }

    .logo {
        font-size: 13px;

        letter-spacing: 2px;
    }

    .nav-links {
        gap: 11px;
    }

    .nav-links a {
        font-size: 10px;
    }


    /* HERO */

    .hero {
        padding-top: 120px;
    }

    .eyebrow {
        font-size: 9px;

        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 50px;

        letter-spacing: -2px;
    }


    /* BUTTONS */

    .hero-buttons {
        align-items: stretch;

        flex-direction: column;

        max-width: 230px;
    }

    .btn {
        width: 100%;
    }


    /* PHOTO */

    .hero-image {
        max-width: 100%;
    }

    .hero-image img {
        width: 100%;

        max-width: 100%;

        height: 320px;
    }


    /* ABOUT */

    .about-box {
        padding: 30px 24px;
    }

    .about-box h3 {
        font-size: 27px;
    }


    /* RESEARCH */

    .research-card h3 {
        font-size: 26px;
    }


    /* METHODS */

    .method {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }


    /* CONTACT */

    .contact-email {
        font-size: 20px;
    }

}

/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT PAGE HERO
========================================================= */

.about-page-hero {
    min-height: 72vh;

    padding: 170px 0 110px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(30, 91, 79, 0.12),
            transparent 30%
        ),
        var(--ivory);

    position: relative;

    overflow: hidden;
}

.about-page-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -250px;
    top: 100px;

    border: 1px solid rgba(30, 91, 79, 0.10);

    border-radius: 50%;

    pointer-events: none;
}

.about-page-hero .container {
    position: relative;

    z-index: 2;
}

.about-page-title {
    max-width: 900px;

    margin-top: 10px;

    font-family: var(--serif);

    font-size: clamp(55px, 7vw, 88px);

    line-height: 1.02;

    font-weight: 600;

    letter-spacing: -3px;

    color: var(--dark);
}

.about-page-intro {
    max-width: 680px;

    margin-top: 35px;

    font-size: 18px;

    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   ABOUT PAGE SECTIONS
========================================================= */

.about-page-section {
    padding: 120px 0;
}

.about-page-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 100px;

    align-items: start;
}

.about-page-text {
    max-width: 650px;
}

.about-page-text p {
    margin-bottom: 25px;

    font-size: 16px;

    line-height: 1.9;

    color: var(--muted);
}

.about-page-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   MUTED SECTION
========================================================= */

.about-page-muted {
    background: #e8e6df;
}


/* =========================================================
   ACADEMIC JOURNEY
========================================================= */

.journey-list {
    max-width: 950px;

    margin-top: 60px;

    border-top:
        1px solid #c9ccc6;
}

.journey-item {
    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 35px;

    padding: 35px 0;

    border-bottom:
        1px solid #c9ccc6;
}

.journey-number {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold);
}

.journey-item h3 {
    font-family: var(--serif);

    font-size: 30px;

    line-height: 1.25;

    font-weight: 500;

    color: var(--dark);
}

.journey-item p {
    max-width: 700px;

    margin-top: 12px;

    font-size: 14px;

    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   ABOUT INTEREST GRID
========================================================= */

.about-interest-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 1px;

    margin-top: 60px;

    background: var(--line);

    border: 1px solid var(--line);
}

.about-interest-card {
    min-height: 250px;

    padding: 40px 36px;

    background: var(--ivory);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.about-interest-card:hover {
    position: relative;

    z-index: 2;

    background: var(--white);

    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.07);
}

.about-interest-card span {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold);
}

.about-interest-card h3 {
    margin-top: 35px;

    font-family: var(--serif);

    font-size: 29px;

    line-height: 1.25;

    font-weight: 500;

    color: var(--dark);
}

.about-interest-card p {
    max-width: 360px;

    margin-top: 12px;

    font-size: 13px;

    line-height: 1.75;

    color: var(--muted);
}


/* =========================================================
   ABOUT DARK SECTION
========================================================= */

.about-page-dark {
    background: var(--dark);

    color: var(--white);
}

.about-page-dark .section-label {
    color: #9bc3b5;
}

.about-page-dark .section-title {
    color: var(--white);
}

.about-dark-content {
    max-width: 700px;

    margin-top: 45px;
}

.about-dark-content p {
    margin-bottom: 24px;

    font-size: 16px;

    line-height: 1.9;

    color: #aeb7b2;
}

.about-dark-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-page-cta {
    padding: 120px 0 145px;
}

.about-page-cta .section-title {
    max-width: 700px;
}

.about-page-cta .section-intro {
    max-width: 600px;
}


/* =========================================================
   ABOUT PAGE — TABLET
========================================================= */

@media (max-width: 800px) {

    .about-page-hero {
        min-height: auto;

        padding: 135px 0 85px;
    }

    .about-page-title {
        font-size:
            clamp(50px, 12vw, 70px);

        letter-spacing: -2.5px;
    }

    .about-page-intro {
        font-size: 15px;

        line-height: 1.75;
    }

    .about-page-section {
        padding: 90px 0;
    }

    .about-page-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .journey-list {
        margin-top: 45px;
    }

    .journey-item {
        grid-template-columns: 55px 1fr;

        gap: 20px;
    }

    .journey-item h3 {
        font-size: 27px;
    }

    .about-interest-grid {
        grid-template-columns: 1fr;

        margin-top: 45px;
    }

    .about-interest-card {
        min-height: auto;

        padding: 35px 28px;
    }

    .about-interest-card h3 {
        margin-top: 25px;
    }

    .about-page-cta {
        padding: 90px 0 110px;
    }

}


/* =========================================================
   ABOUT PAGE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-page-hero {
        padding-top: 120px;
    }

    .about-page-title {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .about-page-intro {
        font-size: 14px;
    }

    .journey-item {
        grid-template-columns: 1fr;

        gap: 10px;

        padding: 30px 0;
    }

    .journey-item h3 {
        font-size: 25px;
    }

    .about-interest-card {
        padding: 30px 24px;
    }

    .about-interest-card h3 {
        font-size: 26px;
    }

    .about-dark-content p {
        font-size: 15px;
    }

}

/* =========================================================
   RESEARCH PAGE
========================================================= */


/* =========================================================
   RESEARCH HERO
========================================================= */

.research-page-hero {
    min-height: 72vh;

    padding: 170px 0 110px;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(30, 91, 79, 0.13),
            transparent 30%
        ),
        var(--ivory);
}

.research-page-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -230px;
    top: 80px;

    border:
        1px solid rgba(30, 91, 79, 0.12);

    border-radius: 50%;

    pointer-events: none;
}

.research-page-hero .container {
    position: relative;

    z-index: 2;
}

.research-page-title {
    max-width: 950px;

    margin-top: 10px;

    font-family: var(--serif);

    font-size:
        clamp(54px, 7vw, 88px);

    line-height: 1.02;

    font-weight: 600;

    letter-spacing: -3px;

    color: var(--dark);
}

.research-page-intro {
    max-width: 700px;

    margin-top: 35px;

    font-size: 18px;

    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   RESEARCH GENERAL SECTIONS
========================================================= */

.research-page-section {
    padding: 120px 0;
}


/* =========================================================
   RESEARCH DARK SECTION
========================================================= */

.research-page-dark {
    background: var(--dark);

    color: var(--white);
}

.research-page-dark .section-label {
    color: #9bc3b5;
}

.research-page-dark .section-title {
    max-width: 1000px;

    color: var(--white);
}


/* =========================================================
   PHD RESEARCH CONTENT
========================================================= */

.research-page-content {
    max-width: 800px;

    margin-top: 55px;

    padding-top: 35px;

    border-top:
        1px solid rgba(255, 255, 255, 0.18);
}

.research-tag {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #9bc3b5;
}

.research-page-content p {
    margin-top: 25px;

    font-size: 16px;

    line-height: 1.9;

    color: #aeb7b2;
}

.research-location {
    display: inline-block;

    margin-top: 30px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #d3dfda;
}


/* =========================================================
   RESEARCH DOMAIN GRID
========================================================= */

.research-domain-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    margin-top: 60px;

    background: var(--line);

    border:
        1px solid var(--line);
}

.research-domain-card {
    min-height: 250px;

    padding: 40px 35px;

    background: var(--ivory);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.research-domain-card:hover {
    position: relative;

    z-index: 2;

    background: var(--white);

    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.07);
}

.research-domain-card > span {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold);
}

.research-domain-card h3 {
    margin-top: 35px;

    font-family: var(--serif);

    font-size: 28px;

    line-height: 1.25;

    font-weight: 500;

    color: var(--dark);
}

.research-domain-card p {
    max-width: 320px;

    margin-top: 13px;

    font-size: 13px;

    line-height: 1.75;

    color: var(--muted);
}


/* =========================================================
   RESEARCH MUTED SECTION
========================================================= */

.research-page-muted {
    background: #e8e6df;
}


/* =========================================================
   RESEARCH METHODS
========================================================= */

.research-method-list {
    max-width: 1000px;

    margin-top: 55px;

    border-top:
        1px solid #c9ccc6;
}

.research-method {
    min-height: 82px;

    padding: 25px 5px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    border-bottom:
        1px solid #c9ccc6;
}

.research-method span {
    font-family: var(--serif);

    font-size: 22px;

    color: var(--dark);
}

.research-method small {
    flex-shrink: 0;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: var(--muted);
}


/* =========================================================
   RESEARCH CONTEXT
========================================================= */

.research-context-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 60px 90px;

    margin-top: 60px;

    max-width: 1000px;
}

.research-context-grid > div {
    padding-top: 25px;

    border-top:
        1px solid var(--line);
}

.research-context-grid h3 {
    font-family: var(--serif);

    font-size: 34px;

    font-weight: 500;

    color: var(--dark);
}

.research-context-grid p {
    max-width: 430px;

    margin-top: 12px;

    font-size: 14px;

    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   RESEARCH CTA
========================================================= */

.research-page-cta {
    padding: 120px 0 145px;

    background: var(--ivory);
}

.research-page-cta .section-title {
    max-width: 800px;
}

.research-page-cta .section-intro {
    max-width: 650px;
}


/* =========================================================
   RESEARCH PAGE — TABLET
========================================================= */

@media (max-width: 800px) {

    .research-page-hero {
        min-height: auto;

        padding: 135px 0 85px;
    }

    .research-page-title {
        font-size:
            clamp(50px, 12vw, 70px);

        letter-spacing: -2.5px;
    }

    .research-page-intro {
        font-size: 15px;

        line-height: 1.75;
    }

    .research-page-section {
        padding: 90px 0;
    }

    .research-page-dark .section-title {
        font-size:
            clamp(40px, 10vw, 58px);
    }

    .research-domain-grid {
        grid-template-columns: 1fr;

        margin-top: 45px;
    }

    .research-domain-card {
        min-height: auto;

        padding: 35px 28px;
    }

    .research-domain-card h3 {
        margin-top: 25px;
    }

    .research-method-list {
        margin-top: 45px;
    }

    .research-method {
        min-height: 72px;

        padding: 20px 0;
    }

    .research-method span {
        font-size: 19px;
    }

    .research-context-grid {
        grid-template-columns: 1fr;

        gap: 40px;

        margin-top: 45px;
    }

    .research-context-grid h3 {
        font-size: 30px;
    }

    .research-page-cta {
        padding: 90px 0 110px;
    }

}


/* =========================================================
   RESEARCH PAGE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .research-page-hero {
        padding-top: 120px;
    }

    .research-page-title {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .research-page-intro {
        font-size: 14px;
    }

    .research-page-content p {
        font-size: 14px;
    }

    .research-method {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

    .research-method span {
        font-size: 19px;
    }

    .research-context-grid h3 {
        font-size: 28px;
    }

}

/* =========================================================
   INSIGHTS PAGE
========================================================= */


/* =========================================================
   INSIGHTS HERO
========================================================= */

.insights-page-hero {
    min-height: 70vh;

    padding: 170px 0 110px;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 28%,
            rgba(30, 91, 79, 0.12),
            transparent 30%
        ),
        var(--ivory);
}

.insights-page-hero::after {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    right: -270px;
    top: 70px;

    border:
        1px solid rgba(30, 91, 79, 0.10);

    border-radius: 50%;
}

.insights-page-title {
    max-width: 900px;

    margin-top: 10px;

    font-family: var(--serif);

    font-size:
        clamp(54px, 7vw, 88px);

    line-height: 1.02;

    font-weight: 600;

    letter-spacing: -3px;

    color: var(--dark);
}

.insights-page-intro {
    max-width: 700px;

    margin-top: 35px;

    font-size: 18px;

    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   COMING SOON
========================================================= */

.insights-coming {
    padding: 125px 0;

    background: var(--dark);

    color: var(--white);
}

.insights-coming-inner {
    max-width: 850px;
}

.insights-coming .section-label {
    color: #9bc3b5;
}

.insights-coming h2 {
    max-width: 750px;

    margin-top: 15px;

    font-family: var(--serif);

    font-size:
        clamp(45px, 6vw, 72px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -2px;

    color: var(--white);
}

.insights-coming p {
    max-width: 650px;

    margin-top: 30px;

    font-size: 16px;

    line-height: 1.9;

    color: #aeb7b2;
}

.coming-line {
    width: 100%;

    height: 1px;

    margin-top: 50px;

    background:
        rgba(255, 255, 255, 0.18);
}

.coming-note {
    display: block;

    margin-top: 20px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #9bc3b5;
}


/* =========================================================
   INSIGHTS CATEGORIES
========================================================= */

.insights-page-section {
    padding: 120px 0;
}

.insights-category-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    margin-top: 60px;

    background: var(--line);

    border:
        1px solid var(--line);
}

.insights-category {
    min-height: 245px;

    padding: 40px 35px;

    background: var(--ivory);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.insights-category:hover {
    position: relative;

    z-index: 2;

    background: var(--white);

    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.07);
}

.insights-category span {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold);
}

.insights-category h3 {
    margin-top: 35px;

    font-family: var(--serif);

    font-size: 28px;

    font-weight: 500;

    color: var(--dark);
}

.insights-category p {
    max-width: 330px;

    margin-top: 12px;

    font-size: 13px;

    line-height: 1.75;

    color: var(--muted);
}


/* =========================================================
   ARTICLE ARCHIVE
========================================================= */

.insights-archive {
    padding: 120px 0;

    background: #e8e6df;
}

.insights-placeholder {
    min-height: 120px;

    margin-top: 1px;

    padding: 28px 5px;

    display: grid;

    grid-template-columns:
        70px 1fr auto;

    align-items: center;

    gap: 30px;

    border-top:
        1px solid #c9ccc6;
}

.insights-placeholder:first-of-type {
    margin-top: 55px;
}

.placeholder-number {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold);
}

.insights-placeholder h3 {
    font-family: var(--serif);

    font-size: 27px;

    font-weight: 500;

    color: var(--dark);
}

.insights-placeholder p {
    max-width: 600px;

    margin-top: 6px;

    font-size: 13px;

    color: var(--muted);
}

.placeholder-status {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.7px;

    color: var(--green);
}


/* =========================================================
   INSIGHTS PHILOSOPHY
========================================================= */

.insights-philosophy {
    padding: 120px 0;

    background: var(--ivory);
}

.insights-philosophy .section-title {
    max-width: 850px;
}

.insights-philosophy .section-intro {
    max-width: 680px;

    margin-top: 30px;
}


/* =========================================================
   INSIGHTS CTA
========================================================= */

.insights-cta {
    padding: 120px 0 145px;

    background: var(--ivory);
}

.insights-cta .section-title {
    max-width: 750px;
}


/* =========================================================
   INSIGHTS — TABLET
========================================================= */

@media (max-width: 800px) {

    .insights-page-hero {
        min-height: auto;

        padding: 135px 0 85px;
    }

    .insights-page-title {
        font-size:
            clamp(50px, 12vw, 70px);

        letter-spacing: -2.5px;
    }

    .insights-page-intro {
        font-size: 15px;

        line-height: 1.75;
    }

    .insights-coming {
        padding: 90px 0;
    }

    .insights-coming h2 {
        font-size:
            clamp(42px, 10vw, 58px);
    }

    .insights-page-section,
    .insights-archive,
    .insights-philosophy,
    .insights-cta {
        padding: 90px 0;
    }

    .insights-category-grid {
        grid-template-columns: 1fr;

        margin-top: 45px;
    }

    .insights-category {
        min-height: auto;

        padding: 35px 28px;
    }

    .insights-category h3 {
        margin-top: 25px;
    }

    .insights-placeholder {
        grid-template-columns:
            50px 1fr;

        gap: 20px;

        padding: 25px 0;
    }

    .placeholder-status {
        grid-column: 2;
    }

}


/* =========================================================
   INSIGHTS — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .insights-page-hero {
        padding-top: 120px;
    }

    .insights-page-title {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .insights-page-intro {
        font-size: 14px;
    }

    .insights-coming h2 {
        font-size: 40px;
    }

    .insights-coming p {
        font-size: 14px;
    }

    .insights-placeholder {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .placeholder-status {
        grid-column: auto;

        margin-top: 8px;
    }

}

/* =========================================================
   CV PAGE
========================================================= */


/* =========================================================
   CV HERO
========================================================= */

.cv-art-hero {
    min-height: 78vh;

    padding: 165px 0 110px;

    display: flex;

    align-items: center;

    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(30, 91, 79, 0.12),
            transparent 28%
        ),
        var(--ivory);

    overflow: hidden;
}

.cv-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    gap: 100px;

    align-items: center;
}

.cv-hero-main h1 {
    max-width: 850px;

    margin-top: 12px;

    font-family: var(--serif);

    font-size:
        clamp(58px, 7vw, 94px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 600;

    color: var(--dark);
}

.cv-hero-main p {
    max-width: 620px;

    margin-top: 35px;

    margin-bottom: 35px;

    font-size: 17px;

    line-height: 1.85;

    color: var(--muted);
}


/* =========================================================
   ARTISTIC CV MARK
========================================================= */

.cv-hero-mark {
    width: 310px;
    height: 390px;

    justify-self: center;

    position: relative;

    border:
        1px solid rgba(30, 91, 79, 0.35);

    transform: rotate(3deg);
}

.cv-hero-mark::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 330px;

    left: 28px;
    top: 28px;

    border:
        1px solid rgba(184, 150, 87, 0.55);

    transform: rotate(-7deg);
}

.cv-hero-mark::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -45px;
    bottom: -45px;

    border:
        1px solid rgba(30, 91, 79, 0.25);

    border-radius: 50%;
}

.cv-mark-inner {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    z-index: 2;
}

.cv-mark-inner span {
    font-family: var(--serif);

    font-size: 135px;

    line-height: 0.9;

    letter-spacing: -8px;

    color: var(--green);
}

.cv-mark-inner small {
    margin-top: 25px;

    text-align: center;

    font-size: 9px;

    line-height: 1.7;

    font-weight: 700;

    letter-spacing: 4px;

    color: var(--muted);
}


/* =========================================================
   PRIVATE ACCESS
========================================================= */

.cv-access {
    padding: 120px 0;

    background: var(--dark);

    color: var(--white);
}

.cv-access-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 100px;
}

.cv-access .section-label {
    color: #9bc3b5;
}

.cv-access h2 {
    max-width: 600px;

    margin-top: 12px;

    font-family: var(--serif);

    font-size:
        clamp(45px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -2px;

    color: var(--white);
}

.cv-access-text {
    max-width: 620px;
}

.cv-access-text p {
    margin-bottom: 25px;

    font-size: 16px;

    line-height: 1.9;

    color: #aeb7b2;
}


/* =========================================================
   CV PROCESS
========================================================= */

.cv-process {
    padding: 120px 0;

    background: var(--ivory);
}

.cv-process-list {
    max-width: 1050px;

    margin-top: 60px;

    border-top:
        1px solid var(--line);
}

.cv-process-item {
    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 35px;

    padding: 35px 0;

    border-bottom:
        1px solid var(--line);
}

.cv-process-number {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold);
}

.cv-process-content h3 {
    font-family: var(--serif);

    font-size: 30px;

    font-weight: 500;

    color: var(--dark);
}

.cv-process-content p {
    max-width: 650px;

    margin-top: 10px;

    font-size: 14px;

    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   CV PROFILE
========================================================= */

.cv-profile {
    padding: 120px 0;

    background: #e8e6df;
}

.cv-profile-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 1px;

    margin-top: 60px;

    background: #c9ccc6;

    border:
        1px solid #c9ccc6;
}

.cv-profile-card {
    min-height: 240px;

    padding: 40px;

    background: #e8e6df;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.cv-profile-card:hover {
    background: var(--white);

    transform: translateY(-4px);
}

.cv-profile-card span {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold);
}

.cv-profile-card h3 {
    margin-top: 35px;

    font-family: var(--serif);

    font-size: 29px;

    font-weight: 500;

    color: var(--dark);
}

.cv-profile-card p {
    max-width: 390px;

    margin-top: 12px;

    font-size: 13px;

    line-height: 1.75;

    color: var(--muted);
}


/* =========================================================
   REQUEST CTA
========================================================= */

.cv-request {
    padding: 125px 0 145px;

    background: var(--ivory);
}

.cv-request-inner {
    max-width: 850px;
}

.cv-request h2 {
    max-width: 800px;

    margin-top: 12px;

    font-family: var(--serif);

    font-size:
        clamp(48px, 6vw, 76px);

    line-height: 1.04;

    letter-spacing: -3px;

    font-weight: 600;

    color: var(--dark);
}

.cv-request p {
    max-width: 650px;

    margin-top: 28px;

    margin-bottom: 35px;

    font-size: 16px;

    line-height: 1.85;

    color: var(--muted);
}


/* =========================================================
   CV PAGE — TABLET
========================================================= */

@media (max-width: 800px) {

    .cv-art-hero {
        min-height: auto;

        padding: 135px 0 90px;
    }

    .cv-hero-layout {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .cv-hero-main h1 {
        font-size:
            clamp(50px, 12vw, 72px);

        letter-spacing: -3px;
    }

    .cv-hero-main p {
        font-size: 15px;
    }

    .cv-hero-mark {
        width: 250px;
        height: 315px;

        justify-self: start;
    }

    .cv-mark-inner span {
        font-size: 110px;
    }

    .cv-access,
    .cv-process,
    .cv-profile {
        padding: 90px 0;
    }

    .cv-access-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .cv-process-list {
        margin-top: 45px;
    }

    .cv-process-item {
        grid-template-columns: 55px 1fr;

        gap: 20px;
    }

    .cv-profile-grid {
        grid-template-columns: 1fr;

        margin-top: 45px;
    }

    .cv-request {
        padding: 90px 0 110px;
    }

}


/* =========================================================
   CV PAGE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cv-art-hero {
        padding-top: 120px;
    }

    .cv-hero-main h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .cv-hero-mark {
        width: 220px;
        height: 280px;
    }

    .cv-mark-inner span {
        font-size: 95px;
    }

    .cv-access h2 {
        font-size: 43px;
    }

    .cv-process-item {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .cv-process-content h3 {
        font-size: 26px;
    }

    .cv-profile-card {
        padding: 30px 25px;

        min-height: auto;
    }

    .cv-request h2 {
        font-size: 44px;

        letter-spacing: -2px;
    }

}


/* =========================================================
   CONNECT PAGE
========================================================= */

.connect-hero {
    min-height: 78vh;

    padding: 165px 0 110px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(30, 91, 79, 0.12),
            transparent 30%
        ),
        var(--ivory);
}

.connect-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        280px;

    gap: 100px;

    align-items: center;
}

.connect-hero h1 {
    margin-top: 12px;

    font-family: var(--serif);

    font-size:
        clamp(65px, 9vw, 120px);

    line-height: 0.9;

    letter-spacing: -5px;

    font-weight: 600;

    color: var(--dark);
}

.connect-hero p {
    max-width: 650px;

    margin: 35px 0;

    font-size: 17px;

    line-height: 1.85;

    color: var(--muted);
}

.connect-mark {
    width: 250px;
    height: 250px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--green);

    border-radius: 50%;

    transform: rotate(-8deg);

    position: relative;
}

.connect-mark::before {
    content: "";

    position: absolute;

    inset: 15px;

    border: 1px solid var(--gold);

    border-radius: 50%;
}

.connect-mark span {
    font-family: var(--serif);

    font-size: 80px;

    color: var(--green);
}

.connect-mark small {
    margin-top: 10px;

    font-size: 8px;

    letter-spacing: 3px;

    font-weight: 700;

    color: var(--muted);
}


/* =========================================================
   PRIMARY CONTACT
========================================================= */

.connect-contact {
    padding: 105px 0;

    background: var(--dark);

    color: var(--white);
}

.connect-contact .section-label {
    color: #9bc3b5;
}

.connect-email {
    display: inline-block;

    margin-top: 15px;

    font-family: var(--serif);

    font-size:
        clamp(32px, 5vw, 62px);

    line-height: 1.1;

    color: var(--white);

    text-decoration: none;

    transition: color 0.25s ease;
}

.connect-email:hover {
    color: #9bc3b5;
}

.connect-contact p {
    max-width: 650px;

    margin-top: 25px;

    font-size: 15px;

    line-height: 1.8;

    color: #aeb7b2;
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.connect-links {
    padding: 120px 0;

    background: var(--ivory);
}

.connect-link-list {
    margin-top: 55px;

    border-top: 1px solid var(--line);
}

.connect-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 30px 5px;

    border-bottom: 1px solid var(--line);

    text-decoration: none;

    color: var(--dark);

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.connect-link:hover {
    padding-left: 20px;

    background: rgba(30, 91, 79, 0.03);
}

.connect-link-number {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold);
}

.connect-link h3 {
    font-family: var(--serif);

    font-size: 32px;

    font-weight: 500;
}

.connect-link p {
    margin-top: 5px;

    font-size: 12px;

    color: var(--muted);
}

.connect-arrow {
    font-size: 28px;

    color: var(--green);
}


/* =========================================================
   OPEN TO
========================================================= */

.connect-open {
    padding: 120px 0;

    background: #e8e6df;
}

.connect-open-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;
}

.connect-open h2 {
    max-width: 550px;

    margin-top: 12px;

    font-family: var(--serif);

    font-size:
        clamp(44px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 500;
}

.connect-open-list {
    border-top: 1px solid #c9ccc6;
}

.connect-open-list div {
    padding: 22px 5px;

    border-bottom: 1px solid #c9ccc6;

    font-family: var(--serif);

    font-size: 21px;

    color: var(--dark);
}


/* =========================================================
   CV
========================================================= */

.connect-cv {
    padding: 120px 0;

    background: var(--ivory);
}

.connect-cv h2 {
    margin-top: 12px;

    font-family: var(--serif);

    font-size:
        clamp(48px, 6vw, 76px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 600;
}

.connect-cv p {
    max-width: 600px;

    margin: 25px 0 30px;

    font-size: 16px;

    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   CLOSING
========================================================= */

.connect-closing {
    padding: 120px 0 150px;

    background: var(--dark);

    color: var(--white);
}

.connect-closing .section-label {
    color: #9bc3b5;
}

.connect-closing h2 {
    max-width: 850px;

    margin-top: 15px;

    font-family: var(--serif);

    font-size:
        clamp(55px, 8vw, 100px);

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 500;
}

.connect-closing a {
    display: inline-block;

    margin-top: 40px;

    font-size: 14px;

    color: #9bc3b5;

    text-decoration: none;
}

.connect-closing a:hover {
    color: var(--white);
}


/* =========================================================
   CONNECT — TABLET
========================================================= */

@media (max-width: 800px) {

    .connect-hero {
        min-height: auto;

        padding: 135px 0 90px;
    }

    .connect-hero-layout {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .connect-hero h1 {
        font-size:
            clamp(58px, 14vw, 82px);

        letter-spacing: -3px;
    }

    .connect-mark {
        width: 210px;
        height: 210px;
    }

    .connect-mark span {
        font-size: 68px;
    }

    .connect-contact,
    .connect-links,
    .connect-open,
    .connect-cv {
        padding: 90px 0;
    }

    .connect-open-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .connect-closing {
        padding: 90px 0 110px;
    }

    .connect-closing h2 {
        font-size:
            clamp(52px, 13vw, 75px);
    }

}


/* =========================================================
   CONNECT — MOBILE
========================================================= */

@media (max-width: 480px) {

    .connect-hero {
        padding-top: 120px;
    }

    .connect-hero h1 {
        font-size: 58px;

        letter-spacing: -2.5px;
    }

    .connect-hero p {
        font-size: 14px;
    }

    .connect-email {
        font-size: 30px;
    }

    .connect-link h3 {
        font-size: 27px;
    }

    .connect-open h2 {
        font-size: 43px;
    }

    .connect-open-list div {
        font-size: 18px;
    }

    .connect-cv h2 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .connect-closing h2 {
        font-size: 52px;

        letter-spacing: -2px;
    }

}
