/* Theme: Ink - Day 9 (Letter I): Inspired by traditional calligraphy, fountain pens, handwritten letters, Japanese sumi-e, brushstrokes, manuscript paper, sepia tones, ink wells, vintage letterpress, artisan stationery */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Crimson+Pro:wght@300;400;500;600;700&display=swap');

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

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

body {
    font-family: 'Crimson Pro', serif;
    font-size: 19.5px;
    line-height: 1.85;
    color: #2b2419;
    background: linear-gradient(172deg, #faf8f5 0%, #f5f1ea 30%, #ebe5d8 65%, #f0ebe0 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 18% 25%, rgba(139, 109, 85, 0.04) 0%, transparent 55%),
        radial-gradient(circle at 82% 75%, rgba(101, 67, 33, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(139, 109, 85, 0.018) 1px, rgba(139, 109, 85, 0.018) 2px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1.5px solid rgba(139, 109, 85, 0.25);
    box-shadow: 0 1px 8px rgba(43, 36, 25, 0.08);
    transition: all 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}

#topnav.scrolled {
    background: rgba(250, 248, 245, 0.97);
    box-shadow: 0 3px 18px rgba(43, 36, 25, 0.12);
}

.nav-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 4.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 82px;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: #2b2419;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 3.2rem;
    font-style: italic;
}

.logo h1::before {
    content: '✒';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    color: #8b6d55;
    animation: inkDrip 5s ease-in-out infinite;
    font-style: normal;
}

@keyframes inkDrip {
    0%, 100% {
        opacity: 0.75;
        transform: translateY(-50%) rotate(-8deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) rotate(2deg);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.35rem;
}

.nav-menu li a {
    display: block;
    padding: 0.85rem 1.85rem;
    color: #2b2419;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.4px;
    border-radius: 1px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: #8b6d55;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 72%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #654321;
    background: rgba(139, 109, 85, 0.06);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #8b6d55 0%, #654321 100%);
    border: none;
    color: #faf8f5;
    font-size: 1.65rem;
    width: 56px;
    height: 56px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    box-shadow: 0 5px 18px rgba(139, 109, 85, 0.32);
}

.mobile-toggle:hover {
    transform: scale(1.06);
    box-shadow: 0 7px 24px rgba(139, 109, 85, 0.42);
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 148px 0 102px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -32%;
    right: -22%;
    width: 820px;
    height: 820px;
    background: radial-gradient(circle, rgba(139, 109, 85, 0.09) 0%, transparent 72%);
    border-radius: 50%;
    animation: inkFlow 42s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -28%;
    left: -18%;
    width: 780px;
    height: 780px;
    background: radial-gradient(circle, rgba(101, 67, 33, 0.08) 0%, transparent 72%);
    border-radius: 50%;
    animation: inkFlow 48s ease-in-out infinite reverse;
}

@keyframes inkFlow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.58;
    }
    33% {
        transform: translate(58px, -48px) rotate(12deg);
        opacity: 0.82;
    }
    66% {
        transform: translate(-42px, 52px) rotate(-10deg);
        opacity: 0.68;
    }
}

.hero-content {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 4.2rem;
    display: grid;
    grid-template-columns: 1.48fr 1fr;
    gap: 7.8rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: inkFade 1.42s cubic-bezier(0.4, 0, 0.2, 1) 0s both;
}

@keyframes inkFade {
    0% {
        opacity: 0;
        transform: translateY(78px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.85rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 2.95rem;
    color: #2b2419;
    letter-spacing: -0.8px;
    font-style: italic;
}

.hero-text h1 br {
    display: block;
}

.hero-subtitle {
    font-size: 1.68rem;
    color: #5a4a38;
    margin-bottom: 4.15rem;
    line-height: 1.72;
    font-weight: 400;
    letter-spacing: 0.15px;
}

.hero-buttons {
    display: flex;
    gap: 2.35rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1.48rem 3.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.18rem;
    letter-spacing: 0.6px;
    border-radius: 1px;
    font-family: 'Crimson Pro', serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    transform: translate(-50%, -50%);
    transition: width 0.78s, height 0.78s;
}

.btn:hover::before {
    width: 420px;
    height: 420px;
}

.btn-primary {
    background: linear-gradient(135deg, #8b6d55 0%, #654321 100%);
    color: #faf8f5;
    border: none;
    box-shadow: 0 16px 48px rgba(139, 109, 85, 0.35);
}

.btn-primary:hover {
    transform: translateY(-5.5px);
    box-shadow: 0 22px 62px rgba(139, 109, 85, 0.45);
}

.btn-secondary {
    background: transparent;
    color: #654321;
    border: 2.5px solid #8b6d55;
    box-shadow: 0 12px 38px rgba(139, 109, 85, 0.22);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #654321 0%, #4a3118 100%);
    color: #faf8f5;
    border-color: transparent;
    transform: translateY(-5.5px);
    box-shadow: 0 18px 52px rgba(101, 67, 33, 0.38);
}

.hero-image {
    animation: inkFade 1.42s cubic-bezier(0.4, 0, 0.2, 1) 0.32s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(28px);
    padding: 3.05rem;
    box-shadow: 
        0 0 0 1.5px rgba(139, 109, 85, 0.18),
        0 25px 78px rgba(43, 36, 25, 0.15);
    transition: all 0.52s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 1px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b6d55 0%, #654321 50%, #4a3118 100%);
}

.profile-card::after {
    content: '✒';
    position: absolute;
    bottom: 28px;
    right: 28px;
    font-size: 3.85rem;
    color: rgba(139, 109, 85, 0.08);
}

.profile-card:hover {
    transform: translateY(-16px) scale(1.025);
    box-shadow: 
        0 0 0 1.5px rgba(139, 109, 85, 0.32),
        0 38px 98px rgba(43, 36, 25, 0.22);
}

.profile-card img {
    width: 100%;
    margin-bottom: 2.45rem;
    box-shadow: 0 18px 52px rgba(43, 36, 25, 0.18);
    border-radius: 1px;
}

.profile-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.85rem;
    margin-bottom: 0.92rem;
    color: #2b2419;
    font-weight: 600;
    letter-spacing: -0.35px;
    font-style: italic;
}

.profile-details p {
    color: #5a4a38;
    margin-bottom: 2.55rem;
    line-height: 1.72;
    font-weight: 400;
}

.social-links a {
    display: inline-block;
    padding: 1.32rem 3.25rem;
    background: linear-gradient(135deg, #654321 0%, #4a3118 100%);
    color: #faf8f5;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.6px;
    transition: all 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    box-shadow: 0 14px 42px rgba(101, 67, 33, 0.32);
    font-family: 'Crimson Pro', serif;
}

.social-links a:hover {
    background: linear-gradient(135deg, #4a3118 0%, #3a2512 100%);
    transform: translateY(-4.5px);
    box-shadow: 0 18px 52px rgba(101, 67, 33, 0.42);
}

section {
    padding: 128px 0;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 4.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 6.85rem;
    position: relative;
}

.section-header::before {
    content: '~ ~ ~';
    position: absolute;
    top: -62px;
    left: 50%;
    transform: translateX(-50%);
    color: #8b6d55;
    font-size: 1.52rem;
    letter-spacing: 2.05rem;
    opacity: 0.65;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.05rem;
    font-weight: 600;
    line-height: 1.25;
    color: #2b2419;
    letter-spacing: -0.72px;
    position: relative;
    display: inline-block;
    font-style: italic;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 128px;
    height: 2.5px;
    background: #8b6d55;
}

#experience {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
}

.timeline {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 285px;
    top: 0;
    bottom: 0;
    width: 2.5px;
    background: linear-gradient(180deg, #8b6d55 0%, #654321 50%, #4a3118 100%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 565px 1fr;
    gap: 6.85rem;
    margin-bottom: 6.15rem;
    position: relative;
}

.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6.85rem;
    font-weight: 600;
    color: rgba(139, 109, 85, 0.22);
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 5.95rem;
    letter-spacing: -2.8px;
    font-style: italic;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -112px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    background: #8b6d55;
    border-radius: 50%;
    box-shadow: 
        0 0 0 9px rgba(250, 248, 245, 1),
        0 0 0 18px rgba(139, 109, 85, 0.16);
    animation: inkPulse 4.2s ease-in-out infinite;
}

@keyframes inkPulse {
    0%, 100% {
        box-shadow: 
            0 0 0 9px rgba(250, 248, 245, 1),
            0 0 0 18px rgba(139, 109, 85, 0.16);
        transform: translateY(-50%) scale(1);
    }
    50% {
        box-shadow: 
            0 0 0 9px rgba(250, 248, 245, 1),
            0 0 0 25px rgba(139, 109, 85, 0.26);
        transform: translateY(-50%) scale(1.15);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    padding: 3.45rem;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 16px 52px rgba(43, 36, 25, 0.10);
    position: relative;
    border-radius: 1px;
    border-left: 4px solid rgba(139, 109, 85, 0.25);
}

.timeline-content:hover {
    transform: translateX(15px);
    box-shadow: 0 25px 72px rgba(43, 36, 25, 0.16);
    border-left-color: #8b6d55;
    background: rgba(255, 255, 255, 0.94);
}

.timeline-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.65rem;
    margin-bottom: 0.82rem;
    color: #2b2419;
    font-weight: 600;
    letter-spacing: -0.32px;
    font-style: italic;
}

.timeline-content h4 {
    color: #8b6d55;
    font-size: 1.38rem;
    margin-bottom: 1.85rem;
    font-weight: 600;
}

.timeline-content p {
    color: #5a4a38;
    line-height: 1.85;
    margin: 0;
}

.timeline-content a {
    color: #654321;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content a:hover {
    border-bottom-color: #654321;
    color: #4a3118;
}

#ai {
    background: rgba(245, 241, 234, 0.52);
    backdrop-filter: blur(10px);
}

.ai-projects {
    display: grid;
    gap: 4.55rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 4.45rem;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 20px 62px rgba(43, 36, 25, 0.12);
    border-radius: 1px;
    border-top: 5px solid #8b6d55;
}

.project-card::after {
    content: '✒';
    position: absolute;
    top: 45px;
    right: 45px;
    font-size: 5.85rem;
    color: rgba(139, 109, 85, 0.06);
}

.project-card:hover {
    transform: translateY(-11px);
    box-shadow: 0 32px 88px rgba(43, 36, 25, 0.18);
    background: rgba(255, 255, 255, 0.96);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 2.15rem;
    margin-bottom: 1.68rem;
}

.project-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.45rem;
    color: #2b2419;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.48px;
    font-style: italic;
}

.project-client {
    color: #8b6d55;
    font-weight: 600;
    font-size: 1.28rem;
    margin-bottom: 2.78rem;
}

.project-card > p {
    color: #5a4a38;
    line-height: 1.85;
    margin-bottom: 3.35rem;
}

.project-impact {
    background: linear-gradient(135deg, rgba(139, 109, 85, 0.06) 0%, rgba(101, 67, 33, 0.06) 100%);
    padding: 2.52rem;
    color: #2b2419;
    line-height: 1.85;
    border-radius: 1px;
    border-left: 4px solid #654321;
}

.project-impact strong {
    color: #654321;
    font-weight: 600;
}

#speaking {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
}

.speaking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.55rem;
}

.year-section {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    padding: 3.85rem;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 16px 52px rgba(43, 36, 25, 0.10);
    border-radius: 1px;
    position: relative;
    border-top: 4px solid rgba(139, 109, 85, 0.25);
}

.year-section:hover {
    transform: translateY(-11px);
    box-shadow: 0 25px 72px rgba(43, 36, 25, 0.16);
    border-top-color: #8b6d55;
    background: rgba(255, 255, 255, 0.94);
}

.year-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.55rem;
    margin-bottom: 3.35rem;
    color: #2b2419;
    text-align: center;
    padding-bottom: 2.48rem;
    border-bottom: 3px solid rgba(139, 109, 85, 0.14);
    font-weight: 600;
    letter-spacing: -0.62px;
    font-style: italic;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #8b6d55 0%, #654321 50%, #4a3118 100%);
    border-top-color: #5a4a38;
}

.year-section.books h3 {
    color: #faf8f5;
    border-bottom-color: rgba(250, 248, 245, 0.22);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.78rem 0;
    color: #5a4a38;
    border-bottom: 2px solid rgba(43, 36, 25, 0.06);
    line-height: 1.85;
    position: relative;
    padding-left: 2.95rem;
}

.achievements li::before {
    content: '~';
    position: absolute;
    left: 0;
    top: 1.78rem;
    color: #8b6d55;
    font-size: 1.15rem;
}

.year-section.books .achievements li {
    color: rgba(250, 248, 245, 0.94);
    border-bottom-color: rgba(250, 248, 245, 0.16);
}

.year-section.books .achievements li::before {
    color: #ebe5d8;
}

.achievements li:last-child {
    border-bottom: none;
}

.achievements strong {
    color: #2b2419;
    font-weight: 600;
}

.year-section.books .achievements strong {
    color: #faf8f5;
}

#personal {
    background: rgba(245, 241, 234, 0.52);
    backdrop-filter: blur(10px);
}

#contact {
    background: linear-gradient(165deg, rgba(139, 109, 85, 0.05) 0%, rgba(101, 67, 33, 0.05) 100%);
    backdrop-filter: blur(10px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(30px);
    padding: 7.25rem 6.55rem;
    text-align: center;
    box-shadow: 0 32px 92px rgba(43, 36, 25, 0.14);
    max-width: 1320px;
    margin: 0 auto;
    border-radius: 1px;
    border: 3.5px solid rgba(139, 109, 85, 0.20);
}

.contact-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.85rem;
    margin-bottom: 3.35rem;
    color: #2b2419;
    font-weight: 600;
    letter-spacing: -0.82px;
    font-style: italic;
}

.contact-card > p {
    font-size: 1.58rem;
    color: #5a4a38;
    line-height: 1.85;
    margin-bottom: 5.55rem;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3.35rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.85rem;
    padding: 1.85rem 4.45rem;
    background: linear-gradient(135deg, #8b6d55 0%, #654321 100%);
    color: #faf8f5;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.6px;
    transition: all 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    box-shadow: 0 16px 52px rgba(139, 109, 85, 0.35);
    font-family: 'Crimson Pro', serif;
}

.contact-link:hover {
    background: linear-gradient(135deg, #654321 0%, #4a3118 100%);
    transform: translateY(-5.5px);
    box-shadow: 0 24px 68px rgba(139, 109, 85, 0.45);
}

.contact-link .icon {
    font-size: 2.28rem;
}

#footer {
    background: linear-gradient(135deg, #2b2419 0%, #1e1810 50%, #15100a 100%);
    padding: 5.55rem 0;
    text-align: center;
    color: rgba(250, 248, 245, 0.65);
    border-top: 3.5px solid #8b6d55;
}

#footer a {
    color: #8b6d55;
    text-decoration: none;
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

#footer a:hover {
    color: #654321;
}

@media screen and (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 5.65rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 595px;
        margin: 0 auto;
    }

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

    .year-section.books {
        grid-column: span 1;
    }
}

@media screen and (max-width: 900px) {
    .nav-container {
        padding: 0 2.78rem;
        height: 74px;
    }

    html {
        scroll-padding-top: 74px;
    }

    .nav-menu {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 3.75rem;
        gap: 0;
        box-shadow: 0 24px 62px rgba(43, 36, 25, 0.14);
        transform: translateY(-150%);
        transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1.5px solid rgba(139, 109, 85, 0.25);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.45rem;
        border-bottom: 1px solid rgba(43, 36, 25, 0.06);
    }

    .nav-menu li a::after {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 4.28rem;
    }

    .section-header h2 {
        font-size: 3.78rem;
    }

    .timeline::before {
        left: 45px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 3.65rem;
        margin-bottom: 6.15rem;
        padding-left: 7.65rem;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
    }

    .timeline-year::after {
        left: -112px;
        right: auto;
    }

    .contact-card {
        padding: 5.85rem 4.55rem;
    }
}

@media screen and (max-width: 600px) {
    .container {
        padding: 0 2.38rem;
    }

    .nav-container {
        padding: 0 2.38rem;
        height: 68px;
    }

    html {
        scroll-padding-top: 68px;
    }

    #hero {
        padding: 128px 0 92px;
    }

    .hero-text h1 {
        font-size: 3.35rem;
    }

    .hero-subtitle {
        font-size: 1.38rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 95px 0;
    }

    .section-header {
        margin-bottom: 5.65rem;
    }

    .section-header h2 {
        font-size: 3.15rem;
    }

    .profile-card {
        padding: 2.38rem;
    }

    .timeline-item {
        padding-left: 5.85rem;
    }

    .timeline-content {
        padding: 2.85rem;
    }

    .project-card {
        padding: 3.65rem 2.85rem;
    }

    .contact-card {
        padding: 5.35rem 2.85rem;
    }

    .contact-card h2 {
        font-size: 4.15rem;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-link {
        justify-content: center;
        padding: 1.52rem 2.85rem;
        font-size: 1.08rem;
    }
}