:root{
    --paper:#f3efe7;
    --text:#111;
    --muted:#6d6d6d;
    --border:#d9d2c7;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    background:var(--paper);
    color:var(--text);
}

a{
    text-decoration:none;
    color:inherit;
}

nav{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(243,239,231,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border);
}

.nav-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:18px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-weight:700;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    color:var(--muted);
}

.hero{
    width:90%;
    max-width:760px;
    margin:auto;

    padding-top:140px;
    padding-bottom:60px;
}

.hero h1{
    font-size:4rem;
    line-height:1;
    letter-spacing:-3px;

    margin-bottom:24px;
}

.description{
    font-size:1.3rem;
    color:var(--muted);

    margin-bottom:24px;
}

.meta{
    color:var(--muted);
    font-size:.95rem;
}

.content{
    width:90%;
    max-width:760px;
    margin:auto;

    padding-bottom:120px;

    font-size:1.15rem;
    line-height:1.9;
}

.content p{
    margin-bottom:28px;
}

.content h2{
    margin-top:70px;
    margin-bottom:24px;

    font-size:2rem;
    letter-spacing:-1px;
}

.content blockquote{
    border-left:3px solid var(--text);

    padding-left:20px;

    margin:40px 0;

    font-size:1.3rem;
    font-weight:600;
}

footer{
    border-top:1px solid var(--border);

    padding:50px;

    text-align:center;

    color:var(--muted);
}
.content em{
    font-style:italic;
}