:root {
    --brand-primary: #b6322e;
    --brand-primary-dark: #7d1f1b;
    --brand-secondary: #f6f2ed;
    --brand-secondary-dark: #e3d7c8;
    --brand-dark: #1a1816;
    --brand-muted: #8c8379;
    --brand-accent: #d89d4c;
    --text-body: #2c2c2c;
}

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

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: Lora, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--text-body);
    background-color: var(--brand-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px;
    text-transform: uppercase;
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}

p {
    margin: 0 0 20px;
    font-size: 18px;
}

@media (min-width: 768px) {
    p {
        font-size: 19px;
        margin-bottom: 28px;
    }
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover,
a:focus {
    color: var(--brand-primary-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.anchor-offset {
    scroll-margin-top: 90px;
}

.navbar-custom {
    margin-bottom: 0;
    padding: 12px 0;
    border: 0;
    background: rgba(246, 242, 237, 0.95);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar-custom .navbar-brand {
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--brand-dark);
}

.navbar-custom .navbar-brand span {
    color: var(--brand-primary);
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-custom .navbar-brand .navbar-logo {
    height: 46px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

@media (max-width: 767px) {
    .navbar-custom .navbar-brand .navbar-logo {
        height: 36px;
    }
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-toggle {
    border: none;
    background: transparent;
}

.navbar-custom .navbar-toggle:focus,
.navbar-custom .navbar-toggle:hover {
    background: transparent;
}

.navbar-custom .navbar-toggle .icon-bar {
    background-color: var(--brand-dark);
}

.navbar-custom .nav > li > a {
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.08em;
    color: var(--brand-dark);
    padding: 12px 18px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease;
}

.navbar-custom .nav > li > a:hover,
.navbar-custom .nav > li > a:focus {
    color: var(--brand-primary);
    background: transparent;
}

.navbar-custom .nav > li.nav-order > a {
    background: var(--brand-primary);
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 20px;
}

.navbar-custom .nav > li.nav-order > a:hover,
.navbar-custom .nav > li.nav-order > a:focus {
    background: var(--brand-primary-dark);
    color: #ffffff;
}

.navbar-custom .nav > li.nav-social > a {
    font-size: 18px;
    padding: 12px 10px;
}

.navbar-custom .nav > li.nav-social > a:hover {
    color: var(--brand-primary);
}

.navbar-custom.top-nav-collapse {
    padding: 8px 0;
    background: rgba(26, 24, 22, 0.95);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.navbar-custom.top-nav-collapse .navbar-brand,
.navbar-custom.top-nav-collapse .nav > li > a {
    color: #ffffff;
}

.navbar-custom.top-nav-collapse .nav > li > a:hover,
.navbar-custom.top-nav-collapse .nav > li > a:focus {
    color: var(--brand-accent);
}

.navbar-custom.top-nav-collapse .nav > li.nav-order > a {
    background: #ffffff;
    color: var(--brand-dark);
}

.navbar-main-collapse {
    border: none;
}

@media (max-width: 767px) {
    .instagram-feed {
        padding: 0 12px;
    }

    .instagram-embed iframe {
        min-height: 520px;
    }

    .navbar-custom .navbar-collapse {
        background: rgba(246, 242, 237, 0.98);
        margin-top: 12px;
        border-radius: 12px;
        padding-bottom: 12px;
        text-align: center;
    }

    .navbar-custom .navbar-collapse .nav > li {
        float: none;
    }

    .navbar-custom .nav > li > a {
        padding: 12px 24px;
        text-align: center;
    }

    .navbar-custom .nav > li.nav-order > a {
        margin: 10px auto 0;
        display: inline-block;
        width: calc(100% - 48px);
        max-width: 260px;
    }

    .navbar-custom .nav > li.nav-social {
        display: inline-block;
        padding: 6px 12px;
    }
}


.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 140px 0 100px;
    text-align: center;
    color: #ffffff;
    background: url(../img/background.jpg) center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 18, 16, 0.80), rgba(20, 18, 16, 0.55));
}

.hero-body {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 15px 62px;
}

.hero-logo {
    width: min(420px, 92vw);
    max-width: 420px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

@media (max-width: 576px) {
    .hero-logo {
        width: min(360px, 88vw);
    }
}

.hero-tagline {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    font-size: 16px;
}

.hero-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta a {
    color: #ffffff;
}

.btn {
    border-radius: 999px;
    text-transform: uppercase;
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: all 0.2s ease;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 14px;
}

.btn-primary {
    background: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
    color: #ffffff;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: #ffffff;
    color: var(--brand-dark);
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.5);
    color: var(--brand-dark);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #ffffff;
}

.btn-circle {
    width: 68px;
    height: 68px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 36px;
    color: #ffffff;
    background: transparent;
    position: absolute;
    left: 50%;
    bottom: clamp(18px, 7vh, 42px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-circle:hover,
.btn-circle:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.section {
    padding: 90px 0;
}

.section-light {
    background: var(--brand-secondary);
    color: var(--text-body);
}

.section-dark {
    background: var(--brand-dark);
    color: rgba(255, 255, 255, 0.92);
}

.section-dark h2 {
    color: #ffffff;
}

.menu-cards,
.feature-grid,
.gallery-grid,
.visit-grid {
    margin-top: 36px;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.menu-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    color: var(--text-body);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
}

.menu-card h3 {
    margin-bottom: 8px;
}

.menu-card-cta {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-primary);
}

.hours-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
    margin: 0 auto 28px;
    max-width: 640px;
    text-align: left;
}

.hours-table dt {
    font-size: 14px;
    letter-spacing: 0.12em;
    color: var(--brand-muted);
}

.section-dark .hours-table dt {
    color: rgba(255, 255, 255, 0.7);
}

.hours-table dd {
    margin: 6px 0 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.section-light .hours-table dd {
    color: var(--brand-primary);
}

.hours-note {
    font-style: italic;
    margin-bottom: 24px;
}

.hours-entry {
    text-align: center;
}

.reservation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    align-items: stretch;
}

.reservation-intro h2 {
    margin-bottom: 18px;
}

.reservation-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reservation-highlights li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 16px;
    color: var(--text-body);
}

.reservation-highlights i {
    color: var(--brand-accent);
}

.reservation-call-btn {
    display: inline-block;
    margin-bottom: 14px;
    text-align: center;
}

.reservation-note {
    font-size: 14px;
    color: var(--brand-muted);
    max-width: 420px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--brand-dark);
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 12px 16px;
    line-height: 1.35;
}

.form-note a {
    color: var(--brand-primary);
    font-weight: 600;
}

.form-note-mobile {
    display: block;
}

@media (min-width: 768px) {
    .form-note-mobile {
        display: none;
    }
}

.reservation-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.reservation-form label {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--brand-dark);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 16px;
    font-family: inherit;
    background: #fdfcfb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(182, 50, 46, 0.15);
    outline: none;
    background: #ffffff;
}

.reservation-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--brand-primary) 50%), linear-gradient(135deg, var(--brand-primary) 50%, transparent 50%);
    background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.reservation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.reservation-actions .btn {
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.reservation-help {
    font-size: 14px;
    color: var(--brand-muted);
}

.reservation-help a {
    font-weight: 600;
}

.form-field-captcha {
    gap: 10px;
}

.captcha-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-row span {
    font-weight: 600;
    letter-spacing: 0.08em;
}

.captcha-row input {
    flex: 1;
}

.captcha-refresh {
    flex-shrink: 0;
    padding: 10px 14px;
}

.captcha-hint {
    font-size: 13px;
    color: var(--brand-muted);
    margin: 0;
}

.reservation-time-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}

.time-toggle-hint {
    font-size: 13px;
    color: var(--brand-muted);
    margin: 4px 0 10px;
}

.time-scroll {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    background: #ffffff;
    max-height: 240px;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-slot {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 14px;
    background: #ffffff;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-dark);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    width: 100%;
}

.time-slot strong {
    font-weight: 600;
    letter-spacing: 0.06em;
}

.time-slot:hover,
.time-slot:focus {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    outline: none;
}

.time-slot.is-selected {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #ffffff;
}

.time-slot:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.reservation-hours-note {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--brand-muted);
    margin: -6px 0 6px;
}

.reservation-hours-note span {
    display: inline-flex;
    gap: 4px;
    align-items: baseline;
}

.reservation-summary {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 20px;
    background: rgba(246, 242, 237, 0.6);
}

.reservation-summary[hidden] {
    display: none;
}

.reservation-summary h4 {
    margin-bottom: 10px;
}

.reservation-summary ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reservation-summary ul li strong {
    font-weight: 600;
    margin-right: 6px;
}

.reservation-summary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.reservation-summary-actions .btn {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.reservation-disclaimer {
    font-size: 12px;
    color: var(--brand-muted);
    margin: 0;
}

@media (max-width: 575px) {
    .reservation-card {
        padding: 24px;
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    text-align: left;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    text-align: center;
}

.feature-card i,
.feature-card svg {
    color: var(--brand-accent);
    flex-shrink: 0;
    display: block;
    margin: 0 auto;
}

.feature-card i {
    font-size: 28px;
}

.feature-icon {
    width: 32px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 5px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-specials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-specials li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: clamp(1.15rem, 1.8vw, 1.75rem);
    line-height: 1.2;
    white-space: nowrap;
}

.feature-specials-note {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    color: var(--brand-accent);
}

.feature-specials-times {
    display: inline-block;
    margin-left: 0.35em;
    white-space: nowrap;
}

.special-day {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    color: var(--brand-accent);
    white-space: nowrap;
}

.special-item {
    flex: 1;
    text-align: right;
    font-weight: 500;
    white-space: nowrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.gallery-grid figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease;
}

.gallery-grid figure:hover {
    transform: translateY(-6px);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 575px) {
    .menu-cards,
    .feature-grid,
    .gallery-grid,
    .hours-table {
        grid-template-columns: 1fr;
    }

    .hours-table {
        text-align: center;
    }

    .hours-table dt,
    .hours-table dd {
        text-align: center;
    }

    .gallery-grid {
        gap: 14px;
    }
}

@media (max-width: 520px) {
    .feature-specials li {
        flex-direction: column;
        align-items: center;
        white-space: normal;
        font-size: 18px;
        line-height: 1.5;
        text-align: center;
    }

    .special-day,
    .special-item {
        white-space: normal;
        text-align: center;
        font-size: 18px;
    }
}

.visit-grid {
    display: grid;
    gap: 36px;
}

@media (min-width: 992px) {
    .visit-grid {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }
}

.visit-map iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.contact-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.contact-card h2 {
    color: #ffffff;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 16px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-list a {
    color: #ffffff;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
}

.instagram-feed {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.instagram-embed {
    width: 100%;
    max-width: 540px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--brand-dark);
}

.section-light .instagram-embed {
    border-color: rgba(0, 0, 0, 0.05);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.instagram-embed iframe {
    display: block;
    width: 100%;
    border: 0;
    min-height: 640px;
    border-radius: inherit;
    background: inherit;
}

footer {
    background: #0f0e0c;
    padding: 38px 0;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

footer p {
    margin: 0;
}

.footer-privacy {
    font-size: 11px;
    margin-top: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-privacy a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-privacy a:hover,
.footer-privacy a:focus {
    color: #ffffff;
    text-decoration: underline;
}

::selection {
    background: rgba(182, 50, 46, 0.2);
    color: inherit;
}

::-moz-selection {
    background: rgba(182, 50, 46, 0.2);
    color: inherit;
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
}

@media (max-width: 767px) {
    .hero-tagline {
        font-size: 20px;
    }

    .section {
        padding: 70px 0;
    }

    .hero-body {
        padding-bottom: 82px;
    }

    .feature-card,
    .contact-card {
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .contact-actions {
        justify-content: center;
    }

    .reservation-intro {
        text-align: center;
    }

    .reservation-highlights li {
        justify-content: center;
        text-align: left;
    }

    .reservation-call-btn {
        align-self: center;
    }

    .reservation-note {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

body {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}
