/* =========================================================
   KAMATE NTUYENABO — PERSONAL PORTFOLIO
   me.kamategroup.online
   ========================================================= */

:root {
    --blue-950: #071a3d;
    --blue-900: #0b2454;
    --blue-800: #0d3378;
    --blue-700: #1254b8;
    --blue-600: #1769e0;
    --blue-500: #2583f7;
    --blue-100: #eaf3ff;
    --blue-50: #f4f8ff;

    --white: #ffffff;
    --text: #12213a;
    --muted: #61708a;
    --border: #dce6f3;
    --surface: #f7faff;

    --shadow-sm: 0 8px 24px rgba(7, 35, 82, 0.07);
    --shadow-md: 0 18px 45px rgba(7, 35, 82, 0.12);
    --shadow-lg: 0 28px 70px rgba(7, 35, 82, 0.18);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1180px;
    --transition: 0.25s ease;
}

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

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

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

body {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

/* =========================================================
   GLOBAL
   ========================================================= */

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 105px 0;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 52px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--blue-100);
    color: var(--blue-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.section-label {
    margin-bottom: 7px;
    color: var(--blue-600);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading h2 {
    color: var(--blue-950);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.section-introduction {
    max-width: 720px;
    margin: -22px 0 45px;
    color: var(--muted);
    font-size: 1.05rem;
}

.lead-text {
    color: var(--blue-900);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.75;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 23px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 750;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition);
}

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

.btn-primary {
    background: var(--blue-600);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(23, 105, 224, 0.22);
}

.btn-primary:hover {
    background: var(--blue-700);
    box-shadow: 0 16px 35px rgba(23, 105, 224, 0.3);
}

.btn-secondary {
    border-color: var(--border);
    background: var(--white);
    color: var(--blue-800);
}

.btn-secondary:hover {
    border-color: #bdd1eb;
    background: var(--blue-50);
}

.btn-light {
    background: var(--white);
    color: var(--blue-800);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: var(--blue-50);
}

.btn-full {
    width: 100%;
}

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

.site-header {
    position: relative;
    background:
        radial-gradient(circle at 80% 18%, rgba(37, 131, 247, 0.15), transparent 28%),
        linear-gradient(135deg, #f8fbff 0%, #eef6ff 52%, #ffffff 100%);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(220, 230, 243, 0.75);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
}

.nav-container {
    width: min(100% - 40px, var(--container));
    min-height: 76px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: inline-flex;
    align-items: center;
    font-size: 1.45rem;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.brand-name {
    color: var(--blue-950);
}

.brand-dot {
    color: var(--blue-600);
}

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

.nav-link {
    position: relative;
    padding: 9px 12px;
    color: #53647e;
    font-size: 0.87rem;
    font-weight: 650;
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 3px;
    height: 2px;
    border-radius: 10px;
    background: var(--blue-600);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-link:hover {
    color: var(--blue-700);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-contact {
    margin-left: 7px;
    padding: 10px 17px;
    border-radius: 8px;
    background: var(--blue-600);
    color: var(--white);
}

.nav-contact::after {
    display: none;
}

.nav-contact:hover {
    color: var(--white);
    background: var(--blue-700);
}

.nav-toggle {
    display: none;
    width: 43px;
    height: 43px;
    padding: 9px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--white);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 5px;
    background: var(--blue-900);
}

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

.hero {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 80px 0 105px;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 80px;
}

.hero-content {
    max-width: 680px;
}

.hero-intro {
    margin-bottom: 5px;
    color: var(--blue-600);
    font-size: 1rem;
    font-weight: 750;
}

.hero-title {
    color: var(--blue-950);
    font-size: clamp(3.2rem, 7vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.hero-role {
    margin-top: 19px;
    color: var(--blue-700);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 650;
    letter-spacing: -0.025em;
}

.hero-description {
    max-width: 640px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
    margin-top: 28px;
}

.hero-links a {
    color: var(--blue-800);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-links a:hover {
    color: var(--blue-500);
}

.hero-image-wrapper {
    position: relative;
    justify-self: center;
    width: min(100%, 430px);
    aspect-ratio: 1 / 1;
}

.hero-image-decoration {
    position: absolute;
    width: 82%;
    height: 82%;
    top: 8%;
    right: -2%;
    border: 1px solid rgba(37, 131, 247, 0.25);
    border-radius: 38px;
    transform: rotate(7deg);
}

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 11px solid var(--white);
    border-radius: 40px;
    background: var(--blue-100);
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 75px;
}

.about-main {
    max-width: 780px;
}

.about-main p + p {
    margin-top: 18px;
}

.about-highlights {
    display: grid;
    gap: 15px;
}

.highlight-item {
    padding: 21px 23px;
    border-left: 3px solid var(--blue-500);
    border-radius: 0 12px 12px 0;
    background: var(--blue-50);
}

.highlight-item strong,
.highlight-item span {
    display: block;
}

.highlight-item strong {
    color: var(--blue-900);
    font-size: 0.95rem;
}

.highlight-item span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.84rem;
}

/* =========================================================
   SKILLS
   ========================================================= */

.skills-section {
    background: var(--surface);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.skill-group {
    min-height: 285px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.skill-group:hover {
    transform: translateY(-5px);
    border-color: #bdd2ed;
    box-shadow: var(--shadow-md);
}

.skill-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background: var(--blue-100);
    color: var(--blue-700);
    font-size: 0.85rem;
    font-weight: 850;
}

.skill-group h3 {
    color: var(--blue-950);
    font-size: 1.15rem;
}

.skill-group > p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.skill-list,
.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 19px;
}

.skill-list span,
.project-technologies span {
    padding: 5px 9px;
    border: 1px solid #d7e5f7;
    border-radius: 7px;
    background: var(--blue-50);
    color: var(--blue-800);
    font-size: 0.73rem;
    font-weight: 700;
}

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

.projects-section {
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #bdd2ed;
    box-shadow: var(--shadow-md);
}

.featured-project {
    border-color: #bdd4f2;
    background:
        linear-gradient(145deg, #ffffff 0%, #f3f8ff 100%);
}

.project-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
}

.project-category {
    color: var(--blue-600);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.project-status {
    padding: 4px 8px;
    border-radius: 20px;
    background: var(--blue-100);
    color: var(--blue-700);
    font-size: 0.68rem;
    font-weight: 800;
}

.project-card h3 {
    color: var(--blue-950);
    font-size: 1.45rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.project-card p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.9rem;
}

.project-problem {
    color: var(--blue-900) !important;
    font-weight: 550;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: auto;
    padding-top: 25px;
    color: var(--blue-700);
    font-size: 0.86rem;
    font-weight: 800;
}

.project-link span {
    transition: transform var(--transition);
}

.project-link:hover {
    color: var(--blue-500);
}

.project-link:hover span {
    transform: translateX(5px);
}

.projects-more {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

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

.education-section {
    background: var(--surface);
}

.timeline {
    position: relative;
    max-width: 850px;
    padding-left: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #d5e3f4;
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 6px;
    width: 15px;
    height: 15px;
    border: 3px solid var(--blue-600);
    border-radius: 50%;
    background: var(--white);
}

.timeline-content {
    padding: 27px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.timeline-date {
    color: var(--blue-600);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.timeline-content h3 {
    margin-top: 8px;
    color: var(--blue-950);
    font-size: 1.3rem;
}

.timeline-content h4 {
    margin-top: 4px;
    color: var(--blue-700);
    font-size: 0.95rem;
}

.timeline-content p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 0.9rem;
}

/* =========================================================
   ACHIEVEMENTS
   ========================================================= */

.achievements-section {
    background: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.achievement-card {
    min-height: 235px;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.achievement-year {
    color: var(--blue-600);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.achievement-card h3 {
    margin-top: 14px;
    color: var(--blue-950);
    font-size: 1.1rem;
    line-height: 1.35;
}

.achievement-card p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 0.84rem;
}

/* =========================================================
   CODE WITH KAMATE
   ========================================================= */

.content-section {
    padding: 55px 0;
    background: var(--surface);
}

.content-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 330px;
    padding: 55px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 20%, rgba(37, 131, 247, 0.45), transparent 28%),
        linear-gradient(135deg, var(--blue-950), var(--blue-800));
    box-shadow: var(--shadow-lg);
}

.content-banner-text {
    max-width: 680px;
}

.content-banner .section-label {
    color: #8fc1ff;
}

.content-banner h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.content-banner p {
    max-width: 610px;
    margin-top: 15px;
    color: #d9e8ff;
}

.content-banner .btn {
    margin-top: 27px;
}

.content-banner-mark {
    position: absolute;
    right: 7%;
    color: rgba(255, 255, 255, 0.09);
    font-family: monospace;
    font-size: 9rem;
    font-weight: 900;
}

/* =========================================================
   BLOG
   ========================================================= */

.blog-section {
    background: var(--white);
}

.blog-preview {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.blog-card {
    max-width: 800px;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--blue-50);
}

.blog-category {
    color: var(--blue-600);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-card h3 {
    margin-top: 12px;
    color: var(--blue-950);
    font-size: 1.5rem;
}

.blog-card p {
    max-width: 680px;
    margin-top: 10px;
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--blue-700);
    font-size: 0.86rem;
    font-weight: 800;
}

.text-link:hover {
    color: var(--blue-500);
}

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

.contact-section {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: start;
}

.contact-introduction > p + p {
    margin-top: 17px;
}

.contact-details {
    display: grid;
    gap: 13px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.contact-label {
    color: var(--blue-600);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-item > span:last-child {
    color: var(--blue-900);
    font-size: 0.88rem;
    font-weight: 650;
}

.contact-item:hover > span:last-child {
    color: var(--blue-500);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 27px;
}

.social-links a {
    color: var(--blue-700);
    font-size: 0.82rem;
    font-weight: 750;
}

.social-links a:hover {
    color: var(--blue-500);
}

.contact-form-wrapper {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: var(--blue-900);
    font-size: 0.82rem;
    font-weight: 750;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 9px;
    outline: none;
    background: var(--white);
    color: var(--text);
    padding: 13px 14px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-group input {
    height: 49px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa8bc;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(37, 131, 247, 0.1);
}

/* =========================================================
   CV REQUEST
   ========================================================= */

.cv-request-section {
    padding: 55px 0;
    background: var(--blue-950);
}

.cv-request {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 55px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(18, 84, 184, 0.55), rgba(11, 36, 84, 0.8));
}

.cv-request .section-label {
    color: #8fc1ff;
}

.cv-request h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.15;
}

.cv-request p {
    margin-top: 9px;
    color: #cbdcf5;
}

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

.site-footer {
    padding: 55px 0 25px;
    background: #06142e;
    color: #b9c8de;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 45px;
}

.footer-brand {
    max-width: 390px;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.84rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 17px;
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 650;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    color: #8496b1;
}

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

@media (max-width: 1050px) {

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container {
        gap: 45px;
    }

    .hero-title {
        font-size: clamp(3rem, 7vw, 4.8rem);
    }

    .contact-grid {
        gap: 45px;
    }
}

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

@media (max-width: 820px) {

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 76px;
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: var(--blue-50);
    }

    .nav-contact {
        margin-left: 0;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 760px;
        margin-inline: auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-links {
        justify-content: center;
    }

    .hero-image-wrapper {
        width: min(100%, 350px);
        grid-row: 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .content-banner-mark {
        opacity: 0.5;
    }

    .cv-request {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .footer-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

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

@media (max-width: 600px) {

    .container,
    .nav-container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 75px 0;
    }

    .hero {
        min-height: auto;
        padding: 65px 0 80px;
    }

    .hero-title {
        font-size: clamp(2.65rem, 14vw, 4rem);
    }

    .hero-role {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-image-wrapper {
        width: min(100%, 290px);
    }

    .hero-image {
        border-width: 8px;
        border-radius: 28px;
    }

    .hero-image-decoration {
        border-radius: 28px;
    }

    .section-heading {
        gap: 13px;
        margin-bottom: 38px;
    }

    .section-number {
        min-width: 37px;
        height: 37px;
        font-size: 0.68rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .skills-grid,
    .projects-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .skill-group,
    .project-card,
    .achievement-card {
        min-height: auto;
    }

    .content-banner {
        padding: 35px 27px;
        min-height: 350px;
    }

    .content-banner-mark {
        right: 0;
        bottom: 0;
        font-size: 6rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .cv-request {
        padding: 35px 27px;
    }

    .cv-request .btn {
        width: 100%;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
