/* ===== GLOBAL STYLES - La Casa Tacos ===== */
/* System fonts only - no Google Fonts */

*, *::before, *::after {
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1c1917;
    background-color: #fffbf0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}
table {
    max-width: 100%;
}
.table-responsive, .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
a {
    color: #854d0e;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a:focus-visible {
    outline: 3px solid #854d0e;
    outline-offset: 2px;
    border-radius: 2px;
}
.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;
}
/* Skip to content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 12px 24px;
    background: #854d0e;
    color: #fff;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
    font-family: inherit;
    line-height: 1.4;
}
.btn:focus-visible {
    outline: 3px solid #854d0e;
    outline-offset: 3px;
}
.btn:active {
    transform: scale(0.97);
}
.btn--primary {
    background: #854d0e;
    color: #fff;
    border-color: #854d0e;
}
.btn--primary:hover {
    background: #713f12;
    border-color: #713f12;
    text-decoration: none;
}
.btn--secondary {
    background: #fde047;
    color: #1c1917;
    border-color: #fde047;
}
.btn--secondary:hover {
    background: #facc15;
    border-color: #facc15;
    text-decoration: none;
}
.btn--outline {
    background: transparent;
    color: #1c1917;
    border-color: #854d0e;
}
.btn--outline:hover {
    background: #854d0e;
    color: #fff;
    text-decoration: none;
}
/* Section headers */
.section-header {
    margin-bottom: 40px;
}
.section-header--center {
    text-align: center;
}
.section-header__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #854d0e;
    background: #fef3c7;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.section-header__title {
    font-size: 32px;
    font-weight: 800;
    color: #1c1917;
    margin: 0 0 12px;
    line-height: 1.2;
}
.section-header__desc {
    font-size: 16px;
    color: #57534e;
    max-width: 600px;
    margin: 0;
    line-height: 1.7;
}
.section-header--center .section-header__desc {
    margin: 0 auto;
}
/* Responsive */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        font-size: 15px;
    }
    .container {
        padding: 0 16px;
    }
    .grid, [class*='grid'] {
        grid-template-columns: 1fr !important;
    }
    .section-header__title {
        font-size: 26px;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .section-header__title {
        font-size: 22px;
    }
    .container {
        padding: 0 12px;
    }
}