:root {
    --color-brand: #2c1a0e;
    --color-cta: #e8a020;
    --font-main: Verdana, Geneva, Tahoma, sans-serif;
    --text-muted: #777;
    --border: #ccc;
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

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

img {
    display: block;
}

table {
    max-width: 100%;
}

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

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #333;
}

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

a:hover {
    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(--color-brand);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

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

li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    margin-bottom: 6px;
}

strong {
    font-weight: 700;
}

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

.btn-cta {
    display: inline-block;
    background: var(--color-cta);
    color: var(--color-brand);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cta:hover {
    background: #d4901a;
    text-decoration: none;
    color: var(--color-brand);
}

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

.text-muted {
    color: var(--text-muted);
    font-size: 14px;
}

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

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

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }

    .container {
        padding: 0 16px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
}