/* Deen's Hot Chicken — merged stylesheet */

/* ===== theme.css ===== */
:root {
    --red: #f32a22;
    --red-deep: #f32a22;
    --red-bright: #ff2d2d;
    --black: #0e0e0e;
    --charcoal: #1a1a1a;
    --cream: #fff;
    /* --cream-2: #f4e9d4; */
    --cream-2: #fff;
    --ink: #000;
    --line: rgba(15, 15, 15, 0.12);
    --line-light: rgba(255, 246, 232, 0.16);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--cream);
    color: var(--ink);
}

body {
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.slick-slide {
    padding: 0 15px;
}

.slick-dots button {
    font-size: 0;
    padding: 0;
    width: 25px;
    height: 10px;
    line-height: 0;
    border: none;
    background-color: rgb(243 42 34 / 57%);
    transition: all ease 0.4s;
    position: relative;
}

.slick-dots li.slick-active button {
    background-color: rgb(243 42 34 / 100%);
}

ul.slick-dots {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

ul.slick-dots li {
    display: block;
    text-align: center;
}

.display {
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.005em;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 800;
}

.script {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.mono-tag {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 16px;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

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

::selection {
    background: var(--red);
    color: var(--cream);
}

/* Animations */
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes drip {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

@keyframes flick {

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

    50% {
        opacity: 0.85;
        transform: scale(1.04) rotate(-1deg);
    }
}

@keyframes nudge {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.9;
    }

    50% {
        transform: translateY(6px);
        opacity: 0.5;
    }
}

@keyframes reveal-in {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in,
.hero .reveal,
.no-js .reveal,
html.js-reveal-ready .reveal.in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Buttons — anchors + Gutenberg wrappers (deens-btn-wrap) */
a.btn,
button.btn,
.wp-block-button__link.btn,
.wp-block-button.deens-btn-wrap .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.wp-block-button.deens-btn-wrap {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

a.btn svg,
.wp-block-button__link.btn svg,
.wp-block-button.deens-btn-wrap .wp-block-button__link svg {
    transition: transform 0.25s ease;
}

a.btn:hover svg,
.wp-block-button__link.btn:hover svg,
.wp-block-button.deens-btn-wrap .wp-block-button__link:hover svg {
    transform: translateX(4px);
}

a.btn-primary,
button.btn-primary,
.wp-block-button__link.btn-primary,
.wp-block-button.deens-btn-wrap.btn-primary .wp-block-button__link {
    background: var(--red);
    color: var(--cream);
}

a.btn-primary:hover,
button.btn-primary:hover,
.wp-block-button__link.btn-primary:hover,
.wp-block-button.deens-btn-wrap.btn-primary .wp-block-button__link:hover {
    background: var(--red-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(200, 16, 46, 0.55);
}

a.btn-ghost,
button.btn-ghost,
.wp-block-button__link.btn-ghost,
.wp-block-button.deens-btn-wrap.btn-ghost .wp-block-button__link {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(255, 246, 232, 0.5);
}

a.btn-ghost:hover,
button.btn-ghost:hover,
.wp-block-button__link.btn-ghost:hover,
.wp-block-button.deens-btn-wrap.btn-ghost .wp-block-button__link:hover {
    background: var(--cream);
    color: var(--black);
    border-color: var(--cream);
}

a.btn-outline,
button.btn-outline,
.wp-block-button__link.btn-outline,
.wp-block-button.deens-btn-wrap.btn-outline .wp-block-button__link {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
}

a.btn-outline:hover,
button.btn-outline:hover,
.wp-block-button__link.btn-outline:hover,
.wp-block-button.deens-btn-wrap.btn-outline .wp-block-button__link:hover {
    background: var(--black);
    color: var(--cream);
}

.catering-ctas a.btn.btn-primary,
.catering-ctas .wp-block-button.btn-primary .wp-block-button__link {
    background: #fff;
    color: var(--red);
}

.catering-ctas a.btn.btn-outline,
.catering-ctas .wp-block-button.btn-outline .wp-block-button__link,
.instagram-feed a.btn.btn-outline.reveal.in,
.instagram-feed .btn-outline .wp-block-button__link {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Section */
section {
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    transition:
        padding 0.3s ease,
        background 0.3s ease,
        backdrop-filter 0.3s ease;
}

.nav::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 209px;
    top: 0;
    z-index: -1;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgb(0 0 0 / 0%) 100%);
}

.nav.solid {
    background: rgba(14, 14, 14, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 246, 232, 0.08);
}

.nav.solid::before {
    display: none;
}

.nav.solid img.logo-mark {
    height: 100px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 36px;
    gap: 24px;
    transition: padding 0.3s ease;
}

.nav.solid .nav-inner {
    padding: 14px 36px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    transition:
        opacity 0.2s ease,
        color 0.2s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--red-bright);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
}

.logo-mark {
    object-fit: contain;
    display: block;
    /* transform: rotate(-4deg); */
    filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.35));
    transition: all 0.5s;
}

.logo-wm {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-wm .lw1 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    letter-spacing: 0.03em;
}

.logo-wm .lw2 {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.28em;
    opacity: 0.7;
    margin-top: 3px;
}

/* Language switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    background: rgba(255, 246, 232, 0.08);
    border-radius: 999px;
    gap: 0;
}

.lang-switch button {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 246, 232, 0.7);
    background: transparent;
    border: none;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.lang-switch button.active {
    color: var(--ink);
    background: var(--cream);
}

/* Chip */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 246, 232, 0.1);
    color: var(--cream);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 246, 232, 0.18);
}

/* Card hover */
.card-hover {
    transition:
        transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.35s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
}

/* Img treatments */
.img-fill {
    width: 100%;
    height: 100%;
}

.img-fill img,
figure.img-fill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.img-zoom:hover img {
    transform: scale(1.06);
}

/* Sticker */
.sticker {
    display: inline-block;
    padding: 10px 14px;
    background: var(--red);
    color: var(--cream);
    font-family: "Poppins", sans-serif;
    transform: rotate(-6deg);
    border: 2px dashed var(--cream);
    border-radius: 6px;
}

/* Heat scale */
.heat-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.18);
    display: inline-block;
}

.heat-dot.on {
    background: var(--red);
}

.heat-row {
    display: inline-flex;
    gap: 4px;
}

/* Scroll cue */
.scroll-cue {
    animation: nudge 2s ease-in-out infinite;
}

/* Section index numerals */
.sec-no {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    letter-spacing: 0.12em;
}

.sec-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

/* Reference v3 homepage: no line before section labels */
.sec-tag .rule {
    display: none;
}

.sec-tag .label {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 20px;
    color: var(--ink);
    margin: 0;
}

.sec-tag.dark .label {
    color: #fff;
}

.sec-tag .no {
    color: var(--red);
}

.sec-tag.dark .no {
    color: #f32a22;
}

/* Marquee */
.marquee-track {
    display: inline-flex;
    gap: 40px;
    padding-right: 40px;
    white-space: nowrap;
    animation: marquee 32s linear infinite;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    color: var(--cream);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 111px;
    top: auto;
    bottom: 0;
    z-index: 9;
    background: #000000;
    background: linear-gradient(360deg, rgba(0, 0, 0, 1) 0%, rgb(0 0 0 / 0%) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg video,
.hero-bg .wp-block-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-bg .wp-block-video {
    width: 100%;
    height: 100%;
    margin: 0;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    margin-top: 0px !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.78) 100%);
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 80% 50%, rgba(200, 16, 46, 0.2) 0%, transparent 60%);
}

.hero-marquee {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    overflow: hidden;
    opacity: 0.35;
}

.hero-marquee .marquee-track {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}

.hero-inner {
    position: absolute;
    z-index: 2;
    /* padding-top: 24vh; */
    /* padding-bottom: 00px; */
    /* height: 100%; */
    top: auto;
    bottom: 23px;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    z-index: 9;
}

.hero h1 {
    font-size: clamp(64px, 6vw, 180px);
    margin: 0;
    color: var(--cream);
}

.hero h1 .accent {
    color: var(--red);
    display: inline-block;
    position: relative;
}

.hero h1 .accent svg {
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: -16px;
    width: calc(100% + 16px);
    height: 18px;
}

.hero-lede {
    margin-top: 40px;
    max-width: 560px;
    font-size: 19px;
    line-height: 1.45;
    color: #fff;
    display: none;
}

.hero-ctas {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-scroll-cue {
    position: absolute;
    left: 50.4%;
    bottom: 28px;
    transform: translateX(-50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 9;
}

.hero-scroll-cue .mono-tag {
    font-size: 10px;
}

.hero-stats {
    position: absolute;
    right: 40px;
    bottom: 40px;
    text-align: right;
    color: var(--cream);
    display: flex;
    gap: 32px;
    z-index: 9;
}

.hero-stats .n {
    font-family: "Poppins", sans-serif;
    font-size: 44px;
    line-height: 1;
}

.hero-stats .n.accent {
    color: var(--red);
}

.hero-stats .l {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 10px;
    margin-top: 4px;
}

.hero-stats .div {
    width: 1px;
    background: rgba(255, 246, 232, 0.2);
}

/* ===== STORY ===== */
section {
    padding: 80px 0;
}

.story {
    background: var(--cream);
}

.story-head {
    text-align: center;
    margin-bottom: 30px !important;
}

.story-head .sec-tag {
    justify-content: center;
}

.story-grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 80px;
}

.story-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.story-collage .tall {
    grid-row: 1 / span 2;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 5;
}

.story-collage .sq {
    border-radius: 12px;
    overflow: hidden;
}

.story-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--red);
    color: var(--cream);
    padding: 10px 16px;
    border-radius: 999px;
    transform: rotate(6deg);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 11px;
}

.story h2 {
    font-size: 3vw;
    margin: 0;
}

.story h2 .accent {
    color: var(--red);
}

.story-copy p {
    margin: 0 0 16px;
}

.story-copy {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-block: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.slick-slide {
    padding: 0 15px;
}

.story-stats>div {
    border-right: 1px solid var(--line);
    padding: 0 15px;
}

.story-stats>div:first-child {
    padding-left: 0;
}

.story-stats>div:last-child {
    border-right: none;
}

.story-stats .n {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
}

.story-stats .n.accent {
    color: var(--red);
}

.story-stats .l {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: 16px;
    color: #000;
    margin-top: 4px;
}

.story-stats .l br {
    display: none !important;
}

/* ===== MENU ===== */
.menu {
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(rgba(255, 246, 232, 0.6) 1px, transparent 1.2px);
    background-size: 4px 4px;
    pointer-events: none;
}

.menu-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 2;
    margin-bottom: 30px !important;
}

.menu h2 {
    font-size: 3vw;
    margin: 0;
    color: var(--cream);
}

.menu h2 .accent {
    color: var(--red);
}

.menu-lede {
    margin-top: 18px;
    color: #fff;
    max-width: 500px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
}

.menu-card {
    background: rgba(255, 246, 232, 0.04);
    border: 1px solid rgba(255, 246, 232, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 0;
}

.menu-card .img-wrap {
    aspect-ratio: 4/3;
    position: relative;
}

.menu-card .num-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    background: rgba(14, 14, 14, 0.7);
    color: var(--cream);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-top: 0;
}

.menu-card .heat-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--cream);
    color: var(--ink);
    border-radius: 999px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 0;
}

.menu-card-body {
    padding: 20px 22px 22px;
    margin-top: 0;
}

.menu-card-body .row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.menu-card-body .name {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: var(--cream);
    font-weight: 600;
}

.menu-card-body .desc {
    font-size: 16px;
    color: #fff;
    margin-top: 4px;
}

.menu-card-body .desc br {
    display: none;
}

.menu-card-body .price {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    color: var(--red);
    font-weight: 600;
    margin-top: 0;
}

.menu-card-body .price sup {
    font-size: 11px;
    opacity: 0.6;
    margin-left: 2px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.add-btn {
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255, 246, 232, 0.18);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.add-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

/* ===== LOCATIONS ===== */
.locations {
    background: var(--cream);
}

.loc-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px !important;
}

.loc-head h2 {
    font-size: 3vw;
    margin: 0;
}

.loc-head h2 .accent {
    color: var(--red);
}

.loc-head .lede {
    margin-top: 16px;
    font-size: 16px;
}

.loc-meta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.loc-meta .rule {
    display: none;
}

.loc-meta .se {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    color: var(--red);
}

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

.loc-card {
    background: var(--cream-2);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-top: 0;
}

.loc-card .img-wrap {
    aspect-ratio: 16/11;
}

.loc-card-body {
    margin-top: 0;
    padding: 22px 24px 24px;
}

.loc-card-body .pin-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    margin-bottom: 8px;
    display: none !important;
}

.loc-card-body h2 {
    font-size: 24px;
    margin: 15px 0 15px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.005em;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
}

.loc-card-body .info {
    display: grid;
    gap: 8px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.loc-card-body .info>div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.loc-card-body .info>div:last-child {
    display: none;
}

.loc-card-body .info>p.addr,
.loc-card-body .info>p.hours,
.loc-card-body .info>p.phone,
.editor-styles-wrapper .loc-card-body .info>p.addr,
.editor-styles-wrapper .loc-card-body .info>p.hours,
.editor-styles-wrapper .loc-card-body .info>p.phone {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.loc-card-body .info>div.addr {
    align-items: flex-start;
}

.loc-strip {
    margin-top: 28px;
    padding: 14px 20px;
    background: var(--red);
    color: var(--cream);
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.loc-strip .mapchip {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 246, 232, 0.08);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.loc-strip .mapchip svg {
    display: block;
}

.ul-link {
    position: relative;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 13px;
    text-transform: uppercase;
}

.ul-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: currentColor;
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ul-link:hover::after {
    transform: scaleX(1.05);
}

/* ===== CATERING ===== */
.catering {
    background: var(--cream-2);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.catering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.catering-img {
    position: relative;
    overflow: hidden;
}

.catering-img img,
.catering-img .wp-block-image img,
.catering-img .catering-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.catering-img .wp-block-image,
.catering-img figure.catering-photo {
    position: absolute;
    inset: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: none;
}

.catering-tags {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.catering-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.85);
    color: var(--cream);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
}

.catering-text {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ab0a06;
    background: linear-gradient(0deg, rgba(171, 10, 6, 1) 0%, rgba(218, 16, 4, 1) 36%, rgba(241, 82, 14, 1) 61%, rgba(250, 178, 22, 1) 100%);
    color: #fff;
}

.catering-text h2 {
    font-size: 3vw;
    margin: 0;
    color: #fff;
}

.catering-text h2 .accent {
    color: #fff;
}

.catering-lede {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    color: #fff;
}

ul.catering-list {
    padding: 0;
    margin: 24px 0 0;
    color: #fff;
    list-style: none;
}

ul.catering-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

ul.catering-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    background: var(--red);
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 100px;
    border: 3px solid #fff;
    outline: 2px solid var(--red);
}

.loc-card-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.catering-stats {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid rgb(255 255 255 / 12%);
    border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.catering-stats .n {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    color: #fff;
}

.catering-stats .n.accent {
    color: #fff;
}

.catering-stats .l {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 4px;
    color: #fff;
}

.catering-stats .l br {
    display: none;
}

.catering-ctas {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== PARTNER ===== */
.partner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    padding: 0;
    min-height: 0;
}

.partner-bg .wp-block-image,
.partner-bg figure,
.partner-bg img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    display: none;
}

.partner {
    color: #fff;
    position: relative;
    overflow: hidden;
    background-image: url(https://www.deenshotchicken.com/wp-content/uploads/2026/06/partner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.partner::before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    opacity: 0.9;
    pointer-events: none;
}

.partner .sec-tag {
    justify-content: center;
}

.partner-number {
    position: absolute;
    right: -40px;
    bottom: -80px;
    font-family: "Poppins", sans-serif;
    font-size: 460px;
    line-height: 0.82;
    color: var(--red);
    opacity: 0.14;
    pointer-events: none;
    z-index: 2;
    display: none;
}

.partner-inner {
    position: relative;
    z-index: 2;
}

.partner h2 {
    font-size: 3vw;
    margin: 0;
    color: var(--cream);
}

.partner h2 .accent {
    color: var(--red);
}

.partner-lede {
    margin-top: 28px;
    font-size: 19px;
    line-height: 1.55;
    color: rgb(255 255 255);
}

.partner-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 30px 0 !important;
}
.partner-card {
    padding: 30px 28px;
    background: rgba(255, 246, 232, 0.04);
    border: 1px solid rgba(255, 246, 232, 0.12);
    border-radius: 14px;
    transition: all 0.25s ease;
}

.partner-card:hover {
    background: rgba(255, 246, 232, 0.07);
    border-color: var(--red);
}

.partner-card .n {
    font-family: "Poppins", sans-serif;
    font-size: 44px;
    color: var(--red);
    margin-bottom: 10px;
}

.partner-card .t {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    margin-top: 4px;
    text-transform: uppercase;
    line-height: 1;
}

.partner-card .d {
    margin-top: 12px;
    line-height: 1.6;
}

.partner-ctas {
    margin-top: 56px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== SAUCES ===== */
.sauces {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.sauces-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center !important;
}

.sauces h2 {
    font-size: 3vw;
    margin: 0;
}

.sauces h2 .accent {
    color: var(--red);
}

.sauces-lede {
    font-size: 16px;
    line-height: 1.6;
    max-width: 460px;
    margin: 30px 0!important;
}

.sauces-hero {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 18px;
    overflow: hidden;
    background: var(--black);
}

.sauces-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sauces-hero figure.wp-block-image.size-full {
    height: 100%;
}
.sauces-hero .drip {
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: var(--cream);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: drip 3s ease-in-out infinite;
    margin-top: -12px;
}

.sauces-hero .flame {
    position: absolute;
    bottom: 24px;
    right: 24px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    animation: flick 1.8s ease-in-out infinite;
}

.sauces-hero .caption {
    position: absolute;
    bottom: 20px;
    left: 24px;
    color: var(--cream);
}

.sauces-hero .caption .title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    margin-top: 4px;
}

.sauces-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sauce-card {
    background: var(--cream-2);
    border-radius: 14px;
    padding: 26px 22px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sauce-card .blob {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    opacity: 0.25;
    filter: blur(6px);
}

.sauce-card .top-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sauce-card .n {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: rgb(200 16 46);
}

.sauce-card .flames {
    display: flex;
    gap: 4px;
}

.sauce-card .cup-svg {
    display: block;
    margin: 20px auto 16px;
    width: 100px;
    height: 90px;
    position: relative;
}

.sauce-card .name {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    margin-top: 4px;
    text-transform: uppercase;
    line-height: 1;
}

.sauce-card .note {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 16px;
    color: #000;
    margin-top: 6px;
}

/* ===== MERCH ===== */
.merch {
    background: #f4e9d4;
}

.merch-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
}

.merch-head h2 {
    font-size: clamp(56px, 4vw, 130px);
    margin: 0;
}

.merch-head h2 .accent {
    color: var(--red);
}

.merch-head .lede {
    margin-top: 16px;
    font-size: 16px;
}

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

.merch-card {
    cursor: pointer;
}

.merch-card .img-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 14px;
    background: var(--black);
    position: relative;
}

.merch-card .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    background: var(--cream);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.merch-card-body {
    padding: 18px 4px 0;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.merch-card-body .name {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1;
}

.merch-card-body .shop {
    margin-top: 8px;
    background: none;
    border: none;
    padding: 0;
    color: var(--red);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.merch-card-body .shop svg {
    transition: transform 0.25s ease;
}

.merch-card-body .shop:hover svg {
    transform: translateX(4px);
}

/* ===== INSTAGRAM FEED ===== */
.instagram-feed {
    background: #ab0a06;
    background: linear-gradient(0deg, rgba(171, 10, 6, 1) 0%, rgba(218, 16, 4, 1) 36%, rgba(241, 82, 14, 1) 61%, rgba(250, 178, 22, 1) 100%);
    color: #fff;
}

.instagram-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 50px !important;
    flex-wrap: wrap;
    gap: 24px;
}
.instagram-head h2 {
    font-size: 3vw;
    margin: 0;
    color: #fff;
}

.instagram-head h2 .accent {
    color: #fff;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.instagram-card {
    position: relative;
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 14px;
    background: var(--black);
    color: var(--cream);
    margin-top: 0;
}
.instagram-card a {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.instagram-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0) 46%, rgba(14, 14, 14, 0.78) 100%);
    opacity: 0.86;
    transition: opacity 0.25s ease;
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.instagram-card:hover img {
    transform: scale(1.08);
}

.instagram-card:hover::after {
    opacity: 1;
}

.instagram-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
}

.instagram-overlay .handle {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.instagram-overlay .cta {
    flex: 0 0 auto;
    padding: 6px 10px;
    border: 1px solid rgba(255, 246, 232, 0.65);
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.28);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
	    display: none;
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    color: var(--cream);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    text-align: center;
    top: 30px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(120px, 22vw, 380px);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 246, 232, 0.08);
    pointer-events: none;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-inner {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-grid .reveal.in {
    text-align: center;
}

.footer-grid .reveal.in:nth-child(1),
.footer-grid .footer-col--links,
.deens-footer .footer-grid>.wp-block-column:first-child {
    text-align: left;
}

.footer-grid .reveal.in:nth-child(3),
.footer-grid .footer-col--menu,
.deens-footer .footer-grid>.wp-block-column:last-child {
    text-align: right;
}

.footer-grid .footer-col--brand,
.footer-grid .reveal.in:nth-child(2) {
    text-align: center;
}

.footer-grid .reveal.in img {
    width: 184px;
}

.footer-grid .col-head {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--red);
    margin-bottom: 18px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    font-size: 16px;
}

.footer-grid ul a {
    color: #fff;
    transition: color 0.2s ease;
}

.footer-grid ul a:hover {
    color: var(--red);
}

.footer-grid .bio {
    margin-top: 18px;
    color: #fff;
    max-width: 320px;
    font-size: 14.5px;
    line-height: 1.6;
}

.footer-socials {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.locations-section {
    margin-top: 0px !important;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 246, 232, 0.08);
    color: var(--cream);
    border: 1px solid rgba(255, 246, 232, 0.12);
    transition: background 0.2s ease;
}

.footer-socials a:hover {
    background: rgba(255, 246, 232, 0.16);
}

.footer-form {
    display: flex;
    border: 1px solid rgba(255, 246, 232, 0.2);
    border-radius: 999px;
    padding: 4px 8px;
    background: rgba(255, 246, 232, 0.04);
    align-items: anchor-center;
}

.footer-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--cream);
    padding: 10px 16px;
    font-size: 14px;
    font-family: inherit;
}

.footer-form button {
    border: none;
    background: var(--red);
    color: var(--cream);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 246, 232, 0.1);
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 16px;
    color: #fff;
}

.footer-bottom .legal {
    display: flex;
    gap: 22px;
}


.inner-pages .nav::before {
    display: none !important;
}

/* inner pages css  */
.about-hero .reveal.in {
    justify-content: center;
}

/* 
.page-main--cream {
       background-color: #e0e0e0 !important;
    padding: 80px 0 !important;
} */

.menu-section-title {
    text-align: center;
}

section {
    margin-top: 0px !important;
}

#story .story-grid {
    display: grid !important;
    grid-template-columns: 45% 1fr;
    gap: 70px;
    margin-top: 0px !important;
    align-items: start !important;
}


/* Responsive */




.wp-block-template-part {
    padding: 0px;
}

.about-slider-dots {

    display: none !important;
}


.quick-access-bar {
    display: none !important;
}

.deens-header .wp-block-site-logo img {
    height: 150px !important;
    width: auto !important;
    display: block !important
}

.hero .hero-inner {
    position: absolute !important;
    bottom: 23px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    justify-content: center !important;
    z-index: 9 !important
}

.hero .hero-ctas {
    gap: 30px !important
}

.deens-footer .footer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 50px !important
}

.deens-header .nav-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important
}

.burger-icon {
    display: none;
}

.loc-strip.wp-block-group {
    max-width: 1222px;
    margin: 27px auto 0;
}

#partner .sec-tag p {
    color: #fff;
}








.menu-panel.is-active {
    animation: fadeUp .5s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home .menu-grid article:last-child {
    display: none;
}


/* .page-id-9 .loc-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 850px;
    margin-inline: auto;
} */

.loc-strip-desc {
    display: block;
    font-size: 16px;
    margin-top: 4px;
    color: #fff;
    line-height: 1.4;
}

.page-main2 .menu-board-card .img-wrap img {
    object-fit: cover;
}



/* ===== components.css ===== */
/**
 * WordPress block theme bridge + header/footer overrides.
 */

:root {
	--red: #f32a22;
	--red-deep: #f32a22;
	--red-bright: #ff2d2d;
	--black: #0e0e0e;
	--charcoal: #1a1a1a;
	--cream: #fff;
	--cream-2: #fff;
	--ink: #000;
	--line: rgba(15, 15, 15, 0.12);
	--line-light: rgba(255, 246, 232, 0.16);
}

.wp-site-blocks {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.wp-site-blocks>* {
	margin-block-start: 0;
}

.accent {
	color: var(--red);
}

/* ——— Header  ——— */

.deens-header.nav,
header.deens-header.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 80;
	width: 100%;
	overflow: visible;
	transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.deens-header.nav::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 209px;
	top: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgb(0 0 0 / 0%) 100%);
	pointer-events: none;
}

.deens-header.nav.solid::before {
	display: none;
}

.deens-header.nav.solid {
	background: rgba(14, 14, 14, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 246, 232, 0.08);
}

/* Header bar — flex layout (match reference v3: logo | nav | actions + burger) */
.deens-header .nav-inner,
.deens-header .nav-inner.wp-block-group {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 24px !important;
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding: 10px 36px ;
	box-sizing: border-box !important;
}

.deens-header .nav-inner>.wp-block-group {
	margin: 0 !important;
}

.deens-header.nav.solid .nav-inner {
	padding-top: 14px !important;
	padding-bottom: 14px !important;
}

.deens-header .nav-inner__col {
	margin: 0 !important;
	min-width: 0;
}

.deens-header .nav-inner__col--logo {
	flex: 0 0 auto;
	display: flex !important;
	align-items: center !important;
	min-width: 0;
}

.deens-header .nav-inner__col--nav {
	flex: 1 1 auto;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	min-width: 0;
}

.deens-header .nav-inner__col--actions {
	flex: 0 0 auto;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 18px !important;
	min-width: 0;
}

.deens-header .nav-inner__col--actions .side_bar_btn {
	flex-shrink: 0;
	margin: 0;
}

.deens-header .nav-inner__col--logo .wp-block-shortcode {
	margin: 0 !important;
	line-height: 0;
}

/* Logo — compact, same visual weight as reference */
.deens-header .logo {
	display: inline-flex;
	align-items: center;
	margin: 0;
	line-height: 0;
	text-decoration: none;
}

/* Header Site Logo — editable in Site Editor / Settings → Site Identity */
.deens-header .nav-inner__col--logo .wp-block-site-logo {
	line-height: 0;
	margin: 0;
}

.deens-header .logo-mark,
.deens-header .logo img,
.deens-header .wp-block-site-logo img {
	width: auto ;
	max-width: none ;
	object-fit: contain ;
	display: block;
	filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.35));
	transition: height 0.5s ease;
}

.deens-header.nav.solid .wp-block-site-logo img,
.deens-header.nav.solid .logo-mark,
.deens-header.nav.solid .logo img {
	height: 100px !important;
}

.inner-pages .deens-header .wp-block-site-logo img,
.inner-pages .deens-header .logo-mark,
.inner-pages .deens-header .logo img {
	height: 100px !important;
}

.deens-header .wp-block-site-logo .wp-block-site-title,
.deens-header .wp-block-site-title {
	display: none !important;
}

/* Primary navigation — center column */
.deens-header .nav-inner__col--nav .nav-links.wp-block-navigation {
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
}

.deens-header .nav-links .wp-block-navigation__container {
	display: flex !important;
	flex-wrap: nowrap !important;
	justify-content: center !important;
	gap: 30px !important;
}

.deens-header .nav-links .wp-block-page-list,
.deens-header .nav-links ul {
	gap: 30px !important;
}

.deens-header .nav-links .wp-block-navigation-item {
	margin: 0;
}

.deens-header .nav-links .wp-block-navigation-item__content {
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 0 !important;
    outline: none;
}

.deens-header .nav-links .wp-block-navigation-item__content:hover {
	color: var(--red-bright) !important;
	opacity: 1;
}

.deens-header .nav-links .current-menu-item .wp-block-navigation-item__content {
	color: var(--red-bright) !important;
}

.deens-header .wp-block-navigation__responsive-container-open,
.deens-header .wp-block-navigation__responsive-container-close {
	color: #fff;
}

.deens-header .wp-block-navigation,
.deens-header .wp-block-navigation .wp-block-navigation-item {
	background: transparent !important;
}

.deens-header .wp-block-shortcode {
	background: transparent;
}

/* Nav right — actions column */
.deens-header .nav-inner__col--actions .wp-block-html {
	margin: 0 !important;
	width: auto;
}

.deens-header .nav-right {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 18px !important;
	flex-wrap: nowrap;
}

.deens-header .lang-switch {
	display: inline-flex;
	align-items: center;
	padding: 3px;
	background: rgba(255, 246, 232, 0.08);
	border-radius: 999px;
	gap: 0;
}

.deens-header .lang-switch button {
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: rgba(255, 246, 232, 0.7);
	background: transparent;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s ease, color 0.2s ease;
}

.deens-header .lang-switch button.active {
	color: var(--ink);
	background: var(--cream);
}

/* GTranslate [gtranslate] — match design lang-switch (EN / SV / DE / DA) */
.deens-header .lang-switch a.glink {
	display: inline-block;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255, 246, 232, 0.7);
	background: transparent;
	border: none;
	cursor: pointer;
	font-family: inherit;
	line-height: 1.2;
	transition: background 0.2s ease, color 0.2s ease;
}

.deens-header .lang-switch a.glink:hover,
.deens-header .lang-switch a.glink:focus-visible {
	color: var(--cream);
	outline: none;
}

.deens-header .lang-switch a.glink.gt-current-lang {
	color: var(--ink) !important;
	background: var(--cream) !important;
	font-weight: 600 !important;
}

.deens-header .lang-switch #google_translate_element2,
.deens-header .lang-switch .skiptranslate {
	display: none !important;
}

.deens-header .lang-switch .gt_switcher_wrapper {
	position: static !important;
	z-index: auto !important;
}

.deens-header .btn.btn-primary.deens-partner-cta a.wp-block-button__link.wp-element-button.btn.btn-primary.has-deens-arrow.deens-partner-cta{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--red) !important;
    color: var(--cream) !important;
    border: none !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    white-space: nowrap;
    font-family: inherit;
    line-height: 1.2;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	outline:0;
}
.deens-header .btn.btn-primary.deens-partner-cta a.wp-block-button__link.wp-element-button.btn.btn-primary.has-deens-arrow.deens-partner-cta::after {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: transform 0.25s ease;
}
.deens-header .deens-partner-cta:hover a.wp-block-button__link.wp-element-button.btn.btn-primary.has-deens-arrow.deens-partner-cta{
    background: var(--red-deep) !important;
    color: var(--cream) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(200, 16, 46, 0.55);
    border-radius: 100px;
}

.deens-header .deens-partner-cta svg {
	transition: transform 0.25s ease;
}

.deens-header .deens-partner-cta:hover svg {
	transform: translateX(4px);
}

/* Inner pages header */
.inner-pages .deens-header.nav::before {
	display: none !important;
}

.inner-pages .deens-header.nav {
	background: var(--black);
}

/* ——— Footer (match reference v3 footer) ——— */

footer.deens-footer,
.deens-footer,
footer#footer.deens-footer {
	background: var(--black) !important;
	color: var(--cream);
	padding-top: 80px !important;
	padding-bottom: 0 !important;
	position: relative;
	overflow: hidden;
	margin: 0 !important;
}

.deens-footer>.wp-block-group,
.deens-footer .footer-inner,
.deens-footer .footer-grid,
.deens-footer .footer-grid>.reveal,
.deens-footer .footer-bottom {
	margin-top: 0;
	margin-bottom: 0;
}

.deens-footer .footer-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 30px;
	margin-inline: auto;
	text-align: center;
	font-family: "Poppins", sans-serif;
	font-size: clamp(120px, 22vw, 380px);
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 246, 232, 0.08);
	pointer-events: none;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	z-index: 1;
}

.deens-footer .footer-inner {
	position: relative;
	z-index: 2;
	width: 100%;
}

/* 3 equal columns — match reference v3 .footer-grid */
.deens-footer .footer-grid,
.deens-footer .footer-grid.wp-block-columns {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 50px !important;
	padding-bottom: 40px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	align-items: start !important;
}

.deens-footer .footer-col,
.deens-footer .footer-grid .wp-block-column {
	display: flex !important;
	flex-direction: column !important;
	min-width: 0;
}

/* Column 1 — Quick Links (left-aligned, match reference) */
.deens-footer .footer-col--links,
.deens-footer .footer-grid.wp-block-columns>.wp-block-column:first-child {
	text-align: left !important;
	align-items: flex-start !important;
}

/* Column 2 — Brand / contact (centered) */
.deens-footer .footer-col--brand,
.deens-footer .footer-grid.wp-block-columns>.wp-block-column:nth-child(2) {
	text-align: center !important;
	align-items: center !important;
}

/* Column 3 — Our Menu (right-aligned, match reference) */
.deens-footer .footer-col--menu,
.deens-footer .footer-grid.wp-block-columns>.wp-block-column:last-child {
	text-align: right !important;
	align-items: flex-end !important;
}

.deens-footer .footer-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 16px;
	flex-wrap: wrap;
}

/* Site Logo block — editable in Site Editor (Appearance → Editor → Footer) */
.deens-footer .wp-block-site-logo.footer-logo,
.deens-footer .footer-col .wp-block-site-logo {
	display: block;
	margin: 0 auto 18px;
	line-height: 0;
	text-align: center;
}

.deens-footer .wp-block-site-logo.footer-logo img,
.deens-footer .wp-block-site-logo img,
.deens-footer .footer-col .logo img,
.deens-footer .footer-col .img-fluid {
	width: 184px !important;
	height: auto !important;
	max-width: 100%;
	margin: 0 auto;
	display: block;
	object-fit: contain;
}

.deens-footer .wp-block-site-logo .wp-block-site-title {
	display: none !important;
}

.deens-footer .col-head {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 16px;
	color: var(--red) !important;
	margin: 0 0 18px !important;
	width: 100%;
}

.deens-footer .footer-col--links .col-head {
	text-align: left ;
}

.deens-footer .footer-col--brand .col-head {
	text-align: center ;
}

.deens-footer .footer-col--menu .col-head {
	text-align: right ;
}

/* Footer link lists — plain ul (match reference; avoids WP Navigation block layout) */
.deens-footer .footer-links-ul,
.deens-footer .footer-menu-ul,
.deens-footer .footer-grid ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
	font-size: 16px;
	width: 100%;
}
.daterangepicker {
    z-index: 1;
}
.deens-footer .footer-links-ul a,
.deens-footer .footer-menu-ul a,
.deens-footer .footer-grid ul a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
	    outline: none;
}

.deens-footer .footer-links-ul a:hover,
.deens-footer .footer-menu-ul a:hover,
.deens-footer .footer-grid ul a:hover {
	color: var(--red);
}

.deens-footer .footer-col--links .footer-links-ul {
	text-align: left;
}

.deens-footer .footer-col--menu .footer-menu-ul {
	text-align: right;
}

.deens-footer .footer-insta-handle.display {
	font-size: 28px !important;
	margin: 0 0 10px !important;
	color: #fff;
}

.deens-footer .footer-newsletter-copy {
	font-size: 16px !important;
	color: #fff !important;
	margin: 0 0 18px !important;
}

/* Footer nav lists — match reference .footer-grid ul (left | center | right) */
.deens-footer .footer-nav.wp-block-navigation {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	letter-spacing: normal !important;
	text-transform: none !important;
}

.deens-footer .footer-nav .wp-block-navigation__responsive-container,
.deens-footer .footer-nav .wp-block-navigation__responsive-container-content {
	display: block !important;
	width: 100% !important;
	position: static !important;
}

.deens-footer .footer-nav .wp-block-navigation__container {
	display: grid !important;
	gap: 12px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	justify-items: stretch !important;
	align-items: stretch !important;
	flex-direction: column !important;
}

.deens-footer .footer-nav .wp-block-navigation-item {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	list-style: none !important;
}

.deens-footer .footer-nav .wp-block-navigation-item__content {
	display: inline-block !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	color: #fff !important;
	text-decoration: none !important;
	padding: 0 !important;
}

.deens-footer .footer-nav .wp-block-navigation-item__content:hover {
	color: var(--red) !important;
}

.deens-footer .footer-col--links .footer-nav .wp-block-navigation-item,
.deens-footer .footer-col--links .footer-nav .wp-block-navigation-item__content {
	text-align: left !important;
}

.deens-footer .footer-col--links .footer-nav .wp-block-navigation__container {
	justify-items: start !important;
}

.deens-footer .footer-col--menu .footer-nav .wp-block-navigation-item,
.deens-footer .footer-col--menu .footer-nav .wp-block-navigation-item__content {
	text-align: right !important;
}

.deens-footer .footer-col--menu .footer-nav .wp-block-navigation__container {
	justify-items: end !important;
}

.deens-footer .footer-nav.is-vertical .wp-block-navigation__container,
.deens-footer .footer-nav.is-layout-flex .wp-block-navigation__container {
	justify-content: flex-start !important;
	align-items: stretch !important;
}

/* Contact column — [deens_footer_contact] ul (Settings → Deen's Contact) */
.deens-footer .footer-contact-ul,
.deens-footer .footer-grid ul.footer-contact-ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: grid;
	gap: 12px;
	font-size: 16px;
	color: #fff;
	max-width: 320px;
	text-align: center;
}

.deens-footer .footer-contact-ul a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.deens-footer .footer-contact-ul a:hover {
	color: var(--red);
}

.deens-footer .footer-contact-ul .footer-locations-line {
	margin-top: 8px;
}

.deens-footer .wp-block-shortcode {
	margin: 0;
}

/* Footer join form — Newsletter plugin markup; see footer-newsletter.css for full overrides */
.deens-footer .footer-form,
.deens-footer .footer-newsletter-wrap form.footer-form {
	display: flex;
	border: 1px solid rgba(255, 246, 232, 0.2);
	border-radius: 999px;
	padding: 4px 8px;
	background: rgba(255, 246, 232, 0.04);
	align-items: center;
	max-width: 100%;
	margin: 0 auto;
}

.deens-footer .footer-form input,
.deens-footer .footer-newsletter-wrap input.tnp-email {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: none;
	outline: none;
	color: var(--cream);
	padding: 10px 16px;
	font-size: 14px;
	font-family: inherit;
}

.deens-footer .footer-form button,
.deens-footer .footer-newsletter-wrap input.tnp-submit {
	border: none;
	background: var(--red);
	color: var(--cream);
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	font-family: inherit;
}

.deens-footer .footer-socials {
	margin-top: 22px;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.deens-footer .footer-socials>a {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: rgba(255, 246, 232, 0.08);
	color: var(--cream);
	border: 1px solid rgba(255, 246, 232, 0.12);
	transition: background 0.2s ease;
	text-decoration: none;
}

.deens-footer .footer-socials>a:hover {
	background: rgba(255, 246, 232, 0.16);
}

.deens-footer .footer-socials .halal-float-badge {
	position: unset;
	right: auto;
	bottom: auto;
	z-index: auto;
	pointer-events: none;
	flex-shrink: 0;
}

.deens-footer .footer-bottom {
	border-top: 1px solid rgba(255, 246, 232, 0.1);
	padding: 26px 0 ;
	display: flex ;
	justify-content: space-between ;
	align-items: center ;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 16px;
	color: #fff;
	margin: 0 !important;
}

.deens-footer .footer-bottom p {
    margin: 0;
    color: #fff;
    text-transform: capitalize;
}

.deens-footer .footer-bottom .legal {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.deens-footer .footer-bottom .legal a {
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.deens-footer .footer-bottom .legal a:hover {
	color: var(--red);
}

.deens-container {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 32px;
	padding-right: 32px;
	box-sizing: border-box;
}

/* ——— Hero banner (match reference v3 — override WP block layout) ——— */

section.hero,
.wp-block-group.hero {
	padding: 0 !important;
	margin: 0 !important;
	min-height: 100vh ;
}

.hero .hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero .hero-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero .hero-scrim,
.hero .hero-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero .hero-inner {
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 23px !important;
	top: auto !important;
	z-index: 9 !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.hero .hero-ctas {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 30px !important;
	margin: 0 !important;
}

.hero .hero-ctas .btn {
	text-decoration: none;
}

.hero .hero-scroll-cue {
	position: absolute !important;
	left: 50.4% !important;
	bottom: 28px !important;
	transform: translateX(-50%) !important;
	z-index: 9 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 8px !important;
	color: #fff;
	margin: 0 !important;
}

.hero .hero-scroll-cue .mono-tag {
	font-size: 10px;
	margin: 0;
	letter-spacing: 0.18em;
}

.hero .hero-stats {
	position: absolute !important;
	right: 40px !important;
	bottom: 40px !important;
	left: auto !important;
	top: auto !important;
	z-index: 9 !important;
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: flex-end !important;
	gap: 32px !important;
	text-align: right;
	color: var(--cream);
	margin: 0 !important;
	padding: 0 !important;
}

.hero .hero-stats>div:not(.div) {
	display: block;
}

.hero .hero-stats .n {
	font-family: "Poppins", sans-serif;
	font-size: 44px;
	line-height: 1;
	margin: 0;
}

.hero .hero-stats .n.accent {
	color: var(--red);
}

.hero .hero-stats .l {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 10px;
	margin: 4px 0 0;
}

.hero .hero-stats .div {
	width: 1px;
	align-self: stretch;
	min-height: 48px;
	background: rgba(255, 246, 232, 0.2);
	flex-shrink: 0;
}



/* ——— Locations strip CTA (Chase the smoke — match reference v3) ——— */

.loc-strip {
	display: flex ;
	justify-content: space-between ;
	align-items: center ;
	flex-wrap: wrap;
	gap: 14px;
}

.loc-strip-main {
	display: flex;
	align-items: center;
	gap: 14px;
}

.loc-strip-desc {
	font-size: 16px;
	margin-top: 4px;
	color: #fff;
	line-height: 1.4;
}

.loc-strip .mapchip {
	flex-shrink: 0;
}

.loc-strip .mapchip svg {
	display: block;
}

.loc-strip .ul-link {
	color: #fff;
	text-decoration: none;
}

.loc-strip .mono-tag {
	margin: 0;
}

/* ——— Misc ——— */

.wp-block-group.hero .wp-block-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-slider .about-slide {
	display: none;
}

.about-slider .about-slide.is-active {
	display: block;
}

.about-slider-dots {
	display: flex;
	justify-content: center;
	gap: 5px;
	padding: 0;
	margin: 16px 0 0;
	list-style: none;
}

.about-slider-dots button {
	font-size: 0;
	width: 25px;
	height: 10px;
	border: none;
	background: rgb(243 42 34 / 57%);
	cursor: pointer;
	transition: background 0.4s ease;
}

.about-slider-dots button.is-active {
	background: rgb(243 42 34 / 100%);
}

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

.deens-form-placeholder {
	padding: 24px;
	background: #f5f5f5;
	border: 1px dashed var(--line);
}

/* Menu page — design/menu.html (pages.css handles layout; bridge WP wrapper only) */

.page-menu-main,
.page-menu-cards .page-menu-main,
.page-menu-cards .wp-block-post-content {
	padding: 0;
	margin: 0;
}

.page-menu-cards .wp-block-html {
	margin: 0;
}

.page-menu-cards .header-slick .site-section-title h2 {
	font-size: 50px !important;
	line-height: 64px !important;
	font-weight: 800 !important;
	text-transform: capitalize;
}

/* Internal pages — editor HTML (pages.css handles layout) */

.page-catering-main .wp-block-post-content,
.page-locations-main .wp-block-post-content,
.page-location-main .wp-block-post-content,
.page-contact-main .wp-block-post-content,
.page-partner-main .wp-block-post-content {
	padding: 0;
	margin: 0;
}

.page-catering-main .wp-block-html,
.page-locations-main .wp-block-html,
.page-location-main .wp-block-html,
.page-contact-main .wp-block-html,
.page-partner-main .wp-block-html {
	margin: 0;
}



/* Partner page — main-about (design/partner.html) */

.page-partner .main-about {
	background: #000;
	color: #fff;
	padding: 72px 0;
}

.page-partner .main-about .container {
	display: block;
	max-width: 1280px;
}

.page-partner .main-about-center {
	text-align: center;
	max-width: 950px;
	margin-inline: auto;
	margin-bottom: 50px;
}

.page-partner .main-about-center p {
	color: #fff;
	font-size: 16px;
	line-height: 1.75;
	margin: 0 0 1.25em;
}

.page-partner .main-about-center p:last-child {
	margin-bottom: 0;
}

.page-partner .main-about-center .site-section-title h2 {
	color: #fff !important;
	font-size: clamp(28px, 2.5vw, 48px) !important;
	line-height: 1.2 !important;
	font-weight: 800 !important;
	text-transform: capitalize;
	margin: 0 0 24px !important;
}

.page-partner .main-about .main-about-grid {
	display: grid ;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) ;
	gap: 50px !important;
	align-items: center;
	width: 100%;
}

.page-partner .main-about .center-bx {
	min-width: 0;
	overflow: hidden;
	line-height: 0;
}

.page-partner .main-about .left-bx {
	min-width: 0;
}

.page-partner .main-about .center-bx img {
	width: 100%;
	height: auto;
	max-height: 540px;
	display: block;
	object-fit: cover;
	object-position: center;
}

.page-partner .main-about .site-section-title h2,
.page-partner .main-about .site-section-title h2 span {
	color: #fff;
}

.page-partner .main-about .left-bx p {
	color: #fff;
}



/* Partner page — franchise form (design: booking-wrap card) */

.page-partner .partner-franchise {
	padding: 72px 0 100px;
	background: var(--cream);
}

.page-partner .partner-franchise>.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
	box-sizing: border-box;
}

.page-partner .partner-franchise .booking-wrap {
	max-width: 950px;
	width: 100%;
	margin: 0 auto;
	padding: 3.5rem 2.5rem 2rem;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
	box-sizing: border-box;
}

.page-partner .partner-franchise .booking-wrap .site-section-title h2 {
	text-align: center;
	margin: 0 0 12px;
}

.page-partner .partner-franchise .booking-wrap .form-hint {
	display: block;
	text-align: center;
	margin: 0 auto 30px;
	max-width: 650px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(21, 17, 13);
}

.page-partner .partner-franchise .booking-form {
	width: 100%;
}

.page-partner .partner-franchise .booking-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-bottom: 25px;
}

.page-partner .partner-franchise .booking-form__row>div {
	min-width: 0;
}
.page-partner .partner-franchise .booking-form .radio-row label {
    display: flex;
    align-items: center;
    column-gap: 5px;
}
input[type="radio"] {
    accent-color: #f32a22;
}
.page-partner .partner-franchise .booking-form input:not([type="radio"]), .page-partner .partner-franchise .booking-form select, .page-partner .partner-franchise .booking-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block;
    padding: 10px 16px;
    border-radius: 0;
    border: 1.5px solid var(--line);
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    height: 45px;
    color: #000;
}

.page-partner .partner-franchise .booking-form textarea {
	min-height: 87px;
	resize: vertical;
	margin-bottom: 0;
}

.page-partner .partner-franchise .booking-form .radio-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 14px;
}


.page-partner .partner-franchise .booking-form .Best-way {
	margin-bottom: 25px;
}
.page-partner .partner-franchise .booking-form__actions {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin-top: 8px;
}

.page-partner .partner-franchise .booking-form__actions .btn-primary,
.page-partner .partner-franchise .booking-form button.btn-primary {
	margin: 0;
	display: inline-block;
	width: auto;
	min-width: 200px;
	padding: 16px 20px;
	font-size: 16px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
}

.page-partner .partner-franchise .booking-form__actions #submit_text.deens-form-btn--pending {
	display: none !important;
}

.page-partner .partner-franchise .booking-form__actions #submit_text.deens-form-btn--pending.is-visible {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
}

.page-partner .partner-franchise .booking-form__actions #contact_submit.deens-form-btn--submit.is-hidden {
	display: none !important;
}



.locations-page-nw .header-slick .site-section-title h2,
.locations-page-nw .header-slick .site-section-title h2 span {
	color: #fff;
}

/* About page — editor HTML (pages.css handles layout) */

.page-about-main .wp-block-post-content,
.page-about-main .wp-block-html {
	margin: 0;
	padding: 0;
}

.page-about-main .deens-container.container {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 32px;
	padding-right: 32px;
}

.page-about #about-founder .site-section-title h2,
.page-about #about-founder .site-section-title h2 span {
	color: #fff !important;
}

.page-about #about-founder .text-col>p,
.page-about #about-founder .content-prose p {
	color: #fff;
}

.page-about .text-block-section .site-section-title h2 {
	text-align: left;
}

.page-menu-cards .menu-panel[hidden] {
	display: none !important;
}

.page-menu-cards .deens-container.container {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 32px;
	padding-right: 32px;
}

.page-menu-cards .menu-board-card {
	display: flex;
	flex-direction: column;
	background: #fff;
}

.page-menu-cards .menu-board-card__body {
	display: block;
	flex: 1 1 auto;
	background: #fff;
	color: var(--ink);
}

.page-menu-cards .menu-board-card__body h3,
.page-menu-cards .menu-board-card__body > p:not(.menu-board-card__price) {
	color: var(--ink);
}

.page-menu-cards .menu-board-card__body p.menu-board-card__price {
	color: var(--red, #f32a22);
}

.page-menu-cards .menu-board-card .img-wrap {
	position: relative;
	background: var(--red);
}







/* ——— Gradient sections: sec-tags + WP headings (match reference v3) ——— */

.catering-text .sec-tag .label,
.instagram-feed .instagram-head .sec-tag .label {
	color: #fff;
}

.catering-text .wp-block-heading,
.catering-text h2.display,
.catering-text h2 {
	color: #fff !important;
}

.catering-text h2 .accent,
.catering-text .wp-block-heading .accent {
	color: #fff !important;
}

/* ——— Catering section: FSE columns / image / buttons (match reference v3) ——— */

.catering .catering-grid.wp-block-columns {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 0 !important;
	margin: 0 !important;
	min-height: 560px;
}

.catering .catering-grid.wp-block-columns>.wp-block-column {
	margin: 0 !important;
	min-width: 0 !important;
	width: 100% !important;
	flex-basis: auto !important;
}

.catering .catering-grid>.wp-block-column:first-child {
	display: flex;
	flex-direction: column;
	min-height: 560px;
}

.catering-img.wp-block-group {
	flex: 1;
	width: 100%;
	min-height: 560px;
	position: relative;
}

.catering-tags.wp-block-group {
	position: absolute;
	bottom: 28px;
	left: 28px;
	right: 28px;
	z-index: 2;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 0;
}

.catering-tags p {
	margin: 0;
}

.catering-stats.wp-block-columns {
	display: grid !important;
	grid-template-columns: repeat(3, auto);
	gap: 24px !important;
	margin-top: 0 !important;
	padding: 20px 0 !important;
	border-top: 1px solid rgb(255 255 255 / 12%);
	border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.catering-stats.wp-block-columns>.wp-block-column {
	width: auto !important;
	flex-basis: auto !important;
	margin: 0 !important;
}


/* 
.instagram-feed .instagram-head .wp-block-heading,
.instagram-feed .instagram-head h2.display,
.instagram-feed .instagram-head h2 {
	color: #fff !important;
} */

.instagram-feed .instagram-head h2 .accent,
.instagram-feed .instagram-head .wp-block-heading .accent {
	color: #fff !important;
}

.menu .wp-block-heading,
.menu h2.display,
.menu h2 {
	color: var(--cream) !important;
}

.menu .sec-tag.dark .label,
.menu .sec-tag .label {
	color: #fff;
}

.partner .wp-block-heading,
.partner h2.display {
	color: var(--cream) !important;
}

.story,
.story .story-copy,
.story .story-copy p {
	color: #000 !important;
}

.story .sec-tag .label {
	color: #000;
}

.story .wp-block-heading,
.story h2.display {
	color: #000 !important;
}

.story h2.display .accent {
	color: var(--red) !important;
}

.story .story-stats .n {
	color: #000 !important;
	font-size: 25px !important;
	font-weight: 600 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	line-height: 1.2 !important;
}

.story .story-stats .n.accent {
	color: var(--red) !important;
}

.story .story-stats .l {
	color: #000 !important;
}

.sauces .wp-block-heading,
.sauces h2.display {
	color: var(--ink) !important;
}

.locations .loc-head .wp-block-heading,
.locations .loc-head h2.display {
	color: var(--ink) !important;
}

/* Inline SVG arrows on plain links (not Gutenberg ::after arrows) */
a.btn svg,
.wp-block-button__link.btn svg {
	display: block;
	flex-shrink: 0;
}

.loc-card-body .info svg,
.loc-card-body .pin-row svg {
	flex-shrink: 0;
	color: var(--ink);
}

.loc-card-body .pin-row {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--red);
	margin-bottom: 8px;
}

.loc-card-body .pin-row .mono-tag {
	margin: 0;
}

.loc-card-body .wp-block-html {
	margin: 0;
}

.loc-card-body .wp-block-html+.wp-block-heading {
	margin-top: 0;
}

.loc-card-body .info {
	display: grid;
	gap: 8px;
}


.catering-text .sec-tag .label {
	color: #000 !important;
}

.catering .catering-text .display {
	color: #000 !important;
}

.instagram-feed .sec-tag .label {
	color: var(--ink) !important;
}

.instagram-feed .instagram-head .wp-block-heading,
.instagram-feed .instagram-head h2.display,
.instagram-feed .instagram-head h2 {
	color: #000000 !important;
}

/* ===== pages.css ===== */
/* Internal page layout */
html {
    overflow: visible;

}

body {
    overflow: visible;
}

.nav--inner {
    background: rgba(14, 14, 14, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 246, 232, 0.08);
}

.nav--inner .nav-inner {
    padding: 14px 36px;
}

.nav--inner img.logo-mark {
    height: 100px;
}

.nav-link.is-active {
    color: var(--red-bright);
    opacity: 1;
}

.page-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    padding: 160px 0 72px;
    overflow: hidden;
    background: var(--charcoal);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.55) 0%, rgba(14, 14, 14, 0.88) 72%);
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.page-hero .display {
    font-size: clamp(42px, 7vw, 72px);
    color: var(--cream);
    margin: 0 0 16px;
}

.page-hero__lede {
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0;
}

.page-main {
    padding: 88px 0 100px;
}

.page-main--dark {
    background: var(--charcoal);
    color: var(--cream);
}

.page-main--cream {
    background: var(--cream);
    margin-top: -38px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.content-grid--reverse .content-grid__media {
    order: 2;
}

.content-grid--reverse .content-grid__text {
    order: 1;
}

.content-prose {
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
}

.content-prose p {
    margin: 0 0 1.25em;
}

.content-prose p:last-child {
    margin-bottom: 0;
}

.page-main--dark .content-prose {
    color: rgba(255, 246, 232, 0.9);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 14px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.feature-list li::before {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 999px;
    background: var(--red);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    padding: 28px 24px;
    border-radius: 20px;
    background: var(--cream-2);
    border: 1px solid var(--line);
}

.value-card h3 {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: 700;
}

.value-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(21, 17, 13, 0.85);
}

/* Menu page */
.menu-location-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.menu-location-btn {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: transparent;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-location-btn:hover,
.menu-location-btn.is-active {
    background: var(--red);
    border-color: var(--red);
    color: var(--cream);
}

.menu-note {
    padding: 16px 20px;
    font-size: 15px;
    margin-bottom: 40px;
    background: #21201f;
    border-radius: 0px;
    text-align: center;
    width: fit-content;
    margin-inline: auto;
    outline: 2px solid #ffffff;
    outline-offset: -6px;
    color: #fff;
}

.menu-panel[hidden] {
    display: none;
}

.menu-section-title {
    font-size: 2vw;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--red);
    margin: 0 0 20px;
    margin-block: 31px;
}

.menu-list {
    display: flex;
    margin: 0 0 48px;
    border-top: 1px solid var(--line);
    gap: 30px;
    row-gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.menu-list__item {
    display: grid;
    grid-template-columns: 15% 40% 1fr;
    padding: 0px;
    border-bottom: 1px solid var(--line);
    width: 47%;
    align-items: center;
    gap: 0px;
    padding: 15px 0px;
}
.menu-fodd-image-block img {
    width: 100%;
    max-width: 70px;
}

.menu-list__item h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.menu-list__item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(21, 17, 13, 0.78);
    max-width: 52ch;
}

.menu-list__price {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    text-align: end;
}
.menu-list__price sup {
    font-size: 12px;
    font-weight: 700;
}

.heat-levels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.heat-level {
    padding: 16px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--line);
}

.heat-level--1 {
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.08);
}

.heat-level--2 {
    color: #c9a000;
    background: rgba(201, 160, 0, 0.1);
}

.heat-level--3 {
    color: #e37c2a;
    background: rgba(227, 124, 42, 0.1);
}

.heat-level--4 {
    color: var(--red);
    background: rgba(243, 42, 34, 0.08);
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    background: #fff;
    font-family: inherit;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--red);
    outline-offset: 2px;
    border-color: var(--red);
}

.contact-info-card {
    padding: 28px;
    border-radius: 20px;
    background: var(--cream-2);
    border: 1px solid var(--line);
}

.contact-info-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.contact-info-card li {
    margin-bottom: 10px;
    font-size: 16px;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
}

.event-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 246, 232, 0.12);
    border: 1px solid rgba(255, 246, 232, 0.2);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}



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

/* About page */
.about-stats-band {
    background: var(--charcoal);
    color: var(--cream);
    padding: 48px 0;
    border-block: 1px solid rgba(255, 246, 232, 0.08);
}

.about-stats-band .story-stats {
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

.about-founder {
    padding: 88px 0;
}

.about-founder .content-grid {
    align-items: center;
}

.about-founder__img {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 520px;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-pillar {
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
}

.about-pillar h3 {
    margin: 0 0 8px;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-pillar p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(21, 17, 13, 0.8);
}

.about-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.about-step {
    padding: 22px 18px;
    border-radius: 16px;
    background: rgba(255, 246, 232, 0.06);
    border: 1px solid rgba(255, 246, 232, 0.12);
}

.about-step .n {
    font-size: 28px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 10px;
}

.about-step h3 {
    margin: 0 0 6px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
}

.about-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 246, 232, 0.82);
}

.about-loc-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.about-loc-card {
    padding: 22px;
    border-radius: 16px;
    background: var(--cream-2);
    border: 1px solid var(--line);
}

.about-loc-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    text-transform: uppercase;
}

.about-loc-card p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.5;
}

.about-cta-band {
    text-align: center;
    padding: 72px 0 88px;
}

body[data-page="about"] .display .accent {
    color: var(--red);
}

body[data-page="about"] .about-hero {
    min-height: 680px;
    align-items: center;
    padding: 176px 0 96px;
}

body[data-page="about"] .about-hero .page-hero__bg img {
    object-position: center 44%;
    transform: scale(1.04);
}

body[data-page="about"] .about-hero .page-hero__scrim {
    background:
        linear-gradient(90deg, rgba(14, 14, 14, 0.92) 0%, rgba(14, 14, 14, 0.68) 48%, rgba(14, 14, 14, 0.24) 100%),
        linear-gradient(180deg, rgba(14, 14, 14, 0.45) 0%, rgba(14, 14, 14, 0.86) 100%);
}

body[data-page="about"] .about-hero .page-hero__inner {
    max-width: 980px;
}

body[data-page="about"] .about-hero .display {
    max-width: 820px;
    font-size: 74px;
    line-height: 1.04;
    text-align: center;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.about-hero__proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 760px;
    margin-top: 34px;
    border: 1px solid rgba(255, 246, 232, 0.18);
    border-radius: 18px;
    background: rgba(255, 246, 232, 0.08);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.about-hero__proof>div {
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 246, 232, 0.16);
}

.about-hero__proof>div:last-child {
    border-right: none;
}

.about-proof__label,
.about-stat__kicker,
.about-note__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.25;
    text-transform: uppercase;
}

.about-proof__label {
    color: rgba(255, 246, 232, 0.68);
}

.about-hero__proof strong {
    display: block;
    margin-top: 6px;
    color: var(--cream);
    font-size: 19px;
    line-height: 1.15;
    text-transform: uppercase;
}

.about-stats-band {
    background: var(--charcoal);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    transform: translateY(-34px);
}

.about-stat {
    position: relative;
    min-height: 188px;
    padding: 26px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid rgba(255, 246, 232, 0.16);
    color: var(--ink);
    box-shadow: 0 26px 70px -48px rgba(0, 0, 0, 0.55);
}

.about-stat::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: var(--red);
}

.about-stat__kicker {
    color: var(--red);
}

.about-stat strong {
    display: block;
    margin-top: 16px;
    font-size: 52px;
    line-height: 0.95;
    text-transform: uppercase;
}

.about-stat span:last-child {
    display: block;
    margin-top: 16px;
    max-width: 26ch;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(21, 17, 13, 0.76);
}

.about-stat--accent {
    background: var(--red);
    color: var(--cream);
}

.about-stat--accent::before {
    background: var(--cream);
}

.about-stat--accent .about-stat__kicker,
.about-stat--accent span:last-child {
    color: rgba(255, 246, 232, 0.82);
}

.about-founder {
    padding: 84px 0 112px;
    background:
        linear-gradient(180deg, var(--cream) 0%, var(--cream) 62%, var(--cream-2) 100%);
    overflow: hidden;
}

.content-grid--about {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 72px;
}

body[data-page="about"] .story-collage {
    isolation: isolate;
}

body[data-page="about"] .story-collage .tall,
body[data-page="about"] .story-collage .sq {
    border-radius: 18px;
    box-shadow: 0 24px 58px -44px rgba(14, 14, 14, 0.68);
}

.about-collage-badge {
    position: absolute;
    right: -18px;
    bottom: 28px;
    z-index: 2;
    width: 180px;
    padding: 18px;
    border-radius: 16px;
    background: var(--red);
    color: var(--cream);
    box-shadow: 0 22px 50px -30px rgba(14, 14, 14, 0.85);
    transform: rotate(-3deg);
}

.about-collage-badge span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.78;
}

.about-collage-badge strong {
    display: block;
    margin-top: 6px;
    font-size: 23px;
    line-height: 1.05;
    text-transform: uppercase;
}

.about-section-title,
.about-section-head h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.08;
}

.about-lead {
    margin: 22px 0 22px;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 600;
    color: var(--ink);
}

.about-copy {
    color: rgba(21, 17, 13, 0.78);
}

.about-founder__note {
    margin-top: 28px;
    padding: 24px;
    border-left: 5px solid var(--red);
    background: #fff;
    box-shadow: 0 22px 55px -48px rgba(14, 14, 14, 0.6);
}

.about-note__eyebrow {
    color: var(--red);
}

.about-founder__note p {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.6;
}

.about-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.about-mini-grid>div {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
}

.about-mini-grid strong,
.about-mini-grid span {
    display: block;
}

.about-mini-grid strong {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-mini-grid span {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(21, 17, 13, 0.72);
}

.about-difference {
    padding-top: 106px;
    background:
        linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}

.about-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    align-items: end;
    gap: 48px;
    margin-bottom: 42px;
}

.about-section-lede {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(21, 17, 13, 0.76);
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-feature {
    position: relative;
    min-height: 270px;
    padding: 26px 22px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.about-feature::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--red);
}

.about-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 42, 34, 0.34);
    box-shadow: 0 24px 52px -44px rgba(14, 14, 14, 0.6);
}

.about-feature__mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(243, 42, 34, 0.1);
    color: var(--red);
    font-weight: 900;
    font-size: 13px;
}

.about-feature h3 {
    margin: 26px 0 10px;
    font-size: 23px;
    line-height: 1.1;
    text-transform: uppercase;
}

.about-feature p {
    margin: 0;
    font-size: 15px;
    line-height: 1.58;
    color: rgba(21, 17, 13, 0.74);
}

.about-heat-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: center;
    margin-top: 22px;
    padding: 30px;
    border-radius: 20px;
    background: var(--charcoal);
    color: var(--cream);
    overflow: hidden;
}

.about-heat-panel h3 {
    margin: 10px 0 8px;
    font-size: 30px;
    line-height: 1.1;
    text-transform: uppercase;
}

.about-heat-panel p {
    margin: 0;
    font-size: 15px;
    line-height: 1.62;
    color: rgba(255, 246, 232, 0.78);
}

.about-heat-ladder {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.about-heat-ladder span {
    min-height: 82px;
    padding: 14px 10px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    text-align: center;
    background: rgba(255, 246, 232, 0.08);
    border: 1px solid rgba(255, 246, 232, 0.14);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-heat-ladder span:nth-child(2) {
    background: rgba(244, 233, 212, 0.14);
}

.about-heat-ladder span:nth-child(3) {
    background: rgba(243, 42, 34, 0.22);
}

.about-heat-ladder span:nth-child(4) {
    background: var(--red);
}

.about-locations {
    overflow: hidden;
    background: #111;
}

.about-locations::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: linear-gradient(135deg, rgba(255, 246, 232, 0.5) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}

.about-section-head--dark {
    position: relative;
    z-index: 1;
}

.about-section-head--dark h2 {
    color: var(--cream);
}

.about-location-intro p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 246, 232, 0.78);
}

.about-section-head--dark .ul-link {
    color: var(--cream);
}

.about-loc-preview--photo {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 18px;
}

.about-loc-preview--photo .about-loc-card {
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 246, 232, 0.06);
    border: 1px solid rgba(255, 246, 232, 0.12);
    color: var(--cream);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.about-loc-preview--photo .about-loc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 42, 34, 0.56);
}

.about-loc-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--black);
}

.about-loc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.about-loc-card:hover .about-loc-card__media img {
    transform: scale(1.06);
}

.about-loc-card__body {
    padding: 22px 22px 24px;
}

.about-loc-card__body span {
    display: block;
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-loc-card__body h3 {
    margin: 10px 0 8px;
    font-size: 22px;
    line-height: 1.12;
    text-transform: uppercase;
}

.about-loc-card__body p {
    margin: 0;
    color: rgba(255, 246, 232, 0.74);
}

.about-loc-strip {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding: 20px 22px;
    border-radius: 18px;
    background: var(--cream);
    color: var(--ink);
}

.about-loc-strip p {
    margin: 0;
    font-weight: 700;
    line-height: 1.45;
}

.about-close {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    background: var(--black);
    color: var(--cream);
}

.about-close__bg,
.about-close__scrim {
    position: absolute;
    inset: 0;
}

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

.about-close__scrim {
    background:
        linear-gradient(90deg, rgba(14, 14, 14, 0.92) 0%, rgba(14, 14, 14, 0.66) 52%, rgba(14, 14, 14, 0.2) 100%),
        linear-gradient(180deg, rgba(14, 14, 14, 0.14) 0%, rgba(14, 14, 14, 0.82) 100%);
}

.about-close__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding-top: 112px;
    padding-bottom: 112px;
}

.about-close h2 {
    margin: 12px 0 18px;
    font-size: 58px;
    line-height: 1.05;
}

.about-close p {
    max-width: 640px;
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 246, 232, 0.86);
}

.about-close .hero-ctas {
    justify-content: flex-start;
}

/* Locations page spacing */
.page-locations .locations-section {
    padding: 72px 0 96px;
}

.page-locations .loc-grid {
    margin-top: 8px;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 950px;
    margin-inline: auto;
}
.page-locations
.loc-card .img-wrap {
    aspect-ratio: auto;
}


.page-locations .loc-card-body h2 {
    font-size: 24px;
    margin: 15px 0;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.005em;
    line-height: 1.2;
}

.page-template-page-locations .loc-strip,
body.page-template-page-locations .loc-strip,
.page-template-page-locations .wp-block-group.loc-strip {
    display: none !important;
}

/* Booking / franchise forms */
.booking-section {
    background: #fdebd4;
}

.booking-section--dark {
    background: var(--charcoal);
    color: var(--cream);
}

.booking-wrap {
    max-width: 920px;
    margin: 0 auto;
}


.booking-section--dark .booking-form {
    background: rgba(255, 246, 232, 0.04);
    border-color: rgba(255, 246, 232, 0.14);
}

.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 25px;
}

.booking-form label,
.booking-form .label-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.booking-form label .req,
.booking-form .label-text .req {
    color: var(--red);
}


.booking-section--dark .booking-form input,
.booking-section--dark .booking-form select,
.booking-section--dark .booking-form textarea {
    background: rgba(14, 14, 14, 0.5);
    border-color: rgba(255, 246, 232, 0.2);
    color: var(--cream);
}

.booking-form textarea {
    min-height: 87px;
    resize: vertical;
    margin-bottom: 20px;
}

.booking-form textarea::placeholder {
    color: #000;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: 1px solid var(--red);
}

.booking-form .radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 14px;
}

.char-count {
    font-size: 13px;
    color: rgba(21, 17, 13, 0.6);
    margin-top: 6px;
}

.booking-section--dark .char-count {
    color: rgba(255, 246, 232, 0.6);
}

.form-hint {
    color: #000;
    margin: 0px 0px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 10px;
}

.booking-section--dark .form-hint {
    color: rgba(255, 246, 232, 0.75);
}

/* Catering sections */
.catering-events {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0px;
    position: relative;
    padding-left: 75px;
}

.catering-events::before {
    width: 1px;
    position: absolute;
    content: '';
    background-color: #ffffff54;
    left: 12px;
    height: calc(100% - 0px);
    top: 0px;
}

.catering-event-card {
    padding: 20px;
    border: 1px solid #eeeeee69;
    border-radius: 0px;
    background: transparent;
    margin: 0;
}
.catering-form-panel .booking-form input[type="radio"] {
    accent-color: #f32a22;
}
.catering-event-card h3 {
    margin: 0 0 8px;
    font-size: 19px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0px;
}

.catering-event-card p.wp-block-paragraph:not(.catering-event-card__num) {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #fff;
    font-weight: 500;
}
span.deens-field-error {
    display: block;
    background: #ff0000;
    color: #fff;
    padding: 0 5px;
    font-size: 14px;
}
input[type="radio"] {
    accent-color: #f32a22;
}
.catering-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.catering-step {
    text-align: center;
    padding: 28px 20px;
    border-radius: 18px;
    background: var(--cream-2);
    border: 1px solid var(--line);
}

.catering-step .n {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: var(--red);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.catering-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.catering-includes li {
    list-style: none;
    padding-left: 18px;
    position: relative;
    font-size: 15px;
}

.catering-includes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--red);
}

/* Contact page */
.page-contact .contact-hero .page-hero__inner {
    max-width: 900px;
}

.contact-hero-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 820px;
    margin-top: 32px;
    border: 1px solid rgba(255, 246, 232, 0.18);
    border-radius: 18px;
    background: rgba(255, 246, 232, 0.08);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.contact-hero-strip__item {
    display: block;
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 246, 232, 0.16);
    color: var(--cream);
    transition: background 0.2s ease;
}

.contact-hero-strip__item:last-child {
    border-right: none;
}

.contact-hero-strip__item:hover,
.contact-hero-strip__item:focus-visible {
    background: rgba(255, 246, 232, 0.12);
    outline: none;
}

.contact-hero-strip__label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 246, 232, 0.65);
}

.contact-hero-strip__value {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.contact-locations {
    background: var(--black);
}

.contact-locations__head {
    max-width: 640px;
    margin-bottom: 40px;
}

.contact-locations__head .display {
    font-size: clamp(32px, 5vw, 52px);
    margin: 12px 0 14px;
}

.contact-loc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: -56px;
    position: relative;
    z-index: 2;
}

.contact-loc-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 28px 60px -36px rgba(14, 14, 14, 0.45);
}

.contact-loc-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
}

.contact-loc-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.72);
    color: var(--cream);
    font-size: 10px;
}

.contact-loc-card__body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-loc-card__body h3 {
    margin: 0 0 14px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.contact-loc-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.contact-loc-card__meta li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(21, 17, 13, 0.82);
}

.contact-loc-card__meta li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--red);
}

.contact-loc-card__meta a {
    color: var(--ink);
    font-weight: 600;
}

.contact-loc-card__meta a:hover {
    color: var(--red);
}

.contact-loc-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-loc-card__actions .btn {
    padding: 11px 16px;
    font-size: 11px;
}

.contact-form-section {
    background: #fdebd4;
}

.contact-main {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    align-items: stretch;
}

.page-contact .contact-form-section .contact-main {
    align-items: stretch;
}

.contact-aside .display {
    font-size: clamp(30px, 4vw, 48px);
    margin: 10px 0 14px;
}

.contact-channels {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0px;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    border-radius: 0px;
    background: transparent;
    border-bottom: 1px solid #ffffff4a !important;
    border: 0px;
}

/* .contact-channel:hover,
.contact-channel:focus-visible {
    border-color: var(--red);
    box-shadow: 0 16px 40px -28px rgba(243, 42, 34, 0.45);
    transform: translateY(-2px);
    outline: none;
} */

.contact-channel__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    flex-shrink: 0;
    border-radius: 0px;
}

.contact-channel__icon svg {
    color: #fff;
    width: 25px;
    height: 25px;
}

.contact-channel__label {
    display: block;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #fff;
}

.contact-channel__value {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
}

.contact-channel:last-child {
    border-bottom: 0px;
}

.contact-quick-links * {
    transition: 0.7s;
}

.contact-quick-links {
    display: grid;
    gap: 0;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0px;
    background: #ffffff;
}

.contact-quick-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #0e0e0e;
}

.contact-quick-links a:last-child {
    border-bottom: none;
}

.contact-quick-links a:hover {
    background: var(--cream-2);
    color: var(--red);
}

.contact-form-panel {
    border-radius: 0px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 3.5rem 2.5rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.contact-form-panel__title {
    margin: 0 0 6px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-faq {
    padding-top: 72px;
    padding-bottom: 100px;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.contact-faq-item {
    padding: 28px 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
}

.contact-faq-item h3 {
    margin: 0 0 10px;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contact-faq-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(21, 17, 13, 0.78);
}

.contact-faq-item a {
    color: var(--red);
    font-weight: 600;
}

/* Legacy contact helpers (other pages) */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.contact-method {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    font-size: 14px;
    font-weight: 600;
}

/* Partner page */
.partner-page-intro {
    padding: 72px 0 48px;
    background: var(--cream);
}

.partner-page-intro .partner-grid {
    margin-top: 40px;
}

.partner-franchise {
    background: var(--cream);
}

/* Menu cards alternate */
.menu-alt-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--cream-2);
    border: 1px solid var(--line);
}

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

.menu-board-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
}

.menu-board-card .img-wrap {
    aspect-ratio: 16/10;
}

.menu-board-card__body {
    padding: 20px 22px 24px;
}

.menu-board-card__body h3 {
    margin: 0 0 8px;
    font-size: 22px;
    text-transform: uppercase;
}

.menu-board-card__body p {
    margin: 0 0 14px;
    line-height: 1.55;
    height: auto;
}

.menu-board-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #0000004f;
    padding-top: 15px;
    margin-top: 15px;
}

.menu-board-card__price {
    font-size: 24px;
    font-weight: 800;
    color: var(--red);
}

.menu-board-sides {
    margin-top: 48px;
    padding: 28px;
    border-radius: 18px;
    background: #f32a22;
    color: var(--cream);
}
.menu-board-sides .menu-list {
    border-color: rgba(255, 246, 232, 0.15);
}

.menu-board-sides .menu-list__item {
    border-color: rgba(255, 246, 232, 0.15);
}

.menu-board-sides .menu-list__item h3,
.menu-board-sides .menu-list__item p {
    color: var(--cream);
}

.menu-board-sides .menu-list__item p {
    opacity: 1;
}















.about-wrapper {
    background: var(--cream);
}

.inner-pages {
    padding-top: 0;
}

.site-section-title h2 {
    font-size: clamp(48px, 3.3vw, 110px);
    color: #15110d;
    margin: 0px;
    text-transform: capitalize;
}

.about-wrapper .about-col {
    width: 100%;
    max-width: 750px;
    text-align: center;
    margin-inline: auto;
}

#about-founder {
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

#about-founder::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(rgba(255, 246, 232, 0.6) 1px, transparent 1.2px);
    background-size: 4px 4px;
    pointer-events: none;
}

#about-founder .main-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

#about-founder .about-lead {
    font-size: 16px;
    color: #fff;
}

#about-founder .content-prose p {
    margin: 0 0 1.25em;
    color: #fff;
}

#about-founder .image-col img {
    outline: 2px solid #eee;
    outline-offset: -6px;
}

#about-founder .sec-tag .rule {
    display: none;
}

.prll-esction {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.prll-esction .container {
    position: relative;
    z-index: 1;
}

/* .prll-esction::before {
    height: 100%;
    width: 100%;
    position: absolute;
    content: '';
    background-color: #0000006b;
    inset: 0;
} */


.prll-esction .row {
    width: 100%;
    max-width: 647px;
    background: #fff;
    padding: 30px;
}

.prll-esction .site-section-title h2 {
    font-size: 50px;
}

.site-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.site-list li {
    margin: 15px 0px;
    position: relative;
    font-weight: 600;
    padding-left: 25px;
    font-size: 16px;
}

.site-list li::before {
    height: 10px;
    width: 10px;
    background-color: #f32a22;
    position: absolute;
    content: '';
    border-radius: 15px;
    outline: 2px solid #f32a22;
    outline-offset: 2px;
    top: 8px;
    left: 4px;
}

#about-founder .site-section-title h2 {
    color: #fff;
    margin: 0px;
    text-transform: capitalize;
}

.inner-pages .site-section-title h1,
.inner-pages .site-section-title h2 {
    font-size: 36px;
}

#about-founder li {
    text-align: left;
    color: #fff;
}

.text-block-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    position: relative;
}

.text-block-section .container::before {
    height: 100%;
    width: 1px;
    background-color: #000;
    content: '';
    position: absolute;
    left: 50%;
}

.header-slick * {
    text-align: center;
}

.contact-aside .site-section-title h2 {
    color: #fff;
}

.contact-form-section .content-prose {
    color: #fff;
    margin-top: 10px;
}

.contact-aside {
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0px;
    animation: fadeUp 0.7s 0.25s ease both;
    padding-bottom: 40px;
    background: #212121;
    height: 100%;
}

.border-remove {
    border: 0px !important;
}

.Preferred-reply {
    margin-block: 30px;
}

.locations-page-nw .header-slick {
    background: #ab0a06;
    background: linear-gradient(0deg,
            rgba(171, 10, 6, 1) 0%,
            rgba(218, 16, 4, 1) 36%,
            rgba(241, 82, 14, 1) 61%,
            rgba(250, 178, 22, 1) 100%);
}

.locations-page-nw .header-slick h2,
.locations-page-nw .header-slick h2 span {
    color: #fff;
}

.locations-page-nw .locations-section-two {
    background-color: #fff !important;
}

.locations-page .loc-grid {
    margin-top: 45px;
}

.locations-page .site-section-title {
    text-align: center;
}

.locations-section-two {
    background: #fff;
}

.locations-section-two .loc-card-body {
    background: #fff;
    padding-top: 0px;
}

.locations-section-two .loc-card {
    background: #fff;
}

.occasion-section-block {
    background: #0e0e0e;
}

.occasion-section-block .site-section-title h2 {
    color: #fff;
}

.occasion-section-block .section-head p {
    color: #fff;
}

.occasion-section-block .container {
    display: grid;
    grid-template-columns: 435px 1fr;
    align-items: center;
}

.occasion-section-block .section-head {
    width: 100%;
    max-width: 408px;
}

.occasion-section-block .section-head {
    position: sticky;
    top: 50px;
}


span.catering-event-card__num {
    line-height: 20px;
    align-items: center;
    font-size: 35px;
    -webkit-text-stroke: 1px #ffffff;
    display: block;
    color: transparent;
    transition: 0.4s ease-in-out;
    margin-bottom: 17px;
    font-weight: 400;
}

.catering-event-card {
    position: relative;
    transition: 0.4s ease;
}

.catering-event-card.active {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-8px);
}

.catering-event-card.active h3,
.catering-event-card.active p,
.catering-event-card.active .catering-event-card__num {
    color: #fff;
}

.catering-form-panel {
    max-width: 950px;
    margin: 0 auto;
    border-radius: 0px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 3.5rem 2.5rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding-bottom: 2rem;
}

.row-full {
    grid-column: 1/5;
    display: block;
}

.row-full button {
    margin-bottom: 0px !important;
    margin-left: auto;
    display: block;
}

.catering-booking .site-section-title h2 {
    text-align: center;
    margin-bottom: 45px;
}

.catering-faq,
.catering-faq.page-main--cream {
    background: linear-gradient(180deg, #ff8c1a 0%, var(--red, #f32a22) 48%, #c41e1e 100%);
    color: #fff;
    padding: clamp(56px, 7vw, 96px) 0;
    margin-top: 0;
}

.catering-faq .container,
.catering-faq .deens-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.catering-faq .catering-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    gap: 100px;
}

.catering-faq .site-section-title h2 {
    text-align: center;
    margin-bottom: 45px;
    color: #0e0e0e;
}

.catering-faq .site-section-title h2 span {
    color: #fff;
}

.catering-faq h3 {
    color: #0e0e0e;
    margin-bottom: 0;
    margin-top: 0;
}

.catering-faq p {
    margin-top: 5px;
    margin-bottom: 0;
    color: #fff;
}

.catering-faq p a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.catering-faq p a:hover,
.catering-faq p a:focus-visible {
    color: #0e0e0e;
}

.catering-faq-item:nth-last-of-type(2) {
    position: relative;
}

.catering-faq-item:nth-last-of-type(2)::after {
    height: 100%;
    width: 1px;
    background-color: #00000073;
    position: absolute;
    content: '';
    top: 0px;
    right: -53px;
}

.catering-faq-item:nth-last-of-type(2)::before {
    height: 100%;
    width: 1px;
    background-color: #00000073;
    position: absolute;
    content: '';
    left: -45px;
}



.main-about {
    background: #000;
}

.main-about-center {
    text-align: center;
    max-width: 950px;
    margin-inline: auto;
    margin-bottom: 50px;
}

.main-about-center p {
    color: #fff;
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 1.25em;
}

.main-about-center p:last-child {
    margin-bottom: 0;
}

.main-about .main-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.main-block {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #cacaca7d;
    margin-bottom: 15px;
    padding-bottom: 15px;
    width: auto;
}

.main-block .icon {
    line-height: 20px;
    align-items: center;
    font-size: 35px;
    margin-bottom: 0px;
    -webkit-text-stroke: 1px var(--red);
    display: block;
    color: transparent;
    font-weight: 700;
    transition: 0.4s ease-in-out;
    position: relative;
    top: 14px;
}

.main-about .site-section-title h2 {
    color: #fff;
}

.main-about {
    color: #fff;
}

.main-about .text-block p {
    margin-bottom: 0px;
    margin-top: 5px;
}

.text-block span {
    font-weight: 600;
    font-size: 19px;
}

.main-block:last-of-type {
    margin: 0px;
    padding: 0px;
    border: transparent;
}

.header-slick {
    padding: 50px 0px;
}

.partner-franchise {}

.booking-wrap {
    max-width: 950px;
    margin: 0 auto;
    border-radius: 0px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 3.5rem 2.5rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding-bottom: 2rem;
}

.booking-wrap .site-section-title h2 {
    text-align: center;
}

.booking-wrap p {
    margin-bottom: 30px;
    max-width: 750px;
    width: 100%;
    text-align: center;
    margin-inline: auto;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.Best-way {
    margin-bottom: 25px;
}

.booking-wrap .btn-primary {
    margin-left: auto;
    display: block;
}

.menu-location-bar {
    justify-content: center;
}


a.glink {
    text-decoration: none;
    color: var(--ink);
    background: var(--cream);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 246, 232, 0.7);
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease;
}

.deens-header .lang-switch a.gt-current-lang {
    color: var(--ink);
    background: var(--cream);
}




.menu-list__item:nth-child(1) .menu-fodd-image-block img {
    max-width: 98px;
}
.menu-list__item:nth-child(2) .menu-fodd-image-block img{
}

.menu-list__item:nth-child(3) .menu-fodd-image-block img{
}

.menu-list__item:nth-child(4) .menu-fodd-image-block img{
}

.menu-list__item:nth-child(5) .menu-fodd-image-block img{
}
.menu-list__item:nth-child(6) .menu-fodd-image-block img {
    max-width: 74px;
}

.menu-list__item:nth-child(7) .menu-fodd-image-block img {
    max-width: 56px;
}
.menu-list__item:nth-child(8) .menu-fodd-image-block img {
    max-width: 54px;
    position: relative;
    left: 11px;
}
.menu-list__item:nth-child(9) .menu-fodd-image-block img{
}

/* ===== halal-badge.css ===== */
.halal-float-badge {
    position: unset;
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    z-index: 75;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.92);
    color: #fff6e8;
    border: 1px solid rgba(255, 246, 232, 0.18);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    pointer-events: none;
}

.halal-float-badge__mark {
    flex-shrink: 0;
}



@keyframes halal-float-gentle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}




/* ===== site-chrome.css ===== */
/* Quick access bar + mobile menu — match design/reference v3 */

.quick-access-bar {
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	padding: 0;
	margin: 0;
	text-align: center;
	width: 100%;
}

.quick-access-bar > p,
.quick-access-bar > .wp-block-paragraph {
	margin: 0 !important;
	padding: 0 !important;
	width: 100%;
	max-width: none;
}

.quick-access-bar a {
    background: #fab116;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 600;
    border: 1px solid #fab116;
    width: 100%;
    box-sizing: border-box;
}

/* Live: direct <a> children. Local blocks: <p><a> — don't use a:last-child (both match). */
.quick-access-bar > a:last-child,
.quick-access-bar > p:last-child a,
.quick-access-bar > .wp-block-paragraph:last-child a {
	background: #f32a22;
	border-color: #f32a22;
	color: #fff;
}

a.side_bar_btn {
	width: 100%;
	text-align: center;
	max-width: 32px;
	display: none;
	height: 100%;
	margin-left: 12px;
	flex-shrink: 0;
}

.burger-icon {
	width: 30px;
	cursor: pointer;
}

.burger-icon span {
	display: block;
	height: 2px;
	margin: 5px 0;
	width: 83.33333333%;
	background: #fff;
	transition: all 0.4s ease-in-out;
}

.burger-icon span:nth-child(2) {
	width: 100%;
}

.burger-icon span:nth-child(3) {
	width: 58.33333333%;
}

.side-bar {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 350px;
	padding: 50px 40px;
	height: 100%;
	background-color: #000;
	z-index: 1900;
	transition: right 0.6s ease;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.side-bar.header-one {
	background-color: #000;
}

.side-bar .inner {
	padding: 40px 20px 0 0;
	position: relative;
	width: 100%;
}

.side-bar.show {
	right: 0;
}

.side-bar button.close-icon-menu {
	max-width: 100%;
	height: 40px;
	width: 40px;
	position: absolute;
	left: 0;
	top: 0;
	background: #f32a22;
	padding: 6px;
	border: 1px solid #f32a22;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	font-family: inherit;
}

.side_bar_menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.side_bar_menu ul li:not(:last-child) {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.side_bar_menu ul li a {
	font-size: 20px;
	color: #fff;
	text-transform: capitalize;
	text-decoration: none;
}

.side_bar_menu ul li a:hover {
	color: #f32a22;
}

#side_bar_overlay {
	cursor: pointer;
	background: #0e1013;
	position: fixed;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out;
	pointer-events: none;
	z-index: 999;
	top: 0;
	left: 0;
}

#side_bar_overlay.bgshow {
	opacity: 0.7;
	visibility: visible;
	pointer-events: auto;
}

.deens-header .nav-right {
	display: flex !important;
	align-items: center !important;
}



.top-banner {
    border-bottom: 1px solid #eeeae4;
    background: #f32a22;
    position: relative;
    overflow: hidden;
    padding-top: 250px;
}
.top-banner h1 {
    text-align: center;
    font-size: 35px;
    font-family: "Poppins", sans-serif !important;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.005em;
    color: #fff;
    margin: 0;
}

.thank-you-section {
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 70px 20px;
}

    .thank-you-content {
      max-width: 960px;
      width: 100%;
    }

.thank-you-title {
    line-height: 0.98;
    font-weight: 800;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 32px;
    color: #15110d;
}

.thank-you-description {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #000000;
    margin-bottom: 38px;
    max-width: 650px;
    margin-inline: auto;
}
    .home-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-width: 195px;
      padding: 16px 26px;
      background: #ff2929;
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 800;
      transition: all 0.25s ease;
    }

    .home-button span {
      font-size: 20px;
      line-height: 0;
      margin-top: -2px;
    }

    .home-button:hover {
      background: #e91e1e;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 41, 41, 0.2);
    }

    /* Mobile */
    @media (max-width: 600px) {
      .top-banner {
        font-size: 12px;
        padding: 11px 15px;
      }

      .thank-you-section {
        min-height: calc(100vh - 42px);
        padding: 50px 20px;
      }

      .thank-you-title {
        font-size: 46px;
        letter-spacing: -1.8px;
        line-height: 1;
      }

      .thank-you-description {
        font-size: 14px;
        max-width: 340px;
        margin: 0 auto 32px;
      }

      .home-button {
        padding: 15px 24px;
        font-size: 13px;
      }
    }


/* ===== block-buttons.css ===== */
/**
 * Homepage Gutenberg buttons — match reference v3 (single pill, no double border).
 */

/* Wrapper: never show pill/border (only the inner link is styled) */
main .wp-block-button.deens-btn-wrap,
.wp-block-post-content .wp-block-button.deens-btn-wrap {
	display: inline-block;
	margin: 0;
	padding: 0;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	min-height: 0;
	vertical-align: middle;
}

main .wp-block-buttons,
.wp-block-post-content > .wp-block-buttons {
	gap: 14px;
}

/* Pill styles on the link only */
main .wp-block-button__link.btn,
main .wp-block-button.deens-btn-wrap .wp-block-button__link {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	padding: 16px 26px !important;
	border-radius: 999px !important;
	font-family: "Poppins", sans-serif !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	width: auto !important;
	cursor: pointer;
	outline:0;
	transition:
		transform 0.2s ease,
		background 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

main .wp-block-button__link.btn-primary,
main .wp-block-button.deens-btn-wrap.btn-primary .wp-block-button__link {
	background: var(--red) !important;
	color: var(--cream) !important;
	border: none !important;
}

main .wp-block-button__link.btn-primary:hover,
main .wp-block-button.deens-btn-wrap.btn-primary .wp-block-button__link:hover {
	background: var(--red-deep) !important;
	color: var(--cream) !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 30px -10px rgba(200, 16, 46, 0.55);
}


main .wp-block-button__link.btn-ghost:hover,
main .wp-block-button.deens-btn-wrap.btn-ghost .wp-block-button__link:hover {
	background: var(--cream) !important;
	color: var(--black) !important;
	border-color: var(--cream) !important;
}


main .wp-block-button__link.btn-outline:hover,
main .wp-block-button.deens-btn-wrap.btn-outline .wp-block-button__link:hover {
	background: var(--black) !important;
	color: var(--cream) !important;
	border-color: var(--black) !important;
}

/* Arrow icon (replaces inline SVG in reference) */
main .wp-block-button__link.btn.has-deens-arrow::after,
main .wp-block-button.deens-btn-wrap.has-deens-arrow .wp-block-button__link::after {
	content: "";
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	background: currentColor;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E");
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	transition: transform 0.25s ease;
}

main .wp-block-button__link.btn.has-deens-arrow:hover::after,
main .wp-block-button.deens-btn-wrap.has-deens-arrow .wp-block-button__link:hover::after {
	transform: translateX(4px);
}

/* ——— Hero ——— */
.hero .hero-ctas.wp-block-buttons {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 30px !important;
	margin: 0 !important;
	width: 100%;
}

/* ——— Menu head ——— */
.menu-head > .wp-block-buttons,
.menu-head > .menu-head-cta.wp-block-buttons {
	margin: 0 !important;
	width: auto !important;
	flex-shrink: 0;
	justify-content: flex-start !important;
}

/* ——— Story ——— */
.story .wp-block-buttons {
	justify-content: flex-start !important;
	margin-top: 0;
}

/* ——— Locations head + cards ——— */
.loc-head .loc-meta .wp-block-buttons,
.loc-head .loc-meta-cta.wp-block-buttons {
	display: inline-flex !important;
	flex-wrap: wrap !important;
	justify-content: flex-start !important;
	align-items: center !important;
	gap: 10px !important;
	margin: 0 !important;
	width: auto !important;
}

.loc-card-actions.wp-block-buttons {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	justify-content: flex-start !important;
	align-items: center !important;
	gap: 12px !important;
	margin-top: 20px !important;
	margin-bottom: 0 !important;
	width: 100%;
	grid-template-columns: none !important;
}

.loc-card-actions.wp-block-buttons.is-vertical,
.wp-block-buttons.loc-card-actions.is-vertical {
	flex-direction: row !important;
}

.loc-card-actions.wp-block-buttons .wp-block-button.deens-btn-wrap,
.loc-card-actions.wp-block-buttons .wp-block-button {
	width: auto !important;
	flex: 0 0 auto !important;
}

.loc-card-actions.wp-block-buttons .wp-block-button.deens-btn-wrap .wp-block-button__link,
.loc-card-actions.wp-block-buttons .wp-block-button .wp-block-button__link {
	width: auto !important;
	justify-content: center !important;
}

main .loc-card-actions .wp-block-button__link::after,
main .loc-card-actions .wp-block-button__link.btn.has-deens-arrow::after,
main .loc-card-actions .wp-block-button.deens-btn-wrap.has-deens-arrow .wp-block-button__link::after,
main .loc-card-actions .has-deens-arrow .wp-block-button__link::after {
	display: none !important;
	content: none !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	transform: none !important;
	background: none !important;
	mask-image: none !important;
	-webkit-mask-image: none !important;
}

/* Home only — match live flex pills */
.home .loc-card-actions.wp-block-buttons,
.front-page .loc-card-actions.wp-block-buttons {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	grid-template-columns: none !important;
}

.home .loc-card-actions.wp-block-buttons .wp-block-button.deens-btn-wrap,
.front-page .loc-card-actions.wp-block-buttons .wp-block-button.deens-btn-wrap {
	width: auto !important;
}

.home .loc-card-actions.wp-block-buttons .wp-block-button.deens-btn-wrap .wp-block-button__link,
.front-page .loc-card-actions.wp-block-buttons .wp-block-button.deens-btn-wrap .wp-block-button__link {
	width: auto !important;
}

/* ——— Catering ——— */
.catering-ctas.wp-block-buttons {
	justify-content: flex-start !important;
	gap: 14px !important;
	margin-top: 32px !important;
}

.catering-ctas .wp-block-button__link.btn-primary,
.catering-ctas .wp-block-button.deens-btn-wrap.btn-primary .wp-block-button__link {
	background: #fff !important;
	color: var(--red) !important;
	border: none !important;
}

.catering-ctas .wp-block-button__link.btn-primary:hover,
.catering-ctas .wp-block-button.deens-btn-wrap.btn-primary .wp-block-button__link:hover {
	background: #fff !important;
	color: var(--red-deep) !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 30px -10px rgba(200, 16, 46, 0.35);
}

.catering-ctas .wp-block-button__link.btn-outline,
.catering-ctas .wp-block-button.deens-btn-wrap.btn-outline .wp-block-button__link {
	background: #000 !important;
	color: #fff !important;
	border: 1.5px solid #000 !important;
}

.catering-ctas .wp-block-button__link.btn-outline:hover,
.catering-ctas .wp-block-button.deens-btn-wrap.btn-outline .wp-block-button__link:hover {
	background: #000 !important;
	color: #fff !important;
	border-color: #000 !important;
}

/* ——— Partner ——— */
.partner-ctas.wp-block-buttons {
	justify-content: center !important;
	gap: 14px !important;
}

/* ——— Sauces ——— */
.sauces .sauces-top .wp-block-buttons {
	justify-content: flex-start !important;
}

/* ——— Instagram ——— */
.instagram-head > .wp-block-buttons,
.instagram-head > .instagram-head-cta.wp-block-buttons {
	margin: 0 !important;
	width: auto !important;
	flex-shrink: 0;
	justify-content: flex-start !important;
}

.instagram-head .wp-block-button__link.btn-outline {
	background: #000 !important;
	color: #fff !important;
	border: 1.5px solid #000 !important;
}

.instagram-head .wp-block-button__link.btn-outline:hover {
	background: #000 !important;
	color: #fff !important;
	border-color: #000 !important;
}

/* ——— Loc strip: map chip + text link ——— */
.loc-strip.wp-block-group,
.loc-strip {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	flex-wrap: wrap;
	gap: 14px;
}

.loc-strip-main.wp-block-group {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
	flex-wrap: nowrap;
}

.loc-strip .loc-strip-copy {
	display: block;
}

.loc-strip .loc-strip-copy.wp-block-group {
	display: block;
	margin: 0;
}

.loc-strip .wp-block-html:has(.mapchip),
.loc-strip .mapchip {
	margin: 0;
}

.deens-ul-link-wrap {
	margin: 0;
}

.loc-strip a.ul-link {
	position: relative;
	display: inline-flex;
	gap: 8px;
	align-items: center;
	font-weight: 700;
	letter-spacing: 0.12em;
	font-size: 13px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
}

.loc-strip a.ul-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	background: currentColor;
	transform-origin: left;
	transition: transform 0.3s ease;
}

.loc-strip a.ul-link:hover::after {
	transform: scaleX(1.05);
}

.loc-strip a.ul-link svg {
	display: block;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.loc-strip a.ul-link:hover svg {
	transform: translateX(4px);
}


/* ===== internal-pages-design.css ===== */
/**
 * Internal pages — banner flush under fixed nav + typography (design v3).
 */

:root {
	--deens-nav-offset: 128px;
	--deens-header-slick-pad: 50px;
	--deens-locations-header-gradient: linear-gradient(0deg,
			rgba(171, 10, 6, 1) 0%,
			rgba(218, 16, 4, 1) 36%,
			rgba(241, 82, 14, 1) 61%,
			rgba(250, 178, 22, 1) 100%);
}








/* Body cream padding exposed a band above colored banners — offset lives on first section */
body.inner-pages {
	padding-top: 0 !important;
}

body.inner-pages [class*="page-"][class*="-main"] section.header-slick:first-of-type,
body.inner-pages [class*="page-"][class*="-main"] .wp-block-html>section.header-slick:first-child,
body.inner-pages [class*="page-"][class*="-main"] .wp-block-post-content>section.header-slick:first-child {
	padding-top: calc(var(--deens-nav-offset) + var(--deens-header-slick-pad));
	padding-bottom: var(--deens-header-slick-pad) !important;
	margin-top: 0 !important;
}

body.inner-pages [class*="page-"][class*="-main"] section.about-wrapper:first-of-type,
body.inner-pages [class*="page-"][class*="-main"] .wp-block-html>section.about-wrapper:first-child {
	padding-top: 200px;
	margin-top: 0 !important;
	background: var(--cream, #fff7ed);
}

body.locations-page-nw.inner-pages.page-locations [class*="page-"][class*="-main"] section.header-slick:first-of-type,
body.locations-page-nw.inner-pages.page-locations [class*="page-"][class*="-main"] .wp-block-html>section.header-slick:first-child {
	background: var(--deens-locations-header-gradient) !important;
}



/* —— Typography —— */


/* Dark band — design/about.html #about-founder */
body.page-about.inner-pages .page-about-main #about-founder .site-section-title h2,
body.page-about.inner-pages .page-about-main #about-founder .site-section-title h2 span {
	color: #fff !important;
	font-size: 34px;
	text-transform: capitalize !important;
}

body.page-about.inner-pages .page-about-main #about-founder .text-col p,
body.page-about.inner-pages .page-about-main #about-founder .content-prose,
body.page-about.inner-pages .page-about-main #about-founder .content-prose p,
body.page-about.inner-pages .page-about-main #about-founder .site-list li {
	color: #fff !important;
}

body.page-locations.inner-pages .page-locations-main .header-slick .site-section-title h1 {
	text-transform: capitalize !important;
	font-size: 50px;
	line-height: 1.2;
	margin-top: 0;
	color: #fff !important;
	margin-bottom: 10px;
}


body.page-about.inner-pages .page-about-main .prll-esction .row {
	display: block;
	max-width: 550px;
	margin: 0;
	padding: 30px;
	background: #fff;
}

body.page-partner.inner-pages .page-partner-main .main-about .site-section-title h2 {
	color: #fff !important;
}


body.page-contact.inner-pages .page-contact-main .contact-form-panel .site-section-title h2 {
	margin: 0 0 15px !important;
	font-size: 34px !important;
}



.page-id-11 .page-partner.inner-pages .page-partner-main .site-section-title h2 {
	font-size: 50px !important;
}

/* ===== contact-form.css ===== */
/**
 * Contact page — layout + plugin form (loads after sContact Form assets).
 */

/* Match design/contact.html: body clears fixed nav; section has no extra top band */

body.inner-pages.page-contact,
body.page-template-page-contact.inner-pages {
	padding-top: 121px !important;
}

.page-contact-main.wp-block-group {
	padding-top: 0 !important;
	margin-top: 0 !important;
	background: transparent !important;
}

.page-contact-main .wp-block-post-content,
.page-contact-main .wp-block-html,
.page-contact-main .entry-content {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	margin-block-start: 0 !important;
	padding-block-start: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.page-contact-main .wp-block-html {
	padding: 0 !important;
	max-width: 100% !important;
}

/* No gap between contact sections (block editor default margins) */
.page-contact-main .wp-block-post-content>*,
.page-contact-main .wp-block-html>section {
	margin-block: 0 !important;
}

.page-contact-main .wp-block-html>section+section {
	margin-top: 0 !important;
}

/* Peach band — grid starts flush; aside/panel supply inner padding (design v3) */
.contact-form-section {
	background: #f2f2f2;
	margin: 0 !important;
	box-sizing: border-box;
	padding: 70px 0px !important;
}

.contact-form-section .contact-main,
.contact-form-section .container.contact-main {
	align-items: stretch !important;
}

/* Grid matches design/pages.css; width from .container (1280px + 32px gutters) */
.contact-form-section .contact-main,
.contact-form-section .container.contact-main,
.contact-form-section .contact-main.deens-container,
.contact-form-section .container.contact-main.deens-container {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 0 !important;
	align-items: stretch !important;
	box-sizing: border-box !important;
}

.contact-form-section>.container.contact-main,
.contact-form-section .container.contact-main {
	width: 100% !important;
	max-width: 1280px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 32px !important;
	padding-right: 32px !important;
}

.contact-form-section .contact-main:not(.container) {
	width: min(100%, 1280px) !important;
	max-width: 1280px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 32px !important;
	padding-right: 32px !important;
}

.contact-form-section .contact-main>.contact-aside {
	grid-column: 1;
	min-width: 0;
	align-self: stretch;
}

.contact-form-section .contact-main>.contact-form-panel {
	grid-column: 2;
	min-width: 0;
}

/* Match design/pages.css .contact-aside */
.contact-form-section .contact-aside {
	background: #212121 !important;
	padding: 3.5rem 2.5rem 40px !important;
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: flex-start;
	text-align: left;
	min-height: 100%;
	height: 100%;
}

.contact-form-section .contact-aside .site-section-title {
	width: 100%;
	text-align: left;
	margin: 0 0 0;
}

body.page-contact.inner-pages .page-contact-main .contact-aside .site-section-title h2,
.contact-form-section .contact-aside .site-section-title h2 {
	font-size: 34px !important;
	line-height: 1.1 !important;
	font-weight: 800 !important;
	text-transform: capitalize !important;
	text-align: left !important;
	margin: 0 !important;
	color: #fff !important;
	letter-spacing: 0.005em;
}

.contact-form-section .contact-aside .site-section-title h2 span {
	color: #fff !important;
}

.contact-form-section .contact-aside .content-prose {
	width: 100%;
	max-width: 100%;
	font-size: 16px !important;
	line-height: 1.75 !important;
	font-weight: 400 !important;
	text-align: left !important;
	color: #fff !important;
	margin: 14px 0 0 !important;
}

.contact-form-section .contact-aside .content-prose p {
	text-align: left !important;
	margin: 0 0 1.25em !important;
	color: #fff !important;
}

.contact-form-section .contact-aside .content-prose p:last-child {
	margin-bottom: 0 !important;
}

.contact-form-section .contact-aside .contact-channels {
	width: 100%;
	margin-top: 28px;
}

.contact-form-section .contact-aside .contact-quick-links {
	width: 100%;
	margin-top: 28px;
}

.contact-form-section .contact-form-panel .site-section-title {
	text-align: left;
	width: 100%;
}

.contact-form-section .contact-form-panel .site-section-title h2 {
	font-size: clamp(36px, 4.2vw, 56px) !important;
	line-height: 1.1 !important;
	font-weight: 800 !important;
	text-transform: capitalize !important;
	text-align: left !important;
	margin: 0 !important;
	color: #15110d !important;
}

.contact-form-section .contact-form-panel .site-section-title h2 span {
	color: #000 !important;
}

.contact-form-section .contact-form-panel .form-hint {
    color: #15110d;
    margin: 10px 0 28px;
    font-size: 15px;
    display: block !important;
}

.contact-form-section .contact-form-panel .form-hint .req {
	color: var(--red, #f32a22);
}

.contact-form-section .deens-contact-form-plugin,
.contact-form-section #contact-form.booking-form {
	width: 100%;
	margin: 0;
}

.contact-form-section .booking-form__row {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 18px !important;
	margin-bottom: 25px !important;
}

.contact-form-section .booking-form__row>div {
	min-width: 0;
}

.contact-form-section .booking-form label,
.contact-form-section .booking-form .label-text {
	display: block;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 6px;
	color: #15110d;
}

.contact-form-section .booking-form input:not([type="radio"]),
.contact-form-section .booking-form select,
.contact-form-section .booking-form textarea {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	display: block;
	padding: 10px 16px;
	border-radius: 0;
	border: 1.5px solid var(--line, #e0e0e0);
	background: #fff;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.4;
	margin: 0;
	color: #15110d;
	height:45px;
}

.contact-form-section .booking-form textarea {
	min-height: 120px;
	resize: vertical;
	margin-bottom: 0;
}

.contact-form-section .booking-form .radio-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 14px;
}

.contact-form-section .booking-form .radio-row label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	margin: 0;
	cursor: pointer;
	color: #15110d;
}

.contact-form-section .Preferred-reply {
	margin-block: 30px;
}

.contact-form-section #contact-form .deens-field-error,
.contact-form-section .deens-field-error {
	background: #f32a22 !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	display: block;
	margin-top: 6px;
	line-height: 1.4;
	color: #fff !important;
	padding: 0px 4px;
}

.contact-form-section #contact-form .form-hint--counter {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: rgb(21 17 13);
}
.contact-form-section .booking-form input[type="radio"] {
    accent-color: #f32a22;
    outline: none;
}


.contact-form-section .booking-form__actions {
	display: flex !important;
	justify-content: flex-end !important;
	align-items: center;
	width: 100%;
	margin-top: 0;
}

.contact-form-section .booking-form__actions .btn-primary,
.contact-form-section .booking-form__actions button.btn-primary {
	margin: 0 !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto !important;
	min-width: 220px;
	padding: 16px 32px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: none !important;
	border-radius: 999px !important;
	cursor: pointer;
	box-shadow: 0 10px 28px -10px rgba(243, 42, 34, 0.55);
}

.contact-form-section .booking-form__actions #submit_text.deens-form-btn--pending {
	display: none !important;
}

.contact-form-section .booking-form__actions #submit_text.deens-form-btn--pending.is-visible {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
}

.contact-form-section .booking-form__actions #contact_submit.deens-form-btn--submit.is-hidden {
	display: none !important;
}

/* Three carts maps — design/contact.html */
.page-contact .locations.locations-page {
	background: #fff;
	padding: 48px 0 88px;
	margin-top: 0 !important;
}

.page-contact .locations.locations-page .loc-head1 {
	margin: 0 0 0;
	padding: 0;
}

.page-contact .locations.locations-page .section-head {
	margin: 0;
	padding: 0;
}

.page-contact .locations.locations-page .loc-grid {
	margin-top: 45px;
}

.page-contact .locations.locations-page .site-section-title {
	text-align: center;
	width: 100%;
}

.page-contact .locations.locations-page .site-section-title h2 {
	font-size: 34px;
	line-height: 1.05 !important;
	font-weight: 800 !important;
	text-transform: capitalize !important;
	text-align: center !important;
	color: #15110d !important;
	margin: 0 !important;
}

.page-contact .locations.locations-page .site-section-title h2 span {
	color: #000 !important;
}

.page-contact .locations.locations-page .loc-card .img-wrap {
	position: relative;
	min-height: 250px;
}

.page-contact .locations.locations-page .loc-card .img-wrap iframe {
	display: block;
	width: 100%;
	height: 250px;
	min-height: 250px;
	border: 0;
}

body.page-partner.inner-pages .page-partner-main .site-section-title h2 {
	font-size: 50px !important;
}





/* Contact: keep locations section visible (block markup). */
.page-contact .locations-page {
	display: block !important;
}

.page-contact .loc-card-actions .wp-block-button:nth-child(2) {
	/* optional second CTA kept visible to match live */
}

/* ===== catering-page.css ===== */
/**
 * Catering page — typography & colors (design v3).
 * Overrides theme pages.css clamps / FAQ colors for this page only.
 * @see
 */

@keyframes bg-marquee {
	0% {
		background-position: 0;
	}

	100% {
		background-position: -1190px;
	}
}

/* —— Headings: 2vw inner-pages, 50px parallax; bold (Poppins 800) —— */

body.page-catering.inner-pages .page-catering-main .site-section-title h2,
body.page-catering.inner-pages .page-catering-main .about-wrapper .site-section-title h2,
body.page-catering.inner-pages .page-catering-main .catering-booking .site-section-title h2,
body.page-catering.inner-pages .page-catering-main .catering-faq .site-section-title h2 {
	font-family: "Poppins", sans-serif !important;
	font-size: 34px !important;
	font-weight: 800 !important;
	color: #15110d !important;
	line-height: 1.2 !important;
	letter-spacing: 0.005em;
	margin-top: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	text-transform: capitalize;
}

body.page-catering.inner-pages .page-catering-main .site-section-title h2 span {
	color: var(--red, #f32a22) !important;
	font-weight: 800 !important;
}

body.page-catering.inner-pages .page-catering-main .prll-esction .site-section-title h2 {
	font-size: clamp(26px, 2vw, 50px) !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: #15110d !important;
	text-transform: none;
	text-transform: capitalize;
}

body.page-catering.inner-pages .page-catering-main .occasion-section-block .site-section-title h2 {
	color: #fff !important;
	font-weight: 800 !important;
}

body.page-catering.inner-pages .page-catering-main .catering-booking .site-section-title {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

body.page-catering.inner-pages .page-catering-main .catering-booking .site-section-title h2 {
	text-align: center;
	margin: 0 0 45px !important;
	padding: 0;
}

/* —— Body copy —— */

body.page-catering.inner-pages .page-catering-main .about-text p,
body.page-catering.inner-pages .page-catering-main .prll-esction .center-bx p {
	color: var(--ink, #000) !important;
	font-size: 16px;
	line-height: 1.55;
	font-weight: 400;
}

body.page-catering.inner-pages .page-catering-main .occasion-section-block .section-head p {
	color: #fff !important;
	font-size: 16px;
	line-height: 1.55;
}

body.page-catering.inner-pages .page-catering-main .site-list li {
	color: var(--ink, #000);
	font-size: 16px;
	font-weight: 600;
}

/* —— Events grid (already in pages.css; reinforce colors) —— */

body.page-catering.inner-pages .page-catering-main .catering-event-card h3 {
	font-size: 19px;
	color: #fff !important;
	font-weight: 600;
}

body.page-catering.inner-pages .page-catering-main .catering-event-card p {
	font-size: 16px;
	color: #fff !important;
	font-weight: 500;
	line-height: 1.55;
}

body.page-catering.inner-pages .page-catering-main span.catering-event-card__num {
	font-size: 35px;
	-webkit-text-stroke: 1px #ffffff;
	color: transparent;
}

/* —— Parallax strip —— */

body.page-catering.inner-pages .page-catering-main .about-wrapper {
	background: var(--cream, #fff);
}

body.page-catering.inner-pages .page-catering-main section.about-wrapper:first-of-type,
body.page-catering.inner-pages .page-catering-main .wp-block-html>section.about-wrapper:first-child {
	padding-top: var(--deens-nav-offset, 128px) !important;
	margin-top: 0 !important;
}



body.page-catering.inner-pages .page-catering-main .prll-esction {
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	min-height: auto;
}

body.page-catering.inner-pages .page-catering-main .prll-esction .container {
	display: flex;
	align-items: center;
	min-height: 420px;
}

body.page-catering.inner-pages .page-catering-main .prll-esction .row {
	display: block;
	width: 100%;
	max-width: 550px;
	margin: 0;
	background: #fff;
	padding: 30px;
	box-sizing: border-box;
}

body.page-catering.inner-pages .page-catering-main .about-wrapper .row {
	justify-content: center;
	margin-left: 0;
	margin-right: 0;
}

body.page-catering.inner-pages .page-catering-main .occasion-section-block {
	background: #0e0e0e;
}

/* —— FAQ: reference horizontal gradient + white headings —— */

body.page-catering.inner-pages .page-catering-main .catering-faq,
body.page-catering.inner-pages .page-catering-main .catering-faq.page-main--cream {
	background: #ab0a06 !important;
	background: linear-gradient(0deg,
			rgba(171, 10, 6, 1) 0%,
			rgba(218, 16, 4, 1) 36%,
			rgba(241, 82, 14, 1) 61%,
			rgba(250, 178, 22, 1) 100%) !important;
	color: #fff;
}

body.page-catering.inner-pages .page-catering-main .catering-faq .site-section-title h2 {
	text-align: center;
	margin-bottom: 45px;
	color: #fff !important;
}

body.page-catering.inner-pages .page-catering-main .catering-faq .site-section-title h2 span {
	color: #ffffff !important;
}

body.page-catering.inner-pages .page-catering-main .catering-faq .catering-faq-item h3 {
	color: #fff !important;
	margin-bottom: 0;
	margin-top: 0;
	font-weight: 600;
}

body.page-catering.inner-pages .page-catering-main .catering-faq p,
body.page-catering.inner-pages .page-catering-main .catering-faq article.catering-faq-item p {
	color: #fff !important;
	margin-top: 5px;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.55;
}

body.page-catering.inner-pages .page-catering-main .catering-faq p a {
	color: #fff !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

body.page-catering.inner-pages .page-catering-main .catering-faq p a:hover,
body.page-catering.inner-pages .page-catering-main .catering-faq p a:focus-visible {
	color: #15110d !important;
}

/* —— Responsive (design/pages.css) —— */







body.page-catering.inner-pages .page-catering-main section.about-wrapper:first-of-type,
body.page-catering.inner-pages .page-catering-main .wp-block-html>section.about-wrapper:first-child {
	padding-top: calc(var(--deens-nav-offset, 128px) + 40px) !important;
	margin-top: 0 !important;
}




/* ===== catering-form.css ===== */
/**
 * Catering page — plugin form inside design panel (matches design/catering.html).
 */
.catering-booking .catering-form-panel {
	max-width: 950px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	box-sizing: border-box;
}

.catering-booking .catering-form-panel .site-section-title {
	display: block;
	text-align: center;
	width: 100%;
	margin: 0;
	padding: 0;
}

.catering-booking .catering-form-panel .site-section-title h2 {
	margin: 0 0 45px !important;
	padding: 0;
	line-height: 1.2;
}

.catering-form-panel .deens-catering-form-plugin {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	clear: both;
}

.catering-form-panel .deens-catering-form-plugin,
.catering-form-panel #catering-form.booking-form,
.catering-form-panel form.booking-form {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.catering-form-panel .booking-form__row {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 18px !important;
	margin-bottom: 25px !important;
	width: 100%;
}

.catering-form-panel .booking-form__row>div {
	min-width: 0;
	width: 100%;
}

.catering-form-panel .booking-form__row.grid-3 {
	grid-template-columns: 1fr 1fr 1fr !important;
}

.catering-form-panel .booking-form__row.row-full {
	grid-template-columns: 1fr !important;
}

.catering-form-panel .booking-form label,
.catering-form-panel .booking-form .label-text {
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 6px;
	color: var(--ink, #1a1a1a);
}

.catering-form-panel .booking-form label .req {
	color: var(--red, #c41e1e);
}

.catering-form-panel .booking-form input:not([type="radio"]), .catering-form-panel .booking-form select, .catering-form-panel .booking-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    display: block;
    border: 1.5px solid var(--line, rgba(15, 15, 15, 0.12));
    border-radius: 0;
    padding: 10px 16px;
    font-size: 16px;
    font-family: inherit;
    line-height: 1.4;
    margin: 0;
    background: #fff;
    height: 45px;
    width: 100%;
	color:#000;
}

.catering-form-panel .booking-form textarea {
	min-height: 140px;
	resize: vertical;
}

.catering-form-panel .booking-form input:not([type="radio"]):focus,
.catering-form-panel .booking-form select:focus,
.catering-form-panel .booking-form textarea:focus {
	outline: 2px solid var(--red, #c41e1e);
	outline-offset: 1px;
}

.catering-form-panel #contact-form .form-hint--counter {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px;
	font-size: 13px;
	color: #666;
	margin-top: 8px;
}

.catering-form-panel .booking-form__actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 0.5rem;
}

.catering-form-panel .booking-form__actions .btn-primary,
.catering-form-panel .booking-form__actions button.btn-primary {
	text-transform: uppercase;
	font-weight: 700;
}

.catering-form-panel .booking-form__actions #submit_text.deens-form-btn--pending {
	display: none !important;
}

.catering-form-panel .booking-form__actions #submit_text.deens-form-btn--pending.is-visible {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
}

.catering-form-panel .booking-form__actions #contact_submit.deens-form-btn--submit.is-hidden {
	display: none !important;
}

.catering-form-panel .deens-field-error {
	margin-top: 6px;
	background: #ff0000;
	display: block;
	color: #fff !important;
	font-size: 15px !important;
	padding: 0px 3px;
}

.catering-form-panel .cptch-sect {
	margin-bottom: 1rem;
}

.catering-form-panel .booking-form .radio-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	margin-top: 8px;
}

.catering-form-panel .booking-form .radio-row label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
	margin-bottom: 0;
	cursor: pointer;
}



/* ===== partner-page.css ===== */
/**
 * Partner page — layout aligned with design v3 partner.html
 * @see
 */

.page-partner-main .wp-block-post-content > *,
.page-partner-main .wp-block-html > section {
	margin-block: 0 !important;
}

.page-partner .main-about .left-bx .site-section-title {
	display: none;
}

.page-partner .main-about .right-main-block {
	width: 100%;
}

.page-partner .header-slick {
	text-align: center;
}

.page-partner .header-slick .pgae-title p {
	max-width: 720px;
	margin-inline: auto;
	color: #15110d;
	font-size: 16px;
	line-height: 1.75;
}




/* ===== location-pages.css ===== */
/**
 * Location detail pages (Rosengård, Ödåkra, Värnhem)
 */

/* Hero */
.location-hero {
	padding: 0;
	margin-top: 0;
	background: #ab0a06;
	background: linear-gradient(0deg,
			rgba(171, 10, 6, 1) 0%,
			rgba(218, 16, 4, 1) 36%,
			rgba(241, 82, 14, 1) 61%,
			rgba(250, 178, 22, 1) 100%);
}

.location-hero .container {
	max-width: 100%;
	padding: 0;
	width: 100%;
}

.location-hero .hero-content {
	display: grid;
	grid-template-columns: 50% 50%;
	align-items: center;
}

body.locations-page-nw.inner-pages .page-location-main section.location-hero:first-of-type,
body.locations-page-nw.inner-pages .page-location-main .wp-block-html>section.location-hero:first-child {
	padding-top: 128px !important;
	margin-top: 0 !important;
}

.hero-left-con {
	max-width: 680px;
	margin-left: auto;
	padding: 80px 30px 80px 15px;
}



.hero-left-con ul {
	color: #000;
	list-style: none;
	background: #fff;
	padding: 15px;
	max-width: 475px;
	margin: 24px 0;
}

.hero-left-con ul li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ccc;
}

.hero-left-con ul li:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

.hero-right-img,
.hero-right-img div {
	height: 100%;
}

.hero-right-img {
	max-height: 100%;
}

.hero-right-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
}

.hero-img-slider .slick-slide {
	padding: 0;
}

/* Typography — match design/pages.css (override theme pages.css 50px / 110px clamps) */
body.locations-page-nw.inner-pages .location-hero .site-section-title h1 {
	font-size: clamp(26px, 2.5vw, 52px) !important;
	line-height: 1.2 !important;
	font-weight: 800 !important;
	letter-spacing: 0.005em;
	text-transform: capitalize;
	color: #fff;
	margin: 0;
}


body.locations-page-nw.inner-pages .location-menu .site-section-title p {
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
	text-transform: none !important;
	letter-spacing: normal;
	color: #fff;
	margin: 12px 0 0;
}
.grecaptcha-badge {
    bottom: 162px !important;
}
.hero-left-con ul,
.hero-left-con ul li {
	font-size: 15px;
	line-height: 1.5;
}

.hero-left-con ul li strong {
	font-weight: 700;
}

.hero-left-con a.btn.btn-white {
	margin-top: 15px;
}

a.btn.btn-white {
	background: #fff;
	color: #000;
	border: 1.5px solid rgba(255, 246, 232, 0.5);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
}

a.btn.btn-white:hover {
	background: var(--cream);
	color: var(--black);
	transform: translateY(-2px);
}

/* Intro copy */
.location-center-content {
	padding: 72px 0;
	background: var(--cream);
}

.location-content {
	text-align: center;
	max-width: 850px;
	margin-inline: auto;
}

.location-content p {
	font-size: 16px;
	line-height: 1.65;
	margin: 0 0 18px;
	color: var(--ink);
}

.location-content p:last-child {
	margin-bottom: 0;
}

/* Menu + sides */
.location-menu {
	background: var(--ink);
	color: var(--cream);
	position: relative;
	overflow: hidden;
	padding: 72px 0;
}

.location-menu .site-section-title {
	margin-bottom: 25px;
}

.site-section-title.text-white h1,
.site-section-title.text-white h2 {
	color: #fff;
}

.location-menu .menu-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}

.location-menu-grid {
	display: grid;
	grid-template-columns: minmax(0, 800px) 1fr;
	gap: 50px;
	align-items: start;
}

.location-menu .menu-card {
	background: #1b1b1b;
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.3s ease;
	border: 1px solid #2d2d2d;
	display: grid;
	grid-template-columns: 250px 1fr;
}

.location-menu .menu-card:hover {
	transform: translateY(-6px);
}

.location-menu .menu-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 310px;
	display: block;
}

.location-menu .menu-content {
	padding: 24px;
}

.location-menu .menu-content h3 {
	margin: 0 0 12px;
	color: #f32a22;
	font-size: 26px;
	text-transform: uppercase;
}

.location-menu .menu-list {
    margin: 0;
    padding-left: 20px;
    color: #fff;
    justify-content: start;
}
.location-menu .menu-list li {
	margin-bottom: 10px;
}

.location-menu .feature-box {
	padding: 25px 20px;
}

.features .site-section-title {
	margin-bottom: 25px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(330px,1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.feature-box {
	background: #222;
	padding: 30px;
	border-radius: 12px;
	border-left: 4px solid #f32a22;
}

.feature-box h4 {
	font-size: 22px;
	color: #ffb703;
	margin: 0 0 8px;
}

.feature-box p {
	color: #fff;
	margin: 0;
}

/* Why choose */
.feature-section {
	background: #f2f2f2;
	padding: 72px 0;
}

.feature-section .site-section-title {
	margin-bottom: 50px;
	text-align: center;
}

.feature-section .feature-box {
    background: #222;
    border-left-color: #f32a22;
    margin: 0;
}
.policy_text :is(h1, h2, h3, h4, h5, h6) {
    background-color: #f32a223d;
    display: flex;
    font-size: 25px !important;
    padding: 15px 12px 15px 10px;
    border-left: 5px solid #f32a22;
    margin: 25px 0px 10px 0px !important;
    color: #000;
}

.policy_text p {
	margin-bottom: 15px;
	font-size: 16px;
}
.page-id-3 .top-banner {
    padding-top: 170px;
}
.policy_text .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Catering CTA band */
.catering-service-sec {
	background-size: cover !important;
	background-position: center !important;
	text-align: center;
	background-attachment: fixed !important;
	padding: 72px 0;
	color: #fff;
}

.catering-service-sec p {
	max-width: 850px;
	margin: 20px auto;
	color: #fff;
}

.catering-service-sec .btn-bx {
	margin-top: 28px;
}

.catering-service-sec .btn-bx .btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

/* Visit us + map */
.visit-us-sec {
	padding: 72px 0;
	background: var(--cream);
}

.visit-us-sec .site-section-title {
	margin-bottom: 15px;
}

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

.location-info p {
	margin: 0 0 14px;
	line-height: 1.6;
	color: var(--ink);
}

.location-info a {
	color: inherit;
}

.location-image iframe,
.visit-us-sec iframe {
	width: 100%;
	height: 350px;
	border: 0;
	border-radius: 12px;
	display: block;
}

#location-hero {
	position: relative;
}

.hero-img-slider1 div {
	position: absolute;
	right: 0;
	width: 100%;
	max-width: 50%;
	height: 100%;
}

.hero-img-slider1 div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Responsive */




/* ===== footer-newsletter.css ===== */
/**
 * Footer newsletter — overrides Newsletter plugin to match reference .footer-form
 */

.deens-footer .footer-col--drip .wp-block-shortcode {
	margin: 0;
	width: 100%;
}

.deens-footer .footer-newsletter-wrap {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.deens-footer .footer-newsletter-missing {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 246, 232, 0.75);
	text-align: center;
}

/* Reset plugin container (style.css sets max-width 500px, gray fields) */
.deens-footer .footer-newsletter-wrap .tnp.tnp-subscription-minimal,
.deens-footer .footer-newsletter-wrap .tnp-subscription-minimal {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	box-sizing: border-box;
}

.deens-footer .footer-newsletter-wrap .tnp-subscription-minimal form.footer-form,
.deens-footer .footer-newsletter-wrap form.footer-form {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 auto !important;
	padding: 4px 8px !important;
	border: 1px solid rgba(255, 246, 232, 0.2) !important;
	border-radius: 999px !important;
	background: rgba(255, 246, 232, 0.04) !important;
	box-sizing: border-box !important;
	white-space: nowrap !important;
	gap: 0 !important;
}

.deens-footer .footer-newsletter-wrap input.tnp-email,
.deens-footer .footer-newsletter-wrap input.tnp-name {
	flex: 1 1 auto !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	display: block !important;
	margin: 0 !important;
	padding: 10px 16px !important;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	color: var(--cream, #fff6e8) !important;
	font-size: 14px !important;
	font-family: inherit !important;
	line-height: normal !important;
	box-shadow: none !important;
	text-shadow: none !important;
	height: auto !important;
}

.deens-footer .footer-newsletter-wrap input.tnp-email::placeholder,
.deens-footer .footer-newsletter-wrap input.tnp-name::placeholder {
	color: rgba(255, 246, 232, 0.45) !important;
	opacity: 1 !important;
}

.deens-footer .footer-newsletter-wrap input.tnp-submit {
	flex: 0 0 auto !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	display: block !important;
	margin: 0 !important;
	padding: 10px 18px !important;
	border: none !important;
	border-radius: 999px !important;
	background: var(--red, #f32a22) !important;
	background-color: var(--red, #f32a22) !important;
	background-image: none !important;
	color: var(--cream, #fff6e8) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	font-family: inherit !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	line-height: normal !important;
	box-shadow: none !important;
	text-shadow: none !important;
	cursor: pointer !important;
	height: auto !important;
}

.deens-footer .footer-newsletter-wrap input.tnp-submit:hover,
.deens-footer .footer-newsletter-wrap input.tnp-submit:focus {
	background: var(--red, #f32a22) !important;
	color: var(--cream, #fff6e8) !important;
	outline: 2px solid rgba(255, 246, 232, 0.35) !important;
	outline-offset: 2px;
}

.deens-footer .footer-newsletter-wrap .tnp-privacy-field {
	display: block !important;
	width: 100% !important;
	margin: 12px 0 0 !important;
	padding: 0 !important;
	white-space: normal !important;
	font-size: 12px !important;
	line-height: 1.45 !important;
	color: rgba(255, 246, 232, 0.75) !important;
	text-align: center;
}

.deens-footer .footer-newsletter-wrap .tnp-privacy-field label {
	display: inline-flex !important;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	font-size: inherit !important;
	font-weight: 400 !important;
	color: inherit !important;
}

.deens-footer .footer-newsletter-wrap .tnp-privacy-field input[type="checkbox"] {
	width: auto !important;
	max-width: none !important;
	margin: 4px 8px 0 0 !important;
	flex-shrink: 0;
}

.deens-footer .footer-newsletter-wrap .tnp-privacy-field a {
	color: var(--cream, #fff6e8) !important;
}

.deens-footer .footer-newsletter-wrap .tnp-message {
	margin-top: 12px !important;
	padding: 10px 14px !important;
	border-radius: 4px;
	font-size: 13px !important;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}

.deens-footer .footer-newsletter-wrap .tnp-message.tnp-success {
	background: rgba(46, 125, 50, 0.3) !important;
	color: #c8e6c9 !important;
}

.deens-footer .footer-newsletter-wrap .tnp-message.tnp-error {
	background: rgba(243, 42, 34, 0.25) !important;
	color: #ffcdd2 !important;
}




/* ===== editor-canvas.css ===== */
/**
 * Site Editor canvas — match front-end tokens.
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap");

.editor-styles-wrapper {
	font-family: "Poppins", sans-serif;
	color: #15110d;
}

.editor-styles-wrapper .accent {
	color: #f32a22;
}

.editor-styles-wrapper .deens-header .logo img,
.editor-styles-wrapper .logo-mark {
	height: 150px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

.editor-styles-wrapper .deens-footer .footer-grid.wp-block-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 50px;
}

.editor-styles-wrapper .deens-footer .footer-grid > .wp-block-column {
	text-align: center;
}

.editor-styles-wrapper .deens-footer .footer-nav .wp-block-navigation__container {
	display: grid;
	justify-items: center;
	gap: 12px;
}

.editor-styles-wrapper .menu-board-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.editor-styles-wrapper .menu-board-card .img-wrap {
	background: var(--red);
	aspect-ratio: 16 / 10;
}

.editor-styles-wrapper .loc-head,
.editor-styles-wrapper .menu-head,
.editor-styles-wrapper .instagram-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	flex-wrap: wrap;
	gap: 24px;
}

.editor-styles-wrapper .loc-head > .wp-block-group:first-child,
.editor-styles-wrapper .menu-head > .wp-block-group:first-child,
.editor-styles-wrapper .instagram-head > .wp-block-group:first-child {
	flex: 1 1 auto;
	min-width: 0;
}

.editor-styles-wrapper .loc-meta {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.editor-styles-wrapper .img-fill img,
.editor-styles-wrapper figure.img-fill img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* ===== block-chrome-fixes ===== */
.quick-access-bar.wp-block-group,
.quick-access-bar {
	gap: 0;
	width: 100%;
}
.quick-access-bar > p,
.quick-access-bar > .wp-block-paragraph {
	margin: 0 !important;
	padding: 0 !important;
	width: 100%;
}
.quick-access-bar a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
}
.quick-access-bar > a:last-child,
.quick-access-bar > p:last-child a,
.quick-access-bar > .wp-block-paragraph:last-child a {
	background: #f32a22;
	border-color: #f32a22;
	color: #fff;
}
.nav-right.wp-block-group {
	display: flex;
	align-items: center;
	gap: 12px;
}
.deens-partner-cta-wrap {
	margin: 0;
}
.deens-partner-cta-wrap .wp-block-button__link,
a.deens-partner-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.footer-grid.wp-block-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.footer-grid .wp-block-column {
	margin: 0;
}
.footer-links-ul,
.footer-menu-ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-bottom .legal {
	margin: 0;
}


li.wp-block-navigation-item.wp-block-navigation-link.active a {
    color: #ff2d2d !important;
}