:root {
    --tc-container: 1240px;
    --tc-gutter: clamp(1rem, 3vw, 2rem);
    --tc-text: #202020;
    --tc-muted: #6d6a66;
    --tc-border: #e6e2dd;
    --tc-surface: #fff;
    --tc-soft: #f7f5f2;
    --tc-brand: #19191b;
    --tc-accent: #c9a06c;
    --tc-radius: 2px;
    --tc-logo-width: 150px;
    --tc-shadow: 0 14px 36px rgb(20 18 16 / 8%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--tc-text);
    background: var(--tc-surface);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; }
img { vertical-align: middle; }
a { color: inherit; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--tc-accent); outline-offset: 3px; }
::selection { background: color-mix(in srgb, var(--tc-accent) 40%, white); }

.tc-skip-link {
    position: fixed;
    z-index: 99999;
    top: .5rem;
    left: .5rem;
    padding: .75rem 1rem;
    transform: translateY(-200%);
    background: #fff;
    color: #000;
    border: 1px solid #000;
}
.tc-skip-link:focus { transform: none; }
