:root {
    --bg: #090909;
    --panel: #111;
    --text: #f8f3ea;
    --muted: #b9b1a7;
    --orange: #ef5b25;
    --gold: #dcae3e;
    --red: #d82026;
    --line: rgba(255, 255, 255, .12);
    --max: 1240px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Manrope, Arial, sans-serif;
    overflow-x: hidden
}

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

img {
    display: block
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1100;

    height: 86px;
    display: flex;
    align-items: center;
    gap: 28px;

    padding: 0 max(22px, calc((100vw - var(--max)) / 2));

    background: transparent;
    transition:
        background-color .3s ease,
        border-color .3s ease,
        backdrop-filter .3s ease;
}

.header.scrolled,
.header.menu-open {
    background: #090909;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    /* border: 1px solid rgba(220, 174, 62, .55) */
}

.brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.1
}

.brand b {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .08em
}

.brand small {
    color: var(--gold);
    font-size: 10px;
    margin-top: 5px
}

.header nav {
    display: flex;
    gap: 24px
}

.header nav a {
    font-size: 12px;
    font-weight: 800;
    color: #ddd
}

.header nav a:hover {
    color: var(--orange)
}

.pill {
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 11px;
    font-weight: 800
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 44px
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 7px
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 140px max(24px, calc((100vw - var(--max)) / 2)) 80px;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .74) 42%, rgba(0, 0, 0, .12) 100%), linear-gradient(0deg, #090909 0, transparent 24%)
}

.hero-layout {
    position: relative;
    z-index: 2;

    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    align-items: center;
    gap: clamp(32px, 6vw, 90px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0;
}

.hero-logo-wrap {
    position: relative;
    z-index: 2;

    display: flex;
    place-items: center;

    min-width: 0;
}
@media (max-width:768px){

    .hero-logo-wrap{
        display:none;
    }

}

.hero-logo-wrap::before {
    content:"";
    position: absolute;

    width: 115%;
    aspect-ratio: 1;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(220, 174, 62, .18),
        rgba(239, 91, 37, .08) 44%,
        transparent 70%
    );

    filter: blur(16px);
    pointer-events: none;
}

.eyebrow {
    text-transform: uppercase;
    margin-top: 40px;
    letter-spacing: .19em;
    font-size: 11px;
    font-weight: 800;
    color: var(--orange)
}
.total-option{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:0px 34px;

    background:rgba(0,0,0,.55);
    backdrop-filter:blur(10px);

    border:1px solid rgba(212,175,55,.35);
    border-radius:50px;

    color:#fff;
    font-size:20px;
    font-weight:600;

    box-shadow:0 10px 35px rgba(0,0,0,.35);
}

.total-option{
    font-size:42px;
    font-weight:800;
    line-height:1;

    background:linear-gradient(
        180deg,
        #FFD76A,
        #D4AF37,
        #A67C00
    );

     -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:0 0 20px rgba(212,175,55,.35);
}
.options{
    font-size: 60px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    
}
h1,
h2,
h3 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    text-transform: uppercase;
    line-height: .9;
    margin: 18px 0
}

h1 {
    font-size: clamp(72px, 10vw, 150px)
}

h1 em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 2px var(--gold)
}

.hero-content>p:last-of-type {
    max-width: 650px;
    color: #d4cec4;
    line-height: 1.7;
    font-size: 17px
}

.actions {
    display: flex;
    gap: 14px;
    margin-top: 30px
}

.btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 15px 23px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer
}

.primary {
    background: var(--orange)
}

.ghost {
    border-color: rgba(255, 255, 255, .4)
}

.dark {
    background: #090909;
    color: #fff;
    width: 100%
}

.hero-logo {
    position: relative;
    z-index: 1;

    width: min(100%, 320px);
    height: auto;

    border-radius: 50%;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;

    filter: drop-shadow(0 18px 38px rgba(0, 0, 0, .55));
    animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-9px);
    }
}

.ticker {
    border-block: 1px solid var(--line);
    overflow: hidden;
    background: #0d0d0d
}

.ticker div {
    width: max-content;
    display: flex;
    gap: 22px;
    align-items: center;
    padding: 16px 0;
    animation: move 26s linear infinite
}

.ticker span {
    font-family: 'Bebas Neue';
    font-size: 30px
}

.ticker i {
    font-style: normal;
    color: var(--orange)
}

@keyframes move {
    to {
        transform: translateX(-50%)
    }
}

.section {
    max-width: var(--max);
    margin: auto;
    padding: 70px 24px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-end;
    margin-bottom: 55px
}

.section h2 {
    font-size: clamp(58px, 7.6vw, 100px)
}

.section-head>p {
    max-width: 420px;
    color: var(--muted);
    line-height: 1.8
}

.signature-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    grid-template-rows: repeat(3, 260px);
    gap: 16px
}

.signature-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: #151515
}

.signature-card.tall {
    grid-row: span 3
}

.signature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.signature-card:hover img {
    transform: scale(1.05)
}

.signature-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .94), transparent 72%)
}

.signature-card div {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px
}

.signature-card small,
.food-card span {
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    font-weight: 800
}

.signature-card h3 {
    font-size: 42px;
    margin: 7px 0 4px
}

.signature-card p {
    margin: 0;
    color: #d0cbc3;
    font-size: 12px;
    line-height: 1.5
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px
}

.filters button {
    border: 1px solid var(--line);
    background: #111;
    color: #ddd;
    border-radius: 999px;
    padding: 11px 16px;
    font-weight: 800;
    font-size: 11px;
    cursor: pointer
}

.filters button.active {
    background: var(--gold);
    color: #090909;
    border-color: var(--gold)
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.food-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    transition: .3s
}

.food-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 174, 62, .55)
}

.food-card.hidden {
    display: none
}

.food-card img {
    width: 100%;
    aspect-ratio: 1/.88;
    object-fit: cover
}

.food-card div {
    padding: 17px
}

.food-card h3 {
    font-size: 28px;
    margin: 7px 0
}

.food-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55
}

.gallery {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    grid-template-rows: 280px 280px;
    gap: 15px
}

.gallery button {
    padding: 0;
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #111;
    cursor: zoom-in
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.gallery button:hover img {
    transform: scale(1.05)
}

.g1 {
    grid-row: span 2
}

.g4 {
    grid-column: span 2
}

.franchise {
    max-width: 1400px
}

.franchise-inner {
    background: linear-gradient(135deg, var(--orange), #b81d1c);
    border-radius: 34px;
    padding: 65px;
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 65px;
    align-items: center
}

.franchise h2 {
    font-size: clamp(58px, 7vw, 96px)
}

.franchise p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.75
}

.light {
    color: #fff
}

.contact-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px
}

.contact-row a {
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    padding: 11px 15px;
    font-size: 11px;
    font-weight: 800
}

.franchise form {
    background: #fff;
    color: #111;
    border-radius: 22px;
    padding: 28px;
    display: grid;
    gap: 15px
}

.franchise label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 800
}

.franchise input,
.franchise textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ccc;
    background: transparent;
    padding: 10px 0;
    outline: 0;
    text-transform: none
}

.franchise small {
    color: #666;
    line-height: 1.4
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.visit-grid h2 {
    font-size: clamp(58px, 7vw, 96px)
}

address {
    font-style: normal;
    color: var(--muted);
    line-height: 1.8
}

address b {
    color: #fff;
    font-size: 18px
}

.visit-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
    margin-top: 25px
}

.visit-links a {
    color: var(--gold);
    font-weight: 800
}

.map {
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    filter: grayscale(1);
    border: 1px solid var(--line)
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0
}

footer {
    border-top: 1px solid var(--line);
    max-width: var(--max);
    margin: auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.footer-brand img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover
}

.footer-brand div {
    display: flex;
    flex-direction: column
}

.footer-brand b {
    font-family: 'Bebas Neue';
    font-size: 26px
}

.footer-brand small {
    color: var(--gold)
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    font-size: 12px;
    color: #ccc
}

footer p {
    grid-column: 1/-1;
    color: #777;
    font-size: 11px
}

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 100px;
    right: 15px;
    background-color: #25d366;;
  
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    
   
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-icon {
    margin: 0px;
}

.call-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 40px;
    right: 15px;
    background-color: #d32525;;
  
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
   
   
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.call-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.call-icon {
    margin: 0;
}
dialog {
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, .95);
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none
}

dialog::backdrop {
    background: #000
}

dialog img {
    max-width: 92vw;
    max-height: 90vh;
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    object-fit: contain
}

dialog button {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 30px;
    z-index: 2;
    cursor: pointer
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}
@media (max-width: 1000px) {
    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }

    .pill {
        display: none;
    }

    .nav-toggle {
        position: relative;
        z-index: 1200;

        display: block;
        width: 44px;
        height: 44px;
        padding: 0;

        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 28px;
        height: 2px;
        margin: 7px auto;

        background: #fff;
        transition: transform .3s ease;
        transform-origin: center;
    }

    .nav-toggle.active span:first-child {
        transform: translateY(4.5px) rotate(45deg);
    }

    .nav-toggle.active span:last-child {
        transform: translateY(-4.5px) rotate(-45deg);
    }

    .header nav {
        position: fixed;
        inset: 0;
        z-index: 1050;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;

        width: 100%;
        height: 100dvh;
        padding: 110px 35px 50px;

        /* background: #090909 !important; */
                backdrop-filter: blur(85px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateX(100%);
        transition:
            transform .42s cubic-bezier(.22, 1, .36, 1),
            opacity .3s ease,
            visibility .3s ease;

        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .header nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .header nav a {
        position: relative;

        font-family: "Bebas Neue", Impact, sans-serif;
        font-size: clamp(42px, 9vw, 68px);
        line-height: 1;
        color: #fff;

        opacity: 0;
        transform: translateX(34px);

        transition:
            color .2s ease,
            opacity .35s ease,
            transform .35s ease;
    }

    .header nav.open a {
        opacity: 1;
        transform: translateX(0);
    }

    .header nav.open a:nth-child(1) { transition-delay: .06s; }
    .header nav.open a:nth-child(2) { transition-delay: .11s; }
    .header nav.open a:nth-child(3) { transition-delay: .16s; }
    .header nav.open a:nth-child(4) { transition-delay: .21s; }
    .header nav.open a:nth-child(5) { transition-delay: .26s; }

    .header nav a:hover,
    .header nav a:focus-visible {
        color: var(--gold);
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(190px, 280px);
        gap: 30px;
    }

    .food-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .franchise-inner,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .g1 {
        grid-row: auto;
    }

    .g4 {
        grid-column: span 2;
    }

    .signature-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 320px);
    }

    .signature-card.tall {
        grid-row: span 2;
    }

    .signature-card:last-child {
        grid-column: 2;
    }
}

@media(max-width:650px) {
    .header {
        height: 74px
    }

    .brand img {
        width: 48px;
        height: 48px
    }

    .brand small {
        display: none
    }

    .hero {
        align-items: flex-start;
        padding: 110px 20px 70px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-logo-wrap {
        order: -1;
        justify-self: center;
        width: min(42vw, 175px);
        margin: 0 0 -20px auto;
    }

    .hero-logo {
        width: 100%;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, .97) 0%, rgba(0, 0, 0, .35) 85%)
    }

    h1 {
        font-size: 70px
    }

    .hero-content>p:last-of-type {
        font-size: 14px
    }

    .actions {
        flex-direction: column
    }

    .hero-badge {
        display: none
    }

    .section {
        padding: 86px 20px
    }

    .section h2 {
        font-size: 58px
    }

    .signature-grid {
        display: flex;
        overflow: auto;
        scroll-snap-type: x mandatory
    }

    .signature-card,
    .signature-card.tall {
        min-width: 82vw;
        height: 430px;
        scroll-snap-align: start
    }

    .food-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .food-card div {
        padding: 12px
    }

    .food-card h3 {
        font-size: 23px
    }

    .food-card p {
        display: none
    }

    .gallery {
        display: flex;
        overflow: auto
    }

    .gallery button {
        min-width: 84vw;
        height: 420px
    }

    .franchise-inner {
        padding: 30px 18px;
        border-radius: 24px
    }

    .contact-row {
        flex-direction: column
    }

    .contact-row a {
        text-align: center
    }

    .map {
        height: 360px
    }

    footer {
        grid-template-columns: 1fr
    }

    .footer-links {
        justify-content: flex-start;
        flex-direction: column
    }

    .g4 {
        grid-column: auto
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
body.intro-active {
    overflow: hidden;
}
.site-intro {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #050505;
    opacity: 1;
    visibility: visible;
    transition: opacity .45s ease, visibility .45s ease;
}

.site-intro.is-closing {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-intro__video {
    width: 80%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.site-intro__skip {
    position: absolute;
    right: 22px;
    bottom: 22px;
    padding: 10px 17px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, .5);
    font: 600 13px/1 Manrope, Arial, sans-serif;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.site-intro__skip:hover,
.site-intro__skip:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
    outline: none;
}

@media (max-width: 650px) {
    .site-intro__skip {
        right: 16px;
        bottom: 16px;
    }
}
/* Mobile portrait intro */
@media (max-width: 768px) and (orientation: portrait) {
    .site-intro {
        height: 100dvh;
        min-height: 100svh;
        background: #050505;
    }

    .site-intro__video {
        width: 100%;
        height: auto;
        object-fit: contain;
        transform: scale(1.35);
        transform-origin: center;
    }

    .site-intro__skip {
        right: calc(16px + env(safe-area-inset-right));
        bottom: calc(16px + env(safe-area-inset-bottom));
        min-width: 44px;
        min-height: 44px;
        padding: 12px 18px;
    }
}
.full-menu-action{
    display:flex;
    width: auto;
    margin-bottom: 10px;
}

.full-menu-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    padding:16px 30px;

    background:linear-gradient(
        135deg,
        var(--orange),
        #ff7a2f
    );

    color:#fff;
    border:1px solid rgba(255,255,255,.15);
    border-radius:999px;

    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;

    box-shadow:0 12px 35px rgba(239,91,37,.22);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.full-menu-btn span{
    font-size:1px;
    transition:transform .25s ease;
}

.full-menu-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 40px rgba(239,91,37,.35);
}

.full-menu-btn:hover span{
    transform:translateX(5px);
}

@media(max-width:650px){

    .full-menu-action{
        margin-top:30px;
    }

    .full-menu-btn{
        width:100%;
        max-width:340px;
    }
}