@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Playfair+Display:wght@600;700&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
    --bg: #f9f7f3;
    --ink: #1c1c1c;
    --muted: #fffefd;
    --soft-grey: #ede8e1;
    --accent: #f05a28;
    --plum: #2f1f36;
    --border: #e2dbd4;
    --shadow: 0 25px 55px rgba(47, 31, 54, 0.08);
    --font-display: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
    --font-sans: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
    --hero-height: 100vh;
    --nav-offset: 110px;
}

body.site-inner,
.page-content.site-inner {
    --brand-orange: #f28a1f;
    --brand-green: #1f7a3a;
    --brand-red: #c74839;
    --bg: #ffffff;
    --ink: #143021;
    --muted: #ffffff;
    --soft-grey: rgba(31, 122, 58, 0.06);
    --plum: var(--brand-green);
    --accent: var(--brand-orange);
    --border: rgba(31, 122, 58, 0.18);
    --shadow: 0 25px 55px rgba(31, 61, 43, 0.12);
}

@media (max-width: 900px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

@supports (height: 100dvh) {
    :root {
        --hero-height: 100dvh;
    }
}

.nav-trigger {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: 0.4rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    position: relative;
}

.nav-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--plum);
    opacity: 0;
    transform: translateY(4px);
    transition: 0.2s ease;
}

.site-inner .nav-trigger::after {
    background: var(--accent);
}

.nav-trigger:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 60;
}

.modal.open {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
}

.modal-panel {
    position: relative;
    max-width: 760px;
    margin: 6vh auto;
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    padding: 1.75rem;
}

.info-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    padding: 1.75rem;
}

.modal-panel h3 {
    font-family: var(--font-display);
    margin: 0 0 1rem;
}

.modal-panel h4 {
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    color: #6c5b57;
}

.site-inner .modal-panel h4 {
    color: rgba(20, 48, 33, 0.78);
}

.modal-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.modal-columns a {
    display: block;
    padding: 0.35rem 0;
    color: var(--plum);
}

.modal-columns a:hover {
    text-decoration: underline;
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.modal-section {
    margin-top: 1rem;
}

.modal-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge-link {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    background: #fff;
    font-size: 0.85rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.no-js .page-content {
    transform: translateY(90px);
}

section[id] {
    scroll-margin-top: var(--nav-offset);
}

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

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

.site-header {
    display: none;
}

.nav-strip {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.site-inner .nav-strip {
    background: var(--muted);
    border-bottom: none;
    box-shadow: 0 10px 30px rgba(31, 61, 43, 0.10);
}

.site-inner .nav-strip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green) 0%, var(--brand-orange) 55%, var(--brand-red) 100%);
    pointer-events: none;
}

body > .nav-strip + section {
    margin-top: 1.75rem;
}

body > .top-strip + .nav-strip + section {
    margin-top: 1.75rem;
}

.page-content > .nav-strip {
    margin-bottom: 1.75rem;
}

@media (max-width: 640px) {
    body > .nav-strip + section {
        margin-top: 1.25rem;
    }

    body > .top-strip + .nav-strip + section {
        margin-top: 1.25rem;
    }

    .page-content > .nav-strip {
        margin-bottom: 1.25rem;
    }
}

.top-strip {
    background: var(--plum);
    color: #fff;
    font-size: 0.8rem;
}

.site-inner .top-strip {
    background: linear-gradient(90deg, var(--brand-green) 0%, var(--brand-orange) 55%, var(--brand-red) 100%);
}

.top-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    gap: 1.25rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.top-strip-inner a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.top-strip-inner a:hover {
    text-decoration: underline;
}

.nav-bar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1400px) {
    .nav-bar,
    .hero-inner,
    .about,
    .section {
        max-width: 1360px;
    }

    .top-strip-inner {
        max-width: 1360px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .about {
        padding: 0 1.5rem;
    }

    .section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--font-display);
    letter-spacing: 0.35em;
    font-size: 1rem;
    color: inherit;
    text-decoration: none;
}

.brand-logo {
    display: block;
}

.brand-logo--png {
    width: 56px;
    height: 56px;
    border-radius: 0;
    object-fit: contain;
}

.brand-logo--wordmark {
    width: 180px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-subtitle {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    margin-top: 0.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    flex-wrap: wrap;
    row-gap: 0.6rem;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    row-gap: 0.6rem;
    margin: 0 auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--fg);
    padding: 0.25rem 0.35rem;
    border-radius: 999px;
    transition: color 0.2s ease;
}

.cart-link svg {
    width: 22px;
    height: 22px;
}

.cart-link .cart-count {
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.cart-link .cart-count[hidden] {
    display: none;
}

.cart-link:hover {
    color: var(--accent);
}

.nav-links a:not(.btn-strip) {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: 0.4rem 0;
    color: var(--ink);
    position: relative;
    text-decoration: none;
}

.nav-links a.btn-strip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    color: #fff;
}

.nav-links a.btn-strip:visited {
    color: #fff;
}

.nav-links a:not(.btn-strip)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--plum);
    opacity: 0;
    transform: translateY(4px);
    transition: 0.2s ease;
}

.site-inner .nav-links a:not(.btn-strip)::after {
    background: var(--accent);
}

.nav-links a.active:not(.btn-strip)::after {
    opacity: 1;
    transform: translateY(0);
}

.nav-links a:hover:not(.btn-strip)::after {
    opacity: 1;
    transform: translateY(0);
}

.nav-dropdown {
    position: relative;
}

.nav-drop-trigger {
    list-style: none;
    cursor: pointer;
    padding: 0.4rem 0;
    color: var(--ink);
    position: relative;
    text-decoration: none;
}

.nav-drop-trigger::-webkit-details-marker {
    display: none;
}

.nav-drop-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--plum);
    opacity: 0;
    transform: translateY(4px);
    transition: 0.2s ease;
}

.site-inner .nav-drop-trigger::after {
    background: var(--accent);
}

.nav-dropdown[open] .nav-drop-trigger::after,
.nav-drop-trigger.active::after {
    opacity: 1;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-drop-trigger::after {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, 90vw);
    max-height: 60vh;
    overflow: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    padding: 0.75rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 0.75rem;
    z-index: 20;
}

.dropdown-menu a {
    padding: 0.55rem 0.65rem;
    border-radius: 0.7rem;
    text-decoration: none;
    color: var(--ink);
}

.dropdown-menu a:hover {
    background: rgba(47, 31, 54, 0.06);
}

.site-inner .dropdown-menu a:hover {
    background: rgba(31, 122, 58, 0.08);
}

@media (max-width: 1024px) {
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        max-height: none;
        box-shadow: none;
        border-radius: 0.9rem;
        grid-template-columns: 1fr;
        margin-top: 0.5rem;
    }
}

.btn-strip {
    border: 1px solid var(--plum);
    border-radius: 4px;
    padding: 0.55rem 1.2rem;
    font-weight: 600;
    background: var(--plum);
    color: #fff;
    box-shadow: 0 10px 26px rgba(47, 31, 54, 0.12);
}

.btn-strip:hover {
    background: #1e1224;
    border-color: #1e1224;
    color: #fff;
}

.site-inner .btn-strip:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

.btn-outline,
.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.55rem 1.25rem;
    border: 1px solid var(--plum);
    font-weight: 600;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.menu-actions .btn-outline {
    border-radius: 999px;
    padding: 0.52rem 1.05rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: #fdf7ef;
    transition: all 0.15s ease;
}

.menu-actions .btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

.btn-solid {
    background: var(--plum);
    color: #fff;
}

.site-inner .btn-solid {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--plum);
}

.btn-outline:hover {
    background: var(--plum);
    color: #fff;
}

.site-inner .btn-outline {
    color: var(--brand-green);
    border-color: rgba(31, 122, 58, 0.35);
}

.site-inner .btn-outline:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

.site-inner .btn-solid:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

.btn-solid:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.nav-pill {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.3rem 1rem;
    background: #fff;
    box-shadow: var(--shadow);
}

.nav-pill select {
    border: none;
    background: transparent;
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    outline: none;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--plum);
}

.hero {
    padding: clamp(3.25rem, 6vh, 5rem) 2rem;
    background:
        radial-gradient(900px 520px at 12% 25%, rgba(47, 31, 54, 0.10), transparent 62%),
        radial-gradient(700px 420px at 92% 40%, rgba(240, 90, 40, 0.12), transparent 55%),
        linear-gradient(180deg, #fdfbf7 0%, #f4f0ea 100%);
    position: fixed;
    inset: 0;
    height: var(--hero-height);
    width: 100%;
    border-bottom: 1px solid var(--border);
    z-index: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(closest-side at 50% 50%, rgba(255,255,255,0.55), rgba(255,255,255,0));
    pointer-events: none;
    opacity: 0.55;
}

.page-content {
    position: relative;
    z-index: 5;
    margin-top: calc(var(--hero-height) + 1px);
    background: var(--bg);
    box-shadow: 0 -30px 70px rgba(0,0,0,0.12);
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 2.75rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 520px;
}

.hero-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
}

.hero-logo--png {
    width: min(220px, 60vw);
    height: auto;
    border-radius: 0;
    object-fit: contain;
}

.hero-logo--wordmark {
    width: min(360px, 100%);
    height: auto;
    object-fit: contain;
}

.hero-wordmark {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.hero-wordmark-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    line-height: 1.15;
    font-weight: 600;
    color: var(--ink);
}

.hero-wordmark-sub {
    margin-top: 0.4rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #6c5b57;
}

.hero-wordmark-sub::before {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    background: rgba(47, 31, 54, 0.22);
    margin: 0.55rem 0 0.55rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    color: #4a4a4a;
    margin: 0 0 0.5rem;
}

.accent-heart {
    color: #c74839;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.6rem);
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.hero-headline .accent-heart {
    display: inline-block;
    margin: 0 0.35rem;
}

.hero-lead {
    font-size: 1.05rem;
    color: #5b514f;
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.scroll-cue {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    position: relative;
    opacity: 0.85;
}

.scroll-cue::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 0.9rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.hero-scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.6rem;
    color: #2f1f36;
    animation: scrollCueFloat 2.2s ease-in-out infinite;
}

@keyframes scrollCueFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll {
        animation: none;
    }
}

.hero-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    object-fit: cover;
    aspect-ratio: 16 / 10;
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(47, 31, 54, 0.15);
    filter: contrast(1.05) saturate(0.95);
}

.hero-image {
    position: relative;
    padding: 0.75rem;
    border-radius: 1.75rem;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(47, 31, 54, 0.12);
    box-shadow: 0 24px 60px rgba(47, 31, 54, 0.10);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -22px;
    background: radial-gradient(closest-side, rgba(47, 31, 54, 0.18), transparent 70%);
    filter: blur(18px);
    opacity: 0.7;
    z-index: -1;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0.6rem 1.2rem;
    box-shadow: var(--shadow);
    font-weight: 600;
    cursor: pointer;
    font: inherit;
    appearance: none;
}

.location-pill svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

.location-pill.floating {
    position: fixed;
    right: 2rem;
    bottom: 1.4rem;
    z-index: 40;
}

.location-pill.persistent {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 30;
    box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

.mobile-fab {
    display: block;
}

.mobile-fab-btn {
    position: fixed;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 50;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 40px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.25);
    -webkit-tap-highlight-color: transparent;
}

.mobile-fab-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.mobile-fab-btn--whatsapp {
    left: 1rem;
    background: var(--brand-green, #25D366);
}

.mobile-fab-btn--phone {
    right: 1rem;
    background: var(--brand-orange, var(--accent));
    display: none;
}

.mobile-fab-btn:active {
    transform: translateY(1px);
}

.media-timings {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.story-media iframe {
    width: 100%;
    min-height: 380px;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.timing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.timing-tabs {
    display: flex;
    gap: 0.5rem;
}

.timing-tabs button {
    flex: 1;
    padding: 0.6rem;
    border: none;
    border-radius: 999px;
    background: #f2eeea;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.timing-tabs button.active {
    background: #f8b11a;
    color: #000;
}

.site-inner .timing-tabs button.active {
    background: var(--brand-orange);
    color: #fff;
}

.timing-scroller {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.timing-scroller::-webkit-scrollbar {
    width: 10px;
}

.timing-scroller::-webkit-scrollbar-track {
    background: #f2eeea;
    border-radius: 999px;
}

.site-inner .timing-scroller::-webkit-scrollbar-track {
    background: rgba(31, 122, 58, 0.10);
}

.timing-scroller::-webkit-scrollbar-thumb {
    background: rgba(47, 31, 54, 0.35);
    border-radius: 999px;
    border: 2px solid #f2eeea;
}

.site-inner .timing-scroller::-webkit-scrollbar-thumb {
    background: rgba(31, 122, 58, 0.35);
    border-color: rgba(31, 122, 58, 0.10);
}

.timing-content {
    display: none;
}

.timing-content.active {
    display: block;
}

.contact-details p {
    margin: 0.4rem 0;
    color: #3e3330;
}

.site-inner .contact-details p {
    color: rgba(20, 48, 33, 0.78);
}

.timing-day {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border);
    padding: 0.6rem 0;
    font-size: 0.95rem;
}

.timing-day:last-child {
    border-bottom: none;
}

.stats {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.2rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card h3 {
    margin: 0.25rem 0 0;
    font-size: 1.8rem;
}

.about {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.about-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.site-inner .about-card,
.site-inner .info-card,
.site-inner .category-card,
.site-inner .cart-row,
.site-inner .checkout-panel {
    border-top: 3px solid rgba(242, 138, 31, 0.55);
}

.about-card h2 {
    font-family: var(--font-display);
    margin-top: 0;
}

.about-meta {
    display: grid;
    gap: 1rem;
}

.about-media {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow);
    height: 100%;
}

.site-inner .about-media {
    border-top: 3px solid rgba(242, 138, 31, 0.55);
}

.about-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 640px) {
    .about-media img {
        height: auto;
        min-height: 240px;
    }
}

.about-meta > div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.site-inner .about-meta > div {
    border-top: 3px solid rgba(242, 138, 31, 0.55);
}

.about-meta h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.25;
}

.about-meta p {
    margin: 0.5rem 0 0;
}

.site-inner .about-meta p {
    color: rgba(20, 48, 33, 0.78);
}

.site-inner .about-meta a[href^="tel:"] {
    text-decoration: none;
    text-decoration-color: transparent;
    font-weight: 700;
    color: var(--brand-green);
}

.site-inner .about-meta a[href^="tel:"]:hover {
    text-decoration: underline;
    text-decoration-color: rgba(242, 138, 31, 0.35);
    text-underline-offset: 0.18em;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.section--food h2,
.section--food .lead {
    text-align: center;
}

.section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.site-inner .section h2 {
    color: var(--plum);
}

.section p.lead {
    color: #6c5b57;
    margin-bottom: 2rem;
}

.site-inner .section p.lead {
    color: rgba(20, 48, 33, 0.78);
}

.story {
    background: var(--muted);
    border-radius: 2rem;
    box-shadow: var(--shadow);
}

.story-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.story-media {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.story-media video,
.story-media iframe {
    width: 100%;
    min-height: 320px;
}

.services-grid {
    display: grid;
    gap: 1.4rem;
}

.services-preview .services-grid > .service-card:nth-child(n+5) {
    display: none;
}

.services-more {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.duo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.info-card--duo {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-grid {
    display: grid;
    gap: 1.5rem;
}

.menu-heading {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 0.75rem;
}

.menu-filters {
    display: inline-flex;
    gap: 0.5rem;
    background: #fff;
    padding: 0.4rem;
    border-radius: 999px;
    border: 1px solid var(--border);
}

.filter-pill {
    border: 1px solid transparent;
    background: transparent;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--fg);
    cursor: pointer;
    transition: all 0.15s ease;
}

.filter-pill.is-active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.filter-pill:not(.is-active):hover {
    border-color: var(--accent);
    color: var(--accent);
}

.menu-categories {
    overflow: hidden;
    padding: 0.25rem 0.25rem 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.menu-categories::-webkit-scrollbar {
    display: none;
}

.menu-categories-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
    animation: menu-marquee var(--menu-marquee-duration, 30s) linear infinite;
}

.menu-categories.is-marquee-ltr .menu-categories-track {
    animation-name: menu-marquee-ltr;
}

@keyframes menu-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes menu-marquee-ltr {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .menu-categories-track {
        animation: none;
        transform: none;
    }
}

.menu-category-tile {
    flex: 0 0 auto;
    width: 240px;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.menu-category-tile-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: radial-gradient(500px 240px at 20% 10%, rgba(242, 138, 31, 0.18), transparent 60%),
        radial-gradient(520px 260px at 90% 70%, rgba(31, 122, 58, 0.18), transparent 55%),
        #fff;
}

.menu-category-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-category-tile.is-empty-image {
    background: #fff;
}

.menu-category-tile-name {
    padding: 0.9rem 0.95rem 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--fg);
    line-height: 1.25;
    text-align: center;
}

.menu-category-tile.is-empty-image .menu-category-tile-name {
    color: var(--fg);
}

.menu-category-tile.is-active {
    outline: 3px solid rgba(242, 138, 31, 0.55);
    outline-offset: 2px;
}

@media (max-width: 540px) {
    .menu-category-tile {
        width: 190px;
    }
}

.category-card {
    background: #fff;
    border-radius: 1.2rem;
    border: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.category-card h3 {
    margin: 0 0 1rem;
    letter-spacing: 0.1em;
}

.category-card .items {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 980px) {
    .category-card .items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.category-card .menu-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--soft-grey);
    border-radius: 1rem;
    padding: 1rem;
    background: var(--muted);
    width: min(100%, 720px);
    justify-self: start;
}

@media (min-width: 980px) {
    .category-card .menu-item {
        width: 100%;
    }
}

.menu-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.9rem;
}

.menu-item h4 {
    margin: 0;
    margin-bottom: 0.15rem;
    font-size: 1.08rem;
}

.menu-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.menu-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
}

.menu-item-content p {
    margin: 0.25rem 0 0.6rem;
    color: #6c5b57;
    font-size: 0.95rem;
}

.site-inner .menu-item-content p {
    color: rgba(20, 48, 33, 0.78);
}

.menu-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.menu-actions {
    margin-top: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.18rem 0.7rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #fff;
}

.site-inner .status-pill {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.tag-veg {
    border-color: #5fad4a;
    color: #5fad4a;
}

.site-inner .tag-veg {
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.status-pill {
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    border-radius: 999px;
    padding: 0.18rem 0.7rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #fff;
}

.price {
    font-weight: 600;
    color: var(--brand-green);
    background: #f7fbf8;
    border: 1px solid var(--border);
    padding: 0.25rem 0.6rem;
    border-radius: 0.65rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    border: 1px solid var(--border);
    margin-right: 0.5rem;
}

.badge-veg {
    border-color: #5fad4a;
    color: #5fad4a;
}

.site-inner .badge-veg {
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.status-unavailable {
    color: #ff6b6b;
}

.site-inner .status-unavailable {
    color: var(--brand-red);
}

.info-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

 #services > h2 {
     text-align: center;
     font-size: clamp(2.1rem, 3.2vw, 3rem);
 }

 #services > .lead {
     text-align: center;
     font-size: 1.12rem;
     margin-left: auto;
     margin-right: auto;
 }

 #catering > h3 {
     text-align: center;
 }

 .services-layout {
     display: grid;
     grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
     gap: 2rem;
     align-items: start;
 }

 .services-media img {
     width: 100%;
     height: auto;
     display: block;
     border-radius: 1rem;
     border: 1px solid var(--border);
     box-shadow: var(--shadow);
 }

 .services-content {
     min-width: 0;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 1rem;
     margin-top: 1.25rem;
 }

 .service-card {
     background: #fff;
     border-radius: 1rem;
     padding: 1.25rem;
     border: 1px solid var(--border);
     box-shadow: var(--shadow);
 }

 .service-card-body {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 1.25rem;
 }

 .service-card-text {
     min-width: 0;
     flex: 1;
 }

 .service-card-media {
     flex: 0 0 160px;
 }

 .service-card-media img {
     width: 160px;
     height: 120px;
     object-fit: cover;
     border-radius: 0.9rem;
     display: block;
     border: 1px solid var(--border);
 }

 @media (max-width: 900px) {
     .services-layout {
         grid-template-columns: 1fr;
     }

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

     .service-card-body {
         flex-direction: column;
     }

     .service-card-media {
         flex-basis: auto;
     }

     .service-card-media img {
         width: 100%;
         height: 180px;
     }
 }

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--plum);
    font-weight: 600;
}

.service-pill:hover {
    background: rgba(47, 31, 54, 0.06);
}

.site-inner .service-pill {
    background: rgba(242, 138, 31, 0.06);
    border-color: rgba(31, 122, 58, 0.22);
}

.site-inner .service-pill:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact form {
    display: grid;
    gap: 1rem;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 0.8rem;
    border: 1px solid var(--border);
    background: #fff;
    font-family: var(--font-sans);
}

.site-inner .contact input:focus,
.site-inner .contact textarea:focus,
.site-inner .checkout-form input:focus,
.site-inner .checkout-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(242, 138, 31, 0.22);
}

.site-inner .qty-btn:hover {
    border-color: var(--accent);
}

.site-inner .section a:not(.btn-solid):not(.btn-outline):not(.btn-strip),
.site-inner .about a:not(.btn-solid):not(.btn-outline):not(.btn-strip),
.site-inner .info-card a:not(.btn-solid):not(.btn-outline):not(.btn-strip),
.site-inner .contact a:not(.btn-solid):not(.btn-outline):not(.btn-strip) {
    color: var(--plum);
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-color: rgba(242, 138, 31, 0.5);
}

.contact button {
    justify-self: start;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #7b6f6f;
}

.site-inner footer {
    color: rgba(20, 48, 33, 0.7);
}

.cart-layout {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1.3fr 0.7fr;
    margin-top: 1.25rem;
}

.cart-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.04);
}

.cart-row + .cart-row {
    margin-top: 1rem;
}

.cart-row-left {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    align-items: center;
}

.cart-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 0.9rem;
    border: 1px solid var(--soft-grey);
}

.cart-name {
    font-weight: 600;
}

.cart-price {
    color: var(--plum);
    font-weight: 600;
    margin-top: 0.25rem;
}

.cart-row-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--muted);
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font: inherit;
}

.checkout-panel {
    margin-top: 2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.checkout-form {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
}

.checkout-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 0.8rem;
    border: 1px solid var(--border);
    background: #fff;
    font-family: var(--font-sans);
}

.muted {
    color: #9c8f89;
}

.site-inner .muted {
    color: rgba(20, 48, 33, 0.65);
}

.error {
    color: #ff6b6b;
}

.site-inner .error {
    color: var(--brand-red);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        padding: 1rem 0 0;
    }

    .nav-center,
    .nav-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-right {
        margin-top: 0.75rem;
    }

    .nav-links.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-bar {
        flex-wrap: wrap;
    }

    .media-timings {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .mobile-fab {
        display: block;
    }

    .mobile-fab-btn--phone {
        display: inline-flex;
    }

    .location-pill.floating {
        right: 1rem;
        bottom: calc(4.75rem + env(safe-area-inset-bottom));
    }

    .location-pill.persistent {
        right: 1rem;
        bottom: calc(4.75rem + env(safe-area-inset-bottom));
        padding: 0.5rem 0.9rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 3rem 1.25rem 2.5rem;
    }

    .hero-headline {
        font-size: 2.6rem;
    }

    .hero-inner {
        gap: 1.5rem;
    }

    .hero-scroll {
        bottom: 1.2rem;
        font-size: 0.75rem;
    }

    .nav-bar {
        padding: 0.9rem 1.25rem;
    }

    .brand {
        letter-spacing: 0.22em;
        font-size: 0.92rem;
        gap: 0.65rem;
    }

    .brand-logo--png {
        width: 48px;
        height: 48px;
    }

    .brand-logo--wordmark {
        width: 150px;
    }

    .brand-subtitle {
        letter-spacing: 0.28em;
    }

    .menu-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
