:root {
    --bg: #09090b;
    --panel: #121217;
    --ink: #f8f8fb;
    --muted: #b9b8c1;
    --purple: #a53dc1;
    --purple2: #d26bea;
    --line: #713085;
    --paper: #f6f4f7
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

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

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

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    z-index: 50;
    background: linear-gradient(180deg, rgba(5, 5, 7, .92), rgba(5, 5, 7, .5), transparent);
    backdrop-filter: blur(6px)
}

.brand {
    width: 92px;
    height: 72px;
    overflow: hidden;
    display: flex;
    align-items: center
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.nav a {
    opacity: .86
}

.nav a:hover {
    opacity: 1;
    color: var(--purple2)
}

.nav-order {
    border: 1px solid var(--purple);
    padding: 13px 20px;
    border-radius: 999px
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 28px
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 130px 6vw 70px;
    overflow: hidden
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0
}

.hero-media {
    background: #050506
}

.food-shot {
    position: absolute;
    width: 55vw;
    height: 72vh;
    border-radius: 38px;
    background-size: cover;
    background-position: center;
    filter: saturate(1.08) contrast(1.04);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .5)
}

.shot-1 {
    right: -7vw;
    top: 11vh;
    background-image: url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?auto=format&fit=crop&w=1600&q=88');
    animation: floatOne 11s ease-in-out infinite
}

.shot-2 {
    right: 18vw;
    bottom: -28vh;
    width: 34vw;
    height: 54vh;
    background-image: url('https://images.unsplash.com/photo-1562967914-608f82629710?auto=format&fit=crop&w=1400&q=88');
    animation: floatTwo 13s ease-in-out infinite
}

.shot-3 {
    right: -18vw;
    bottom: -11vh;
    width: 38vw;
    height: 46vh;
    background-image: url('https://images.unsplash.com/photo-1573080496219-bb080dd4f877?auto=format&fit=crop&w=1400&q=88');
    animation: floatThree 15s ease-in-out infinite
}

.hero-shade {
    background: linear-gradient(90deg, #08080a 0%, rgba(8, 8, 10, .94) 37%, rgba(8, 8, 10, .38) 68%, rgba(8, 8, 10, .4) 100%), linear-gradient(0deg, rgba(0, 0, 0, .65), transparent 55%)
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 820px
}

.eyebrow,
.kicker {
    display: inline-block;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--purple2);
    font-size: 13px
}

.hero h1,
.section-heading h2,
.about h2,
.order-section h2,
.contact h2, .timetbl h2 {
    font-family: 'Archivo Black', Impact, sans-serif;
    text-transform: uppercase;
    line-height: .9;
    letter-spacing: -.04em
}

.hero h1 {
    font-size: clamp(58px, 8.5vw, 138px);
    margin: 18px 0 24px
}

.hero h1 span {
    color: var(--purple2)
}

.hero p {
    max-width: 680px;
    color: #dfdce3;
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.6
}

.hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 34px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 999px;
    padding: 16px 26px;
    transition: .25s ease
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple2));
    color: #fff;
    box-shadow: 0 10px 35px rgba(165, 61, 193, .34)
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.01)
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .5)
}

.btn-outline:hover {
    border-color: var(--purple2);
    color: var(--purple2)
}

.btn-xl {
    font-size: 20px;
    padding: 21px 38px
}

.btn-xxl {
    font-size: clamp(20px, 2vw, 30px);
    padding: 24px 46px
}

.hero-stamp {
    position: absolute;
    z-index: 4;
    right: 5vw;
    bottom: 5vh;
    width: 155px;
    height: 155px;
    border: 1px solid var(--purple2);
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    transform: rotate(-8deg);
    background: rgba(8, 8, 10, .58);
    backdrop-filter: blur(8px)
}

.hero-stamp span {
    font-size: 11px;
    letter-spacing: .18em
}

.hero-stamp strong {
    font-family: 'Archivo Black';
    font-size: 30px;
    color: var(--purple2)
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    background: rgba(165, 61, 193, .18);
    z-index: 2
}

.orb-one {
    width: 340px;
    height: 340px;
    left: -140px;
    top: 18%
}

.orb-two {
    width: 260px;
    height: 260px;
    left: 38%;
    bottom: -120px
}

.ticker {
    overflow: hidden;
    background: var(--purple);
    padding: 15px 0;
    border-block: 1px solid #d36be9
}

.ticker-track {
    width: max-content;
    display: flex;
    gap: 24px;
    align-items: center;
    font-family: 'Archivo Black';
    font-size: 18px;
    letter-spacing: .04em;
    animation: ticker 28s linear infinite
}

.ticker i {
    font-style: normal
}

.section {
    padding: 110px 6vw
}

.menu-section {
    background: linear-gradient(180deg, #0d0d10, #111116)
}

.section-heading {
    max-width: 900px;
    margin-bottom: 45px
}

.section-heading h2 {
    font-size: clamp(52px, 7vw, 105px);
    margin: 10px 0 15px
}

.section-heading p {
    color: var(--muted);
    font-size: 18px
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.menu-card {
    min-height: 330px;
    padding: 32px;
    border: 1px solid #2d2730;
    border-radius: 28px;
    background: linear-gradient(145deg, #15151a, #0e0e12);
    display: flex;
    flex-direction: column
}

.menu-card.featured {
    border-color: var(--purple);
    box-shadow: inset 0 0 0 1px rgba(210, 107, 234, .15), 0 20px 60px rgba(0, 0, 0, .2)
}

.menu-card .num {
    color: var(--purple2);
    font-weight: 800;
    letter-spacing: .12em
}

.menu-card h3 {
    font-family: 'Archivo Black';
    font-size: 28px;
    line-height: 1;
    margin: 18px 0
}

.menu-card p {
    color: var(--muted);
    line-height: 1.65
}

.menu-card a {
    margin-top: auto;
    padding-top: 20px;
    font-weight: 800;
    color: var(--purple2)
}

.about {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 740px
}

.about-copy {
    padding: 110px 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--paper);
    color: #121215
}

.about h2 {
    font-size: clamp(50px, 6.3vw, 98px);
    margin: 16px 0 26px
}

.about h2 span {
    color: var(--purple)
}

.about-copy p {
    font-size: 19px;
    line-height: 1.7;
    max-width: 720px;
    color: #424047
}

.about-copy .btn {
    align-self: flex-start;
    margin-top: 16px
}

.about-visual {
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 40%, #251129, #09090b 66%);
    padding: 65px
}

.logo-panel {
    width: min(470px, 90%);
    aspect-ratio: 4/5;
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 30px;
    display: grid;
    place-items: center;
    box-shadow: 0 45px 100px rgba(0, 0, 0, .35), inset 0 0 80px rgba(165, 61, 193, .08)
}

.logo-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.order-section {
    padding: 95px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, #26122d, #0b0b0e 55%);
    border-block: 1px solid #4c2558
}

.order-section h2 {
    font-size: clamp(60px, 9vw, 145px);
    margin: 8px 0 10px;
    color: #fff
}

.order-section p {
    color: #bbb3be;
    font-size: 18px
}

.contact {
    background: #f2eff4;
    color: #111116
}

.contact-card {
    max-width: 1100px;
    margin: auto;
    border: 1px solid #cbbdce;
    border-radius: 34px;
    padding: 55px;
    background: white
}

.contact h2 {
    font-size: clamp(52px, 7vw, 100px);
    margin: 16px 0
}

.contact p {
    font-size: 18px;
    color: #514d55
}

.contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px
}

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

.btn-dark {
    background: #111116;
    color: #fff
}

footer {
    padding: 70px 6vw;
    text-align: center;
    background: #060607;
    border-top: 1px solid #211c23;
    color: #aaa
}

footer img {
    width: 130px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto 20px
}

footer p {
    font-weight: 800;
    color: #fff;
    letter-spacing: .09em
}

footer small {
    color: #777
}

@keyframes floatOne {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1)
    }

    50% {
        transform: translate3d(-22px, 14px, 0) scale(1.035)
    }
}

@keyframes floatTwo {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg)
    }

    50% {
        transform: translateY(-32px) rotate(-1deg)
    }
}

@keyframes floatThree {

    0%,
    100% {
        transform: translateY(0) rotate(5deg)
    }

    50% {
        transform: translateY(-24px) rotate(2deg)
    }
}

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

@media(max-width:980px) {
    .nav {
        display: none;
        position: absolute;
        top: 78px;
        right: 4vw;
        left: 4vw;
        flex-direction: column;
        background: #111116;
        border: 1px solid #352b38;
        border-radius: 22px;
        padding: 25px
    }

    .nav.open {
        display: flex
    }

    .menu-toggle {
        display: block
    }

    .food-shot {
        opacity: .68
    }

    .shot-1 {
        width: 84vw;
        right: -28vw
    }

    .shot-2 {
        display: none
    }

    .hero-shade {
        background: linear-gradient(90deg, #08080a 0%, rgba(8, 8, 10, .87) 55%, rgba(8, 8, 10, .42))
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about {
        grid-template-columns: 1fr
    }

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

    .hero-stamp {
        display: none
    }
}

@media(max-width:640px) {
    .site-header {
        height: 76px;
        padding: 0 22px
    }

    .brand {
        width: 78px;
        height: 60px
    }

    .hero {
        padding: 118px 22px 55px
    }

    .hero h1 {
        font-size: clamp(52px, 17vw, 82px)
    }

    .hero p {
        font-size: 16px
    }

    .btn-xl {
        width: 100%
    }

    .hero-actions .btn-outline {
        width: 100%
    }

    .shot-1 {
        width: 120vw;
        height: 72vh;
        right: -60vw;
        top: 16vh
    }

    .section {
        padding: 80px 22px
    }

    .menu-grid {
        grid-template-columns: 1fr
    }

    .menu-card {
        min-height: 280px
    }

    .about-copy {
        padding: 80px 22px
    }

    .about-visual {
        padding: 50px 22px
    }

    .order-section {
        padding: 70px 22px
    }

    .btn-xxl {
        width: 100%
    }

    .contact-card {
        padding: 35px 24px
    }
}

/* ==========================
   TIMETABLE
========================== */

.timetable-modern {
    padding: 90px 0;
    background: #fff;
}

.timetable-modern .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 24px;
}

.timetbl h2 {
    font-size: clamp(60px, 9vw, 145px);
    margin: 8px 0 10px;
    color: var(--panel);
    padding-bottom: 2rem;
}

.timetable-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

.timetable-card {
    background: #fff;
    border: 2px solid var(--panel);
    overflow: hidden;
    box-shadow: 10px 10px 0 var(--yellow);
    transition: 0.25s ease;
    border-radius: 20px;
}

.timetable-card:hover {
    transform: translateY(-6px);
    box-shadow: 14px 14px 0 var(--yellow);
}

/* ==========================
   TABLE
========================== */

table.amrt-timetable-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    margin: 0;
}

table.amrt-timetable-table th {
    background: var(--line);
    padding: 20px;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 4px solid var(--black);
}

table.amrt-timetable-table td {
    padding: 10px 20px !important;
    font-size: 16px;
    border-bottom: 2px solid #ececec;
    background: var(--ink);
    color: var(--purple);
}

table.amrt-timetable-table tr:last-child td {
    border-bottom: none;
}

td.amrt-label-td {
    font-weight: 800;
    color: var(--black);
}

td.amrt-value-td {
    text-align: right;
}

td.amrt-value-td .amrt-time-slot {
    color: var(--red);
    font-weight: 900;
    font-size: 17px;
}

table.amrt-timetable-table tr:nth-child(even) td {
    background: var(--purple);
    color: var(--ink)
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
    .timetable-modern {
        padding: 70px 0;
    }

    .timetable-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    table.amrt-timetable-table th {
        font-size: 20px;
    }

    table.amrt-timetable-table td {
        padding: 14px 16px;
    }
}