:root {
    --color-brand: #92400e;
    --color-cta: #16a34a;
    --font-main: 'Trebuchet MS', Helvetica, sans-serif;
    --text-dark: #222;
    --text-muted: #666;
    --border: #ddd;
    --bg-light: #f8f5f2;
}

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

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

table {
    max-width: 100%;
}

.table-wrapper,
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

a:hover,
a:focus {
    text-decoration: underline;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 16px;
    color: var(--text-dark);
}

p {
    margin: 0 0 16px;
    line-height: 1.6;
}

ul, ol {
    padding-left: 20px;
    line-height: 1.6;
}

li {
    margin-bottom: 8px;
}

.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;
}

.btn-cta {
    display: inline-block;
    background-color: var(--color-cta);
    color: #fff;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.btn-cta:hover,
.btn-cta:focus {
    background-color: #15803d;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
    text-decoration: none;
    outline: 2px solid #15803d;
    outline-offset: 2px;
}

:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .grid,
    [class*='grid'] {
        grid-template-columns: 1fr;
    }
}