:root {
    --zv-sand: #f5efeb;
    --zv-sand-2: #efe5df;
    --zv-rose: #d77c88;
    --zv-copper: #e8a38b;
    --zv-berry: #8c2f54;
    --zv-berry-dark: #6b2140;
    --zv-ink: #1d1722;
    --zv-muted: #6e6571;
    --zv-white: #ffffff;
    --zv-border: rgba(29, 23, 34, 0.08);
    --zv-shadow: 0 18px 50px rgba(76, 26, 48, 0.10);
    --zv-radius: 24px;
    --zv-radius-sm: 16px;
    --zv-container: min(1240px, calc(100vw - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--zv-ink);
    background: linear-gradient(180deg, var(--zv-sand) 0%, #fbf7f4 100%);
    font-family: Inter, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--zv-berry);
    text-decoration: none;
}

a:hover {
    color: var(--zv-berry-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.8rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.08;
}

p,
ul,
ol,lockquote {
    margin: 0 0 1rem;
}

ul,
ol {
    padding-left: 1.2rem;
}

.zv-container {
    width: var(--zv-container);
    margin-inline: auto;
}

.section-space {
    padding: 4.5rem 0;
}

.section-surface {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(6px);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    clip: auto;
    padding: 0.75rem 1rem;
    background: var(--zv-ink);
    color: var(--zv-white);
    z-index: 999;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}
