﻿:root {
    --color-primary: #ba0020;
    --color-primary-dim: #a3001b;
    --color-primary-container: #ff7672;
    --color-secondary-container: #fed400;
    --color-secondary-text: #5a4a00;
    --color-surface: #f9f6f2;
    --color-surface-low: #f3f0ec;
    --color-surface-high: #e5e2de;
    --color-surface-highest: #dfdcd8;
    --color-text: #2f2f2c;
    --color-text-soft: #5c5b59;
    --color-outline-soft: rgba(120, 119, 116, 0.16);
    --shadow-ambient: 0 24px 48px rgba(47, 47, 44, 0.08);
    --shadow-soft: 0 18px 35px rgba(47, 47, 44, 0.06);
    --gradient-primary: linear-gradient(135deg, #ba0020 0%, #ff7672 100%);
    --font-display: "Anton", sans-serif;
    --font-body: "Manrope", sans-serif;
    --font-ui: "Plus Jakarta Sans", sans-serif;
    --font-label: "Plus Jakarta Sans", sans-serif;
    --radius-lg: 2rem;
    --radius-xl: 3rem;
    --radius-pill: 999px;
    --container-width: min(1180px, calc(100% - 2rem));
    --header-height: 92px;
    --header-floating-offset: 1rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-surface);
    line-height: 1.6;
}

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

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

button {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}

main {
    margin: 0;
    padding: 0;
}

main > .hero-section:first-child {
    margin-top: calc(-1 * var(--header-height));
}

.section {
    padding: 6rem 0;
}

.eyebrow {
    margin: 0 0 1rem;
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.eyebrow.center {
    text-align: center;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    padding: 0.75rem 0 0;
    transition: padding 0.25s ease;
}
.nav-shell {
    position: relative;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(249, 246, 242, 0.78);
    backdrop-filter: blur(18px);
    border-radius: var(--radius-pill);
    box-shadow: 0 16px 40px rgba(47, 47, 44, 0.08);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, transform 0.25s ease;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-ui);
    color: var(--color-primary);
    letter-spacing: 0.04em;
}
.brand-logo {
    width: 120px;
    height: 72px;
    object-fit: contain;
    flex: 0 0 auto;
    transition: filter 0.25s ease;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.main-nav .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.15rem;
    padding: 0.35rem;
    background: rgba(47, 47, 44, 0.06);
    border: 1px solid rgba(120, 119, 116, 0.14);
    border-radius: var(--radius-pill);
}

.lang-option {
    min-width: 2.5rem;
    padding: 0.45rem 0.7rem;
    border: 0;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--color-text-soft);
    font-family: var(--font-label);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-option.is-active {
    background: var(--color-primary);
    color: #fff4f3;
}
.main-nav a {
    font-family: var(--font-ui);
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
    color: var(--color-primary);
}
.main-nav a:hover {
    transform: translateY(-1px);
}
.nav-cta,
.btn-primary {
    color: #ffefee;
    background: var(--gradient-primary);
    box-shadow: 0 16px 30px rgba(186, 0, 32, 0.2);
}
.nav-cta {
    padding: 0.85rem 1.35rem;
    border-radius: var(--radius-pill);
}
.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--color-surface-low);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    margin: 0.22rem auto;
    background: var(--color-text);
    transition: background-color 0.25s ease;
}
.site-header.is-at-top .nav-shell {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transform: translateY(calc(-1 * var(--header-floating-offset)));
}

.site-header:not(.is-at-top) {
    padding-top: var(--header-floating-offset);
}
.site-header.is-at-top .brand-logo {
    filter: drop-shadow(0 0 0.75px rgba(255, 255, 255, 0.95))
        drop-shadow(0 0 1.5px rgba(255, 255, 255, 0.95))
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.35));
}
.site-header.is-at-top .main-nav a {
    color: rgba(255, 255, 255, 0.92);
}

.site-header.is-at-top .main-nav .lang-switch {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.site-header.is-at-top .lang-option {
    color: rgba(255, 255, 255, 0.88);
}

.site-header.is-at-top .lang-option.is-active {
    background: #ffffff;
    color: var(--color-primary);
}
.site-header.is-at-top .main-nav a:hover,
.site-header.is-at-top .main-nav a:focus-visible,
.site-header.is-at-top .main-nav a.is-active {
    color: #ffffff;
}
.site-header.is-at-top .nav-toggle {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.site-header.is-at-top .nav-toggle span {
    background: #ffffff;
}
.hero-section {
    position: relative;
    margin-top: 0;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    will-change: transform;
    animation: heroKenBurns 24s ease-in-out infinite alternate;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.16) 0%, rgba(10, 10, 10, 0.42) 45%, rgba(10, 10, 10, 0.74) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero-content h1,
.section-heading h2,
.order-online-copy h2,
.story-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: 0.015em;
    line-height: 0.95;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 10ch;
    margin: 0 auto 1.5rem;
    font-size: clamp(3.6rem, 11vw, 8rem);
    letter-spacing: 0.02em;
    font-style: italic;
    color: rgba(249, 246, 242, 0.96);
}

.hero-content .eyebrow {
    color: rgba(249, 246, 242, 0.78);
}

.hero-content h1 span,
.story-copy h2 span {
    color: var(--color-primary);
    font-style: normal;
}

.hero-text {
    max-width: 44rem;
    margin: 0 auto 2rem;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    color: rgba(249, 246, 242, 0.88);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 1rem 1.6rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 800;
    transition: transform 0.25s ease;
    text-transform: uppercase;
}

.btn:hover {
    transform: scale(1.03);
}

.btn-secondary {
    background: rgba(223, 220, 216, 0.8);
    backdrop-filter: blur(12px);
}

.featured-section {
    background: var(--color-surface);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.section-heading h2,
.order-online-copy h2,
.story-copy h2 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.chip-group {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.55rem;
    background: var(--color-surface-high);
    border-radius: var(--radius-pill);
    box-shadow: inset 0 2px 6px rgba(47, 47, 44, 0.08);
}

.chip {
    padding: 0.8rem 1.15rem;
    border: 0;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--color-text-soft);
    font-family: var(--font-label);
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.chip.is-selected,
.chip:hover {
    background: var(--color-primary);
    color: #fff4f3;
}

.featured-section .card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.featured-section .dish-card {
    transition: transform 0.35s ease;
}

.featured-section .dish-card:hover {
    transform: translateY(-8px) rotate(1deg);
}

.featured-section .dish-card-offset {
    margin-top: 3rem;
}

.featured-section .dish-image {
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-ambient);
}

.featured-section .dish-image img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-section .dish-card:hover .dish-image img {
    transform: scale(1.08);
}

.featured-section .dish-topline,
.featured-section .dish-meta {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.featured-section .dish-topline h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.featured-section .dish-body p {
    color: var(--color-text-soft);
}

.featured-section .dish-meta {
    align-items: center;
    padding-top: 0.75rem;
}

.featured-section .dish-meta strong {
    font-family: var(--font-ui);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color-primary);
}

.featured-section .dish-meta a {
    font-family: var(--font-label);
    font-weight: 800;
}

.featured-section .dish-meta a:hover {
    color: var(--color-primary);
}

.featured-section .tag {
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius-pill);
    background: var(--color-surface-highest);
    font-family: var(--font-label);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-text-soft);
    white-space: nowrap;
}

.featured-section .tag-gold {
    background: var(--color-secondary-container);
    color: var(--color-secondary-text);
}

.order-online-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(254, 212, 0, 0.2), transparent 36%),
        linear-gradient(135deg, #ba0020 0%, #ff7672 48%, #fed400 100%);
    isolation: isolate;
}
.order-online-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}
.order-online-copy .eyebrow,
.order-online-copy h2,
.order-online-text {
    color: rgba(249, 246, 242, 0.96);
}
.order-online-copy .eyebrow {
    color: rgba(249, 246, 242, 0.72);
}
.order-online-text {
    max-width: 34rem;
    margin: 1.25rem 0 0;
    font-size: 1.05rem;
}
.order-online-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}
.order-online-highlights span {
    padding: 0.8rem 1rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff8f2;
    font-family: var(--font-label);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}
.order-online-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}
 .delivery-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    min-height: 8.7rem;
    padding: 1.6rem 1.35rem 1.4rem;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 1.8rem;
    box-shadow: 0 22px 42px rgba(47, 47, 44, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.delivery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 52px rgba(47, 47, 44, 0.2);
}
.delivery-card-primary {
    background: rgba(255, 248, 242, 0.92);
    color: var(--color-text);
}

.delivery-card-primary,
.delivery-card-light,
.delivery-card-dark {
    background: rgba(255, 250, 245, 0.94);
    color: var(--color-text);
    border: 1px solid rgba(120, 119, 116, 0.12);
    backdrop-filter: blur(16px);
}

.delivery-logo {
    width: auto;
    max-width: 11rem;
    height: 2.4rem;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.delivery-logo-clover {
    height: 2.1rem;
}


 .delivery-card a {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    min-width: 10.5rem;
    margin-top: auto;
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-pill);
    background: rgba(47, 47, 44, 0.92);
    color: #fff8f2;
    font-family: var(--font-label);
    font-weight: 800;
    letter-spacing: 0.03em;
}
.delivery-card-primary a {
    background: var(--gradient-primary);
}
.delivery-card-light a {
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary);
}
.delivery-card-dark a {
    background: #fed400;
    color: #5a4a00;
}
.delivery-link-gold {
    background: #fed400 !important;
    color: #5a4a00 !important;
}
.order-online-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.58;
    mix-blend-mode: screen;
    animation: orderOrbFloat 16s ease-in-out infinite alternate;
}
.order-online-orb-one {
    top: 4%;
    left: -4%;
    width: 16rem;
    height: 16rem;
    background: rgba(254, 212, 0, 0.34);
}
.order-online-orb-two {
    top: 18%;
    right: 10%;
    width: 22rem;
    height: 22rem;
    background: rgba(255, 255, 255, 0.18);
    animation-duration: 20s;
}
.order-online-orb-three {
    right: -6%;
    bottom: -12%;
    width: 18rem;
    height: 18rem;
    background: rgba(186, 0, 32, 0.3);
    animation-duration: 18s;
}
.story-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: center;
}

.story-media {
    position: relative;
}

.story-accent {
    position: absolute;
    inset: auto -1.2rem -1.2rem 1.2rem;
    background: var(--color-primary);
    border-radius: var(--radius-xl);
}

.story-media img {
    position: relative;
    z-index: 1;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-ambient);
}

.story-quote {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    z-index: 2;
    max-width: 280px;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background: var(--color-secondary-container);
    color: var(--color-secondary-text);
    font-family: var(--font-ui);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: var(--shadow-soft);
}

.story-copy p {
    color: var(--color-text-soft);
    font-size: 1.05rem;
}

.story-copy .eyebrow {
    color: var(--color-primary);
}

.story-link {
    color: var(--color-text);
}

.story-link {
    display: inline-flex;
    margin-top: 1rem;
    font-family: var(--font-ui);
    font-size: 1.15rem;
    font-weight: 800;
}

.story-link:hover {
    color: var(--color-primary);
}

.gallery-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(254, 212, 0, 0.18), transparent 26%),
        radial-gradient(circle at 90% 18%, rgba(186, 0, 32, 0.1), transparent 28%),
        var(--color-surface-low);
}

.gallery-heading {
    align-items: flex-start;
}

.gallery-heading h2 span {
    color: var(--color-primary);
}

.gallery-lead {
    max-width: 25rem;
    margin: 0.45rem 0 0;
    color: var(--color-text-soft);
    font-size: 1.05rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    grid-auto-rows: minmax(13rem, 18vw);
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-surface-high);
    box-shadow: var(--shadow-soft);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(28, 24, 21, 0.18) 100%);
    pointer-events: none;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.03);
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.contact-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 12%, rgba(254, 212, 0, 0.18), transparent 24%),
        radial-gradient(circle at 88% 22%, rgba(186, 0, 32, 0.12), transparent 28%),
        var(--color-surface-low);
}

.contact-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-intro h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.contact-intro h2 span {
    color: var(--color-primary);
}

.contact-lead {
    max-width: 38rem;
    margin: 1.4rem 0 0;
    font-size: 1.05rem;
    color: var(--color-text-soft);
}

.contact-card,
.contact-form-card {
    border-radius: var(--radius-xl);
    background: rgba(249, 246, 242, 0.84);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.contact-card {
    margin-top: 2rem;
    padding: 1.75rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.contact-detail {
    padding: 1.2rem 1.25rem;
    border-radius: 1.6rem;
    background: var(--color-surface);
}

.contact-detail p {
    margin: 0;
    color: var(--color-text);
}

.contact-detail p + p {
    margin-top: 0.25rem;
}

.contact-label,
.contact-form-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-family: var(--font-label);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.contact-detail a {
    transition: color 0.2s ease;
}

.contact-detail a:hover {
    color: var(--color-primary);
}

.contact-map-frame {
    margin-top: 1.25rem;
    overflow: hidden;
    border-radius: 2rem;
    min-height: 320px;
    background: var(--color-surface-high);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 320px;
    border: 0;
    filter: saturate(0.88) contrast(1.02);
}

.contact-form-wrap {
    padding-top: 4.35rem;
}

.contact-form-card {
    position: relative;
    padding: 2rem;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: rgba(254, 212, 0, 0.22);
    filter: blur(14px);
    transform: translate(-25%, -30%);
    pointer-events: none;
}

.contact-form {
    position: relative;
    display: grid;
    gap: 1.1rem;
}

.contact-field {
    display: grid;
    gap: 0.45rem;
}

.contact-field span {
    font-family: var(--font-label);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 1rem 0 0.9rem;
    border: 0;
    border-bottom: 1px solid rgba(120, 119, 116, 0.18);
    background: transparent;
    color: var(--color-text);
    font: inherit;
    resize: vertical;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-field-math {
    gap: 0.75rem;
}

.contact-math-row {
    display: grid;
    gap: 0.8rem;
    padding: 1rem 1.1rem;
    border-radius: 1.5rem;
    background: rgba(223, 220, 216, 0.5);
}

.contact-math-prompt {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-text);
}

.contact-math-row input {
    padding-top: 0.75rem;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(92, 91, 89, 0.72);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-bottom-color: var(--color-primary);
    box-shadow: inset 0 -2px 0 var(--color-primary);
}

.contact-submit {
    min-width: 100%;
    margin-top: 0.75rem;
}

.site-footer {
    position: relative;
    padding: 4.75rem 0 2.35rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 22%, rgba(254, 212, 0, 0.28), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(255, 122, 95, 0.24), transparent 26%),
        linear-gradient(135deg, #4b0713 0%, #8f071f 38%, #c6161f 70%, #ffb326 100%);
    color: rgba(255, 247, 240, 0.9);
    isolation: isolate;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.62;
    pointer-events: none;
    animation: footerGlowDrift 18s ease-in-out infinite alternate;
}

.site-footer::before {
    top: -5rem;
    left: -4rem;
    width: 16rem;
    height: 16rem;
    background: rgba(254, 212, 0, 0.2);
}

.site-footer::after {
    right: -6rem;
    bottom: -7rem;
    width: 20rem;
    height: 20rem;
    background: rgba(255, 255, 255, 0.12);
    animation-duration: 22s;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr 0.95fr;
    gap: 2.25rem;
    padding: 2rem 2rem 2.3rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 2rem;
    background: rgba(52, 9, 16, 0.26);
    box-shadow: 0 28px 60px rgba(25, 4, 8, 0.24);
    backdrop-filter: blur(20px);
}

.footer-brand,
.footer-heading {
    margin: 0 0 1rem;
    font-weight: 800;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.footer-logo {
    width: 172px;
    height: auto;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
}

.footer-heading {
    font-family: var(--font-display);
    color: #fff2b8;
    font-size: 0.92rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-copy,
.footer-links,
.footer-bottom {
    color: rgba(255, 244, 236, 0.82);
}

.footer-copy {
    max-width: 24rem;
    font-size: 1.02rem;
    line-height: 1.8;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 248, 242, 0.92);
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #fff2b8;
    transform: translateX(2px);
}

.footer-links li + li {
    margin-top: 0.75rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.footer-social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #fff7ef;
    overflow: hidden;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-link::before {
    content: "";
    position: absolute;
    inset: auto auto -1.35rem -1.1rem;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    opacity: 0.52;
    filter: blur(6px);
    pointer-events: none;
}

.footer-social-instagram::before {
    background: rgba(255, 180, 80, 0.42);
}

.footer-social-facebook::before {
    background: rgba(102, 156, 255, 0.34);
}

.footer-social-whatsapp::before {
    background: rgba(62, 211, 123, 0.34);
}

.footer-social-link:hover {
    transform: translateY(-3px) scale(1.03);
    color: #fff8f0;
    box-shadow: 0 14px 26px rgba(25, 4, 8, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-social-instagram:hover {
    background: linear-gradient(135deg, rgba(255, 173, 61, 0.3), rgba(215, 53, 110, 0.24));
}

.footer-social-facebook:hover {
    background: linear-gradient(135deg, rgba(94, 114, 228, 0.34), rgba(61, 179, 255, 0.2));
}

.footer-social-whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.34), rgba(173, 255, 209, 0.16));
}

.footer-social-link svg {
    position: relative;
    z-index: 1;
    width: 1.28rem;
    height: 1.28rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social-facebook svg {
    fill: currentColor;
    stroke: none;
}

.footer-social-link .footer-social-dot {
    fill: currentColor;
    stroke: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.4rem;
    padding: 1.4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-badges span {
    padding: 0.6rem 0.95rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff7ef;
    font-family: var(--font-label);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}




@media (max-width: 980px) {
    .main-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: rgba(249, 246, 242, 0.95);
        border-radius: 1.5rem;
        box-shadow: var(--shadow-soft);
    }

    .site-header.is-at-top .main-nav {
        background: rgba(24, 18, 15, 0.86);
        backdrop-filter: blur(18px);
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-toggle {
        display: inline-block;
        order: 3;
    }

    .main-nav {
        order: 4;
    }

    .section-heading,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-section .dish-topline,
    .featured-section .dish-meta {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .featured-section .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-grid,
    .gallery-grid,
    .footer-grid,
    .order-online-shell,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: minmax(14rem, 34vw);
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-grid {
        padding: 1.6rem;
    }

    .order-online-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-section .dish-card-offset {
        margin-top: 0;
    }

    .story-quote {
        position: static;
        max-width: none;
        margin-top: 1.5rem;
    }

    .contact-form-wrap {
        padding-top: 0;
    }
}
@media (max-width: 720px) {
    .site-header {
        padding-top: 0.5rem;
    }

    .site-header:not(.is-at-top) {
        padding-top: 0.75rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1,
    .hero-text {
        margin-left: 0;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .chip-group {
        width: 100%;
        justify-content: space-between;
        overflow-x: auto;
    }

    .featured-section .card-grid {
        grid-template-columns: 1fr;
    }

    .order-online-grid {
        grid-template-columns: 1fr;
    }

    .order-online-highlights {
        justify-content: flex-start;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .contact-form-card {
        padding: 1.4rem;
    }

}














@keyframes footerGlowDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(5%, -4%, 0) scale(1.08);
    }

    100% {
        transform: translate3d(-4%, 6%, 0) scale(0.94);
    }
}

@keyframes orderOrbFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(4%, -6%, 0) scale(1.08);
    }

    100% {
        transform: translate3d(-3%, 5%, 0) scale(0.96);
    }
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(1.12) translate3d(-1.5%, -1.5%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-media img {
        animation: none;
        transform: none;
    }
}
























.scroll-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.2rem;
    height: 4.2rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 18px 30px rgba(186, 0, 32, 0.28);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem) scale(0.92);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.25s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 22px 34px rgba(186, 0, 32, 0.34);
}

.scroll-top-chip {
    position: relative;
    display: block;
    width: 2rem;
    height: 2rem;
}

.scroll-top-chip::after {
    content: "";
    position: absolute;
    inset: 0.02rem 0.16rem 0.2rem 0.16rem;
    background: linear-gradient(180deg, #ffdf2a 0%, #ffc400 100%);
    clip-path: polygon(50% 5%, 96% 92%, 4% 92%);
    border: 3px solid #211d19;
    border-radius: 0.2rem;
    box-sizing: border-box;
}


@media (max-width: 720px) {
    .scroll-top {
        right: 1rem;
        bottom: 1rem;
        width: 3.65rem;
        height: 3.65rem;
    }

    .scroll-top-chip {
        width: 1.75rem;
        height: 1.75rem;
    }
}




























