@font-face {
    font-family: 'Vivo';
    src: url('./fonts/vivo\ Sans\ SC\ L3.ttf.ttf');
}

:root {
    --dark: #1f1f1f;
    --light: #e0e0e0;
    --dark-text: #e0e0e0;
    --light-text: #1f1f1f;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
    font-family: 'Vivo', sans-serif;
    background: var(--dark);
    color: var(--dark-text);
}

body {
    min-height: 100vh;
}

.page-shell {
    width: 100%;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.2rem 5vw;
    background: rgba(31, 31, 31, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(224, 224, 224, 0.12);
}

.brand {
    font-size: 0.9rem;
    letter-spacing: 0.28rem;
    font-weight: 700;
    color: var(--dark-text);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.18rem;
    transition: opacity 0.2s ease;
}

.nav a:hover {
    opacity: 0.7;
}

.stack {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 5vw 4rem;
}

.dark-panel {
    background: var(--dark);
    color: var(--dark-text);
}

.light-panel {
    background: var(--light);
    color: var(--light-text);
}

h3 {
    margin: 0.8rem 0 0;
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1.5;
    letter-spacing: 0.04em;
    font-weight: 500;
    text-align: left;
}

.h3-s{
    font-size: clamp(0.8rem, 1.5vw, 1.4rem);
}

.dark-panel h3 {
    color: #f4f4f4;
}

.light-panel h3 {
    color: #0b0b0b;
}

.site-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #e0e0e0;
    color: #1f1f1f;
    padding: 0.85rem 0 1.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.08rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-footer span {
    width: 100%;
    max-width: calc(100vw / 14);
    text-align: center;
    font-size: 0.9rem;
}

.email-protect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    color: #1f1f1f;
}

.email-local,
.email-domain,
.email-tld {
    color: #1f1f1f;
}



.content-block-left,
.content-block-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.content-block-right {
    align-items: flex-end;
    justify-content: flex-end;
}

.stack-text {
    flex-direction: column;
    gap: 1rem;
}

.eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    width: auto;
    max-width: 100%;
}

.eyebrow {
    font-size: 1.1rem;
    letter-spacing: 0.18rem;
    color: #303030;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.95;
    white-space: nowrap;
    transform: translateY(-0.12em);
}

.eyebrow-line {
    display: block;
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
    height: 1px;
    background: #303030;
    opacity: 0.9;
}

.bio {
    margin: 0;
    font-size: clamp(3.8rem, 8vw, 11rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    font-weight: 700;
    text-align: left;
    color: inherit;
}

h2 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 9rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-align: left;
    color: inherit;
}

.at::before{
    content: '@';
}
.dot::before{
    content: '.';
}

.the-smile-is-as-hidden-as-monesy {
    color: rgba(255, 255, 255, 0)
}