:root {
    --color-ink: #332622;
    --color-muted: #756761;
    --color-surface: #ffffff;
    --color-paper: #fff8ed;
    --color-cream: #f6ead8;
    --color-warm: #f9efe1;
    --color-line: #ead8c5;
    --color-brand: #b9342b;
    --color-brand-dark: #86241f;
    --color-brand-soft: #f6ded7;
    --color-gold: #b78143;
    --shadow-soft: 0 18px 44px rgba(114, 50, 34, 0.1);
    --shadow-card: 0 12px 30px rgba(114, 50, 34, 0.07);
    --font-sans: Arial, Helvetica, sans-serif;
    --container: 1160px;
    --space-page: clamp(20px, 5vw, 52px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-paper);
    color: var(--color-ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.75;
}

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

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

.skip-link:focus {
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: var(--color-brand-dark);
    color: var(--color-surface);
}
