/* Minification failed. Returning unminified contents.
(42,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(43,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(44,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(55,17): run-time error CSS1039: Token not allowed after unary operator: '-text'
(72,22): run-time error CSS1039: Token not allowed after unary operator: '-muted-bg'
(80,35): run-time error CSS1039: Token not allowed after unary operator: '-border'
(100,17): run-time error CSS1039: Token not allowed after unary operator: '-text'
(173,28): run-time error CSS1039: Token not allowed after unary operator: '-text'
(176,17): run-time error CSS1039: Token not allowed after unary operator: '-text'
(181,32): run-time error CSS1039: Token not allowed after unary operator: '-border'
 */
/*body {
    padding-top: 50px;
    padding-bottom: 20px;
}*/

/* Set padding to keep content from hitting the edges */
/*.body-content {
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
/*.dl-horizontal dt {
    white-space: normal;
}*/

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}

.alignleft {
    text-align: left;
    float: left;
    margin-right: 15px;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    margin: 0 0 10px;
}*/
:root {
    --text: #1a1a1a;
    --muted-bg: #f2f3f5;
    --border: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.75;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.75rem;
}

.section {
    padding: 5.5rem 0;
}

.muted {
    background: var(--muted-bg);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}

nav a {
    margin-left: 2rem;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--text);
}

/* Hero */
.hero {
    padding: 7rem 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.8rem;
}

.hero p {
    margin-top: 1.75rem;
    max-width: 520px;
}

.hero-image img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

/* Services */
h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    margin-top: 3.5rem;
}

.service h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

/* Experience */
.section-intro {
    max-width: 600px;
    margin-top: 1.5rem;
}

.experience-list {
    margin-top: 2.5rem;
    list-style: none;
}

    .experience-list li {
        margin-bottom: 0.75rem;
    }

/* Contact */
.contact {
    text-align: center;
}

.contact-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.6rem;
    border: 1px solid var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--text);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-image {
        margin-top: 3rem;
    }
}
