@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600;700;800&display=swap');


/* =========================================================
   RESET & BASE
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    background: #080808;
    color: #f4f4f4;
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

::selection {
    background: #fff;
    color: #000;
}


/* =========================================================
   BACKGROUND
========================================================= */

.background {
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
    overflow: hidden;
    background: #080808;
}

.grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.13;
}

.glow-one {
    background: #ffffff;
    top: 0;
    right: -200px;
}

.glow-two {
    background: #777;
    bottom: 10%;
    left: -250px;
}

.noise {
    position: absolute;
    inset: 0;
    opacity: 0.035;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 85px;

    padding: 0 6vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 100;

    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.logo span,
.footer-logo span {
    color: #888;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    position: relative;

    font-family: "DM Mono", monospace;
    font-size: 0.72rem;
    color: #888;

    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: #fff;

    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-button {
    border: 1px solid #333;

    padding: 12px 18px;

    font-family: "DM Mono", monospace;
    font-size: 0.7rem;

    transition: 0.3s ease;
}

.nav-button:hover {
    background: #fff;
    color: #000;
}

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid #292929;
    background: transparent;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;
}

.menu-button span {
    display: block;

    width: 20px;
    height: 1px;

    background: #fff;

    transition: 0.3s ease;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100svh;

    padding: 150px 8vw 100px;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    align-items: center;

    gap: 5vw;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 1px solid #292929;

    padding: 8px 13px;

    margin-bottom: 35px;

    font-family: "DM Mono", monospace;
    font-size: 0.65rem;

    color: #aaa;

    letter-spacing: 0.05em;
}

.status-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    background: #fff;
    border-radius: 50%;

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.7);
    }
}

.eyebrow,
.section-label {
    font-family: "DM Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: #777;
}

.hero-title {
    margin-top: 12px;
    margin-bottom: 20px;

    font-size: clamp(4rem, 9vw, 9rem);

    line-height: 0.82;

    letter-spacing: -0.075em;
}

.name-line {
    display: block;
    font-weight: 800;
}

.name-line.outline {
    color: transparent;

    -webkit-text-stroke: 1px #777;

    transition: 0.5s;
}

.name-line.outline:hover {
    color: #fff;
    -webkit-text-stroke: 1px #fff;
}

.hero-role {
    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 1rem;
    color: #aaa;

    margin-bottom: 25px;
}

.hero-role span {
    width: 35px;
    height: 1px;

    flex: 0 0 auto;

    background: #555;
}

.hero-description {
    max-width: 520px;

    color: #888;

    line-height: 1.8;

    font-size: 0.95rem;

    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    min-height: 52px;

    padding: 16px 22px;

    font-family: "DM Mono", monospace;
    font-size: 0.7rem;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.primary-button {
    background: #f5f5f5;
    color: #080808;
}

.primary-button:hover {
    transform: translateY(-3px);
    background: #fff;
}

.secondary-button {
    border: 1px solid #303030;
    color: #aaa;
}

.secondary-button:hover {
    border-color: #777;
    color: #fff;
}


/* =========================================================
   PROFILE
========================================================= */

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-wrapper {
    position: relative;

    width: min(430px, 80vw);
    aspect-ratio: 1;

    display: grid;
    place-items: center;

    transition: transform 0.25s ease-out;
}

.profile-frame {
    position: relative;
    z-index: 5;

    width: 68%;
    aspect-ratio: 1;

    overflow: hidden;

    border-radius: 50%;

    border: 1px solid #444;

    background: #111;

    box-shadow:
        0 0 80px rgba(255,255,255,0.08);
}

.profile-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(100%);

    transition: 0.7s;
}

.profile-frame:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.profile-glow {
    position: absolute;

    width: 60%;
    aspect-ratio: 1;

    background: #fff;

    filter: blur(100px);

    opacity: 0.08;
}

.orbit {
    position: absolute;

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 50%;
}

.orbit-one {
    width: 88%;
    height: 55%;

    transform: rotate(-25deg);

    animation: rotateOrbit 12s linear infinite;
}

.orbit-two {
    width: 75%;
    height: 92%;

    transform: rotate(35deg);

    animation: rotateOrbitReverse 15s linear infinite;
}

@keyframes rotateOrbit {

    from {
        transform: rotate(-25deg);
    }

    to {
        transform: rotate(335deg);
    }
}

@keyframes rotateOrbitReverse {

    from {
        transform: rotate(35deg);
    }

    to {
        transform: rotate(-325deg);
    }
}

.floating-card {
    position: absolute;

    z-index: 10;

    padding: 10px 13px;

    background: rgba(12,12,12,0.85);

    border: 1px solid #292929;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-family: "DM Mono", monospace;

    display: flex;
    gap: 12px;

    font-size: 0.58rem;
}

.floating-card span {
    color: #555;
}

.card-top {
    top: 12%;
    right: 0;
}

.card-bottom {
    bottom: 12%;
    left: 0;
}

.profile-caption {
    width: min(430px, 80vw);

    display: flex;
    justify-content: space-between;

    margin-top: 25px;

    font-family: "DM Mono", monospace;
    font-size: 0.58rem;

    color: #555;

    letter-spacing: 0.08em;
}


/* =========================================================
   MARQUEE
========================================================= */

.marquee {
    border-top: 1px solid #1b1b1b;
    border-bottom: 1px solid #1b1b1b;

    overflow: hidden;

    padding: 20px 0;

    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;

    gap: 28px;

    min-width: max-content;

    animation: marquee 25s linear infinite;
}

.marquee span {
    font-family: "DM Mono", monospace;

    font-size: 0.65rem;

    color: #666;

    letter-spacing: 0.12em;
}

.marquee i {
    color: #555;
    font-style: normal;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    padding: 150px 8vw;

    position: relative;
}

.section-heading {
    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 40px;

    margin-bottom: 80px;
}

.section-number {
    font-family: "DM Mono", monospace;

    color: #444;

    font-size: 0.75rem;
}

.section-heading h2 {
    margin-top: 15px;

    font-size: clamp(3rem, 6vw, 6rem);

    line-height: 0.95;

    letter-spacing: -0.065em;
}

.section-heading h2 em {
    color: #777;
    font-weight: 400;
}


/* =========================================================
   ABOUT
========================================================= */

.about-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10vw;

    max-width: 1100px;

    margin-left: auto;
}

.about-intro p {
    font-size: clamp(1.7rem, 3vw, 3rem);

    line-height: 1.25;

    letter-spacing: -0.04em;

    color: #ddd;
}

.about-text {
    color: #777;

    line-height: 1.9;

    font-size: 0.9rem;
}

.about-text p {
    margin-bottom: 25px;
}

.about-facts {
    margin-top: 50px;

    border-top: 1px solid #252525;
}

.about-facts div {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 0;

    border-bottom: 1px solid #252525;
}

.about-facts span {
    font-family: "DM Mono", monospace;
    color: #444;
}

.about-facts strong {
    font-size: 0.78rem;
    font-weight: 500;
    color: #aaa;
}


/* =========================================================
   SKILLS
========================================================= */

.skills-list {
    border-top: 1px solid #292929;
}

.skill-item {
    display: grid;

    grid-template-columns: 80px 1fr 0.8fr;

    align-items: center;

    gap: 30px;

    padding: 30px 0;

    border-bottom: 1px solid #292929;

    transition: 0.35s;
}

.skill-item:hover {
    padding-left: 15px;

    background: rgba(255,255,255,0.015);
}

.skill-number {
    font-family: "DM Mono", monospace;

    color: #444;

    font-size: 0.7rem;
}

.skill-name {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);

    letter-spacing: -0.04em;
}

.skill-name span {
    color: #444;
}

.skill-description {
    color: #666;

    font-size: 0.78rem;

    line-height: 1.5;
}


/* =========================================================
   CONFIDENCE
========================================================= */

.confidence-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1px;

    background: #292929;

    border: 1px solid #292929;
}

.confidence-card {
    background: #080808;

    padding: 40px;

    min-height: 310px;

    display: flex;
    flex-direction: column;

    transition: 0.4s;
}

.confidence-card:hover {
    background: #0d0d0d;
}

.confidence-top {
    display: flex;
    justify-content: space-between;

    font-family: "DM Mono", monospace;

    font-size: 0.7rem;

    color: #444;

    margin-bottom: auto;
}

.confidence-card h3 {
    font-size: clamp(1.8rem, 3vw, 3rem);

    letter-spacing: -0.05em;

    margin-bottom: 15px;
}

.confidence-card p {
    color: #777;

    font-size: 0.82rem;

    line-height: 1.7;

    max-width: 500px;
}

.confidence-line {
    width: 40px;
    height: 1px;

    background: #555;

    margin-top: 30px;

    transition: 0.4s;
}

.confidence-card:hover .confidence-line {
    width: 100%;
}


/* =========================================================
   HIRE ME
========================================================= */

.hire {
    background: #0b0b0b;

    border-top: 1px solid #181818;
    border-bottom: 1px solid #181818;
}

.hire-content {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 10vw;
}

.hire-text > p {
    color: #888;

    line-height: 1.9;

    max-width: 450px;

    margin-bottom: 35px;
}

.primary-button.large {
    padding: 19px 25px;
}

.services {
    border-top: 1px solid #292929;
}

.service {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid #292929;
}

.service span {
    font-family: "DM Mono", monospace;

    color: #444;

    font-size: 0.7rem;
}

.service strong {
    font-size: 1rem;
    font-weight: 600;
}

.service small {
    grid-column: 2;

    color: #666;

    font-size: 0.7rem;
}


/* =========================================================
   JOURNEY
========================================================= */

.timeline {
    max-width: 1000px;

    margin-left: auto;
}

.timeline-item {
    display: grid;

    grid-template-columns: 150px 1fr;

    gap: 50px;

    padding: 40px 0;

    border-top: 1px solid #292929;
}

.timeline-item:last-child {
    border-bottom: 1px solid #292929;
}

.timeline-year {
    font-family: "DM Mono", monospace;

    font-size: 0.65rem;

    color: #555;
}

.timeline-content h3 {
    font-size: 2rem;

    letter-spacing: -0.04em;

    margin-bottom: 12px;
}

.timeline-content p {
    max-width: 600px;

    color: #777;

    font-size: 0.85rem;

    line-height: 1.8;
}


/* =========================================================
   BEYOND CODE
========================================================= */

.beyond {
    padding-top: 50px;
}

.beyond-box {
    min-height: 500px;

    border: 1px solid #292929;

    padding: 60px;

    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 40px;

    align-items: center;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255,255,255,0.04),
            transparent 30%
        );
}

.beyond-number {
    font-family: "DM Mono", monospace;

    color: #444;

    font-size: 0.7rem;
}

.beyond-content {
    max-width: 850px;
}

.beyond-content h2 {
    font-size: clamp(3rem, 6vw, 6rem);

    line-height: 0.95;

    letter-spacing: -0.07em;

    margin: 20px 0 30px;
}

.beyond-content h2 em {
    color: #777;
    font-weight: 400;
}

.beyond-content > p:not(.section-label) {
    color: #777;

    max-width: 550px;

    line-height: 1.8;

    font-size: 0.85rem;
}

.football-tag {
    display: inline-block;

    margin-top: 35px;

    border: 1px solid #303030;

    padding: 12px 16px;

    font-family: "DM Mono", monospace;

    font-size: 0.65rem;

    color: #888;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    min-height: 90vh;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.contact-top {
    display: flex;

    gap: 40px;

    align-items: center;

    margin-bottom: 70px;
}

.contact-main h2 {
    font-size: clamp(4rem, 9vw, 9rem);

    line-height: 0.85;

    letter-spacing: -0.08em;
}

.contact-main h2 em {
    color: #777;
    font-weight: 400;
}

.email-link {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    max-width: 100%;

    margin-top: 55px;

    font-size: clamp(1rem, 2vw, 1.5rem);

    color: #aaa;

    border-bottom: 1px solid #444;

    padding-bottom: 10px;

    transition: 0.3s;
}

.email-link:hover {
    color: #fff;

    border-color: #fff;
}

.social-links {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 80px;
}

.social-links a {
    border: 1px solid #292929;

    min-height: 46px;

    padding: 13px 18px;

    font-family: "DM Mono", monospace;

    font-size: 0.65rem;

    color: #777;

    display: flex;

    align-items: center;

    gap: 30px;

    transition: 0.3s;
}

.social-links a:hover {
    color: #fff;

    border-color: #666;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 30px 8vw;

    border-top: 1px solid #1c1c1c;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    font-family: "DM Mono", monospace;

    font-size: 0.6rem;

    color: #555;
}

.footer-logo {
    font-family: "Manrope", sans-serif;

    font-weight: 800;

    font-size: 1.2rem;

    color: #ddd;
}

footer p:nth-child(2) {
    text-align: center;
}

footer p:last-child {
    text-align: right;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .navbar {
        padding: 0 5vw;
    }

    .hero {
        grid-template-columns: 1fr;

        padding-top: 140px;

        gap: 80px;
    }

    .hero-right {
        order: 2;
    }

    .hero-title {
        font-size: clamp(5rem, 15vw, 8rem);
    }

    .section {
        padding: 120px 6vw;
    }

    .about-content {
        gap: 6vw;
    }

    .hire-content {
        gap: 6vw;
    }

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 850px) {

    .navbar {
        height: 75px;

        padding:
            0
            max(20px, 5vw);
    }

    .nav-links {
        position: fixed;

        top: 75px;
        left: 0;

        width: 100%;

        padding: 15px 5vw 25px;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        background: rgba(8,8,8,0.97);

        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);

        border-bottom: 1px solid #222;

        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 16px 5px;

        font-size: 0.75rem;

        border-bottom: 1px solid #1c1c1c;
    }

    .nav-links a:last-child {
        border-bottom: 0;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .menu-button {
        display: flex;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* ---------- Global ---------- */

    body {
        width: 100%;
    }

    .grid {
        background-size: 55px 55px;
    }

    .glow {
        width: 280px;
        height: 280px;

        filter: blur(90px);
    }

    .glow-one {
        right: -150px;
    }

    .glow-two {
        left: -150px;
    }


    /* ---------- Hero ---------- */

    .hero {
        min-height: auto;

        padding:
            125px
            20px
            80px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 65px;
    }

    .hero-left {
        width: 100%;
    }

    .availability {
        margin-bottom: 28px;

        font-size: 0.58rem;

        padding: 8px 11px;
    }

    .eyebrow {
        font-size: 0.58rem;
    }

    .hero-title {
        margin-top: 10px;
        margin-bottom: 25px;

        font-size: clamp(
            4.2rem,
            20vw,
            7rem
        );

        line-height: 0.83;

        letter-spacing: -0.085em;
    }

    .name-line.outline {
        -webkit-text-stroke: 0.8px #777;
    }

    .hero-role {
        font-size: 0.85rem;

        margin-bottom: 20px;
    }

    .hero-role span {
        width: 25px;
    }

    .hero-description {
        font-size: 0.82rem;

        line-height: 1.75;

        max-width: 100%;

        margin-bottom: 28px;
    }

    .hero-actions {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;

        min-height: 52px;

        padding: 14px 15px;

        gap: 10px;

        font-size: 0.62rem;
    }


    /* ---------- Profile ---------- */

    .hero-right {
        width: 100%;
    }

    .profile-wrapper {
        width: min(
            88vw,
            350px
        );
    }

    .profile-frame {
        width: 67%;
    }

    .floating-card {
        display: none;
    }

    .profile-caption {
        width: min(88vw, 350px);

        margin-top: 18px;

        font-size: 0.48rem;

        letter-spacing: 0.06em;
    }


    /* ---------- Marquee ---------- */

    .marquee {
        padding: 16px 0;
    }

    .marquee-track {
        gap: 20px;

        animation-duration: 20s;
    }

    .marquee span {
        font-size: 0.55rem;
    }


    /* ---------- Sections ---------- */

    .section {
        padding:
            85px
            20px;
    }

    .section-heading {
        grid-template-columns: 35px 1fr;

        gap: 15px;

        margin-bottom: 50px;
    }

    .section-number {
        font-size: 0.6rem;
    }

    .section-label {
        font-size: 0.55rem;

        letter-spacing: 0.13em;
    }

    .section-heading h2 {
        margin-top: 12px;

        font-size: clamp(
            2.8rem,
            14vw,
            5rem
        );

        line-height: 0.92;

        letter-spacing: -0.07em;
    }


    /* ---------- About ---------- */

    .about-content {
        display: flex;

        flex-direction: column;

        gap: 45px;

        margin: 0;
    }

    .about-intro p {
        font-size: clamp(
            1.55rem,
            7vw,
            2.2rem
        );

        line-height: 1.25;
    }

    .about-text {
        font-size: 0.78rem;

        line-height: 1.85;
    }

    .about-text p {
        margin-bottom: 20px;
    }

    .about-facts {
        margin-top: 35px;
    }

    .about-facts div {
        padding: 15px 0;
    }

    .about-facts strong {
        font-size: 0.68rem;
    }


    /* ---------- Skills ---------- */

    .skill-item {
        grid-template-columns: 35px 1fr;

        gap: 12px;

        padding: 23px 0;
    }

    .skill-item:hover {
        padding-left: 0;
    }

    .skill-number {
        font-size: 0.58rem;
    }

    .skill-name {
        font-size: 1.35rem;

        line-height: 1.2;
    }

    .skill-description {
        grid-column: 2;

        font-size: 0.67rem;

        line-height: 1.6;

        margin-top: -2px;
    }


    /* ---------- Confidence ---------- */

    .confidence-grid {
        grid-template-columns: 1fr;

        gap: 1px;
    }

    .confidence-card {
        min-height: 260px;

        padding: 28px 24px;
    }

    .confidence-top {
        font-size: 0.6rem;
    }

    .confidence-card h3 {
        font-size: 2rem;

        margin-bottom: 12px;
    }

    .confidence-card p {
        font-size: 0.72rem;

        line-height: 1.7;
    }

    .confidence-line {
        margin-top: 25px;
    }


    /* ---------- Hire ---------- */

    .hire-content {
        display: flex;

        flex-direction: column;

        gap: 55px;
    }

    .hire-text > p {
        font-size: 0.78rem;

        line-height: 1.8;

        margin-bottom: 28px;
    }

    .primary-button.large {
        width: 100%;

        padding: 17px 18px;
    }

    .service {
        grid-template-columns: 35px 1fr;

        gap: 12px;

        padding: 20px 0;
    }

    .service span {
        font-size: 0.58rem;
    }

    .service strong {
        font-size: 0.85rem;
    }

    .service small {
        grid-column: 2;

        font-size: 0.62rem;

        line-height: 1.5;
    }


    /* ---------- Journey ---------- */

    .timeline {
        width: 100%;

        margin: 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;

        gap: 12px;

        padding: 28px 0;
    }

    .timeline-year {
        font-size: 0.58rem;
    }

    .timeline-content h3 {
        font-size: 1.45rem;

        margin-bottom: 10px;
    }

    .timeline-content p {
        font-size: 0.73rem;

        line-height: 1.75;
    }


    /* ---------- Beyond ---------- */

    .beyond {
        padding-top: 25px;
    }

    .beyond-box {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 30px;

        padding: 35px 24px;

        background:
            radial-gradient(
                circle at 90% 10%,
                rgba(255,255,255,0.04),
                transparent 35%
            );
    }

    .beyond-number {
        font-size: 0.6rem;
    }

    .beyond-content h2 {
        font-size: clamp(
            2.8rem,
            13vw,
            4.5rem
        );

        line-height: 0.95;

        margin: 15px 0 25px;
    }

    .beyond-content > p:not(.section-label) {
        font-size: 0.72rem;

        line-height: 1.8;
    }

    .football-tag {
        margin-top: 25px;

        padding: 10px 13px;

        font-size: 0.58rem;
    }


    /* ---------- Contact ---------- */

    .contact {
        min-height: auto;

        padding-top: 100px;
        padding-bottom: 100px;
    }

    .contact-top {
        gap: 18px;

        margin-bottom: 55px;
    }

    .contact-main h2 {
        font-size: clamp(
            3.5rem,
            17vw,
            6rem
        );

        line-height: 0.87;
    }

    .email-link {
        display: flex;

        justify-content: space-between;

        width: 100%;

        margin-top: 40px;

        padding-bottom: 9px;

        font-size: 0.78rem;

        gap: 10px;

        word-break: break-word;
    }

    .social-links {
        width: 100%;

        flex-direction: column;

        gap: 8px;

        margin-top: 50px;
    }

    .social-links a {
        width: 100%;

        min-height: 48px;

        justify-content: space-between;

        padding: 14px 15px;

        font-size: 0.6rem;
    }


    /* ---------- Footer ---------- */

    footer {
        padding:
            25px
            20px;

        display: flex;

        flex-direction: column;

        gap: 12px;

        text-align: center;

        font-size: 0.53rem;
    }

    footer p:nth-child(2),
    footer p:last-child {
        text-align: center;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .hero-actions {
        grid-template-columns: 1fr;
    }

    .profile-wrapper {
        width: 85vw;
    }

    .section-heading {
        grid-template-columns: 28px 1fr;
        gap: 12px;
    }

    .section-heading h2 {
        font-size: 2.7rem;
    }

    .confidence-card {
        padding: 25px 20px;
    }

    .beyond-box {
        padding: 30px 20px;
    }

    .contact-main h2 {
        font-size: 3.3rem;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

}
/* =========================================================
   PROFILE LOGO
========================================================= */

.profile-logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-photo {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    overflow: hidden;

    border: 1px solid #333;

    background: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.logo-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(100%);

    transition: 0.4s ease;
}

.profile-logo:hover .logo-photo {
    transform: scale(1.08);
    border-color: #777;
}

.profile-logo:hover .logo-photo img {
    filter: grayscale(0%);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.logo-text span {
    color: #888;
}


/* =========================================================
   MOBILE PROFILE LOGO
========================================================= */

@media (max-width: 600px) {

    .profile-logo {
        gap: 9px;
    }

    .logo-photo {
        width: 34px;
        height: 34px;
    }

    .logo-text {
        font-size: 1.05rem;
    }

}