:root {
    --bg: #fdfaf5;
    --bg-2: #eef4f2;
    --card: #ffffff;
    --ink: #1a2422;
    --ember: #d6572a;
    --ember-dim: #b8461f;
    --gold: #ffffff;
    --crust: #c1272d;
    --line: rgba(13,60,54,0.12);
}

:root {
    --teal: #0d5c56;
    --teal-dim: #0a423e;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

.mono {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.03em;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--ember);
    color: #fff;
}

:focus-visible {
    outline: 3px solid var(--crust);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* ---------- Promo bar ---------- */
.promo-bar {
    background: var(--crust);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 0;
    text-align: center;
}

/* ---------- Navbar ---------- */
.navbar-brand-mark {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ink) !important;
}

    .navbar-brand-mark span {
        color: var(--crust);
        font-family: inherit;
    }

.site-nav {
    background: rgba(253,250,245,0.94);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.25s ease;
}

    .site-nav.is-scrolled {
        box-shadow: 0 4px 18px rgba(13,60,54,0.08);
    }

    .site-nav .nav-link {
        color: var(--ink);
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        padding: 0.6rem 1rem !important;
        opacity: 0.85;
        position: relative;
        transition: opacity 0.15s ease, color 0.15s ease;
    }

        .site-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 1rem;
            right: 1rem;
            bottom: 0.35rem;
            height: 2px;
            background: var(--crust);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.2s ease;
        }

        .site-nav .nav-link:hover {
            opacity: 1;
            color: var(--crust);
        }

            .site-nav .nav-link:hover::after {
                transform: scaleX(1);
            }

.btn-ember {
    background: var(--crust);
    color: #fff;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.65rem 1.6rem;
    border: none;
    border-radius: 3px;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

    .btn-ember:hover {
        background: var(--ember-dim);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(214,87,42,0.28);
    }

    .btn-ember:active {
        transform: translateY(0);
        box-shadow: none;
    }

.btn-outline-cream {
    border: 2px solid var(--ink);
    color: var(--ink);
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.5rem;
    border-radius: 3px;
    background: transparent;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

    .btn-outline-cream:hover {
        background: var(--ink);
        color: var(--bg);
        transform: translateY(-2px);
    }

/* ---------- Reveal-on-scroll ----------
     One shared, subtle motion language used everywhere below:
     fade up 22px over 0.6s. Cards in a row get a small stagger via
     nth-child so a grid cascades in rather than popping at once. */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-row > *:nth-child(1) {
    transition-delay: 0s;
}

.reveal-row > *:nth-child(2) {
    transition-delay: 0.08s;
}

.reveal-row > *:nth-child(3) {
    transition-delay: 0.16s;
}

.reveal-row > *:nth-child(4) {
    transition-delay: 0.24s;
}

.reveal-row > *:nth-child(5) {
    transition-delay: 0.32s;
}

.reveal-row > *:nth-child(6) {
    transition-delay: 0.4s;
}

/* ---------- Hero entrance ---------- */
@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-anim {
    opacity: 0;
    animation: heroIn 0.7s ease forwards;
}

    .hero-anim:nth-child(1) {
        animation-delay: 0.05s;
    }

    .hero-anim:nth-child(2) {
        animation-delay: 0.16s;
    }

    .hero-anim:nth-child(3) {
        animation-delay: 0.27s;
    }

    .hero-anim:nth-child(4) {
        animation-delay: 0.38s;
    }

    .hero-anim:nth-child(5) {
        animation-delay: 0.49s;
    }

    .hero-anim:nth-child(6) {
        animation-delay: 0.6s;
    }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
}

.hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .hero-eyebrow::before {
        content: "";
        width: 28px;
        height: 2px;
        background: var(--gold);
        display: inline-block;
    }

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    color: #fff;
    margin: 1rem 0 1.2rem;
}

    .hero h1 em {
        font-style: normal;
        color: var(--ember);
    }

.hero p.lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.08rem;
    max-width: 520px;
    background: #2c2f324a;
    padding: 10px;
}

/* ---- Marquee signature ---- */
.marquee-sign {
    display: inline-block;
    margin-top: 2.2rem;
    padding: 0.9rem 1.8rem;
    border: 3px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(217,140,15,0.55), 0 0 18px rgba(217,140,15,0.3), inset 0 0 10px rgba(217,140,15,0.2);
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-shadow: 0 0 6px rgba(217,140,15,0.7);
    background: rgba(217,140,15,0.06);
    animation: heroIn 0.7s ease forwards, flicker 4.5s 0.7s infinite;
    animation-delay: 0.49s, 1.2s;
    opacity: 0;
}

    .marquee-sign .dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--ember);
        box-shadow: 0 0 8px 2px var(--ember);
        margin-right: 10px;
        animation: pulse 1.6s ease-in-out infinite;
    }

@keyframes flicker {
    0%, 3%, 6%, 100% {
        opacity: 1;
    }

    4% {
        opacity: 0.4;
    }

    5% {
        opacity: 0.85;
    }

    52% {
        opacity: 1;
    }

    53% {
        opacity: 0.5;
    }

    54% {
        opacity: 1;
    }
}

@keyframes pulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

.hero-badge-row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

    .hero-badge-row .badge-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(28,23,18,0.5);
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 6px;
        padding: 0.6rem 1rem;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.8rem;
        color: #fff;
    }

        .hero-badge-row .badge-item i {
            color: var(--ember);
        }

/* ---------- Torn divider ---------- */
.torn-divider {
    height: 34px;
    width: 100%;
    background: var(--bg);
    clip-path: polygon(0% 100%, 3% 30%, 7% 100%, 11% 20%, 15% 100%, 19% 40%, 23% 100%, 27% 10%, 31% 100%, 35% 35%, 39% 100%, 43% 15%, 47% 100%, 51% 45%, 55% 100%, 59% 25%, 63% 100%, 67% 10%, 71% 100%, 75% 40%, 79% 100%, 83% 15%, 87% 100%, 91% 30%, 95% 100%, 100% 0%, 100% 100%, 0 100%);
}

/* ---------- Section basics ---------- */

.section-alt {
    background: var(--bg-2);
}

.section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--crust);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--ink);
    margin-top: 0.5rem;
}

.section-sub {
    color: rgba(26,36,34,0.65);
    max-width: 560px;
}

/* ---------- Menu ticket cards ---------- */
.ticket-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: visible;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(26,36,34,0.07);
}

    .ticket-card:hover {
        transform: translateY(-6px) rotate(-0.6deg);
        border-color: var(--ember);
        box-shadow: 0 18px 34px rgba(26,36,34,0.18);
    }

.ticket-img {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-2), #e8d3ac);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ticket-img i {
        font-size: 2.6rem;
        color: var(--ember);
        opacity: 0.45;
    }

    .ticket-img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

.ticket-card:hover .ticket-img img {
    transform: scale(1.06);
}

.ticket-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,23,18,0) 55%, rgba(28,23,18,0.82) 100%);
    pointer-events: none;
}

.ticket-chips {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ticket-card .ticket-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: #fff;
    letter-spacing: 0.1em;
    background: rgba(28,23,18,0.65);
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}

.ticket-card .ticket-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.66rem;
    text-transform: uppercase;
    background: rgba(28,23,18,0.65);
    color: #ffffff;
    border: 1px solid rgba(217,140,15,0.55);
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    display: inline-block;
    backdrop-filter: blur(2px);
}

.ticket-card .ticket-perf {
    position: relative;
    height: 0;
    border-top: 2px dashed rgba(26,36,34,0.18);
    margin: 0;
}

    .ticket-card .ticket-perf::before, .ticket-card .ticket-perf::after {
        content: "";
        position: absolute;
        top: -9px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--bg);
    }

    .ticket-card .ticket-perf::before {
        left: -9px;
    }

    .ticket-card .ticket-perf::after {
        right: -9px;
    }

.ticket-card .ticket-body {
    padding: 1.5rem 1.1rem 1.6rem;
}

.ticket-card h4 {
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.ticket-card p {
    font-size: 0.9rem;
    color: rgba(26,36,34,0.65);
    margin-bottom: 1.1rem;
    min-height: 3.2em;
}

.ticket-card .ticket-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.9rem;
    border-top: 1px dotted var(--line);
}

    .ticket-card .ticket-foot .price-lbl {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.66rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(26,36,34,0.45);
        display: block;
    }

.ticket-card .price {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--crust);
    font-size: 1.15rem;
    font-weight: 600;
}

/* ---------- About ---------- */
.about-img-block {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bg-2), #e8d3ac);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
}

    .about-img-block img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .about-img-block i {
        font-size: 4rem;
        color: var(--ember);
        opacity: 0.85;
    }

.stat-strip {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

    .stat-strip .stat {
        border-left: 2px solid var(--crust);
        padding-left: 0.9rem;
    }

        .stat-strip .stat .num {
            font-family: 'Anton', sans-serif;
            font-size: 2rem;
            color: var(--ink);
            display: block;
        }

        .stat-strip .stat .lbl {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.72rem;
            text-transform: uppercase;
            color: rgba(26,36,34,0.55);
            letter-spacing: 0.06em;
        }

/* ---------- Order CTA band ---------- */
.order-band {
    background: linear-gradient(120deg, rgba(255,107,53,0.10), rgba(217,140,15,0.10)), var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

    .order-band h2 {
        color: var(--ink);
    }

.order-steps {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

    .order-steps .step {
        flex: 1 1 160px;
    }

        .order-steps .step .step-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(193,39,45,0.1);
            border: 1px solid var(--crust);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.8rem;
            color: var(--crust);
            font-size: 1.2rem;
            transition: transform 0.25s ease, background 0.25s ease;
        }

        .order-steps .step:hover .step-icon {
            transform: scale(1.1) rotate(-6deg);
            background: rgba(193,39,45,0.18);
        }

    .order-steps h5 {
        font-family: 'Anton', sans-serif;
        font-size: 1rem;
        color: var(--ink);
        text-transform: uppercase;
    }

    .order-steps p {
        font-size: 0.85rem;
        color: rgba(26,36,34,0.6);
    }

/* ---------- Refer & Earn ---------- */
.refer-band {
    position: relative;
    background: linear-gradient(120deg, var(--teal) 0%, var(--teal-dim) 100%);
    border-radius: 14px;
    padding: 2rem;
    overflow: hidden;
    text-align: center;
}

    .refer-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 85% 20%, rgba(214,87,42,0.25), transparent 55%);
        pointer-events: none;
    }

.refer-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.refer-band h2 {
    color: #fff;
    font-size: clamp(1.7rem, 3.2vw, 2rem);
    margin-bottom: 0.7rem;
}

.refer-band p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 1rem;
}

.btn-refer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--crust);
    color: #fff;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: none;
    position: relative;
    z-index: 1;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

    .btn-refer:hover {
        background: var(--ember-dim);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.25);
    }

/* ---------- Latest Blog ---------- */
.blog-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 10px rgba(26,36,34,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 34px rgba(26,36,34,0.16);
    }

.blog-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-2), #e8d3ac);
}

    .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.blog-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--crust);
    margin-bottom: 0.6rem;
    display: block;
}

.blog-body {
    padding: 1.4rem 1.3rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card h4 {
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.7rem;
    line-height: 1.25;
}

.blog-card p {
    font-size: 0.88rem;
    color: rgba(26,36,34,0.65);
    margin-bottom: 1.2rem;
    flex: 1;
}

.blog-readmore {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--crust);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

    .blog-readmore:hover {
        color: var(--ember-dim);
        gap: 10px;
    }

/* ---------- Reviews ---------- */
.review-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.6rem;
    height: 100%;
    box-shadow: 0 2px 10px rgba(26,36,34,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 30px rgba(26,36,34,0.14);
    }

    .review-card .stars {
        color: var(--crust);
        font-size: 0.85rem;
        margin-bottom: 0.7rem;
    }

    .review-card p {
        font-size: 0.92rem;
        color: rgba(26,36,34,0.78);
    }

    .review-card .who {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 1.2rem;
    }

    .review-card .avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--crust);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Anton', sans-serif;
        color: #fff;
        font-size: 0.9rem;
    }

    .review-card .who .name {
        font-weight: 600;
        font-size: 0.88rem;
        color: var(--ink);
    }

    .review-card .who .loc {
        font-size: 0.76rem;
        color: rgba(26,36,34,0.5);
    }

/* ---------- FAQ ---------- */
.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
}

.accordion-button {
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    font-family: 'Anton', sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 1.3rem 0;
    box-shadow: none !important;
    transition: color 0.15s ease;
}

    .accordion-button::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 0.85rem;
        transition: transform 0.25s ease;
        flex-shrink: 0;
        margin-left: 1rem;
    }

    .accordion-button:not(.collapsed)::after {
        transform: rotate(180deg);
    }

    .accordion-button:not(.collapsed) {
        color: var(--crust);
        background: transparent;
    }

.accordion-bodyy {
    color: rgba(26,36,34,0.68);
    padding: 0 1.5rem 1.5rem 0;
    font-size: 0.94rem;
}

.faq-col .accordion-item:first-child {
    border-top: 1px solid var(--line);
}

/* ---------- Visit Us ---------- */
.visit-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 10px rgba(26,36,34,0.07);
}

    .visit-card .visit-row {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        padding: 1rem 0;
        border-bottom: 1px solid var(--line);
    }

        .visit-card .visit-row:last-child {
            border-bottom: none;
        }

        .visit-card .visit-row i {
            color: var(--crust);
            font-size: 1.1rem;
            width: 26px;
            margin-top: 3px;
        }

        .visit-card .visit-row .lbl {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(26,36,34,0.5);
            display: block;
            margin-bottom: 3px;
        }

        .visit-card .visit-row .val {
            color: var(--ink);
            font-size: 0.98rem;
            font-weight: 500;
        }

    .visit-card .hrs-table {
        width: 100%;
        margin-top: 2px;
    }

        .visit-card .hrs-table td {
            padding: 2px 0;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.85rem;
            color: rgba(26,36,34,0.75);
        }

            .visit-card .hrs-table td:last-child {
                text-align: right;
                color: var(--ember);
            }

.map-embed {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    height: 100%;
    min-height: 420px;
}

    .map-embed iframe {
        width: 100%;
        height: 100%;
        min-height: 420px;
        border: 0;
    }

/* ---------- Footer ---------- */
footer {
    background: var(--ink);
    border-top: 1px solid var(--line);
    padding: 3.5rem 0 1.5rem;
}

    footer .foot-brand {
        font-family: 'Anton', sans-serif;
        font-size: 1.6rem;
        color: #fdfaf5;
        text-transform: uppercase;
    }

        footer .foot-brand span {
            color: var(--ember);
        }

    footer p {
        color: rgba(253,250,245,0.6);
        font-size: 0.88rem;
    }

    footer h6 {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--gold);
        margin-bottom: 1rem;
    }

    footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        footer ul li {
            margin-bottom: 0.6rem;
        }

            footer ul li a {
                color: rgba(253,250,245,0.65);
                font-size: 0.88rem;
                transition: color 0.15s ease, padding-left 0.15s ease;
            }

                footer ul li a:hover {
                    color: var(--ember);
                    padding-left: 4px;
                }

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(253,250,245,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #fdfaf5;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

    .social-icons a:hover {
        border-color: var(--ember);
        color: var(--ember);
        transform: translateY(-3px);
    }

.foot-bottom {
    border-top: 1px solid rgba(253,250,245,0.12);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(253,250,245,0.4);
}

/* ---------- Bootstrap 4 gutter/gap shim ---------- */
.row-gap-4 > [class*="col-"] {
    margin-bottom: 1.5rem;
}

.row-gap-5 > [class*="col-"] {
    margin-bottom: 3rem;
}

.flex-gap-3 > * {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

    .flex-gap-3 > *:last-child {
        margin-right: 0;
    }

/* ---------- Promo Deals ---------- */
.deal-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: 0 2px 10px rgba(26,36,34,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .deal-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 34px rgba(26,36,34,0.16);
    }

.deal-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-2), #e8d3ac);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .deal-img i {
        font-size: 2.4rem;
        color: var(--ember);
        opacity: 0.45;
    }

    .deal-img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

.deal-card:hover .deal-img img {
    transform: scale(1.06);
}

.deal-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,23,18,0) 60%, rgba(28,23,18,0.82) 100%);
    pointer-events: none;
}

.deal-card .deal-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--crust);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
}

.deal-card .deal-body {
    padding: 1.5rem 1.3rem 1.6rem;
}

.deal-card h4 {
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.deal-card p {
    font-size: 0.9rem;
    color: rgba(26,36,34,0.65);
    margin-bottom: 1.2rem;
    min-height: 2.8em;
}

.deal-card .deal-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 1.2rem;
}

    .deal-card .deal-price-row .was {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.9rem;
        color: rgba(26,36,34,0.4);
        text-decoration: line-through;
    }

    .deal-card .deal-price-row .now {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--crust);
    }

.mainmenuMargin {
    margin-top: 0;
}

.orderConfirmMargin {
    margin-top: 40px;
}

.menusPadding {
    padding: 0;
}

.profileMargin{
    margin:0;
    padding: 1.5rem;
}

.CategoryNameNav {
    font-weight: 500;
}

.brand-logo {
    height: 42px; /* fixed height keeps it aligned with nav links */
    width: auto; /* lets it stay rectangular at its native ratio */
    max-width: 190px; /* caps it so an unusually wide logo doesn't eat the navbar */
    object-fit: contain;
}

/* Carousel-specific hero adjustments — single-banner hero keeps its
   existing .hero rule untouched. */
.hero-carousel-wrap {
    position: relative;
    padding: 0;
    overflow: hidden;
}

    .hero-carousel-wrap .carousel,
    .hero-carousel-wrap .carousel-inner,
    .hero-carousel-wrap .carousel-item {
        height: 100%;
    }

    .hero-carousel-wrap #heroCarousel {
        min-height: 620px;
    }

.hero-slide {
    position: relative;
    min-height: 620px;
}

    .hero-slide .container {
        height: 100%;
        display: flex;
        align-items: center;
    }

        .hero-slide .container > .row {
            width: 100%;
            flex: 1 1 100%;
        }

.hero-slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-img {
    background-position: center 55%;
    background-size: cover;
}

.hero-slide-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(13,36,33,0.55) 0%, rgba(13,36,33,0.32) 45%, rgba(13,36,33,0.12) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    color: #fff;
    margin: 1rem 0 1.2rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.hero-slide p.lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.08rem;
    max-width: 520px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

/* Fixed overlay sits on top of whichever slide is showing */
.hero-fixed-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    padding-bottom: 3rem;
    pointer-events: none;
}

    .hero-fixed-overlay a, .hero-fixed-overlay .btn {
        pointer-events: auto;
    }

.carousel-indicators {
    z-index: 6;
    margin-bottom: 1.2rem;
}

    .carousel-indicators li {
        background-color: rgba(255,255,255,0.5);
        width: 9px;
        height: 9px;
        border-radius: 50%;
    }

    .carousel-indicators .active {
        background-color: var(--ember);
    }

.carousel-control-prev, .carousel-control-next {
    z-index: 6;
    width: 5%;
    opacity: 0.7;
}

    .carousel-control-prev:hover, .carousel-control-next:hover {
        opacity: 1;
    }

.tppngs, .combo-box {
    font-family: 'Quicksand';
}

.nav-tabs .nav-link.active {
    border: 0;
    border-bottom: 3px solid #c02030
}

.nav-tabs .nav-link:hover {
    border: 0;
    border-bottom: 3px solid #c02030
}