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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #111318;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
}

button {
    font: inherit;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 1000;

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

    padding: 0 3.5%;

    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(17, 19, 24, 0.07);

    transition: 0.25s;
}

.navbar.scrolled {
    box-shadow: 0 10px 35px rgba(29, 38, 55, 0.06);
}

.brand {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.5px;

    text-decoration: none;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;

    list-style: none;
}

.nav-menu > li > a,
.dropdown-button {
    display: flex;
    align-items: center;
    gap: 4px;

    padding: 9px 7px;

    border: 0;
    background: transparent;

    text-decoration: none;

    color: #555b65;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
    white-space: nowrap;

    transition: 0.2s;
}

.nav-menu > li > a:hover,
.dropdown-button:hover {
    color: #111318;
}


/* =========================================================
   DROPDOWNS
========================================================= */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;

    left: 50%;
    top: calc(100% + 10px);

    transform: translate(-50%, -5px);

    min-width: 210px;

    padding: 7px;

    list-style: none;

    border: 1px solid #e5e8ec;
    border-radius: 14px;

    background: #ffffff;

    box-shadow: 0 18px 50px rgba(27, 37, 54, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: 0.18s;
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-50%, 0);
}

.dropdown-menu a {
    display: block;

    padding: 10px;

    border-radius: 9px;

    text-decoration: none;

    color: #555b65;

    font-size: 12px;
    font-weight: 600;
}

.dropdown-menu a:hover {
    background: #f5f6f8;
    color: #111318;
}


/* =========================================================
   RESUME BUTTON
========================================================= */

.resume-button {
    margin-left: 4px !important;

    padding: 9px 14px !important;

    border-radius: 999px;

    background: #111318 !important;
    color: #ffffff !important;
}

.resume-button:hover {
    background: #2a2d32 !important;
}


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

.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    border: 1px solid #e2e5e9;
    border-radius: 12px;

    background: #ffffff;

    padding: 10px;
}

.menu-toggle span {
    display: block;

    height: 2px;

    background: #111318;

    margin: 4px 0;

    border-radius: 4px;
}


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

.hero {
    position: relative;

    min-height: calc(100vh - 72px);

    overflow: hidden;

    padding: 70px 7% 76px;

    background: #ffffff;
}

.hero-inner {
    position: relative;
    z-index: 2;

    max-width: 1260px;

    margin: auto;
}


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

.hero-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.glow-one {
    width: 760px;
    height: 760px;

    right: -210px;
    top: -250px;

    background:
        radial-gradient(
            circle,
            rgba(189, 214, 255, 0.52),
            rgba(227, 238, 255, 0.25) 40%,
            rgba(255, 255, 255, 0) 70%
        );
}

.glow-two {
    width: 520px;
    height: 520px;

    left: -260px;
    bottom: -260px;

    background:
        radial-gradient(
            circle,
            rgba(214, 221, 235, 0.52),
            rgba(243, 246, 250, 0.2) 48%,
            transparent 72%
        );
}

.hero-dots {
    position: absolute;

    right: 8%;
    top: 22%;

    width: 180px;
    height: 180px;

    opacity: 0.16;

    background-image:
        radial-gradient(#697486 1px, transparent 1px);

    background-size: 14px 14px;

    mask-image:
        linear-gradient(to bottom right, #000000, transparent);
}


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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 24px;

    color: #555c67;

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

    letter-spacing: 2.2px;
}

.eyebrow span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #111318;
}


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

.hero h1 {
    display: flex;
    flex-direction: column;

    max-width: 1100px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(60px, 7vw, 102px);
    font-weight: 800;

    line-height: 0.91;

    letter-spacing: -6px;
}

.hero h1 .surname {
    color: #a8adb5;
}


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

.hero-role {
    max-width: 760px;

    margin-top: 26px;

    color: #555d69;

    font-size: clamp(18px, 1.8vw, 24px);

    line-height: 1.5;
}


/* =========================================================
   HERO MIDDLE AREA
========================================================= */

.hero-composition {
    display: grid;

    grid-template-columns:
        1fr
        220px
        390px;

    align-items: center;

    gap: 36px;

    margin-top: 44px;
}


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

.hero-quote {
    padding-left: 22px;

    border-left: 2px solid #111318;

    font-family: "Manrope", sans-serif;

    font-size: clamp(23px, 2.3vw, 34px);

    font-weight: 700;

    line-height: 1.25;

    letter-spacing: -1.5px;
}


/* =========================================================
   HANDWRITTEN TEXT
========================================================= */

.scribble-wrap {
    align-self: end;

    margin-bottom: 10px;

    color: #5f6670;

    text-align: center;

    font-family: "Nothing You Could Do", cursive;

    font-size: 24px;

    transform: rotate(-3deg);
}

#changing-text {
    display: inline-block;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.scribble-wrap svg {
    display: block;

    width: 155px;

    margin: 0 auto;

    color: #9aa1aa;
}


/* =========================================================
   GLASS IDEA CARD
========================================================= */

.idea-card {
    padding: 24px;

    border: 1px solid rgba(153, 166, 187, 0.28);

    border-radius: 22px;

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

    backdrop-filter: blur(18px);

    box-shadow:
        0 24px 70px rgba(65, 87, 122, 0.12);
}

.spark {
    font-size: 25px;

    margin-bottom: 14px;
}

.idea-title {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    font-family: "Manrope", sans-serif;

    font-size: 17px;
    font-weight: 700;
}

.idea-title i {
    font-style: normal;

    color: #aab0b9;
}

.idea-card p {
    margin-top: 12px;

    color: #737b87;

    font-size: 12px;

    line-height: 1.6;
}


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

.hero-intro {
    max-width: 1020px;

    margin-top: 38px;

    color: #656d79;

    font-size: 15px;

    line-height: 1.82;
}


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

.hero-actions {
    display: flex;

    gap: 11px;

    margin-top: 28px;
}

.button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 19px;

    border-radius: 999px;

    text-decoration: none;

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

    transition: 0.2s;
}

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

.button-dark {
    background: #111318;
    color: #ffffff;
}

.button-light {
    border: 1px solid #d9dde3;

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


/* =========================================================
   COMMON SECTIONS
========================================================= */

.section {
    padding: 88px 7%;
}

.section-inner {
    max-width: 1260px;

    margin: auto;
}

.white {
    background: #ffffff;
}

.soft,
.personal-projects {
    background: #f7f8fa;

    border-top: 1px solid #edf0f3;
}

.section-topline {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;
}

.section-heading {
    max-width: 780px;

    margin-bottom: 38px;
}

.section-kicker,
.placeholder-section > div > span {
    display: block;

    margin-bottom: 11px;

    color: #7b828c;

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

    letter-spacing: 2.3px;
}

.section-heading h2,
.placeholder-section h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(45px, 5.4vw, 72px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -4px;
}

.section-heading p {
    max-width: 700px;

    margin-top: 15px;

    color: #69717c;

    font-size: 15px;

    line-height: 1.7;
}

.count-pill {
    margin-bottom: 42px;

    padding: 8px 12px;

    border: 1px solid #dfe3e8;

    border-radius: 999px;

    background: #ffffff;

    color: #7a818b;

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

    letter-spacing: 1.3px;
}


/* =========================================================
   PERSONAL PROJECTS
========================================================= */

.project-grid {
    display: grid;

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

    gap: 20px;
}

.project-card {
    position: relative;

    overflow: hidden;

    min-height: 430px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    border: 1px solid #e0e4e9;

    border-radius: 24px;

    background: #ffffff;

    text-decoration: none;

    box-shadow:
        0 10px 32px rgba(31, 42, 62, 0.045);

    transition: 0.28s;
}

.project-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 55px rgba(31, 42, 62, 0.1);
}

.project-accent {
    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 4px;
}

.dailyally .project-accent {
    background:
        linear-gradient(
            90deg,
            #7acb9c,
            #dff5e8
        );
}

.thozhan .project-accent {
    background:
        linear-gradient(
            90deg,
            #8478df,
            #c5c4ff
        );
}


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

.project-head {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.project-icon {
    width: 56px;
    height: 56px;

    display: grid;

    place-items: center;

    border-radius: 17px;
}

.project-icon svg {
    width: 30px;
    height: 30px;
}

.leaf-icon {
    color: #3d865e;

    background: #e6f4eb;
}

.mail-icon {
    color: #6559aa;

    background: #eeeafd;
}

.project-badge,
.mini-pill {
    padding: 7px 10px;

    border: 1px solid #e0e3e8;

    border-radius: 999px;

    background: #f8f9fa;

    color: #6c737d;

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

    letter-spacing: 1px;
}

.project-number {
    margin-top: 24px;

    color: #9aa0a8;

    font-size: 10px;
    font-weight: 700;
}

.project-card h3 {
    margin-top: 8px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(32px, 3vw, 42px);

    font-weight: 800;

    letter-spacing: -2px;
}

.project-subtitle {
    margin-top: 5px;

    color: #626a75;

    font-size: 13px;
    font-weight: 600;
}

.project-copy {
    max-width: 530px;

    margin-top: 17px;

    color: #6c7480;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   TAGS
========================================================= */

.tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.project-card .tags {
    margin-top: 22px;
}

.tags span {
    padding: 7px 10px;

    border: 1px solid #e1e4e8;

    border-radius: 999px;

    background: #fafbfc;

    color: #606873;

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


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

.project-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: auto;

    padding-top: 20px;

    border-top: 1px solid #e7e9ed;
}

.project-footer b {
    display: block;

    font-size: 9px;

    letter-spacing: 1.3px;
}

.project-footer small {
    display: block;

    margin-top: 4px;

    color: #9298a1;

    font-size: 7px;

    letter-spacing: 1px;
}

.round-arrow {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border: 1px solid #d9dde2;

    border-radius: 50%;

    font-size: 17px;

    transition: 0.2s;
}

.project-card:hover .round-arrow {
    background: #111318;

    color: #ffffff;

    transform: translate(2px, -2px);
}


/* =========================================================
   TWO COLUMN GRID
========================================================= */

.two-grid {
    display: grid;

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

    gap: 18px;
}


/* =========================================================
   EDUCATION CARDS
========================================================= */

.info-card,
.academic-card {
    padding: 29px;

    border: 1px solid #e0e4e9;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(31, 42, 62, 0.035);

    transition: 0.25s;
}

.info-card:hover,
.academic-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(31, 42, 62, 0.08);
}

.card-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #7c838d;

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

    letter-spacing: 1.4px;
}

.info-card h3,
.academic-card h3 {
    margin-top: 24px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(28px, 3vw, 39px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.8px;
}

.institution {
    display: inline-block;

    margin-top: 18px;

    color: #22262c;

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

    text-decoration: none;
}

.muted {
    margin-top: 7px !important;

    color: #9298a1 !important;

    font-size: 11px !important;
}

.info-card > p {
    margin-top: 18px;

    color: #69717c;

    font-size: 13px;

    line-height: 1.7;
}

.card-bottom {
    display: flex;

    justify-content: space-between;

    margin-top: 25px;

    padding-top: 17px;

    border-top: 1px solid #e8eaed;

    color: #818893;

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

    letter-spacing: 1.2px;
}


/* =========================================================
   LIFE JOURNEY TIMELINE
========================================================= */

.timeline {
    position: relative;

    max-width: 980px;

    margin: auto;
}

.timeline::before {
    content: "";

    position: absolute;

    left: 24px;
    top: 25px;
    bottom: 25px;

    width: 1px;

    background: #d9dde2;
}

.timeline article {
    position: relative;

    display: grid;

    grid-template-columns:
        50px
        1fr;

    gap: 24px;

    margin-bottom: 35px;
}

.timeline-no {
    z-index: 1;

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border: 1px solid #dfe3e7;

    border-radius: 50%;

    background: #ffffff;

    color: #747b85;

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

.timeline small,
.work-card small {
    display: block;

    margin-bottom: 6px;

    color: #8a919b;

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

    letter-spacing: 1.5px;
}

.timeline h3 {
    font-family: "Manrope", sans-serif;

    font-size: 21px;

    letter-spacing: -0.7px;
}

.timeline p {
    margin-top: 6px;

    color: #6d7580;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   WORK CARD
========================================================= */

.work-card {
    overflow: hidden;

    border: 1px solid #e0e4e9;

    border-radius: 23px;

    background: #ffffff;

    box-shadow:
        0 10px 34px rgba(31, 42, 62, 0.04);
}

.work-summary {
    display: flex;

    align-items: center;

    gap: 22px;

    padding: 29px;
}

.company-mark {
    width: 76px;
    height: 76px;

    flex: 0 0 auto;

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

    padding: 12px;

    border: 1px solid #e2e5e9;
    border-radius: 18px;

    background: #ffffff;

    overflow: hidden;
}

.accenture-mark img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

.work-title {
    flex: 1;
}

.work-title h3 {
    font-family: "Manrope", sans-serif;

    font-size: 34px;

    letter-spacing: -1.4px;
}

.work-title h4 {
    margin-top: 2px;

    color: #555d68;

    font-size: 15px;
}

.work-title p {
    max-width: 760px;

    margin-top: 7px;

    color: #707782;

    font-size: 13px;

    line-height: 1.6;
}

.work-expand {
    width: 46px;
    height: 46px;

    border: 1px solid #d9dde2;

    border-radius: 50%;

    background: #ffffff;

    font-size: 22px;

    cursor: pointer;

    transition: 0.25s;
}

.work-card.expanded .work-expand {
    transform: rotate(45deg);

    background: #111318;

    color: #ffffff;
}


/* =========================================================
   WORK DETAILS
========================================================= */

.work-details {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.7s ease,
        opacity 0.35s;
}

.work-card.expanded .work-details {
    max-height: 2500px;

    opacity: 1;
}

.work-project {
    display: grid;

    grid-template-columns:
        40px
        1fr;

    gap: 20px;

    margin: 0 29px;

    padding: 28px 0;

    border-top: 1px solid #e7e9ed;
}

.work-project-no {
    color: #949aa3;

    font-size: 10px;
    font-weight: 700;
}

.work-project h4 {
    font-family: "Manrope", sans-serif;

    font-size: 26px;

    letter-spacing: -1px;
}

.work-points {
    display: grid;

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

    gap: 10px;

    margin: 16px 0;
}

.work-points > div {
    padding: 15px;

    border: 1px solid #eceef1;

    border-radius: 13px;

    background: #fafbfc;
}

.work-points b {
    font-size: 11px;
}

.work-points p {
    margin-top: 5px;

    color: #737a84;

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   ACADEMIC PROJECTS
========================================================= */

.academic-card > p {
    margin-top: 16px;

    color: #6b737e;

    font-size: 13px;

    line-height: 1.7;
}

.academic-name {
    margin-top: 7px;

    color: #5f6772;

    font-size: 13px;
    font-weight: 600;
}

.academic-expand {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 22px;

    padding: 12px 14px;

    border: 1px solid #dfe3e8;

    border-radius: 11px;

    background: #ffffff;

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

    cursor: pointer;
}

.academic-expand:hover {
    background: #111318;

    color: #ffffff;
}

.academic-details {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.55s ease,
        opacity 0.3s;
}

.academic-card.expanded .academic-details {
    max-height: 1000px;

    opacity: 1;
}

.academic-card.expanded .expand-icon {
    transform: rotate(45deg);
}

.academic-details > div:not(.tags) {
    padding-top: 16px;
}

.academic-details b {
    font-size: 11px;
}

.academic-details p {
    margin-top: 4px;

    color: #747b85;

    font-size: 11px;

    line-height: 1.6;
}

.academic-details .tags {
    margin-top: 18px;
}


/* =========================================================
   PLACEHOLDER SECTIONS
========================================================= */

.placeholder-section {
    min-height: 280px;

    padding: 70px 7%;

    display: flex;

    align-items: center;

    border-top: 1px solid #edf0f3;
}

.placeholder-section.alt {
    background: #fafbfc;
}

.placeholder-section > div {
    width: 100%;

    max-width: 1260px;

    margin: auto;
}

.placeholder-section h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(43px, 5vw, 67px);

    letter-spacing: -3.5px;
}

.hobby-tags {
    margin-top: 24px;
}


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

.contact {
    padding: 100px 7%;

    background: #111318;

    color: #ffffff;
}

.contact-inner {
    max-width: 1260px;

    margin: auto;
}

.light-kicker {
    color: #9299a3;
}

.contact h2 {
    max-width: 900px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(52px, 7vw, 92px);

    line-height: 0.95;

    letter-spacing: -5px;
}

.contact h2 span {
    color: #727983;
}

.contact p {
    max-width: 650px;

    margin-top: 24px;

    color: #a6acb5;

    font-size: 15px;

    line-height: 1.7;
}


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

footer {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 7%;

    background: #111318;

    border-top: 1px solid #292d33;

    color: #818892;

    font-size: 10px;
}

footer a {
    color: #b7bcc3;

    text-decoration: none;
}


/* =========================================================
   RESPONSIVE — NAVIGATION
========================================================= */

@media (max-width: 1180px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;

        left: 0;
        right: 0;
        top: 72px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 12px 5% 20px;

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

        border-bottom: 1px solid #e5e8ec;

        box-shadow:
            0 20px 40px rgba(31, 42, 62, 0.08);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu > li > a,
    .dropdown-button {
        width: 100%;

        justify-content: space-between;

        padding: 12px 4px;
    }

    .dropdown-menu {
        position: static;

        display: none;

        transform: none !important;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        box-shadow: none;

        background: #f6f7f9;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .resume-button {
        margin: 6px 0 0 !important;

        justify-content: center;
    }

    .hero-composition {
        grid-template-columns:
            1fr
            360px;
    }

    .scribble-wrap {
        display: none;
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 860px) {

    .hero {
        padding:
            60px
            6%
            70px;
    }

    .hero h1 {
        letter-spacing: -4px;
    }

    .hero-composition {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .idea-card {
        max-width: 480px;
    }

    .project-grid,
    .two-grid,
    .work-points {
        grid-template-columns: 1fr;
    }

    .section-topline {
        align-items: flex-start;

        flex-direction: column;

        gap: 0;
    }

    .count-pill {
        margin:
            -15px
            0
            30px;
    }

    .section {
        padding:
            72px
            6%;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .navbar {
        height: 64px;

        padding:
            0
            5%;
    }

    .brand {
        max-width:
            calc(100% - 55px);

        overflow: hidden;

        text-overflow: ellipsis;
    }

    .nav-menu {
        top: 64px;
    }


    /* HERO */

    .hero {
        padding:
            54px
            5%
            62px;
    }

    .hero h1 {
        font-size:
            clamp(
                47px,
                15vw,
                67px
            );

        letter-spacing: -3.5px;
    }

    .hero-role {
        font-size: 17px;
    }

    .hero-quote {
        font-size: 23px;
    }

    .hero-intro {
        font-size: 13px;
    }

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

    .button {
        flex: 1;

        justify-content: center;
    }


    /* SECTIONS */

    .section {
        padding:
            62px
            5%;
    }

    .section-heading h2,
    .placeholder-section h2 {
        font-size: 42px;

        letter-spacing: -2.5px;
    }


    /* PROJECTS */

    .project-card {
        min-height: 410px;

        padding: 22px;
    }

    .project-card h3 {
        font-size: 34px;
    }


    /* EDUCATION */

    .info-card,
    .academic-card {
        padding: 23px;
    }


    /* TIMELINE */

    .timeline::before {
        display: none;
    }

    .timeline article {
        grid-template-columns:
            44px
            1fr;

        gap: 15px;
    }

    .timeline-no {
        width: 44px;
        height: 44px;
    }


    /* WORK */

    .work-summary {
        padding: 22px;

        align-items: flex-start;

        flex-wrap: wrap;
    }

    .company-mark {
        width: 54px;
        height: 54px;
    }

    .work-title {
        min-width:
            calc(100% - 80px);
    }

    .work-expand {
        margin-left: auto;
    }

    .work-project {
        grid-template-columns: 1fr;

        margin:
            0
            22px;
    }


    /* PLACEHOLDERS */

    .placeholder-section {
        padding:
            58px
            5%;
    }


    /* CONTACT */

    .contact {
        padding:
            78px
            5%;
    }

    .contact h2 {
        font-size: 50px;

        letter-spacing: -3px;
    }


    /* FOOTER */

    footer {
        padding:
            18px
            5%;

        flex-direction: column;
    }

}