:root {
    --purple: #7B4A2D;
    --purple-dark: #5C3320;
    --purple-light: rgba(123, 74, 45, 0.12);
    --navy: #2C1A0E;
    --navy-soft: rgba(44, 26, 14, 0.6);
    --white: #ffffff;
    --bg: #FDF6EE;
    --card: #ffffff;
    --border: rgba(123, 74, 45, 0.18);
    --cream: #F5E6D3;
    --mocha: #A0622A;
    --espresso: #3B1F0C;
    --latte: #D4A97A;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--navy);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 6%;
    background: rgba(253, 246, 238, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
}

    .logo span {
        color: var(--purple);
        font-size: 28px;
        line-height: 0;
    }

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

    .nav-links a {
        font-family: 'Syne', sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: var(--navy-soft);
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: color 0.3s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--purple);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--purple);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-cta {
    background: var(--purple);
    color: white;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

    .nav-cta:hover {
        background: var(--purple-dark);
        transform: translateY(-1px);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: 0.3s;
    }

/* ── HERO ── */
#home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 6% 60px;
    position: relative;
    overflow: hidden;
}

    #home::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(123,74,45,0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    #home::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(123,74,45,0.10) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple);
    background: var(--purple-light);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: -1px;
    margin-bottom: 10px;
    animation: fadeUp 0.8s 0.15s ease forwards;
    opacity: 0;
}

    .hero-title .accent {
        color: var(--purple);
    }

.hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--navy-soft);
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.25s ease forwards;
    opacity: 0;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.85;
    color: var(--navy-soft);
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s 0.35s ease forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease forwards;
    opacity: 0;
}

.btn-primary {
    background: var(--navy);
    color: white;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

    .btn-primary:hover {
        background: var(--purple);
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    color: var(--purple);
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid var(--purple);
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

    .btn-outline:hover {
        background: var(--purple);
        color: white;
        transform: translateY(-2px);
    }

.hero-socials {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    animation: fadeUp 0.8s 0.55s ease forwards;
    opacity: 0;
}

    .hero-socials a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy-soft);
        font-size: 16px;
        text-decoration: none;
        transition: 0.3s;
    }

        .hero-socials a:hover {
            border-color: var(--purple);
            color: var(--purple);
            transform: translateY(-2px);
        }

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeRight 1s 0.2s ease forwards;
    opacity: 0;
}

.avatar-ring {
    position: relative;
    width: 340px;
    height: 340px;
}

    .avatar-ring::before {
        content: '';
        position: absolute;
        inset: -12px;
        border-radius: 50%;
        border: 3px dashed rgba(123,74,45,0.3);
        animation: spin 20s linear infinite;
    }

    .avatar-ring::after {
        content: '';
        position: absolute;
        inset: -24px;
        border-radius: 50%;
        border: 2px dashed rgba(123,74,45,0.15);
        animation: spin 30s linear infinite reverse;
    }

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(160,98,42,0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    color: var(--purple);
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
    border: 3px solid rgba(123,74,45,0.2);
    border-radius: 50%;
    overflow: hidden;
}
.avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.floating-badge {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 8px 30px rgba(44,26,14,0.12);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 1px solid var(--border);
}

    .floating-badge .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #22c55e;
    }

.badge-1 {
    top: 20px;
    right: -30px;
    animation: float 3s ease-in-out infinite;
}

.badge-2 {
    bottom: 40px;
    left: -40px;
    animation: float 3s 1.5s ease-in-out infinite;
}

.badge-3 {
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    animation: float 3s 0.8s ease-in-out infinite;
}

/* ── SECTIONS SHARED ── */
section {
    padding: 100px 6%;
}

.section-label {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

    .section-title .accent {
        color: var(--purple);
    }

.section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--navy-soft);
    max-width: 600px;
    margin-bottom: 60px;
}

/* ── ABOUT ── */
#about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.about-left h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-soft);
    margin-bottom: 8px;
}

.about-left .about-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.1;
}

    .about-left .about-name span {
        color: var(--purple);
    }

.about-left p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--navy-soft);
    margin-bottom: 16px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--purple-light);
    color: var(--purple);
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 40px;
    margin-top: 10px;
    text-decoration: none;
}

    .contact-pill:hover {
        background: var(--purple);
        color: white;
    }

    .timeline-section h3 {
        font-family: 'Syne', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .timeline-section h3 i {
            color: var(--purple);
            font-size: 16px;
        }

.timeline {
    position: relative;
    padding-left: 28px;
    margin-bottom: 44px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--purple), rgba(123,74,45,0.1));
        border-radius: 2px;
    }

.tl-item {
    position: relative;
    margin-bottom: 28px;
    padding: 18px 20px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s;
}

    .tl-item:hover {
        box-shadow: 0 8px 30px rgba(123,74,45,0.12);
        transform: translateX(4px);
    }

    .tl-item::before {
        content: '';
        position: absolute;
        left: -24px;
        top: 22px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--purple);
        border: 3px solid white;
        box-shadow: 0 0 0 2px var(--purple);
    }

.tl-period {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 4px;
}

.tl-role {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.tl-company {
    font-size: 13px;
    color: var(--navy-soft);
}

/* Skills */
.skills-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-chip {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 40px;
    background: var(--purple-light);
    color: var(--purple);
    border: 1px solid rgba(123,74,45,0.2);
    transition: 0.3s;
    cursor: default;
}

    .skill-chip:hover {
        background: var(--purple);
        color: white;
        transform: translateY(-2px);
    }

/* Links */
.links-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 18px;
    text-decoration: none;
    color: var(--navy);
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

    .link-card i {
        color: var(--purple);
    }

    .link-card:hover {
        border-color: var(--purple);
        background: var(--purple-light);
        transform: translateY(-2px);
    }

/* ── PROJECTS ── */
#projects {
    background: var(--bg);
}

.projects-header {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
}

.project-thumb {
    height: 100%;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.project-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    max-height: 110px; 
    overflow: hidden;
    transition: max-height 0.7s ease;
}

.project-desc,
.project-client,
.project-tags {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card:hover .project-body {
    max-height: 100%; 
}


.project-card:hover .project-desc,
.project-card:hover .project-client,
.project-card:hover .project-tags {
    -webkit-line-clamp: unset;
}
.thumb-1 {
    background: linear-gradient(135deg, #7B4A2D, #A0622A);
}

.thumb-2 {
    background: linear-gradient(135deg, #5C3320, #8B5E3C);
}

.thumb-3 {
    background: linear-gradient(135deg, #A0622A, #D4A97A);
}

.thumb-4 {
    background: linear-gradient(135deg, #3B1F0C, #7B4A2D);
}

.thumb-5 {
    background: linear-gradient(135deg, #C17F3A, #E8B97A);
}

.thumb-6 {
    background: linear-gradient(135deg, #8B5E3C, #C9956A);
}

.project-emoji {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.project-body {
    padding: 22px 24px 28px;
}

.project-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.project-tag {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--purple-light);
    color: var(--purple);
}

.project-name {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.project-client {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.project-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--navy-soft);
    margin-bottom: 18px;
}

.project-links {
    display: flex;
    gap: 10px;
}

.proj-link {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

    .proj-link:hover {
        color: var(--purple-dark);
    }

/* ── CONTACT / FOOTER ── */
#contact {
    background: var(--espresso);
    padding: 100px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    #contact::before {
        content: '';
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(123,74,45,0.3) 0%, transparent 70%);
        pointer-events: none;
    }

    #contact .section-label {
        color: var(--latte);
    }

    #contact .section-title {
        color: white;
    }

    #contact .section-desc {
        color: rgba(255,255,255,0.5);
        margin: 0 auto 50px;
    }

.contact-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    transition: 0.3s;
}

    .contact-card:hover {
        background: rgba(123,74,45,0.3);
        border-color: rgba(160,98,42,0.5);
        transform: translateY(-4px);
    }

    .contact-card i {
        font-size: 24px;
        color: var(--latte);
    }

    .contact-card span {
        font-family: 'Syne', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: rgba(255,255,255,0.5);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .contact-card a {
        color: white;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
    }

        .contact-card a:hover {
            color: var(--latte);
        }

.footer-socials {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

    .footer-socials a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.6);
        font-size: 17px;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-socials a:hover {
            border-color: var(--latte);
            color: var(--latte);
            transform: translateY(-2px);
        }

.footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
}

    .footer-copy span {
        color: var(--purple);
    }

    /* NEW: 2-column layout */
.contact-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* LEFT: FORM */
.contact-form {
    flex: 1;
    max-width: 500px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--latte);
    background: rgba(255,255,255,0.1);
}

.contact-form textarea {
    min-height: 140px;
    resize: none;
}

/* BUTTON */
.contact-form button {
    background: var(--latte);
    color: black;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #fff;
    transform: translateY(-2px);
}

.contact-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-right .contact-cards {
    flex-direction: flex;
    align-items: center;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form,
    .contact-right {
        width: 100%;
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.mobile-menu {
    display: flex; 
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 238, 0.97);
    backdrop-filter: blur(20px);
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
    width: 50%;
    height: 100vh;
    transform: translateX(100%);
    padding-top: 100px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}
    .mobile-menu a {
        font-family: 'Syne', sans-serif;
        font-size: 12px;
        font-weight: 750;
        padding-left: 20px;
        color: var(--navy);
        text-decoration: none;
        transition: color 0.2s;
    }

      .mobile-menu b {
        font-family: 'Syne', sans-serif;
        font-size: 12px;
        font-weight: 800;
        padding-left: 20px;
        color: var(--navy);
        text-decoration: none;
        transition: color 0.2s;
    }
    
    .mobile-menu a:hover {
        color: var(--purple);
    }


    .mobile-close {
    position: absolute;
    top: 20px;
    left: 0;         
    width: 100%;     
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0 20px 0 0;  
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--navy);
    }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-socials {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
        order: -1;
    }

    .avatar-ring {
        width: 240px;
        height: 240px;
    }

    .avatar-inner {
        font-size: 4rem;
    }

    .badge-1, .badge-2, .badge-3 {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    section {
        padding: 70px 5%;
    }

    #home {
        padding: 100px 5% 50px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 320px;
    }
}
