/* =============================================
   Bianca Cafe-Restaurant Landing Page
   ============================================= */

:root {
    --cream: #FDF9F3;
    --maroon: #5C1215;
    --maroon-dark: #4A0E10;
    --green: #0D2A20;
    --green-light: #1A3D30;
    --gold: #C4956A;
    --text: #2C1810;
    --text-muted: #6B5344;
    --white: #FFFFFF;
    --border: rgba(92, 18, 21, 0.12);

    --font-serif: 'Estedad', 'Vazirmatn', Tahoma, sans-serif;
    --font-sans: 'Estedad', 'Vazirmatn', Tahoma, sans-serif;

    --container: 1200px;
    --header-h: 80px;
    --logo-icon-h: 52px;
    --logo-wordmark-h: 40px;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

html[lang="fa"],
html[lang="ar"] {
    --font-serif: 'Estedad', 'Vazirmatn', Tahoma, sans-serif;
    --font-sans: 'Estedad', 'Vazirmatn', Tahoma, sans-serif;
}

html[lang="en"] {
    --font-serif: 'Neue Haas Display', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-sans: 'Neue Haas Display', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Decorative Patterns ---- */
.pattern-corner {
    position: fixed;
    width: 180px;
    height: 180px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%235C1215' stroke-width='0.6'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z'/%3E%3Cpath d='M20 40 L40 20 L60 40 L40 60 Z'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.pattern-corner--top-left {
    top: 0;
    left: 0;
}

.pattern-corner--top-right {
    top: 0;
    right: 0;
    transform: scaleX(-1);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition:
        background .22s ease,
        border-color .22s ease,
        color .22s ease,
        box-shadow .22s ease,
        transform .18s cubic-bezier(.22,1,.36,1);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--maroon);
    color: var(--white);
    border-color: var(--maroon);
    box-shadow: 0 3px 12px rgba(92,18,21,0.2);
}

.btn--primary:hover {
    background: var(--maroon-dark);
    border-color: var(--maroon-dark);
    box-shadow: 0 8px 24px rgba(92,18,21,0.32);
}

.btn--outline {
    background: transparent;
    color: var(--maroon);
    border-color: var(--maroon);
    box-shadow: 0 2px 8px rgba(92,18,21,0.06);
}

.btn--outline:hover {
    background: var(--maroon);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(92,18,21,0.28);
}

.btn--white {
    background: var(--white);
    color: var(--maroon);
    border-color: var(--white);
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.btn--white:hover {
    background: var(--cream);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--block {
    width: 100%;
}

.btn--header {
    padding: 10px 18px;
    font-size: 13px;
    white-space: nowrap;
}

.site-header__reserve {
    margin-inline-start: 4px;
}

/* ---- Logo ---- */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--maroon);
    max-height: calc(var(--header-h) - 12px);
}

.logo--light {
    color: var(--cream);
    max-height: none;
}

.logo__text {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
}

.logo__icon {
    flex-shrink: 0;
    width: auto;
    height: var(--logo-icon-h);
    max-height: var(--logo-icon-h);
    object-fit: contain;
}

.logo__wordmark {
    flex-shrink: 0;
    width: auto;
    height: var(--logo-wordmark-h);
    max-height: var(--logo-wordmark-h);
    object-fit: contain;
}

/* ---- Page loader ---- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__icon {
    width: auto;
    height: 88px;
    max-width: min(40vw, 120px);
    object-fit: contain;
    animation: brand-loader-pulse 1.15s ease-in-out infinite;
}

@keyframes brand-loader-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.55;
        transform: scale(0.94);
    }
}

/* ---- Section Label ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--maroon);
    letter-spacing: 0.5px;
}

.section-label__diamond {
    width: 6px;
    height: 6px;
    background: var(--maroon);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--maroon);
    transition: gap var(--transition);
}

.link-arrow::after {
    content: '←';
    font-size: 16px;
    transition: transform var(--transition);
}

.link-arrow:hover {
    gap: 10px;
}

.link-arrow:hover::after {
    transform: translateX(-4px);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 249, 243, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: var(--header-h);
    position: relative;
}

.nav-desktop {
    justify-self: center;
    min-width: 0;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.header-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: var(--text);
    transition: color var(--transition), background var(--transition);
}

.header-icon-btn:hover {
    color: var(--maroon);
    background: rgba(92, 18, 21, 0.06);
}

.header-icon-btn__badge {
    position: absolute;
    top: 2px;
    inset-inline-start: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--maroon);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    pointer-events: none;
    border: 2px solid var(--cream);
}

.header-cart__badge--pulse,
.header-icon-btn__badge.header-cart__badge--pulse {
    animation: cartBadgePop 0.55s ease;
}

.header-cart--pulse,
.header-cart.header-icon-btn--pulse {
    animation: cartIconPop 0.45s ease;
}

.nav-desktop__list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop__list a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    transition: color var(--transition);
    position: relative;
}

.nav-desktop__list a:hover {
    color: var(--maroon);
}

.nav-desktop__list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 1.5px;
    background: var(--maroon);
    transition: width var(--transition);
}

.nav-desktop__list a:hover::after {
    width: 100%;
}

.header-cart {
    margin-inline-end: 0;
}

.header-cart:hover {
    color: var(--maroon);
}

/* legacy badge selectors kept for cart JS */
.header-cart__badge {
    position: absolute;
    top: 2px;
    inset-inline-start: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--maroon);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    pointer-events: none;
    border: 2px solid var(--cream);
}

.header-cart__badge--pulse {
    animation: cartBadgePop 0.55s ease;
}

.header-cart--pulse {
    animation: cartIconPop 0.45s ease;
}

@keyframes cartBadgePop {
    0% { transform: scale(1); }
    40% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

@keyframes cartIconPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.cart-add-toast {
    position: fixed;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translate(-50%, 12px);
    z-index: 9999;
    padding: 10px 18px;
    border-radius: 999px;
    background: #1e3d34;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-add-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.cart-add-toast--error {
    background: #7a1f1f;
}

.menu-item--added .menu-item__add {
    background: #1e3d34;
    border-color: #1e3d34;
    color: #fff;
}

.pd-order-btn.is-added,
.btn-add-mobile.is-added,
.pd-sticky-bar__btn.is-added {
    filter: brightness(1.05);
}

.nav-toggle,
.header-mobile-reserve {
    display: none;
}

.lang-switch--site {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
}

.lang-switch--site a {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.lang-switch--site a.is-active {
    background: var(--maroon);
    color: var(--white);
}

@media (min-width: 769px) {
    .lang-switch--site {
        position: static;
        box-shadow: none;
    }
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
}

.mobile-nav--open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 42, 32, 0.5);
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-nav--open .mobile-nav__overlay {
    opacity: 1;
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--cream);
    padding: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.mobile-nav--open .mobile-nav__panel {
    transform: translateX(0);
}

.mobile-nav__close {
    align-self: flex-start;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: var(--maroon);
    cursor: pointer;
    padding: 4px;
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-nav__list a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

.mobile-nav__list a:hover {
    color: var(--maroon);
}

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

/* =============================================
   HERO — desktop: full-bleed image + fade on text side (RTL right)
   ============================================= */
.hero {
    padding: 0;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__inner {
    position: relative;
    width: 100%;
    min-height: min(72vh, 720px);
    line-height: normal;
}

.hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    line-height: 0;
    background: var(--cream);
}

.hero__image {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slider--desktop {
    display: block;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slider--mobile {
    display: none;
}

.hero-slider--desktop .hero-slider__track {
    position: absolute;
    inset: 0;
}

.hero-slider--desktop .hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
    will-change: opacity;
}

.hero-slider--desktop .hero-slider__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slider__image--desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    transform: scale(1.06);
    transform-origin: left center;
}

.hero__fade {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        /* top-to-bottom dark vignette for luxury depth */
        linear-gradient(
            to bottom,
            rgba(15,8,5,0.18) 0%,
            transparent 28%,
            transparent 65%,
            rgba(15,8,5,0.12) 100%
        ),
        /* side fade into cream background */
        linear-gradient(
            to inline-start,
            transparent 0%,
            transparent 30%,
            rgba(253,249,243,0.18) 46%,
            rgba(253,249,243,0.52) 60%,
            rgba(253,249,243,0.82) 74%,
            rgba(253,249,243,0.94) 86%,
            var(--cream) 96%
        );
}

.hero__content {
    position: absolute;
    z-index: 2;
    inset-inline-start: clamp(24px, 5vw, 88px);
    inset-inline-end: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: min(440px, 38vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(20px, 3vw, 32px) 0;
    direction: rtl;
    text-align: right;
    line-height: normal;
}

.hero__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero__title {
    margin: 0;
}

.hero__title-visual {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--maroon);
    line-height: 1.05;
    margin-bottom: 12px;
}

.hero__tagline {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    max-width: 380px;
    line-height: 1.6;
}

.hero__desc {
    font-size: clamp(14px, 1.4vw, 15px);
    color: var(--text-muted);
    max-width: 380px;
    margin-bottom: 28px;
    line-height: 1.85;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    padding: 56px 0;
    position: relative;
    z-index: 1;
}

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

.about__image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(92, 18, 21, 0.12);
}

.about__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about__content {
    position: relative;
}

.about__heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    margin: 20px 0 24px;
}

.about__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 460px;
}

.about__decoration {
    position: absolute;
    bottom: -20px;
    left: -40px;
    width: 200px;
    height: 200px;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 20 C130 60 170 80 180 100 C170 120 130 140 100 180 C70 140 30 120 20 100 C30 80 70 60 100 20Z' fill='none' stroke='%235C1215' stroke-width='1'/%3E%3Cpath d='M100 50 C115 70 140 80 145 100 C140 120 115 130 100 150 C85 130 60 120 55 100 C60 80 85 70 100 50Z' fill='none' stroke='%235C1215' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* =============================================
   SPECIAL OFFERS
   ============================================= */
.offers {
    padding: 44px 0 52px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.offers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.offers__column {
    display: flex;
    flex-direction: column;
}

.offers__footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.offers__menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 36px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
}

.offers__column-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--maroon);
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.offers__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 16px 0;
    flex: 1;
}

.offers__item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.offers__item-link {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    color: inherit;
    transition: opacity var(--transition);
}

.offers__item-link:hover {
    opacity: 0.85;
}

.offers__item-link:hover .offers__item-name {
    color: var(--maroon);
}

.offers__item-thumb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.offers__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offers__item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.offers__item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.offers__item-price {
    font-size: 13px;
    color: var(--text-muted);
}

.offers__view-all {
    display: none;
}

/* Accordion (mobile) */
.accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
}

.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--maroon);
    cursor: pointer;
    text-align: right;
}

.accordion__icon {
    transition: transform var(--transition);
    flex-shrink: 0;
}

.accordion--open .accordion__icon {
    transform: rotate(180deg);
}

.accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding var(--transition);
    padding: 0 20px;
}

.accordion--open .accordion__panel {
    max-height: 600px;
    padding: 0 20px 20px;
}

/* =============================================
   RESERVATION
   ============================================= */
.reservation {
    padding: 0 0 80px;
    position: relative;
    z-index: 1;
}

.reservation__form {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    background: var(--maroon);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    flex-wrap: wrap;
}

.reservation__field {
    flex: 1;
    min-width: 160px;
}

.reservation__field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.reservation__select-wrap {
    position: relative;
}

.reservation__select-wrap select {
    width: 100%;
    appearance: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    padding: 12px 36px 12px 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--white);
    cursor: pointer;
    transition: border-color var(--transition);
}

.reservation__select-wrap select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.reservation__select-wrap select option {
    color: var(--text);
    background: var(--white);
}

.reservation__chevron {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.reservation__submit {
    flex-shrink: 0;
    min-width: 140px;
    padding: 12px 32px;
}

/* =============================================
   LOCATION MAP
   ============================================= */
.location-sec {
    padding: 0 0 80px;
    position: relative;
    z-index: 1;
}

/* ── Card shell ── */
.loc-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(0,0,0,0.06),
        0 12px 48px rgba(0,0,0,0.13);
    background: #f7efe5;
    min-height: 360px;
    /* contain Leaflet's high z-index inside the card */
    isolation: isolate;
}

/* ── Left sidebar ── */
.loc-side {
    width: 268px;
    flex-shrink: 0;
    background: #1c0d09;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 20px 16px;
    position: relative;
    overflow: hidden;
}

/* Top ambient glow */
.loc-side::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 180px;
    background: radial-gradient(ellipse, rgba(201,160,96,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Bottom ambient glow */
.loc-side::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 140px;
    background: radial-gradient(ellipse, rgba(140,10,10,0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* ── B Medallion ── */
.loc-side__medallion {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1.5px solid #c9a060;
    background:
        radial-gradient(circle at 38% 32%, #3a1810 0%, #1c0d09 65%);
    box-shadow:
        0 0 0 5px rgba(201,160,96,0.1),
        0 0 0 1px rgba(201,160,96,0.25) inset,
        0 8px 28px rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    animation: loc-medal-glow 4s ease-in-out infinite;
}

@keyframes loc-medal-glow {
    0%, 100% {
        box-shadow: 0 0 0 5px rgba(201,160,96,0.08), 0 0 0 1px rgba(201,160,96,0.22) inset, 0 8px 28px rgba(0,0,0,0.55);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(201,160,96,0.15), 0 0 0 1px rgba(201,160,96,0.35) inset, 0 8px 36px rgba(0,0,0,0.6), 0 0 24px rgba(201,160,96,0.18);
    }
}

.loc-side__b-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.45));
}

/* ── Brand label ── */
.loc-side__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.loc-side__brand-line {
    height: 1px;
    width: 30px;
    background: rgba(201,160,96,0.45);
}

.loc-side__brand-name {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: rgba(201,160,96,0.65);
    font-family: Georgia, 'Times New Roman', serif;
}

/* ── Title ── */
.loc-side__title {
    font-size: 23px;
    font-weight: 800;
    text-align: center;
    line-height: 1.38;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
    background: linear-gradient(160deg, #f0e4cc 0%, #d4b97a 55%, #f0e4cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Ornament ── */
.loc-side__ornament {
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    opacity: 0.75;
}

/* ── Info rows ── */
.loc-side__rows {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 1;
}

.loc-side__row {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    direction: rtl;
    padding: 11px 0;
    border-bottom: 1px solid rgba(201,160,96,0.1);
}

.loc-side__row:first-child {
    border-top: 1px solid rgba(201,160,96,0.1);
}

.loc-side__row-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(201,160,96,0.07);
    border: 1px solid rgba(201,160,96,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: #c9a060;
    position: relative;
    z-index: 2;
}

.loc-side__row-icon svg {
    overflow: visible;
    display: block;
    flex-shrink: 0;
}

.loc-side__row-icon svg path,
.loc-side__row-icon svg circle,
.loc-side__row-icon svg line,
.loc-side__row-icon svg polyline,
.loc-side__row-icon svg rect {
    stroke: #c9a060 !important;
    fill: none !important;
}

.loc-side__row-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    text-align: right;
}

.loc-side__row-lbl {
    font-size: 10.5px;
    font-weight: 700;
    color: #c9a060;
    letter-spacing: 0.04em;
    display: block;
    opacity: 0.85;
}

.loc-side__row-val {
    font-size: 12.5px;
    color: rgba(240,228,204,0.78);
    font-weight: 500;
    line-height: 1.7;
    display: block;
}

/* ── Google Maps button ── */
.loc-side__gmaps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    margin-top: auto;
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #b82019 0%, #8a1210 100%);
    box-shadow: 0 4px 20px rgba(150,18,12,0.5);
    text-decoration: none;
    transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s;
    direction: rtl;
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
}

.loc-side__gmaps:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(170,22,14,0.62);
    color: #fff;
}

.loc-side__gmaps svg {
    stroke: #fff;
    flex-shrink: 0;
}

/* ── Map canvas ── */
.loc-map {
    flex: 1;
    min-height: 360px;
    background: #d8cfc4;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .loc-card {
        flex-direction: column;
    }

    .loc-side {
        width: 100%;
        padding: 30px 24px 24px;
    }

    .loc-map {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .loc-side__title {
        font-size: 20px;
    }

    .loc-map {
        min-height: 240px;
    }
}
/* =============================================
   GALLERY
   ============================================= */
.gallery {
    padding: 0 0 56px;
    position: relative;
    z-index: 1;
}

.gallery__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.gallery__instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--maroon);
    transition: opacity var(--transition);
}

.gallery__instagram:hover {
    opacity: 0.7;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.gallery__item {
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5ede0 0%, #e8d5be 100%);
    box-shadow: 0 2px 12px rgba(92,18,21,0.07);
    transition: box-shadow .28s, transform .28s cubic-bezier(.22,1,.36,1);
}

.gallery__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(92,18,21,0.14);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.22,1,.36,1);
    display: block;
}

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

/* subtle shimmer overlay on each card */
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(255,255,255,0.1) 0%,
        transparent 50%,
        rgba(0,0,0,0.06) 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity .28s;
}

.gallery__item:hover::after {
    opacity: 1;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--green);
    color: rgba(253, 249, 243, 0.85);
    padding: 64px 0 0;
    position: relative;
    z-index: 1;
}

.site-footer__grid--desktop {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 48px;
}

.site-footer__icons--mobile {
    display: none;
}

.footer-col__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}

.footer-col__text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(253, 249, 243, 0.7);
}

.footer-col__list li {
    font-size: 13px;
    line-height: 2;
    color: rgba(253, 249, 243, 0.7);
}

.footer-col--brand .logo {
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    margin-top: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(253, 249, 243, 0.25);
    border-radius: var(--radius);
    overflow: hidden;
}

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

.newsletter-form input::placeholder {
    color: rgba(253, 249, 243, 0.45);
}

.newsletter-form button {
    background: var(--maroon);
    border: none;
    padding: 10px 14px;
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition);
}

.newsletter-form button:hover {
    background: var(--maroon-dark);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(253, 249, 243, 0.25);
    border-radius: 50%;
    color: var(--cream);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--maroon);
    border-color: var(--maroon);
}

.site-footer__bottom {
    border-top: 1px solid rgba(253, 249, 243, 0.12);
    padding: 20px 0;
    text-align: center;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 10px;
}

.site-footer__legal a {
    font-size: 12px;
    color: rgba(253, 249, 243, 0.72);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__legal a:hover {
    color: var(--cream);
}

.site-footer__bottom p {
    font-size: 12px;
    color: rgba(253, 249, 243, 0.5);
}

/* Legal / privacy page */
.legal-page {
    padding: 48px 0 80px;
}

.legal-page__inner {
    max-width: 760px;
}

.legal-page__header {
    margin-bottom: 36px;
    text-align: center;
}

.legal-page__eyebrow {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.legal-page__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--maroon);
    margin-bottom: 10px;
}

.legal-page__meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-page__intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

.legal-page__content {
    display: grid;
    gap: 28px;
}

.legal-section {
    padding: 24px 0;
    border-top: 1px solid rgba(74, 14, 31, 0.1);
}

.legal-section__title {
    font-size: 1.125rem;
    color: var(--maroon);
    margin-bottom: 12px;
}

.legal-section__body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
}

.legal-section__body p {
    margin-bottom: 12px;
}

.legal-section__body p:last-child {
    margin-bottom: 0;
}

.legal-section__body ul {
    margin: 0 0 12px;
    padding-inline-start: 1.25rem;
}

.legal-section__body li {
    margin-bottom: 6px;
}

.legal-section__body strong {
    color: var(--maroon-dark, var(--maroon));
}

/* Sticky mobile reserve bar */
.sticky-reserve {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px 16px;
    background: var(--maroon);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform var(--transition);
}

.sticky-reserve--visible {
    transform: translateY(0);
}

.sticky-reserve .btn {
    padding: 14px;
    font-size: 15px;
}

/* Homepage bottom dock (mobile) */
.sticky-dock {
    display: none;
}

.sticky-dock__bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 4px;
    max-width: min(420px, 100%);
    margin: 0 auto;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(92, 18, 21, 0.08);
    border-radius: 22px 22px 0 0;
    box-shadow:
        0 -8px 32px rgba(44, 24, 16, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    backdrop-filter: blur(14px);
}

.sticky-dock__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    min-height: 52px;
    padding: 4px 6px 2px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
    transition: color var(--transition), transform var(--transition);
}

.sticky-dock__link:hover,
.sticky-dock__link.is-active {
    color: var(--maroon);
}

.sticky-dock__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.sticky-dock__label {
    line-height: 1.2;
    white-space: nowrap;
}

.sticky-dock__link--center {
    position: relative;
    padding-bottom: 0;
}

.sticky-dock__fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-top: -26px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    color: var(--white);
    box-shadow:
        0 10px 24px rgba(92, 18, 21, 0.34),
        0 0 0 4px rgba(253, 249, 243, 0.92);
    transition: transform var(--transition), box-shadow var(--transition);
}

.sticky-dock__link--center:hover .sticky-dock__fab,
.sticky-dock__link--center:focus-visible .sticky-dock__fab {
    transform: translateY(-2px);
    box-shadow:
        0 14px 28px rgba(92, 18, 21, 0.38),
        0 0 0 4px rgba(253, 249, 243, 0.92);
}

.sticky-dock__link--center .sticky-dock__label {
    color: var(--maroon);
    font-weight: 600;
}

.sticky-dock--site {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    padding: 0 10px;
    transform: translateY(110%);
    transition: transform 0.35s ease;
}

.sticky-dock--site.sticky-reserve--visible {
    transform: translateY(0);
}

.sticky-dock__link--center.is-active .sticky-dock__fab {
    box-shadow:
        0 14px 28px rgba(92, 18, 21, 0.42),
        0 0 0 4px rgba(253, 249, 243, 0.92),
        0 0 0 6px rgba(196, 149, 106, 0.35);
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .site-footer__grid--desktop {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}

@media (max-width: 1024px) {
    .nav-desktop__list {
        gap: 18px;
    }

    .nav-desktop__list a {
        font-size: 13px;
    }

    .site-header__reserve {
        padding: 10px 14px;
    }

    .site-header__reserve svg {
        display: none;
    }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
    :root {
        --header-h: 68px;
    }

    .pattern-corner {
        width: 100px;
        height: 100px;
        background-size: 24px 24px;
    }

    /* Header mobile */
    .site-header .lang-switch--site {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: auto 1fr auto;
        gap: 8px;
    }

    .nav-desktop,
    .btn--header,
    .site-header__reserve,
    .header-wishlist,
    .header-account {
        display: none;
    }

    .site-header__actions {
        gap: 2px;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        border-radius: 12px;
    }

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--maroon);
        border-radius: 1px;
        transition: all var(--transition);
    }

    .logo {
        justify-self: center;
        gap: 10px;
        --logo-icon-h: 44px;
        --logo-wordmark-h: 34px;
    }

    .logo__text {
        font-size: 22px;
        letter-spacing: 0.04em;
    }

    .header-mobile-reserve {
        display: inline-flex;
    }

    .hero {
        padding: 0 0 28px;
        --hero-slider-h: clamp(320px, 52vh, 480px);
    }

    .hero__inner {
        position: relative;
        display: block;
        max-width: none;
        margin: 0;
        padding: 0;
        grid-template-columns: none;
        gap: 0;
        line-height: normal;
        min-height: calc(var(--hero-slider-h) + clamp(168px, 44vw, 228px));
    }

    .hero__media {
        order: 0;
        position: absolute;
        top: 0;
        inset-inline: 0;
        z-index: 0;
        width: 100%;
        height: var(--hero-slider-h);
        aspect-ratio: auto;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        overflow: hidden;
    }

    .hero-slider--desktop {
        display: none;
    }

    .hero-slider--mobile {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        min-height: var(--hero-slider-h);
        overflow: hidden;
    }

    .hero-slider--mobile .hero-slider__track {
        position: absolute;
        inset: 0;
    }

    .hero-slider--mobile .hero-slider__slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 1.6s ease-in-out;
        will-change: opacity;
    }

    .hero-slider--mobile .hero-slider__slide.is-active {
        opacity: 1;
        z-index: 1;
    }

    .hero-slider__image--mobile {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .hero__image--desktop {
        display: none;
    }

    .hero__fade {
        display: block;
        position: absolute;
        inset: auto 0 0;
        height: 62%;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(253, 249, 243, 0.4) 40%,
            rgba(253, 249, 243, 0.92) 72%,
            var(--cream) 100%
        );
    }

    .hero__content {
        order: 0;
        position: absolute;
        inset-inline: 0;
        inset-block-end: 0;
        inset-block-start: auto;
        left: auto;
        right: auto;
        bottom: 0;
        top: auto;
        transform: none;
        z-index: 3;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 20px 24px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        text-align: center;
        direction: rtl;
        line-height: normal;
    }

    .hero__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 420px;
        margin: 0 auto 8px;
        pointer-events: auto;
    }

    .hero__body {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        padding: 0;
        pointer-events: auto;
    }

    .hero__title {
        width: 100%;
        text-align: center;
    }

    .hero__title-visual {
        display: block;
        font-family: var(--font-serif);
        font-size: clamp(42px, 12vw, 56px);
        font-weight: 500;
        color: var(--maroon);
        line-height: 1;
        letter-spacing: 6px;
        margin: 0 auto 10px;
        text-align: center;
    }

    .hero__tagline {
        font-size: 16px;
        font-weight: 500;
        color: var(--green);
        margin: 0 auto;
        text-align: center;
    }

    .hero__desc {
        width: 100%;
        max-width: none;
        font-size: 14px;
        margin: 0 0 20px;
        color: var(--text-muted);
        line-height: 1.85;
        text-align: center;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        align-self: center;
        width: min(100%, 320px);
        margin-inline: auto;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* About mobile — text first, arched image */
    .about {
        padding: 48px 0;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about__media {
        order: 1;
    }

    .about__content {
        text-align: center;
    }

    .about__heading {
        font-size: 26px;
    }

    .about__text {
        max-width: none;
    }

    .about__image-wrap {
        clip-path: ellipse(75% 100% at 50% 100%);
    }

    .about__image {
        height: 280px;
    }

    .about__decoration {
        display: none;
    }

    /* Offers mobile — stack vertically */
    .offers__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .offers__column {
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .offers__column:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .offers__item-thumb {
        width: 56px;
        height: 56px;
    }

    /* Reservation mobile — vertical block */
    .reservation {
        padding: 0 0 48px;
    }

    .reservation__form {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px;
        gap: 16px;
    }

    .reservation__field {
        min-width: auto;
    }

    .reservation__submit {
        width: 100%;
        margin-top: 8px;
    }

    /* Gallery mobile */
    .gallery {
        padding: 0 0 48px;
    }

    .gallery__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    /* Footer mobile */
    .site-footer {
        padding: 32px 0 80px;
    }

    .site-footer__grid--desktop {
        display: none;
    }

    .site-footer__icons--mobile {
        display: flex;
        justify-content: space-around;
        padding-bottom: 24px;
    }

    .footer-icon-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        color: rgba(253, 249, 243, 0.7);
        transition: color var(--transition);
    }

    .footer-icon-item:hover {
        color: var(--cream);
    }

    /* Sticky reserve bar */
    .sticky-reserve {
        display: block;
    }

    body.page-home,
    body.page-menu {
        padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    }

    body.page-home .site-footer,
    body.page-menu .site-footer {
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    }

    body.page-menu.page-menu--has-cart {
        padding-bottom: calc(148px + env(safe-area-inset-bottom, 0px));
    }

    body.page-menu.page-menu--has-cart .site-footer {
        padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    }

    .sticky-dock--site {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 40px;
    }

    .gallery__grid {
        gap: 6px;
    }
}
