/* Shared design tokens and accessibility primitives. */
:root {
    --saffron: #f26722;
    --saffron-dark: #d84e0c;
    --gold: #f6ad2d;
    --forest: #155f32;
    --forest-deep: #0b3f24;
    --brown: #3a1609;
    --cream: #fff9ed;
    --warm-white: #fffdf8;
    --ink: #201813;
    --muted: #6c625a;
    --line: #eadfce;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(59, 29, 12, .12);
    --radius: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: clip; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--warm-white);
    font-family: Candara, Calibri, Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(242, 103, 34, .45); outline-offset: 4px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.inline-separator { display: inline-block; margin-inline: 2px; font-size: 13px; opacity: .72; transform: scale(.36); transform-origin: center; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; color: var(--white); background: var(--forest-deep); border-radius: 10px; text-decoration: none; transition: top .2s ease; }
.skip-link:focus { top: 16px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 54px; padding: 0 26px; border: 1px solid var(--saffron); border-radius: 999px; color: var(--white); background: linear-gradient(135deg, var(--saffron), #e45414); box-shadow: 0 14px 30px rgba(226, 82, 19, .24); font-weight: 800; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(226, 82, 19, .31); }
.button-small { min-height: 44px; padding-inline: 21px; }
.button-light { color: var(--forest-deep); border-color: var(--white); background: var(--white); box-shadow: 0 12px 30px rgba(0, 0, 0, .16); }
em { color: var(--saffron); font-style: normal; }

@media (max-width: 580px) {
    .container { width: min(100% - 28px, 1180px); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
