:root {
    --brand-primary: #ff7a00;
    --brand-dark: #24140b;
    --brand-light: #fff7ef;
    --text-dark: #2b2b2b;
    --text-muted: #6f6f6f;
    --card-bg: #ffffff;
}

@media (max-width: 768px) {
    .custom-header-wrapper {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(18, 6, 3, 0.65);
        backdrop-filter: blur(10px);
    }

    .nav-toggle {
        display: flex;
        width: 48px;
        height: 48px;
    }

    .ghost-btn {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .custom-header-nav {
        width: 100%;
        order: 4;
        display: none !important;
        padding: 10px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .custom-header-nav.is-open {
        display: block !important;
    }

    .custom-header-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .custom-header-nav li + li {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .custom-header-nav a {
        display: block;
        padding: 14px 0;
    }

    .hero {
        padding: 190px 0 130px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-heading {
        padding: 28px 20px;
        border-radius: 22px;
        margin: 0 auto 34px;
    }

    .section-heading h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .menu-type-toggle {
        margin: 12px 0 6px;
        width: 100%;
    }

    .menu-type-btn {
        padding: 12px 18px;
        min-height: 44px;
    }

    .menu-slider-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .menu-slider {
        gap: 10px;
    }

    .menu-slide {
        min-width: 100%;
        justify-content: center;
    }

    .menu-slide img {
        width: 100%;
        max-width: 520px;
        max-height: 60vh;
        object-fit: contain;
    }

    .menu-slider-arrow {
        display: none;
    }
}

.script-accent {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: var(--brand-primary);
    display: inline-block;
    margin-bottom: 6px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: var(--brand-light);
    color: var(--text-dark);
    line-height: 1.7;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-primary);
    display: inline-block;
    margin-bottom: 10px;
}

.section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
    background: linear-gradient(135deg, var(--brand-dark), #4a2a15);
    padding: 36px 30px;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(36, 20, 11, 0.35);
}

.section-heading h2 {
    font-size: 36px;
    margin: 12px 0;
    font-family: 'Roboto Condensed', sans-serif;
    color: #ffffff;
}

.section-heading p {
    color: #f9e6d3;
    margin: 0;
}

.top-strip {
    background: var(--brand-dark);
    color: #f5ede6;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.top-strip-info span {
    margin-right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-strip-socials a {
    color: #ffffff;
    margin-left: 10px;
    font-size: 15px;
    transition: opacity 0.2s ease;
}

.top-strip-socials a:hover {
    opacity: 0.75;
}

.custom-header-wrapper {
    background: transparent;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.custom-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.custom-header-logo img {
    max-height: 72px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.custom-header-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.custom-header-nav a {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.custom-header-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.custom-header-nav a:hover,
.custom-header-nav a:focus {
    color: #fff4e8;
}

.custom-header-nav a:hover::after,
.custom-header-nav a:focus::after {
    transform: scaleX(1);
}

.ghost-btn {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.2s ease, color 0.2s ease;
}

.ghost-btn:hover {
    background: #ffffff;
    color: var(--brand-primary);
}

.hero {
    background-image: linear-gradient(120deg, rgba(10, 7, 5, 0.85), rgba(10, 7, 5, 0.6)), url('../img/page_headers/index01.png');
    background-size: cover;
    background-position: center top;
    color: #ffffff;
    /* Pull hero background up behind the transparent header while keeping text lower */
    margin-top: -40px;
    padding: 220px 0 170px;
}

.hero-content {
    max-width: 720px;
}

.hero .script-accent {
    margin-top: 16px;
}

.hero-content h1 {
    font-size: clamp(38px, 6vw, 58px);
    line-height: 1.1;
    margin: 16px 0;
    font-family: 'Roboto Condensed', sans-serif;
    color: #ffffff;
}

.hero-content p {
    font-size: 18px;
    color: #f7eee5;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 999px;
    font-size: 13px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-light {
    background: #ffffff;
    color: var(--brand-primary);
    border: none;
}

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

.btn.small {
    padding: 10px 20px;
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #ffe9d6;
}

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

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

.highlight-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.1);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 18px;
    margin-bottom: 16px;
}

.highlight-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.highlight-card p {
    margin: 0;
    color: var(--text-muted);
}

.story-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    min-height: 420px;
}

.story-media {
    background-image: linear-gradient(rgba(9, 6, 4, 0.4), rgba(9, 6, 4, 0.4)), url('../img/page_headers/contacts01.jpg');
    background-size: cover;
    background-position: center;
    min-height: 320px;
}

.story-content {
    background: var(--card-bg);
    display: flex;
    align-items: center;
    padding: 60px 50px;
}

.story-content h2 {
    font-size: 34px;
    margin: 12px 0 20px;
}

.story-content p {
    color: var(--text-muted);
}

.story-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.story-stats strong {
    font-size: 26px;
    color: var(--brand-primary);
    display: block;
}

.menu-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.menu-slider {
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    gap: 20px;
    padding: 10px 0;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.menu-slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
}

.menu-slide img {
    max-width: min(100%, 720px);
    max-height: 720px;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.menu-slider-arrow {
    background: var(--brand-primary);
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-slider-arrow:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.menu-slider-hint {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.menu-type-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0 10px;
}

.menu-type-btn {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-type-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.2);
}

.menu-type-btn.is-active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #ffffff;
}

.menu-zoom-hint {
    display: none;
    margin-left: 10px;
    font-weight: 700;
    color: var(--text-dark);
}

.specials-grid,
.testimonials-grid,
.contact-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.special-card,
.testimonial-card,
.contact-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.special-card h3 {
    margin: 0 0 10px;
}

.special-card .price {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-primary);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
}

.author {
    margin-top: 20px;
}

.author .name {
    font-weight: 700;
}

.author .meta {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
}

.contact-section {
    background: var(--brand-light);
}

.contact-card h4 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 700;
}

.contact-card a {
    color: var(--brand-primary);
    font-weight: 700;
}

.contact-card .btn-light {
    margin-top: 14px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    font-size: 15px;
}
.hours-list .day {
    font-weight: 600;
    color: var(--text-dark);
}
.hours-list .time {
    font-weight: 600;
    color: var(--brand-primary);
}
.hours-list .time.closed {
    color: #d14b4b;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.contact-links.social {
    gap: 12px;
}

.contact-link {
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: border 0.2s ease, transform 0.2s ease;
}

.contact-link.highlight {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.contact-link:hover {
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

.card-subtitle {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.card-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

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

address {
    font-style: normal;
    line-height: 1.6;
    font-weight: 600;
}

.map-section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.map-embed iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

.site-footer {
    background: linear-gradient(135deg, #120603, #1e0904);
    color: #ffffff;
    padding: 70px 0 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand img {
    max-height: 64px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #e8dcd3;
}

.footer-column h4 {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-column p {
    color: #d3c6be;
}

.footer-note {
    color: #ffb78d;
}

.footer-column .contact-link {
    display: inline-block;
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: 600;
}

.footer-column .btn {
    margin-top: 10px;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-column .btn:hover {
    background: #ffffff;
    color: var(--brand-primary);
}

.footer-socials a {
    margin-right: 12px;
    font-size: 16px;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.footer-socials a:hover {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: #c9c2bc;
}

@media (max-width: 960px) {
    .custom-header-bar {
        flex-wrap: wrap;
        gap: 16px;
    }

    .custom-header-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ghost-btn {
        margin-left: auto;
    }

    .story-content {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    .top-strip {
        justify-content: center;
        text-align: center;
    }

    .custom-header-bar {
        flex-direction: column;
        text-align: center;
    }

    .custom-header-logo img {
        max-height: 64px;
    }

    .ghost-btn {
        margin-left: 0;
    }

    .hero {
        padding: 180px 0 140px;
    }

    .hero-content h1 {
        margin: 12px 0;
    }

    .hero-meta {
        justify-content: center;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .menu-slide img {
        max-width: 100%;
        max-height: min(70vh, 520px);
    }

    .menu-type-toggle {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin: 14px 0 8px;
    }

    .menu-type-btn {
        width: 100%;
    }

    .menu-slider {
        padding: 6px 0;
    }

    .menu-slider-hint {
        font-size: 13px;
        line-height: 1.5;
        max-width: 32ch;
        margin-left: auto;
        margin-right: auto;
    }

    .menu-zoom-hint {
        display: inline;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
