/* =========================================================
   BOMBAY CURRY - FLOATING PREMIUM HEADER
   ========================================================= */

:root {
    --bc-black: #070707;
    --bc-black-soft: #11100f;
    --bc-orange: #ff6b00;
    --bc-orange-bright: #ff8500;
    --bc-gold: #ffb315;
    --bc-cream: #fff6e8;
    --bc-white: #ffffff;
    --bc-border: rgba(255, 134, 0, 0.22);
    --bc-muted: rgba(255, 246, 232, 0.68);
}

/* Optional */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

body.bcurry-menu-open {
    overflow: hidden;
}

/* =========================================================
   HEADER POSITION
   ========================================================= */

.bcurry-float-header {
    position: fixed;
    top: 22px;
    left: 0;
    width: 100%;
    z-index: 9998;
    padding: 0 28px;
    box-sizing: border-box;

    opacity: 0;
    transform: translateY(-22px);

    transition:
        top 0.35s ease,
        opacity 0.65s ease,
        transform 0.65s ease;
}

.bcurry-float-header.bcurry-loaded {
    opacity: 1;
    transform: translateY(0);
}

.bcurry-float-header.bcurry-scrolled {
    top: 12px;
}

/* =========================================================
   FLOATING SHELL
   ========================================================= */

.bcurry-header-shell {
    width: min(1220px, 100%);
    height: 82px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 190px 1fr 190px;
    align-items: center;

    padding: 0 11px 0 14px;
    box-sizing: border-box;

    background: rgba(7, 7, 7, 0.96);
    border: 1px solid var(--bc-border);

    border-radius: 46px;

    box-shadow:
        0 14px 44px rgba(0, 0, 0, 0.28),
        0 4px 18px rgba(255, 107, 0, 0.08);

    transition:
        height 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.bcurry-scrolled .bcurry-header-shell {
    height: 72px;
    border-color: rgba(255, 134, 0, 0.34);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.34),
        0 5px 22px rgba(255, 107, 0, 0.11);
}

/* =========================================================
   LOGO
   ========================================================= */

.bcurry-brand {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    transition:
        width 0.35s ease,
        height 0.35s ease,
        transform 0.35s ease;
}

.bcurry-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

    filter: drop-shadow(0 5px 10px rgba(255, 108, 0, 0.1));

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        filter 0.4s ease;
}

.bcurry-brand:hover img {
    transform: scale(1.045) rotate(-2deg);
    filter: drop-shadow(0 6px 14px rgba(255, 108, 0, 0.22));
}

.bcurry-scrolled .bcurry-brand {
    width: 62px;
    height: 62px;
}

/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.bcurry-desktop-nav {
    justify-self: center;

    display: flex;
    align-items: center;
    gap: clamp(25px, 3vw, 45px);
}

.bcurry-nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 14px 2px;

    font-family: "Cinzel", serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.085em;

    color: var(--bc-cream);
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.bcurry-nav-link::after {
    content: "";
    position: absolute;

    left: 50%;
    bottom: 7px;

    width: 0;
    height: 2px;

    background: var(--bc-orange);
    border-radius: 20px;

    transform: translateX(-50%);

    transition: width 0.35s cubic-bezier(.2,.8,.2,1);
}

.bcurry-nav-link:hover {
    color: var(--bc-gold);
    transform: translateY(-2px);
}

.bcurry-nav-link:hover::after,
.bcurry-nav-link.active::after {
    width: 22px;
}

.bcurry-nav-link.active {
    color: var(--bc-orange-bright);
}

/* =========================================================
   ORDER ONLINE
   ========================================================= */

.bcurry-header-action {
    justify-self: end;
}

.bcurry-order-btn {
    position: relative;

    min-height: 54px;
    padding: 0 21px 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    overflow: hidden;

    border-radius: 30px;

    background: var(--bc-orange);
    border: 1px solid var(--bc-orange);

    font-family: "Cinzel", serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.055em;

    color: #080808;
    text-decoration: none;
    text-transform: uppercase;

    box-shadow:
        0 8px 24px rgba(255, 107, 0, 0.18),
        inset 0 1px 0 rgba(255,255,255,.18);

    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.bcurry-order-btn span,
.bcurry-order-btn i {
    position: relative;
    z-index: 2;
}

.bcurry-order-btn i {
    font-size: 18px;

    transition: transform 0.35s ease;
}

.bcurry-order-btn:hover {
    background: var(--bc-gold);
    transform: translateY(-3px);

    box-shadow:
        0 13px 30px rgba(255, 107, 0, 0.27),
        inset 0 1px 0 rgba(255,255,255,.25);
}

.bcurry-order-btn:hover i {
    transform: translate(3px, -3px);
}

/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.bcurry-menu-toggle {
    display: none;

    width: 51px;
    height: 51px;

    padding: 0;

    border: 1px solid rgba(255, 134, 0, 0.3);
    border-radius: 50%;

    background: #18130f;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;

    cursor: pointer;

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.22);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.bcurry-menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    border-radius: 50px;

    background: var(--bc-orange);

    transition: width 0.3s ease;
}

.bcurry-menu-toggle span:last-child {
    width: 14px;
    align-self: calc(50% + 3px);
}

.bcurry-menu-toggle:hover {
    transform: scale(1.05);
    border-color: var(--bc-orange);
}

.bcurry-menu-toggle:hover span:last-child {
    width: 20px;
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.bcurry-mobile-menu {
    position: fixed;
    inset: 0;

    z-index: 10000;

    display: flex;
    flex-direction: column;

    padding: 18px;
    box-sizing: border-box;

    background: #090807;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-18px);

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.5s cubic-bezier(.22,1,.36,1);
}

.bcurry-mobile-menu.bcurry-mobile-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Mobile Top */

.bcurry-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 70px;
}

.bcurry-mobile-logo {
    width: 67px;
    height: 67px;

    display: block;
}

.bcurry-mobile-logo img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: contain;
}

.bcurry-close-btn {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 132, 0, 0.34);

    background: #17120d;

    color: var(--bc-orange);

    cursor: pointer;

    transition:
        transform 0.4s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.bcurry-close-btn i {
    font-size: 29px;
}

.bcurry-close-btn:hover {
    background: var(--bc-orange);
    color: #000;
    transform: rotate(90deg);
}

/* Inner */

.bcurry-mobile-inner {
    flex: 1;

    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 18px 10px;
    box-sizing: border-box;
}

.bcurry-mobile-label {
    margin-bottom: 25px;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;

    color: var(--bc-gold);

    text-transform: uppercase;
}

/* Mobile Links */

.bcurry-mobile-nav {
    display: flex;
    flex-direction: column;
}

.bcurry-mobile-link {
    position: relative;

    min-height: 72px;

    display: grid;
    grid-template-columns: 38px 1fr 45px;
    align-items: center;

    border-bottom: 1px solid rgba(255, 134, 0, 0.12);

    color: var(--bc-cream);
    text-decoration: none;

    opacity: 0;
    transform: translateY(18px);

    transition:
        color 0.3s ease,
        padding-left 0.3s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
}

.bcurry-mobile-active .bcurry-mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.bcurry-mobile-active .bcurry-mobile-link:nth-child(1) {
    transition-delay: 0.08s;
}

.bcurry-mobile-active .bcurry-mobile-link:nth-child(2) {
    transition-delay: 0.13s;
}

.bcurry-mobile-active .bcurry-mobile-link:nth-child(3) {
    transition-delay: 0.18s;
}

.bcurry-mobile-active .bcurry-mobile-link:nth-child(4) {
    transition-delay: 0.23s;
}

.bcurry-mobile-link > span:nth-child(2) {
    font-family: "Cinzel", serif;
    font-size: clamp(25px, 7vw, 36px);
    font-weight: 600;

    letter-spacing: 0.02em;
}

.bcurry-mobile-number {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 600;

    color: var(--bc-orange);

    letter-spacing: 0.1em;
}

.bcurry-mobile-link i {
    justify-self: end;

    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 134, 0, 0.2);

    color: var(--bc-orange);

    font-size: 17px;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.bcurry-mobile-link:hover {
    color: var(--bc-gold);
    padding-left: 7px;
}

.bcurry-mobile-link:hover i {
    background: var(--bc-orange);
    color: #000;

    transform: rotate(45deg);
}

/* Mobile Order */

.bcurry-mobile-order {
    width: 100%;

    margin-top: 27px;
    padding: 17px 20px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--bc-orange);

    border-radius: 30px;

    color: #050505;
    text-decoration: none;

    font-family: "Cinzel", serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.07em;

    text-transform: uppercase;

    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.18);

    opacity: 0;
    transform: translateY(14px);

    transition:
        opacity 0.45s ease 0.28s,
        transform 0.45s ease 0.28s,
        background-color 0.3s ease;
}

.bcurry-mobile-active .bcurry-mobile-order {
    opacity: 1;
    transform: translateY(0);
}

.bcurry-mobile-order i {
    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #080808;
    color: var(--bc-orange);

    font-size: 18px;

    transition: transform 0.3s ease;
}

.bcurry-mobile-order:hover {
    background: var(--bc-gold);
}

.bcurry-mobile-order:hover i {
    transform: translateX(4px);
}

/* Mobile Footer */

.bcurry-mobile-footer {
    padding: 12px 9px 5px;

    display: flex;
    justify-content: space-between;
    gap: 14px;

    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.12em;

    text-transform: uppercase;

    color: rgba(255, 246, 232, 0.42);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .bcurry-header-shell {
        grid-template-columns: 130px 1fr 175px;
    }

    .bcurry-desktop-nav {
        gap: 22px;
    }

    .bcurry-nav-link {
        font-size: 11px;
    }

    .bcurry-order-btn {
        padding-left: 19px;
        padding-right: 17px;
    }
}

/* Tablet / Mobile */

@media (max-width: 820px) {

    .bcurry-float-header {
        top: 14px;
        padding: 0 14px;
    }

    .bcurry-float-header.bcurry-scrolled {
        top: 8px;
    }

    .bcurry-header-shell {
        height: 72px;

        grid-template-columns: 1fr auto;

        padding: 0 9px 0 11px;

        border-radius: 39px;
    }

    .bcurry-scrolled .bcurry-header-shell {
        height: 66px;
    }

    .bcurry-brand {
        width: 62px;
        height: 62px;
    }

    .bcurry-scrolled .bcurry-brand {
        width: 57px;
        height: 57px;
    }

    .bcurry-desktop-nav,
    .bcurry-header-action {
        display: none;
    }

    .bcurry-menu-toggle {
        display: flex;
    }
}

/* Small Mobile */

@media (max-width: 480px) {

    .bcurry-float-header {
        padding: 0 10px;
    }

    .bcurry-header-shell {
        height: 68px;
    }

    .bcurry-brand {
        width: 58px;
        height: 58px;
    }

    .bcurry-menu-toggle {
        width: 48px;
        height: 48px;
    }

    .bcurry-mobile-menu {
        padding: 13px;
    }

    .bcurry-mobile-logo {
        width: 61px;
        height: 61px;
    }

    .bcurry-close-btn {
        width: 49px;
        height: 49px;
    }

    .bcurry-mobile-inner {
        padding-left: 5px;
        padding-right: 5px;
    }

    .bcurry-mobile-link {
        min-height: 68px;
        grid-template-columns: 32px 1fr 40px;
    }

    .bcurry-mobile-link > span:nth-child(2) {
        font-size: 25px;
    }

    .bcurry-mobile-footer {
        flex-direction: column;
        gap: 4px;
    }
}

/* Very Small Devices */

@media (max-width: 350px) {

    .bcurry-header-shell {
        height: 64px;
    }

    .bcurry-brand {
        width: 54px;
        height: 54px;
    }

    .bcurry-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .bcurry-mobile-link > span:nth-child(2) {
        font-size: 22px;
    }

    .bcurry-mobile-order {
        font-size: 11px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* hero section */


:root {

    --bom-hero-black:
        #050505;

    --bom-hero-orange:
        #ff7000;

    --bom-hero-gold:
        #ffb313;

    --bom-hero-cream:
        #fff4e5;

    --bom-hero-muted:
        rgba(255, 244, 229, .72);

    --bom-hero-line:
        rgba(255, 112, 0, .28);

}


/* =====================================================
   HERO
===================================================== */

.bom-cinema-hero {

    position: relative;

    width: 100%;

    min-height: 100svh;

    overflow: hidden;

    background-color:
        var(--bom-hero-black);

    color:
        var(--bom-hero-cream);

    font-family:
        "Montserrat", sans-serif;

    isolation: isolate;

}


/* =====================================================
   SLIDES
===================================================== */

.bom-cinema-slides {

    position: absolute;

    inset: 0;

}


.bom-cinema-slide {

    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transform:
        scale(1.06);

    transition:
        opacity .9s ease,
        visibility .9s ease,
        transform 6s ease;

}


.bom-cinema-slide.is-active {

    opacity: 1;

    visibility: visible;

    transform:
        scale(1);

}


.bom-cinema-slide img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

}


/* =====================================================
   SOLID DARK OVERLAY
   NO GRADIENT
===================================================== */

.bom-cinema-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background-color:
        rgba(0, 0, 0, .52);

}


/* =====================================================
   TOP INFO
===================================================== */

.bom-cinema-topline {

    position: absolute;

    z-index: 5;

    top: 42px;

    left:
        clamp(20px, 5vw, 72px);

    right:
        clamp(20px, 5vw, 72px);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    color:
        rgba(255, 244, 229, .74);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

}


/* =====================================================
   CONTENT
===================================================== */

.bom-cinema-content {

    position: absolute;

    z-index: 5;

    left:
        clamp(20px, 6vw, 92px);

    bottom:
        clamp(150px, 20vh, 210px);

    max-width: 780px;

}


.bom-cinema-kicker {

    display: block;

    margin-bottom: 17px;

    color:
        var(--bom-hero-gold);

    font-family:
        "Cinzel", serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .20em;

    text-transform: uppercase;

    opacity: 0;

    transform:
        translateY(18px);

}


.bom-cinema-title {

    margin: 0;

    color:
        var(--bom-hero-cream);

    font-family:
        "Bree Serif", serif;

    font-size:
        clamp(72px, 10vw, 154px);

    font-weight: 400;

    line-height: .78;

    letter-spacing: -.045em;

    text-transform: uppercase;

    opacity: 0;

    transform:
        translateY(45px);

}


.bom-cinema-title strong {

    display: block;

    margin-top: 15px;

    color:
        var(--bom-hero-orange);

    font-family:
        "Cinzel", serif;

    font-weight: 800;

    font-size: .61em;

    letter-spacing: -.02em;

}


.bom-cinema-copy {

    max-width: 550px;

    margin:
        31px 0 0;

    color:
        var(--bom-hero-muted);

    font-size:
        clamp(13px, 1.2vw, 16px);

    line-height: 1.8;

    opacity: 0;

    transform:
        translateY(20px);

}


/* =====================================================
   ACTIONS
===================================================== */

.bom-cinema-actions {

    margin-top: 31px;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    opacity: 0;

    transform:
        translateY(18px);

}


.bom-cinema-primary,
.bom-cinema-secondary {

    min-height: 56px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 999px;

    text-decoration: none;

    font-family:
        "Cinzel", serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .055em;

    text-transform: uppercase;

    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;

}


.bom-cinema-primary {

    padding:
        0 23px;

    background-color:
        var(--bom-hero-orange);

    border:
        1px solid
        var(--bom-hero-orange);

    color:
        #080604;

}


.bom-cinema-primary i {

    font-size: 19px;

    transition:
        transform .3s ease;

}


.bom-cinema-primary:hover {

    background-color:
        var(--bom-hero-gold);

    border-color:
        var(--bom-hero-gold);

    transform:
        translateY(-4px);

}


.bom-cinema-primary:hover i {

    transform:
        translate(3px, -3px);

}


.bom-cinema-secondary {

    padding:
        0 22px;

    background-color:
        rgba(5, 5, 5, .72);

    border:
        1px solid
        rgba(255, 244, 229, .28);

    color:
        var(--bom-hero-cream);

}


.bom-cinema-secondary i {

    color:
        var(--bom-hero-orange);

    font-size: 17px;

}


.bom-cinema-secondary:hover {

    border-color:
        var(--bom-hero-orange);

    color:
        var(--bom-hero-orange);

    transform:
        translateY(-4px);

}


/* =====================================================
   READY ANIMATION
===================================================== */

.bom-cinema-hero.is-ready
.bom-cinema-kicker,

.bom-cinema-hero.is-ready
.bom-cinema-title,

.bom-cinema-hero.is-ready
.bom-cinema-copy,

.bom-cinema-hero.is-ready
.bom-cinema-actions {

    opacity: 1;

    transform:
        translateY(0);

}


.bom-cinema-kicker {

    transition:
        opacity .55s ease .13s,
        transform .55s ease .13s;

}


.bom-cinema-title {

    transition:
        opacity .8s
        cubic-bezier(.22,1,.36,1)
        .20s,

        transform .8s
        cubic-bezier(.22,1,.36,1)
        .20s;

}


.bom-cinema-copy {

    transition:
        opacity .65s ease .38s,
        transform .65s ease .38s;

}


.bom-cinema-actions {

    transition:
        opacity .65s ease .48s,
        transform .65s ease .48s;

}


/* changing text */

.bom-cinema-hero.is-changing
.bom-cinema-kicker,

.bom-cinema-hero.is-changing
.bom-cinema-title,

.bom-cinema-hero.is-changing
.bom-cinema-copy {

    opacity: 0;

    transform:
        translateY(14px);

    transition-delay: 0s;

}


/* =====================================================
   RIGHT SIDE NAV
===================================================== */

.bom-cinema-side-nav {

    position: absolute;

    z-index: 6;

    top: 50%;

    right:
        clamp(18px, 4vw, 64px);

    transform:
        translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.bom-cinema-number {

    width: 190px;

    min-height: 63px;

    padding: 0;

    display: grid;

    grid-template-columns:
        43px 1fr;

    align-items: center;

    text-align: left;

    background-color: transparent;

    border: 0;

    border-bottom:
        1px solid
        rgba(255, 244, 229, .20);

    color:
        rgba(255, 244, 229, .55);

    cursor: pointer;

    transition:
        color .3s ease,
        padding-left .3s ease,
        border-color .3s ease;

}


.bom-cinema-number span {

    color:
        var(--bom-hero-orange);

    font-family:
        "Cinzel", serif;

    font-size: 10px;

    font-weight: 700;

}


.bom-cinema-number small {

    font-family:
        "Cinzel", serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .06em;

    text-transform: uppercase;

}


.bom-cinema-number:hover,
.bom-cinema-number.is-active {

    padding-left: 9px;

    color:
        var(--bom-hero-cream);

    border-color:
        var(--bom-hero-orange);

}


/* =====================================================
   BOTTOM AREA
===================================================== */

.bom-cinema-bottom {

    position: absolute;

    z-index: 6;

    left:
        clamp(20px, 6vw, 92px);

    right:
        clamp(20px, 4vw, 64px);

    bottom: 35px;

    display: grid;

    grid-template-columns:
        auto minmax(90px, 250px) 1fr;

    align-items: center;

    gap: 22px;

}


/* counter */

.bom-cinema-counter {

    display: flex;

    align-items: center;

    gap: 9px;

}


.bom-cinema-counter strong {

    color:
        var(--bom-hero-orange);

    font-family:
        "Cinzel", serif;

    font-size: 18px;

}


.bom-cinema-counter > span {

    width: 25px;

    height: 1px;

    background-color:
        rgba(255, 244, 229, .4);

}


.bom-cinema-counter small {

    color:
        var(--bom-hero-muted);

    font-family:
        "Cinzel", serif;

}


/* progress */

.bom-cinema-progress {

    height: 2px;

    overflow: hidden;

    background-color:
        rgba(255, 244, 229, .16);

}


.bom-cinema-progress span {

    display: block;

    width: 0;

    height: 100%;

    background-color:
        var(--bom-hero-orange);

}


/* arrows */

.bom-cinema-arrows {

    justify-self: end;

    display: flex;

    gap: 8px;

}


.bom-cinema-arrows button {

    width: 49px;

    height: 49px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 244, 229, .32);

    background-color:
        rgba(5, 5, 5, .68);

    color:
        var(--bom-hero-cream);

    font-size: 19px;

    cursor: pointer;

    transition:
        transform .3s ease,
        color .3s ease,
        background-color .3s ease,
        border-color .3s ease;

}


.bom-cinema-arrows button:hover {

    background-color:
        var(--bom-hero-orange);

    border-color:
        var(--bom-hero-orange);

    color:
        #060504;

    transform:
        translateY(-4px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .bom-cinema-content {

        right: 220px;

    }


    .bom-cinema-title {

        font-size:
            clamp(65px, 10vw, 105px);

    }


    .bom-cinema-side-nav {

        right: 22px;

    }


    .bom-cinema-number {

        width: 160px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .bom-cinema-hero {

        min-height: 780px;

    }


    .bom-cinema-slide img {

        object-position: center;

    }


    .bom-cinema-topline {

        top: 25px;

        left: 18px;

        right: 18px;

        font-size: 7px;

        letter-spacing: .13em;

    }


    .bom-cinema-topline span:last-child {

        display: none;

    }


    .bom-cinema-content {

        left: 18px;

        right: 18px;

        bottom: 135px;

        max-width: none;

    }


    .bom-cinema-title {

        font-size:
            clamp(58px, 17vw, 82px);

        line-height: .83;

    }


    .bom-cinema-title strong {

        margin-top: 10px;

    }


    .bom-cinema-copy {

        max-width: 500px;

        margin-top: 22px;

        font-size: 13px;

    }


    .bom-cinema-actions {

        margin-top: 25px;

    }


    .bom-cinema-primary,
    .bom-cinema-secondary {

        min-height: 50px;

        padding:
            0 17px;

        font-size: 9px;

    }


    /* hide desktop side nav */

    .bom-cinema-side-nav {

        display: none;

    }


    .bom-cinema-bottom {

        left: 18px;

        right: 18px;

        bottom: 22px;

        grid-template-columns:
            auto 1fr auto;

        gap: 14px;

    }


    .bom-cinema-arrows button {

        width: 43px;

        height: 43px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .bom-cinema-hero {

        min-height: 720px;

    }


    .bom-cinema-title {

        font-size:
            clamp(51px, 16vw, 67px);

    }


    .bom-cinema-actions {

        align-items: stretch;

        flex-direction: column;

    }


    .bom-cinema-primary,
    .bom-cinema-secondary {

        width: 100%;

    }


    .bom-cinema-progress {

        display: none;

    }


    .bom-cinema-bottom {

        grid-template-columns:
            1fr auto;

    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        transition: none !important;

        animation: none !important;

    }

}

/* about us  */

/* =========================================================
   BOMBAY CURRY
   THREE COLUMN ABOUT SECTION
   No Gradient / No Ticker
========================================================= */

:root {
    --bm-black: #070707;
    --bm-black-soft: #0e0c0a;

    --bm-orange: #ff6900;
    --bm-orange-light: #ff8900;

    --bm-gold: #ffb414;

    --bm-cream: #fff4e4;
    --bm-muted: #a7a098;

    --bm-border: rgba(255, 113, 0, 0.22);
}


/* =========================================================
   SECTION
========================================================= */

.bm-story-section {
    position: relative;

    width: 100%;
    padding: 125px 28px;

    overflow: hidden;

    background-color:#ff6b00b8;

    font-family: "Inter", sans-serif;
}


/* subtle solid-color side detail
   no gradient used */
.bm-story-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 6%;

    width: 1px;
    height: 100%;

    background-color: rgba(255, 105, 0, 0.08);

    pointer-events: none;
}


.bm-story-container {
    position: relative;
    z-index: 2;

    width: min(1400px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(260px, 0.92fr)
        minmax(390px, 1.15fr)
        minmax(260px, 0.92fr);

    gap: clamp(30px, 4vw, 68px);

    align-items: center;
}


/* =========================================================
   IMAGES
========================================================= */

.bm-story-media {
    position: relative;
}


.bm-story-photo {
    position: relative;

    width: 100%;
    height: clamp(510px, 58vw, 720px);

    overflow: hidden;

    border-radius: 120px 120px 32px 32px;

    background-color: #17120e;

    border: 1px solid var(--bm-border);
}


.bm-story-photo-right {
    border-radius: 32px 32px 120px 120px;
}


.bm-story-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.02);

    transition:
        transform 1.2s cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}


.bm-story-photo:hover img {
    transform: scale(1.075);
}


/* =========================================================
   LEFT IMAGE LABEL
========================================================= */

.bm-story-photo-label {
    position: absolute;

    left: 22px;
    bottom: 22px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 11px 17px 11px 12px;

    background-color: rgba(7, 7, 7, 0.90);

    border: 1px solid rgba(255, 132, 0, 0.30);

    border-radius: 999px;

    color: var(--bm-cream);
}


.bm-story-photo-label span {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: var(--bm-orange);

    color: #080808;

    font-family: "Cinzel", serif;

    font-size: 10px;
    font-weight: 800;
}


.bm-story-photo-label p {
    margin: 0;

    font-family: "Cinzel", serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.10em;

    text-transform: uppercase;
}


/* =========================================================
   CENTER CONTENT
========================================================= */

.bm-story-content {
    position: relative;

    text-align: left;

    padding: 20px 0;
}


.bm-story-eyebrow {
    margin-bottom: 25px;

    display: flex;
    align-items: center;

    gap: 14px;

    color: var(--bm-gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.24em;

    text-transform: uppercase;
}


.bm-story-line {
    width: 42px;
    height: 1px;

    display: block;

    background-color: var(--bm-orange);
}


/* =========================================================
   HEADING
========================================================= */

.bm-story-title {
    margin: 0;

    max-width: 620px;

    color: var(--bm-cream);

    font-family: "Cinzel", serif;

    font-size: clamp(44px, 4.8vw, 76px);

    font-weight: 600;

    line-height: 0.99;

    letter-spacing: -0.045em;
}


.bm-story-title strong {
    display: block;

    margin-top: 7px;

    color: var(--bm-orange);

    font-weight: 700;
}


/* =========================================================
   TEXT
========================================================= */

.bm-story-lead {
    margin: 30px 0 17px;

    max-width: 590px;

    color: var(--bm-cream);

    font-family: "Cinzel", serif;

    font-size: clamp(16px, 1.35vw, 20px);

    line-height: 1.65;
}


.bm-story-description {
    margin: 0;

    max-width: 600px;

    color: var(--bm-muted);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   FEATURES
========================================================= */

.bm-story-features {
    margin-top: 33px;

    padding: 25px 0;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    border-top: 1px solid rgba(255, 132, 0, 0.16);
    border-bottom: 1px solid rgba(255, 132, 0, 0.16);
}


.bm-story-feature {
    display: flex;
    align-items: center;

    gap: 14px;
}


.bm-story-feature i {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: #16110d;

    border: 1px solid rgba(255, 105, 0, 0.25);

    color: var(--bm-orange);

    font-size: 20px;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .35s ease;
}


.bm-story-feature:hover i {
    background-color: var(--bm-orange);

    color: #070707;

    transform: translateY(-4px) rotate(-5deg);
}


.bm-story-feature span {
    display: block;

    margin-bottom: 5px;

    color: var(--bm-cream);

    font-family: "Cinzel", serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .04em;
}


.bm-story-feature small {
    display: block;

    color: var(--bm-muted);

    font-size: 10px;

    letter-spacing: .04em;
}


/* =========================================================
   BUTTON
========================================================= */

.bm-story-button {
    width: fit-content;

    min-height: 58px;

    margin-top: 32px;

    padding: 7px 7px 7px 25px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    border-radius: 999px;

    background-color: var(--bm-orange);

    border: 1px solid var(--bm-orange);

    color: #080808;

    text-decoration: none;

    font-family: "Cinzel", serif;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .065em;

    text-transform: uppercase;

    transition:
        background-color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}


.bm-story-button-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #080808;

    color: var(--bm-orange);

    font-size: 18px;

    transition:
        transform .35s ease,
        background-color .35s ease,
        color .35s ease;
}


.bm-story-button:hover {
    background-color: var(--bm-gold);

    transform: translateY(-4px);

    box-shadow: 0 14px 35px rgba(255, 105, 0, 0.17);
}


.bm-story-button:hover .bm-story-button-icon {
    transform: rotate(45deg);

    color: var(--bm-gold);
}


/* =========================================================
   RIGHT IMAGE QUOTE
========================================================= */

.bm-story-food-note {
    position: absolute;

    top: 22px;
    left: 22px;
    right: 22px;

    max-width: 260px;

    padding: 18px;

    border-radius: 20px;

    background-color: rgba(7, 7, 7, 0.91);

    border: 1px solid rgba(255, 132, 0, 0.22);
}


.bm-story-food-note i {
    display: block;

    margin-bottom: 8px;

    color: var(--bm-orange);

    font-size: 23px;
}


.bm-story-food-note p {
    margin: 0;

    color: rgba(255, 244, 228, 0.87);

    font-family: "Cinzel", serif;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   SIGNATURE
========================================================= */

.bm-story-signature {
    width: calc(100% - 50px);

    margin: -38px auto 0;

    position: relative;
    z-index: 4;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    background-color: var(--bm-black-soft);

    border: 1px solid var(--bm-border);

    border-radius: 22px;

    transition:
        transform .35s ease,
        border-color .35s ease;
}


.bm-story-signature:hover {
    transform: translateY(-5px);

    border-color: rgba(255, 105, 0, 0.6);
}


.bm-story-signature-number {
    color: var(--bm-orange);

    font-family: "Cinzel", serif;

    font-size: 28px;

    font-weight: 800;
}


.bm-story-signature strong,
.bm-story-signature small {
    display: block;
}


.bm-story-signature strong {
    margin-bottom: 4px;

    color: var(--bm-cream);

    font-family: "Cinzel", serif;

    font-size: 11px;

    letter-spacing: .05em;
}


.bm-story-signature small {
    color: var(--bm-muted);

    font-size: 9px;

    letter-spacing: .07em;

    text-transform: uppercase;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.bm-reveal {
    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity .9s cubic-bezier(.22,1,.36,1),
        transform .9s cubic-bezier(.22,1,.36,1);
}


.bm-reveal.bm-visible {
    opacity: 1;

    transform: translateY(0);
}


.bm-story-media-left {
    transition-delay: .05s;
}


.bm-story-content {
    transition-delay: .16s;
}


.bm-story-media-right {
    transition-delay: .28s;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .bm-story-section {
        padding: 100px 24px;
    }


    .bm-story-container {
        grid-template-columns:
            minmax(220px, .8fr)
            minmax(350px, 1.1fr)
            minmax(220px, .8fr);

        gap: 32px;
    }


    .bm-story-photo {
        height: 570px;
    }


    .bm-story-title {
        font-size: clamp(41px, 4vw, 60px);
    }


    .bm-story-features {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .bm-story-section {
        padding: 85px 20px;
    }


    .bm-story-container {
        grid-template-columns: 1fr 1fr;

        gap: 28px;
    }


    .bm-story-content {
        grid-column: 1 / -1;

        grid-row: 1;

        max-width: 720px;

        padding-bottom: 25px;
    }


    .bm-story-media-left {
        grid-column: 1;

        grid-row: 2;
    }


    .bm-story-media-right {
        grid-column: 2;

        grid-row: 2;
    }


    .bm-story-photo {
        height: 530px;

        border-radius: 75px 75px 25px 25px;
    }


    .bm-story-photo-right {
        border-radius: 25px 25px 75px 75px;
    }


    .bm-story-features {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .bm-story-section {
        padding: 70px 15px;
    }


    .bm-story-container {
        display: flex;
        flex-direction: column;

        gap: 40px;
    }


    .bm-story-content {
        order: 1;

        width: 100%;

        padding: 0;
    }


    .bm-story-media-left {
        order: 2;

        width: 100%;
    }


    .bm-story-media-right {
        order: 3;

        width: 100%;
    }


    .bm-story-eyebrow {
        margin-bottom: 19px;

        font-size: 9px;
    }


    .bm-story-title {
        font-size: clamp(39px, 12vw, 55px);

        line-height: 1;
    }


    .bm-story-lead {
        margin-top: 24px;

        font-size: 15px;
    }


    .bm-story-description {
        font-size: 13px;

        line-height: 1.85;
    }


    .bm-story-features {
        margin-top: 27px;

        grid-template-columns: 1fr;

        gap: 19px;
    }


    .bm-story-button {
        margin-top: 28px;
    }


    .bm-story-photo {
        height: 480px;

        border-radius: 55px 55px 22px 22px;
    }


    .bm-story-photo-right {
        border-radius: 22px 22px 55px 55px;
    }


    .bm-story-food-note {
        top: 15px;
        left: 15px;
        right: 15px;

        max-width: 235px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .bm-story-section {
        padding-left: 12px;
        padding-right: 12px;
    }


    .bm-story-title {
        font-size: 38px;
    }


    .bm-story-photo {
        height: 410px;
    }


    .bm-story-photo-label {
        left: 13px;
        bottom: 13px;

        padding-right: 13px;
    }


    .bm-story-signature {
        width: calc(100% - 24px);
    }


    .bm-story-button {
        width: 100%;

        justify-content: space-between;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .bm-reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }


    .bm-story-photo img,
    .bm-story-button,
    .bm-story-feature i {
        transition: none;
    }

}

/* menu section */

:root {
  --bm-black: #070604;
  --bm-brown: #2b160b;
  --bm-brown-soft: #170d08;
  --bm-orange: #ff7900;
  --bm-gold: #ffad13;
  --bm-cream: #fff5e7;
  --bm-muted: #c1b5a9;
  --bm-line: rgba(255, 121, 0, 0.34);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #050403;
  color: var(--bm-cream);
  font-family: "Inter", sans-serif;
}
.bm-menu {
  position: relative;
  overflow: hidden;
  padding: 110px 26px;
  background-color: var(--bm-black);
}
.bm-menu__wrap {
  position: relative;
  z-index: 2;
  width: min(1450px, 100%);
  margin: auto;
}
.bm-menu__head {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}
.bm-menu__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--bm-orange);
  text-transform: uppercase;
}
.bm-menu__eyebrow span {
  width: 78px;
  height: 1px;
  background: var(--bm-orange);
}
.bm-menu__eyebrow small {
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.38em;
}
.bm-menu__head h2 {
  margin: 13px 0 10px;
  font-family: "Cinzel", serif;
  font-size: clamp(38px, 4.7vw, 68px);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.bm-menu__head h2 strong {
  color: var(--bm-orange);
  font-weight: 700;
}
.bm-menu__head p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--bm-muted);
  font-size: 14px;
  line-height: 1.75;
}
.bm-menu__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  margin: 30px 0 34px;
}
.bm-filter {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--bm-line);
  border-radius: 999px;
  background: transparent;
  color: var(--bm-cream);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s ease;
}
.bm-filter i {
  font-size: 17px;
  color: var(--bm-orange);
}
.bm-filter:hover,
.bm-filter.is-active {
  background: var(--bm-orange);
  border-color: var(--bm-orange);
  color: #080503;
  transform: translateY(-2px);
}
.bm-filter:hover i,
.bm-filter.is-active i {
  color: #080503;
}
.bm-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bm-dish {
  overflow: hidden;
  border: 1px solid rgba(255, 121, 0, 0.3);
  border-radius: 18px;
  background-color: #0b0806;
  transition:
    transform 0.42s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.bm-dish:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 121, 0, 0.75);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3);
}
.bm-dish.is-hidden {
  display: none;
}
.bm-dish__image {
  height: 270px;
  overflow: hidden;
  background-color: var(--bm-brown);
}
.bm-dish__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bm-dish:hover .bm-dish__image img {
  transform: scale(1.075);
}
.bm-dish__footer {
  min-height: 76px;
  padding: 13px 14px 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bm-dish__footer h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 650;
}
.bm-dish__footer a {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--bm-orange);
  border-radius: 999px;
  color: var(--bm-orange);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: 0.3s ease;
}
.bm-dish__footer a i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.bm-dish__footer a:hover {
  background: var(--bm-orange);
  color: #090604;
}
.bm-dish__footer a:hover i {
  transform: translateX(3px);
}
.bm-menu__cta {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(60px, 200px) auto minmax(60px, 200px);
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.bm-menu__cta > span {
  height: 1px;
  background: rgba(255, 121, 0, 0.38);
}
.bm-menu__cta a {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  background: var(--bm-orange);
  color: #080503;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: 0.3s ease;
}
.bm-menu__cta a:hover {
  background: var(--bm-gold);
  transform: translateY(-3px);
}
.bm-menu__cta a i {
  font-size: 18px;
}
.bm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.bm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1050px) {
  .bm-menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .bm-menu {
    padding: 78px 14px;
  }
  .bm-menu__filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }
  .bm-menu__filters::-webkit-scrollbar {
    display: none;
  }
  .bm-filter {
    flex: 0 0 auto;
  }
  .bm-menu__grid {
    grid-template-columns: 1fr;
  }
  .bm-dish__image {
    height: 255px;
  }
  .bm-menu__cta {
    grid-template-columns: 1fr;
  }
  .bm-menu__cta > span {
    display: none;
  }
}
@media (max-width: 430px) {
  .bm-menu__head h2 {
    font-size: 38px;
  }
  .bm-dish__footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .bm-dish__footer a {
    width: 100%;
    justify-content: space-between;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .bm-reveal {
    opacity: 1;
    transform: none;
  }
}
/* <!-- testimonial section --> */

:root {
    --bct-black: #070605;
    --bct-black-soft: #100c08;

    --bct-brown: #2b160b;

    --bct-orange: #ff7200;
    --bct-gold: #ffb015;

    --bct-cream: #fff4e4;
    --bct-muted: #aaa096;

    --bct-line: rgba(255, 114, 0, 0.22);
}


/* =========================================================
   SECTION
========================================================= */

.bct-review-section {
    position: relative;

    width: 100%;

    padding: 110px 24px;

    overflow: hidden;

    background-color: #ff6b00b8;

    font-family: "Inter", sans-serif;
}


/* NO GRADIENT */

.bct-review-section::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 100%;
    height: 1px;

    background-color: rgba(255, 114, 0, 0.05);

    pointer-events: none;
}


.bct-review-wrap {
    position: relative;

    z-index: 2;

    width: min(1380px, 100%);

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.bct-review-heading {
    max-width: 760px;

    margin: 0 auto 48px;

    text-align: center;
}


.bct-review-eyebrow {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    color: white;
}


.bct-review-eyebrow span {
    width: 60px;
    height: 1px;

    background-color: var(--bct-orange);
}


.bct-review-eyebrow small {
    font-family: "Cinzel", serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.27em;

    text-transform: uppercase;
}


.bct-review-heading h2 {
    margin: 16px 0 13px;

    color: var(--bct-cream);

    font-family: "Cinzel", serif;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1;

    font-weight: 600;

    letter-spacing: -0.04em;
}


.bct-review-heading h2 strong {
    display: block;

    color: #ffffff;

    font-weight: 700;
}


.bct-review-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--bct-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SLIDER
========================================================= */

.bct-review-slider {
    position: relative;

    overflow: hidden;
}


.bct-review-track {
    display: flex;

    gap: 22px;

    transition:
        transform .65s cubic-bezier(.22,1,.36,1);
}


/* =========================================================
   CARD
========================================================= */

.bct-review-card {
    flex: 0 0 calc(33.333% - 15px);

    min-height: 390px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    background-color: var(--bct-black-soft);

    border: 1px solid var(--bct-line);

    border-radius: 28px;

    transition:
        transform .4s ease,
        border-color .35s ease,
        background-color .35s ease;
}


.bct-review-card:hover {
    transform: translateY(-7px);

    border-color: rgba(255,114,0,.65);

    background-color: #140d08;
}


/* =========================================================
   USER
========================================================= */

.bct-review-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;
}


.bct-review-user {
    display: flex;

    align-items: center;

    gap: 13px;
}


.bct-review-avatar {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: var(--bct-orange);

    color: #070605;

   font-family: "Cinzel", serif;
font-weight: 800;

    font-size: 17px;

    
}


.bct-review-user h3 {
    margin: 0 0 4px;

    color: var(--bct-cream);

    font-family: "Cinzel", serif;

    font-size: 14px;

    font-weight: 700;
}


.bct-review-user span {
    color: var(--bct-muted);

    font-size: 9px;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.bct-google-icon {
    color: var(--bct-orange);

    font-size: 23px;
}


/* =========================================================
   STARS
========================================================= */

.bct-review-stars {
    margin: 29px 0 20px;

    display: flex;

    gap: 4px;

    color: var(--bct-gold);

    font-size: 15px;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.bct-review-text {
    flex: 1;

    margin: 0;

    color: rgba(255,244,228,.84);

    font-family: "Cinzel", serif;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   SCORES
========================================================= */

.bct-review-score {
    margin-top: 28px;

    padding-top: 20px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--bct-line);
}


.bct-review-score span {
    display: flex;

    flex-direction: column;

    gap: 4px;

    color: var(--bct-muted);

    font-size: 8px;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.bct-review-score strong {
    color: var(--bct-orange);

    font-family: "Cinzel", serif;

    font-size: 16px;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.bct-review-highlight {
    margin-top: 27px;

    padding-top: 20px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-top: 1px solid var(--bct-line);
}


.bct-review-highlight i {
    color: var(--bct-orange);

    font-size: 24px;
}


.bct-review-highlight span {
    color: var(--bct-gold);

    font-family: "Cinzel", serif;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   CONTROLS
========================================================= */

.bct-review-controls {
    margin-top: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;
}


.bct-review-arrow {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid var(--bct-line);

    background-color: #120b07;

    color: var(--bct-orange);

    font-size: 19px;

    cursor: pointer;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease;
}


.bct-review-arrow:hover {
    background-color: var(--bct-orange);

    color: #070605;

    transform: translateY(-3px);
}


.bct-review-dots {
    display: flex;

    align-items: center;

    gap: 7px;
}


.bct-review-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background-color: rgba(255,244,228,.25);

    cursor: pointer;

    transition:
        width .3s ease,
        background-color .3s ease;
}


.bct-review-dot.is-active {
    width: 26px;

    border-radius: 999px;

    background-color: var(--bct-orange);
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.bct-review-reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s cubic-bezier(.22,1,.36,1),
        transform .8s cubic-bezier(.22,1,.36,1);
}


.bct-review-reveal.is-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .bct-review-card {
        flex: 0 0 calc(50% - 11px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .bct-review-section {
        padding: 75px 14px;
    }


    .bct-review-heading {
        margin-bottom: 35px;
    }


    .bct-review-heading h2 {
        font-size: 40px;
    }


    .bct-review-card {
        flex: 0 0 100%;

        min-height: 360px;

        padding: 24px;
    }


    .bct-review-track {
        gap: 14px;
    }


    .bct-review-score {
        gap: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .bct-review-card {
        padding: 21px;
    }


    .bct-review-heading h2 {
        font-size: 35px;
    }


    .bct-review-text {
        font-size: 14px;
    }

}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

    .bct-review-reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }

}

/* map section */

.bombay-map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.bombay-map-section iframe {
    display: block;
    width: 100%;
    height: 450px;
    margin: 0;
    padding: 0;
    border: 0;
}

@media (max-width: 768px) {
    .bombay-map-section iframe {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .bombay-map-section iframe {
        height: 330px;
    }
}

/* footer section */

/* =========================================================
   BOMBAY CURRY PREMIUM FOOTER
   NO GRADIENT
   NO TICKER
========================================================= */

:root {

    --bcy-foot-black: #070605;

    --bcy-foot-soft:
        #100c08;

    --bcy-foot-brown:
        #241208;

    --bcy-foot-orange:
        #ff7200;

    --bcy-foot-gold:
        #ffb20f;

    --bcy-foot-cream:
        #fff4e4;

    --bcy-foot-muted:
        #9f958b;

    --bcy-foot-border:
        rgba(255, 114, 0, 0.20);

}


/* =========================================================
   FOOTER
========================================================= */

.bcy-footer {

    position: relative;

    width: 100%;

    padding: 85px 28px 25px;

    overflow: hidden;

    background-color:
        var(--bcy-foot-black);

    color:
        var(--bcy-foot-cream);

    font-family:
        "Inter", sans-serif;

}


/* solid line only */

.bcy-footer::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    width: calc(100% - 56px);

    max-width: 1450px;

    height: 1px;

    transform:
        translateX(-50%);

    background-color:
        rgba(255, 114, 0, .24);

}


.bcy-footer-shell {

    position: relative;

    width:
        min(1420px, 100%);

    margin: 0 auto;

}


/* =========================================================
   TOP
========================================================= */

.bcy-footer-top {

    display: grid;

    grid-template-columns:
        150px 1fr auto;

    align-items: center;

    gap: 40px;

    padding-bottom: 62px;

}


/* LOGO */

.bcy-footer-brand {

    width: 125px;

    height: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.bcy-footer-brand img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

    transition:
        transform .5s
        cubic-bezier(.2,.8,.2,1);

}


.bcy-footer-brand:hover img {

    transform:
        rotate(-3deg)
        scale(1.055);

}


/* TITLE */

.bcy-footer-small-title {

    display: block;

    margin-bottom: 10px;

    color:
        var(--bcy-foot-orange);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .25em;

    text-transform: uppercase;

}


.bcy-footer-statement h2 {

    margin: 0;

    max-width: 720px;

    font-family:
        "Cinzel", serif;

    font-size:
        clamp(37px, 4.2vw, 64px);

    font-weight: 600;

    line-height: .98;

    letter-spacing:
        -.04em;

}


.bcy-footer-statement h2 strong {

    color:
        var(--bcy-foot-orange);

    font-weight: 700;

}


/* ORDER BUTTON */

.bcy-footer-order {

    min-height: 58px;

    padding:
        7px 7px
        7px 24px;

    display: inline-flex;

    align-items: center;

    gap: 20px;

    border-radius: 999px;

    background-color:
        var(--bcy-foot-orange);

    color: #080605;

    text-decoration: none;

    font-family:
        "Cinzel", serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .06em;

    text-transform: uppercase;

    transition:
        transform .3s ease,
        background-color .3s ease;

}


.bcy-footer-order i {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background-color:
        #090604;

    color:
        var(--bcy-foot-orange);

    font-size: 18px;

    transition:
        transform .35s ease;

}


.bcy-footer-order:hover {

    background-color:
        var(--bcy-foot-gold);

    transform:
        translateY(-4px);

}


.bcy-footer-order:hover i {

    transform:
        rotate(45deg);

}


/* =========================================================
   MAIN GRID
========================================================= */

.bcy-footer-grid {

    display: grid;

    grid-template-columns:
        .9fr .9fr 1.45fr;

    border-top:
        1px solid
        var(--bcy-foot-border);

    border-bottom:
        1px solid
        var(--bcy-foot-border);

}


.bcy-footer-column {

    min-height: 315px;

    padding:
        42px 44px;

    border-right:
        1px solid
        var(--bcy-foot-border);

}


.bcy-footer-column:first-child {

    padding-left: 0;

}


.bcy-footer-column:last-child {

    border-right: 0;

    padding-right: 0;

}


/* COLUMN TITLE */

.bcy-footer-column-head {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 34px;

}


.bcy-footer-column-head > span {

    color:
        var(--bcy-foot-orange);

    font-size: 9px;

    font-weight: 700;

}


.bcy-footer-column-head h3 {

    margin: 0;

    color:
        var(--bcy-foot-cream);

    font-family:
        "Cinzel", serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .09em;

    text-transform: uppercase;

}


/* =========================================================
   ADDRESS / PHONE
========================================================= */

.bcy-footer-address,
.bcy-footer-phone {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    color:
        var(--bcy-foot-cream);

    text-decoration: none;

    font-family:
        "Cinzel", serif;

    font-size:
        clamp(16px, 1.45vw, 21px);

    line-height: 1.6;

    transition:
        color .3s ease,
        transform .3s ease;

}


.bcy-footer-address i,
.bcy-footer-phone i {

    margin-top: 4px;

    color:
        var(--bcy-foot-orange);

    font-size: 21px;

}


.bcy-footer-address:hover,
.bcy-footer-phone:hover {

    color:
        var(--bcy-foot-gold);

    transform:
        translateX(4px);

}


.bcy-footer-contact-note {

    max-width: 310px;

    margin:
        22px 0 0;

    color:
        var(--bcy-foot-muted);

    font-size: 12px;

    line-height: 1.8;

}


/* SMALL LINK */

.bcy-footer-link {

    width: fit-content;

    margin-top: 25px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        var(--bcy-foot-orange);

    text-decoration: none;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;

}


.bcy-footer-link i {

    font-size: 16px;

    transition:
        transform .3s ease;

}


.bcy-footer-link:hover i {

    transform:
        translateX(5px);

}


/* =========================================================
   HOURS
========================================================= */

.bcy-hours-list {

    width: 100%;

}


.bcy-hours-row {

    min-height: 34px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 25px;

    padding:
        7px 0;

    border-bottom:
        1px solid
        rgba(255, 114, 0, .10);

    color:
        var(--bcy-foot-muted);

    font-size: 11px;

    transition:
        color .3s ease,
        padding-left .3s ease;

}


.bcy-hours-row:last-child {

    border-bottom: 0;

}


.bcy-hours-row strong {

    color:
        var(--bcy-foot-cream);

    font-family:
        "Cinzel", serif;

    font-size: 10px;

    font-weight: 600;

}


.bcy-hours-row.is-today {

    padding-left: 10px;

    color:
        var(--bcy-foot-orange);

    border-left:
        2px solid
        var(--bcy-foot-orange);

}


.bcy-hours-row.is-today strong {

    color:
        var(--bcy-foot-gold);

}


/* =========================================================
   BOTTOM
========================================================= */

.bcy-footer-bottom {

    min-height: 80px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 30px;

}


.bcy-footer-bottom p {

    margin: 0;

    color:
        var(--bcy-foot-muted);

    font-size: 9px;

    letter-spacing: .06em;

    text-transform: uppercase;

}


.bcy-footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 22px;

}


.bcy-footer-bottom-links a {

    color:
        rgba(255,244,228,.65);

    text-decoration: none;

    font-family:
        "Cinzel", serif;

    font-size: 9px;

    text-transform: uppercase;

    transition:
        color .3s ease;

}


.bcy-footer-bottom-links a:hover {

    color:
        var(--bcy-foot-orange);

}


/* BACK TOP */

.bcy-footer-backtop {

    justify-self: end;

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        var(--bcy-foot-muted);

    text-decoration: none;

    font-size: 9px;

    text-transform: uppercase;

}


.bcy-footer-backtop i {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border:
        1px solid
        var(--bcy-foot-border);

    color:
        var(--bcy-foot-orange);

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease;

}


.bcy-footer-backtop:hover i {

    background-color:
        var(--bcy-foot-orange);

    color:
        #070605;

    transform:
        translateY(-4px);

}


/* =========================================================
   REVEAL
========================================================= */

.bcy-footer-reveal {

    opacity: 0;

    transform:
        translateY(32px);

    transition:
        opacity .8s
        cubic-bezier(.22,1,.36,1),
        transform .8s
        cubic-bezier(.22,1,.36,1);

}


.bcy-footer-reveal.is-visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .bcy-footer {

        padding:
            75px 22px 20px;

    }


    .bcy-footer-top {

        grid-template-columns:
            110px 1fr;

    }


    .bcy-footer-order {

        grid-column:
            2;

        width:
            fit-content;

    }


    .bcy-footer-brand {

        width: 100px;

        height: 100px;

    }


    .bcy-footer-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .bcy-footer-hours {

        grid-column:
            1 / -1;

        border-top:
            1px solid
            var(--bcy-foot-border);

    }


    .bcy-footer-column:nth-child(2) {

        border-right: 0;

    }


    .bcy-footer-column:nth-child(3) {

        padding-left: 0;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .bcy-footer {

        padding:
            65px 15px 15px;

    }


    .bcy-footer-top {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        padding-bottom: 45px;

    }


    .bcy-footer-brand {

        width: 90px;

        height: 90px;

    }


    .bcy-footer-statement h2 {

        font-size:
            clamp(35px, 11vw, 48px);

    }


    .bcy-footer-order {

        width: 100%;

        justify-content:
            space-between;

    }


    .bcy-footer-grid {

        display: block;

    }


    .bcy-footer-column {

        min-height: auto;

        padding:
            33px 0;

        border-right: 0;

        border-bottom:
            1px solid
            var(--bcy-foot-border);

    }


    .bcy-footer-column:last-child {

        border-bottom: 0;

    }


    .bcy-footer-bottom {

        padding:
            27px 0 10px;

        display: flex;

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 20px;

    }


    .bcy-footer-bottom-links {

        flex-wrap: wrap;

        gap:
            12px 19px;

    }


    .bcy-footer-backtop {

        align-self:
            flex-end;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .bcy-footer {

        padding-left: 12px;

        padding-right: 12px;

    }


    .bcy-hours-row {

        gap: 12px;

    }


    .bcy-hours-row strong {

        font-size: 9px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media
(prefers-reduced-motion: reduce) {

    .bcy-footer-reveal {

        opacity: 1;

        transform: none;

        transition: none;

    }

}


/* orderbtn */


.order-btn{

position:fixed;

bottom:30px;

right: 30px;

width:64px;

height:64px;

display:flex;

align-items:center;

justify-content:center;

padding:11px;

background:#fc6143;

color:#fff;

text-decoration:none;

border-radius:50%;

box-shadow:0 6px 15px rgba(0,0,0,0.3);

z-index:999;

animation:pulse 2s infinite;

overflow:hidden;

opacity:0;

visibility:hidden;

transform:translateY(30px);

transition:
    opacity .4s ease,
    transform .4s ease,
    visibility .4s ease,
    background .3s ease,
    box-shadow .3s ease;
}


.order-btn img{

  width:100%;
  height:100%;

  display:block;

  margin:0;
  padding:0;

  object-fit:contain;

  box-sizing:border-box;

  transition:transform .3s ease;
}


.order-btn:hover{

  background:#fc6143;

  transform:
    translateY(-4px)
    scale(1.06);

  box-shadow:
    0 10px 24px rgba(0,0,0,.35);
}


.order-btn:hover img{

  transform:scale(1.08);
}


.order-btn:active{

  transform:scale(.96);
}


/* =============================
   PULSE ANIMATION
============================= */

@keyframes pulse{

  0%{

    box-shadow:
      0 0 0 0 rgba(252,97,67,0.7),
      0 6px 15px rgba(0,0,0,0.3);

  }

  70%{

    box-shadow:
      0 0 0 20px rgba(252,97,67,0),
      0 6px 15px rgba(0,0,0,0.3);

  }

  100%{

    box-shadow:
      0 0 0 0 rgba(252,97,67,0),
      0 6px 15px rgba(0,0,0,0.3);

  }

}


/* =============================
   TABLET
============================= */

@media(max-width:768px){

  .order-btn{

bottom:22px;

right: 22px;

width:58px;

height:58px;

padding:10px;

}

}


/* =============================
   MOBILE
============================= */

@media(max-width:600px){

  .order-btn{

bottom:20px;

right: 20px;

width:54px;

height:54px;

padding:9px;

}

}


/* =============================
   SMALL MOBILE
============================= */

@media(max-width:380px){

  .order-btn{

    bottom:16px;
    left:16px;

    width:50px;
    height:50px;

    padding:8px;
  }

}


/* =============================
   ACCESSIBILITY
============================= */

.order-btn:focus-visible{

  outline:2px solid #fff;

  outline-offset:4px;
}


/* Reduced motion */

@media(prefers-reduced-motion:reduce){

  .order-btn{

    animation:none;
  }

}
/* Show Class */
.order-btn.show-order-btn{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
/* ============================================
   FINAL SPACING / FLOATING ORDER BUTTON FIXES
============================================ */

.smkEmberStory,
.smkMenuLedger,
.smkGuestFire{
  padding-block:var(--section-space);
}

.smkPitFooter{
  padding-top:var(--section-space);
}

.order-btn.show-order-btn:hover{
  transform:translateY(-4px) scale(1.06);
}


.order-btn.show-order-btn:active{
  transform:scale(.96);
}
