/* ============================================================
   BISMILLAH CAFE V2 — ELITE MULTI-THEME DESIGN SYSTEM
   4 themes: Delta Gold, Bengali Noir, Kantha Festival, Buford Fresh
   ============================================================ */

/* ============ THEME TOKENS ============ */

/* THEME 1: DELTA GOLD — Heritage Luxury */
[data-theme="delta-gold"] {
    --bg:           #0D2818;
    --bg-alt:       #142E1F;
    --bg-card:      #1A3425;
    --surface:      #1F3D2C;
    --accent:       #C9A05A;
    --accent-light: #E0C070;
    --accent-dark:  #A07830;
    --text:         #E8E4D8;
    --text-muted:   #98A898;
    --text-heading: #F5F0E4;
    --red:          #8B4A2B;
    --overlay:      rgba(13, 40, 24, 0.7);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', sans-serif;
    --kantha-opacity: 0.06;
    --hero-clip:    inset(0);
    --card-border:  rgba(201, 160, 90, 0.15);
    --gradient-hero: linear-gradient(180deg, rgba(13,40,24,0.4) 0%, rgba(13,40,24,0.2) 40%, rgba(13,40,24,0.6) 70%, rgba(13,40,24,0.95) 100%);
    --halal-bg:     #C9A05A;
    --halal-text:   #0D2818;
}

/* THEME 2: BENGALI NOIR — Modern Exclusivity */
[data-theme="bengali-noir"] {
    --bg:           #0A0C0B;
    --bg-alt:       #111413;
    --bg-card:      #161A18;
    --surface:      #1C201E;
    --accent:       #C8243A;
    --accent-light: #E03048;
    --accent-dark:  #9A1C2E;
    --text:         #C4C4B8;
    --text-muted:   #787878;
    --text-heading: #F2F0EC;
    --red:          #C8243A;
    --overlay:      rgba(10, 12, 11, 0.75);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', sans-serif;
    --kantha-opacity: 0;
    --card-border:  rgba(200, 36, 58, 0.15);
    --gradient-hero: linear-gradient(180deg, rgba(10,12,11,0.3) 0%, rgba(10,12,11,0.1) 30%, rgba(10,12,11,0.5) 65%, rgba(10,12,11,0.98) 100%);
    --halal-bg:     #C8243A;
    --halal-text:   #F2F0EC;
}

/* THEME 3: KANTHA FESTIVAL — Joyful Richness */
[data-theme="kantha-festival"] {
    --bg:           #F7F0E2;
    --bg-alt:       #F0E8D8;
    --bg-card:      #FFFFFF;
    --surface:      #EDE5D4;
    --accent:       #BF2A2A;
    --accent-light: #D43838;
    --accent-dark:  #8B1E1E;
    --text:         #3A3228;
    --text-muted:   #7A7060;
    --text-heading: #2A231C;
    --red:          #BF2A2A;
    --overlay:      rgba(247, 240, 226, 0.6);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body:    'Lato', sans-serif;
    --kantha-opacity: 0.12;
    --card-border:  rgba(191, 42, 42, 0.15);
    --gradient-hero: linear-gradient(180deg, rgba(247,240,226,0.3) 0%, rgba(247,240,226,0.1) 40%, rgba(247,240,226,0.5) 70%, rgba(247,240,226,0.95) 100%);
    --halal-bg:     #2D6B3A;
    --halal-text:   #F7F0E2;
}

/* THEME 4: BUFORD FRESH — Clean & Vibrant */
[data-theme="buford-fresh"] {
    --bg:           #FAFAFA;
    --bg-alt:       #F5F5F5;
    --bg-card:      #FFFFFF;
    --surface:      #EEEEEE;
    --accent:       #2D6B3A;
    --accent-light: #3D8B4A;
    --accent-dark:  #1D4B2A;
    --text:         #2C2C2C;
    --text-muted:   #6B6B6B;
    --text-heading: #1A1A1A;
    --red:          #D44A30;
    --overlay:      rgba(250, 250, 250, 0.5);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', sans-serif;
    --kantha-opacity: 0;
    --card-border:  rgba(45, 107, 58, 0.12);
    --gradient-hero: linear-gradient(180deg, rgba(250,250,250,0.2) 0%, rgba(250,250,250,0) 30%, rgba(250,250,250,0.4) 65%, rgba(250,250,250,0.98) 100%);
    --halal-bg:     #2D6B3A;
    --halal-text:   #FAFAFA;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.8s ease, color 0.6s ease;
    cursor: none;
}

@media (max-width: 768px) {
    body { cursor: auto; }
}

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

a { color: var(--accent); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent-light); }

::selection { background: var(--accent); color: var(--bg); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ============ SHARED TYPOGRAPHY ============ */
.label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.arabic-inline {
    font-family: 'Amiri', serif;
    font-size: 1.1em;
    color: var(--accent);
    direction: rtl;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--accent);
    color: var(--bg);
}
.btn--primary:hover {
    background: var(--accent-light);
    color: var(--bg);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--text-heading);
    border: 1px solid var(--card-border);
}
.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn--lg { padding: 1.1rem 2.8rem; font-size: 0.85rem; }

/* ============ CUSTOM CURSOR ============ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor__dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: -3px;
}

.cursor__ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: -20px;
    transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, border-color 0.3s ease;
}

.cursor--hover .cursor__ring {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .cursor { display: none; }
}

/* ============ THEME SWITCHER ============ */
.switcher {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px 0 0 12px;
}

.switcher__label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.switcher__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.switcher__btn--active {
    border-color: rgba(255,255,255,0.4);
}
.switcher__btn:hover { border-color: rgba(255,255,255,0.2); }

.switcher__swatch {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
}

.switcher__name {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.switcher:hover .switcher__name {
    opacity: 1;
    max-width: 100px;
    margin-right: 0.25rem;
}

@media (max-width: 768px) {
    .switcher {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        border-radius: 12px 12px 0 0;
        padding: 0.5rem 1rem;
    }
    .switcher__label {
        writing-mode: horizontal-tb;
        display: none;
    }
    .switcher__name { display: none; }
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
}
.nav--scrolled {
    background: rgba(from var(--bg) r g b / 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none;
}
.nav__logo-arabic {
    font-family: 'Amiri', serif;
    font-size: 1.4rem;
    color: var(--accent);
}
.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-heading);
}

.nav__links {
    display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav__links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text);
    position: relative;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.4s ease;
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { width: 100%; }

.nav__links .nav__cta {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
}
.nav__links .nav__cta:hover {
    background: var(--accent);
    color: var(--bg);
}
.nav__links .nav__cta::after { display: none; }

.nav__toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__toggle span {
    width: 24px; height: 2px;
    background: var(--text-heading);
    transition: all 0.3s ease;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw); height: 100vh;
        flex-direction: column;
        background: var(--bg);
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        align-items: flex-start;
    }
    .nav__links.open { right: 0; }
    .nav__links a { font-size: 1.1rem; }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__media {
    position: absolute; inset: 0; z-index: 0;
}
.hero__img, .hero__video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: var(--gradient-hero);
}

.hero__kantha-pattern {
    position: absolute; inset: 0; z-index: 2;
    width: 100%; height: 100%;
    color: var(--accent);
    opacity: var(--kantha-opacity);
}

.hero__content {
    position: relative; z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}
.hero__eyebrow span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
}
.hero__eyebrow-dot {
    width: 4px; height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

.hero__arabic {
    font-family: 'Amiri', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text);
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
}

.hero__tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.hero__actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease 1.8s forwards;
}
.hero__scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.hero__scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollPulse 2s ease infinite;
}

.hero__lotus-divider {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 40px;
    z-index: 3;
    color: var(--accent);
    opacity: 0.5;
}

/* Bengali Noir: diagonal accent bar */
[data-theme="bengali-noir"] .hero__lotus-divider { display: none; }
[data-theme="bengali-noir"] .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 200px; height: 4px;
    background: var(--accent);
    z-index: 3;
}

/* Buford Fresh: clean line */
[data-theme="buford-fresh"] .hero__lotus-divider { display: none; }
[data-theme="buford-fresh"] .hero__kantha-pattern { display: none; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ============ HALAL STRIP ============ */
.halal-strip {
    padding: 0.7rem 0;
    background: var(--halal-bg);
    color: var(--halal-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.halal-strip__dot {
    width: 3px; height: 3px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.5;
}

/* ============ STORY ============ */
.story {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background: var(--bg-alt);
}

.story__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
}

.story__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.15;
    margin-bottom: 2rem;
}

.story__lead {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 1.25rem;
}
.story__lead strong { color: var(--accent); }

.story__body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.story__quote {
    margin-top: 2.5rem;
    padding: 2rem;
    position: relative;
    border-left: 2px solid var(--accent);
}
.story__quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    line-height: 0.5;
    margin-bottom: 0.5rem;
    opacity: 0.3;
}
.story__quote p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-heading);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.story__quote cite {
    font-size: 0.8rem;
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Story images with clip-path reveal */
.story__right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story__image-reveal {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.story__image-reveal img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.story__image-reveal--offset {
    margin-left: 3rem;
}

.story__image-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1.25rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .story__layout { grid-template-columns: 1fr; }
    .story__image-reveal--offset { margin-left: 0; }
}

/* ============ CLIP-PATH REVEAL (scroll-driven CSS) ============ */
.clip-reveal {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.clip-reveal.revealed {
    clip-path: inset(0% 0 0 0);
}

/* Bengali Noir: diagonal reveal */
[data-theme="bengali-noir"] .clip-reveal {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
[data-theme="bengali-noir"] .clip-reveal.revealed {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* ============ CULTURE STRIP (Horizontal Marquee) ============ */
.culture-strip {
    padding: 3rem 0;
    background: var(--bg);
    overflow: hidden;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.culture-strip__track {
    display: flex;
    gap: 4rem;
    padding: 0 2rem;
}

.culture-strip__item {
    min-width: 280px;
    padding: 1.5rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    transition: all 0.4s ease;
}
.culture-strip__item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.culture-strip__item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}
.culture-strip__item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============ DISHES (Horizontal Pinned Scroll) ============ */
.dishes {
    padding: clamp(4rem, 8vw, 8rem) 0 0;
    background: var(--bg);
}

.dishes__header {
    text-align: center;
    padding: 0 2rem clamp(2rem, 4vw, 4rem);
}

.dishes__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--text-heading);
}

.dishes__track-wrapper {
    overflow: hidden;
}

.dishes__track {
    display: flex;
    gap: 2rem;
    padding: 2rem clamp(1.5rem, 4vw, 3rem) 4rem;
    width: max-content;
}

.dish-card {
    width: min(420px, 85vw);
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.dish-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.dish-card__img {
    position: relative;
    overflow: hidden;
    height: 280px;
}
.dish-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.dish-card:hover .dish-card__img img { transform: scale(1.06); }

.dish-card__badge {
    position: absolute;
    top: 1rem; right: 1rem;
    padding: 0.3rem 0.9rem;
    background: var(--accent);
    color: var(--bg);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dish-card__content {
    padding: 1.5rem;
}
.dish-card__content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.dish-card__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 0.75rem;
}

.dish-card__content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dish-card__review {
    padding-top: 0.75rem;
    border-top: 1px solid var(--card-border);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text);
}
.dish-card__stars { color: var(--accent); margin-right: 0.5rem; }

/* ============ GREEN SAUCE ============ */
.green-sauce {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--bg-alt);
}
.green-sauce__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    position: relative;
}
.green-sauce__price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}
.green-sauce__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}
.green-sauce p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============ MENU ============ */
.menu {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background: var(--bg);
    text-align: center;
}

.menu__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.menu__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 3rem;
}

.menu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
}

.menu__category h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--card-border);
}

.menu__item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.6rem 0;
    transition: color 0.3s ease;
}
.menu__item:hover { color: var(--text-heading); }

.menu__item-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}
.menu__item-name em {
    font-style: normal;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-left: 0.5rem;
    padding: 0.1rem 0.4rem;
    border: 1px solid var(--accent);
    vertical-align: middle;
}

.menu__item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--card-border);
    min-width: 20px;
    margin: 0 0.25rem;
    align-self: center;
    position: relative;
    top: -3px;
}

.menu__item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .menu__grid { grid-template-columns: 1fr; }
}

/* ============ PRESS ============ */
.press {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background: var(--bg-alt);
    text-align: center;
}

.press__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-heading);
    margin-bottom: 3rem;
}

.press__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.press__card {
    padding: 2rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: all 0.4s ease;
}
.press__card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.press__score {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.press__score span {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.press__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.35rem 0.9rem;
    border: 1px solid var(--card-border);
    margin-bottom: 0.75rem;
}

.press__card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.press__card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.press__card cite {
    font-size: 0.7rem;
    color: var(--accent-dark);
    font-style: normal;
}

@media (max-width: 900px) { .press__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .press__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* ============ GALLERY ============ */
.gallery {
    background: var(--bg);
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.gallery__item:hover img { transform: scale(1.1); }

.gallery__item span {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}
.gallery__item:hover span {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ VISIT ============ */
.visit {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background: var(--bg-alt);
}

.visit__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.visit__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-heading);
    margin-bottom: 2rem;
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.visit__detail h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}
.visit__detail p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}
.visit__detail a { color: var(--text); }
.visit__detail a:hover { color: var(--accent); }

.visit__actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
}

.visit__map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .visit__layout { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg);
    border-top: 1px solid var(--card-border);
}

.footer__layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__arabic {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.footer__brand h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-heading);
    margin-bottom: 0.4rem;
}
.footer__brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__col h4 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.footer__col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    text-align: center;
}
.footer__bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
    .footer__layout { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .clip-reveal { clip-path: inset(0); }
}

/* ============ FOCUS VISIBLE ============ */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }

/* ============ MENU ITEM THUMBNAILS ============ */
.menu__item { align-items: center; }
.menu__item-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    flex: 0 0 auto;
    margin-right: 0.6rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
@media (max-width: 600px) {
    .menu__item-img { width: 40px; height: 40px; margin-right: 0.45rem; }
}
