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

html {
    overflow-x: hidden;
}

:root {
    --font-main: Bahnschrift, 'Arial Black', 'Helvetica Neue', sans-serif;
    --color-brand: #7c2d12;
    --color-cta: #f5a623;
    --text-dark: #2d2319;
    --text-muted: #8a7b6b;
    --border: #e8e0d8;
    --bg-light: #faf7f4;
    --bg-white: #ffffff;
}

* {
    font-family: var(--font-main);
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

table {
    max-width: 100%;
    width: 100%;
    border-collapse: collapse;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 16px 0;
    color: var(--color-brand);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

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

a:hover {
    text-decoration: underline;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    border-radius: 6px;
}

.btn:hover {
    text-decoration: none;
}

.btn-cta {
    background-color: var(--color-cta);
    color: #1a1510;
}

.btn-cta:hover {
    background-color: #d8911d;
    color: #1a1510;
}

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

.btn-brand {
    background-color: var(--color-brand);
    color: #fff;
}

.btn-brand:hover {
    background-color: #632410;
    color: #fff;
}

ul, ol {
    padding-left: 24px;
    margin: 0 0 16px 0;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

img {
    display: block;
}

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

th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    line-height: 1.6;
}

th {
    font-weight: 700;
    color: var(--color-brand);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

select, input, textarea {
    font-family: var(--font-main);
    font-size: 1rem;
}

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

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 16px;
    }
}