/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', 'URW Palladio L', 'Century Schoolbook L', serif;
    line-height: 1.65;
    color: #1f1f1f;
    background-color: #fefefe;
    font-size: 15px;
}

/* Container - 80% width, centered */
.container {
    width: 80%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
nav {
    padding: 30px 0 18px 0;
    margin-bottom: 45px;
    position: relative;
}

nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #1f1f1f;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: normal;
    text-decoration: none;
    color: #1f1f1f;
    letter-spacing: 2.5px;
    position: relative;
    padding-left: 16px;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5px;
    height: 20px;
    background: #1f1f1f;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: #1f1f1f;
    text-decoration: none;
    font-size: 11px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover {
    opacity: 0.6;
}

.nav-links a:last-child {
    margin-left: 18px;
    padding-left: 18px;
    border-left: 1px solid #e8e8e8;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
}

/* Hero Section */
.hero {
    padding: 0 0 60px 0;
    text-align: left;
    position: relative;
    margin-bottom: 12px;
}

.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 70px;
    background: #e8e8e8;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 14px;
    font-weight: normal;
    color: #1f1f1f;
    line-height: 1.2;
    letter-spacing: -0.3px;
    padding-left: 28px;
    position: relative;
}

.hero h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 42px;
    background: #1f1f1f;
}

.hero .subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
    font-weight: normal;
    font-style: normal;
    padding-left: 28px;
    letter-spacing: 0.2px;
}

.hero .description {
    font-size: 15px;
    color: #444;
    margin: 28px 0 20px 0;
    max-width: 680px;
    line-height: 1.75;
    padding-left: 28px;
    border-left: none;
}

.hero .description:last-of-type {
    margin-bottom: 32px;
}

.hero-meta {
    padding-left: 32px;
    margin: 28px 0;
    max-width: 680px;
}

.hero-meta .meta-item {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.hero-meta .meta-label {
    color: #888;
    font-weight: normal;
    margin-right: 8px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.hero .links {
    margin-top: 32px;
    padding-left: 28px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero .links a {
    color: #1f1f1f;
    text-decoration: none;
    font-size: 10px;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: all 0.3s ease;
}

.hero .links a::before {
    display: none;
}

.hero .links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #1f1f1f;
    transition: width 0.3s ease;
}

.hero .links a:hover::after {
    width: 100%;
}

/* Sections */
.section {
    padding: 45px 0;
    clear: both;
}

.section h2 {
    font-size: 11px;
    margin-bottom: 28px;
    font-weight: normal;
    color: #888;
    letter-spacing: 2.5px;
    position: relative;
    display: block;
    text-transform: uppercase;
}

.section h2::before {
    display: none;
}

.section h2::after {
    display: none;
}

.section h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: normal;
    color: #1f1f1f;
    letter-spacing: 0px;
    line-height: 1.3;
}

.section p {
    margin-bottom: 16px;
    color: #444;
    text-align: left;
    line-height: 1.75;
    max-width: 750px;
    font-size: 15px;
}

.section ul {
    margin-left: 32px;
    margin-bottom: 24px;
    list-style: none;
    max-width: 750px;
}

.section ul li {
    margin-bottom: 12px;
    color: #444;
    position: relative;
    padding-left: 22px;
    line-height: 1.7;
    font-size: 15px;
}

.section ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #999;
    font-size: 18px;
    line-height: 1;
}

/* Experience */
.experience-item {
    margin-bottom: 38px;
    padding-bottom: 38px;
    position: relative;
    padding-left: 24px;
    border-left: 1.5px solid #e8e8e8;
}

.experience-item:last-child {
    padding-bottom: 0;
    border-left: none;
    padding-left: 0;
}

.experience-item h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-style: normal;
    font-size: 19px;
    text-transform: none;
    letter-spacing: 0px;
}

.company {
    color: #666;
    font-style: italic;
    margin-bottom: 6px;
    font-size: 15px;
    text-transform: none;
}

.period {
    color: #888;
    font-size: 13px;
    margin-bottom: 14px;
    font-style: italic;
    display: inline-block;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

/* Projects */
.project-item {
    margin-bottom: 38px;
    padding-bottom: 38px;
    position: relative;
    padding-left: 24px;
    border-left: 1.5px solid #e8e8e8;
}

.project-item:last-child {
    padding-bottom: 0;
    border-left: none;
    padding-left: 0;
}

.project-item h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 19px;
    text-transform: none;
    letter-spacing: 0px;
}

.project-item h3 a {
    color: #1f1f1f;
    text-decoration: none;
}

.project-item h3 a:hover {
    text-decoration: underline;
}

.project-meta {
    color: #888;
    font-size: 13px;
    margin-bottom: 12px;
    font-style: italic;
    text-transform: none;
}

/* Blogs */
.blog-item {
    margin-bottom: 38px;
    padding-bottom: 38px;
    position: relative;
    padding-left: 24px;
    border-left: 1.5px solid #e8e8e8;
}

.blog-item:last-child {
    padding-bottom: 0;
    border-left: none;
    padding-left: 0;
}

.blog-item h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 19px;
    text-transform: none;
    letter-spacing: 0px;
}

.blog-item h3 a {
    color: #1f1f1f;
    text-decoration: none;
}

.blog-item h3 a:hover {
    text-decoration: underline;
}

.blog-meta {
    color: #888;
    font-size: 13px;
    margin-bottom: 12px;
    font-style: italic;
    text-transform: none;
}

/* Links */
a {
    color: #1f1f1f;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 45px 0;
    margin-top: 55px;
    text-align: center;
}

footer p {
    color: #888;
    font-size: 12px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 20px;
    }
    
    nav {
        padding: 28px 0 16px 0;
        margin-bottom: 40px;
    }
    
    nav::after {
        width: 40px;
    }
    
    nav .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .logo {
        padding-left: 14px;
        font-size: 20px;
    }
    
    .logo::before {
        width: 2px;
        height: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
        padding-left: 14px;
    }
    
    .nav-links a:last-child {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 6px;
        padding-top: 6px;
        border-top: 1px solid #e8e8e8;
        width: 100%;
    }
    
    .hero {
        padding: 0 0 60px 0;
        margin-bottom: 12px;
    }
    
    .hero::before {
        height: 60px;
    }
    
    .hero h1 {
        font-size: 36px;
        padding-left: 24px;
        margin-bottom: 14px;
    }
    
    .hero h1::before {
        width: 2px;
        height: 36px;
    }
    
    .hero .subtitle {
        padding-left: 24px;
        margin-bottom: 8px;
        font-size: 15px;
    }
    
    .hero .description {
        padding-left: 24px;
        margin: 28px 0 20px 0;
        font-size: 15px;
    }
    
    .hero .description:last-of-type {
        margin-bottom: 32px;
    }
    
    .hero-meta {
        padding-left: 24px;
        margin: 24px 0;
    }
    
    .hero .links {
        padding-left: 24px;
        margin-top: 32px;
        flex-direction: column;
        gap: 14px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section h2 {
        font-size: 11px;
        margin-bottom: 28px;
    }
    
    .section h3 {
        margin-top: 24px;
        margin-bottom: 12px;
        font-size: 19px;
    }
    
    .section p {
        margin-bottom: 16px;
        font-size: 14px;
    }
    
    .section ul {
        margin-left: 28px;
        margin-bottom: 24px;
    }
    
    .section ul li {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .experience-item {
        margin-bottom: 36px;
        padding-bottom: 36px;
        padding-left: 22px;
    }
    
    .experience-item h3 {
        font-size: 18px;
    }
    
    .project-item,
    .blog-item {
        margin-bottom: 36px;
        padding-bottom: 36px;
        padding-left: 22px;
    }
    
    .project-item h3,
    .blog-item h3 {
        font-size: 18px;
    }
    
    footer {
        padding: 40px 0;
        margin-top: 50px;
    }
}
