:root {
    --header-height: 50px;
    --bg: #f7f7f7;
    --paper: #fff;
    --accent: #111;
    --shadow: rgba(20, 20, 20, 0.18);
    --stamp: #d94f4f;
    scroll-behavior: smooth;
}

html {
    offset-anchor: 50px;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #333;
    height: 100%;
}

.section_header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    z-index: 100;
}

.section_header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    margin: 0;
}

.section_header p {
    text-transform: lowercase;
    font-style: italic;
    color: #888;
    margin: 0;
}

section {
    scroll-margin-top: var(--header-height);
}

@media (max-width: 768px) {
    .section_header {
        gap: 10px;
        padding: 10px 0;
    }
}
