/* ==========================================================================
   BEMANGO CAFE — DESIGN SYSTEM & STYLES
   ========================================================================== */

/* --- CSS VARIABLES --- */
:root {
    --clr-primary: hsl(38, 95%, 55%);
    --clr-primary-hover: hsl(38, 95%, 46%);
    --clr-secondary: hsl(142, 45%, 26%);
    --clr-secondary-hover: hsl(142, 45%, 20%);
    --clr-accent: hsl(23, 90%, 55%);
    --clr-bg-page: hsl(40, 20%, 98%);
    --clr-bg-card: hsl(0, 0%, 100%);
    --clr-text-main: hsl(220, 25%, 15%);
    --clr-text-muted: hsl(220, 10%, 45%);
    --clr-border: hsl(220, 15%, 90%);
    --clr-dark-bg: hsl(220, 25%, 10%);
    --clr-dark-text: hsl(220, 15%, 95%);
    --clr-dark-card: hsl(220, 20%, 16%);
    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04), 0 4px 14px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.05), 0 18px 40px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.06), 0 32px 72px rgba(0, 0, 0, 0.14);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text-main);
    background-color: var(--clr-bg-page);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- SKELETON LOADING --- */
.skeleton {
    background-color: #e5e5e5;
    position: relative;
    overflow: hidden;
    border-radius: inherit;
}

.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: skeleton-loading 1.2s infinite;
    z-index: 1;
    pointer-events: none;
}

.skeleton img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: relative;
    z-index: 2;
}

.skeleton.loaded img {
    opacity: 1;
}

.skeleton.loaded::after {
    display: none;
    animation: none;
}

@keyframes skeleton-loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- PRELOADER --- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--clr-dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.preloader-logo span {
    color: var(--clr-primary);
}

.preloader-line {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 3px;
    transition: width 0.05s linear;
}

/* --- GLOBAL SMOOTHNESS --- */
a, button, .btn, .filter-btn, .feature-item, .menu-card, .gallery-item, .nav-link {
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
                opacity   0.25s ease,
                box-shadow 0.25s ease,
                background 0.2s ease !important;
}


/* --- HOLD hero animations until preloader finishes (body gets .loaded) --- */
body:not(.loaded) .hero-badge,
body:not(.loaded) .hero-headline,
body:not(.loaded) .hero-sub,
body:not(.loaded) .hero-actions,
body:not(.loaded) .hero-trust {
    animation-play-state: paused;
    opacity: 0;
}

/* --- FLOATING WHATSAPP --- */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 800;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.whatsapp-fab.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 480px) {
    .whatsapp-fab {
        padding: 14px;
        border-radius: 50%;
    }

    .whatsapp-fab-label {
        display: none;
    }
}

/* --- SCROLL TO TOP --- */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 800;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--clr-secondary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--clr-secondary-hover);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--clr-primary);
    color: hsl(220, 25%, 10%);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    animation: btnShimmer 4s ease-in-out infinite 2.5s;
    pointer-events: none;
}

@keyframes btnShimmer {
    0%   { left: -75%; }
    40%  { left: 125%; }
    100% { left: 125%; }
}

.btn-primary:hover {
    background: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--clr-secondary);
    border: 2px solid var(--clr-secondary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--clr-secondary);
    color: white;
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    box-shadow: 0 4px 16px rgba(220, 39, 67, 0.35);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.45);
}

/* --- SECTION TITLES --- */
.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--clr-secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-header {
    margin-bottom: 48px;
}

/* ── Scroll Reveal Logic ── */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}


/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--clr-secondary);
    letter-spacing: -0.5px;
}

.logo .mango-text {
    color: var(--clr-primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--clr-text-main);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--clr-primary);
    border-radius: 5px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--clr-secondary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-btn {
    background: var(--clr-border);
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: #e2e8f0;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--clr-secondary);
    border-radius: 3px;
    transition: var(--transition);
}

/* --- HERO --- */
.hero-section {
    position: relative;
    isolation: isolate;
    height: 100svh;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.06);
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0) 100%);
    z-index: 5;
    pointer-events: none;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.06) translateX(0);
    }

    100% {
        transform: scale(1.12) translateX(-2%);
    }
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 680px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-badge {
    background: var(--clr-primary);
    color: hsl(220, 25%, 10%);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
    animation: lineReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-sub {
    font-size: 18px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    max-width: 520px;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
    flex-wrap: wrap;
}

.trust-stars {
    color: var(--clr-primary);
    font-size: 14px;
}

.trust-sep {
    opacity: 0.4;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* --- FEATURES BAR --- */
.features-bar {
    position: relative;
    z-index: 20;
    margin-top: -56px;
    padding-top: 36px;
    padding-bottom: 36px;
    background: var(--clr-bg-page);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-item {
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--clr-text-muted);
}

/* --- STATS SECTION --- */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--clr-secondary) 0%, hsl(142, 50%, 20%) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    padding-top: 6px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.75);
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 110px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
    height: 500px;
}

.about-img-badge {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: var(--clr-secondary);
    color: white;
    padding: 22px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 900;
    color: var(--clr-primary);
}

.badge-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.about-content h2 {
    position: relative;
    margin-bottom: 32px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--clr-primary);
    border-radius: 2px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--clr-text-muted);
    line-height: 1.75;
}

.about-features {
    list-style: none;
    margin: 28px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--clr-text-main);
}

.about-feat-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: hsl(220, 25%, 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.about-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--clr-secondary);
    font-size: 15px;
}

.meta-item a {
    color: var(--clr-secondary);
}

.meta-item a:hover {
    color: var(--clr-primary);
}

.meta-icon {
    font-size: 18px;
}

.about-cta-btn {
    margin-top: 36px;
}

/* ═══════════════════════════════════════════════════════
   GALLERY — Horizontal scroll (desktop) + swipe (mobile)
   ═══════════════════════════════════════════════════════ */

/*  Section wrapper  */
.gallery-section {
    position: relative;
    background: #0d0f14;
    /* No overflow:hidden - it clips card shadows & mobile swipe */
}

/* Hide mobile header on desktop */
.gallery-mobile-header {
    display: none;
}

/* ── Custom cursor (desktop only) ── */
.gallery-cursor {
    position: fixed;
    width: 72px;
    height: 72px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #111;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s ease, transform 0.15s ease;
    will-change: transform, opacity;
}

.gallery-cursor.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ── Progress bar ── */
.gallery-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.07);
    z-index: 10;
}

.gallery-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    width: 0%;
    border-radius: 2px;
    transition: width 0.08s linear;
}

/* ── Edge hover indicators ── */
.gallery-edge {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.gallery-edge-left {
    left: 0;
    background: linear-gradient(to right, rgba(13,15,20,0.75), transparent);
}

.gallery-edge-right {
    right: 0;
    background: linear-gradient(to left, rgba(13,15,20,0.75), transparent);
}

.gallery-section.manual-mode .gallery-edge {
    pointer-events: auto;
}

.gallery-section.edge-left .gallery-edge-left,
.gallery-section.edge-right .gallery-edge-right {
    opacity: 1;
}

/* ── "See More" pill ── */
.gallery-seemore {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 15, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 11px 20px;
    border-radius: 50px;
    text-decoration: none;
    transform: translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
}

.gallery-seemore.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.gallery-seemore:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ── Desktop: full-viewport horizontal strip ── */
.gallery-pin-wrap {
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: default;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(0, 0, 0);
    contain: layout style;
}

.gallery-pin-wrap::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 120px 0 100px;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

/* ── Intro text card (desktop) ── */
.gallery-intro-card {
    flex-shrink: 0;
    width: 380px;
    padding-right: 72px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    margin-right: 16px;
}

.gallery-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--clr-primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}

.gallery-heading {
    font-size: clamp(44px, 4.5vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    margin: 0 0 20px;
    font-family: var(--font-heading);
}

.gallery-lead {
    color: rgba(255, 255, 255, 0.45);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.gallery-scroll-hint {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.gallery-scroll-hint-line {
    height: 1px;
    width: 48px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ── Gallery cards ── */
.gallery-item {
    flex-shrink: 0;
    width: 340px;
    height: 520px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    
    /* Reveal Animation Base */
    opacity: 0;
    transform: translate3d(40px, 0, 0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: transform, opacity;
    contain: layout style paint;
}

.gallery-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
    pointer-events: none;
}

.gallery-item:hover img,
.gallery-item.is-hovered img {
    transform: scale(1.07);
}

/* ── Overlay ── */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.12) 45%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item.is-hovered .gallery-overlay {
    opacity: 1;
}

.gallery-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--clr-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    transform: translateY(6px);
    transition: transform 0.3s ease;
}

.gallery-label {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    display: block;
    transform: translateY(6px);
    transition: transform 0.3s 0.04s ease;
}

.gallery-item.is-hovered .gallery-num,
.gallery-item.is-hovered .gallery-label {
    transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────
   MOBILE GALLERY  ≤ 767px
   Top-Tier Animated Carousel
   ───────────────────────────────────────────────────────── */
@media (max-width: 767px) {

    .gallery-section {
        /* Premium warm dark background */
        background: linear-gradient(
            180deg,
            hsl(220, 25%, 10%) 0%,
            hsl(220, 20%, 14%) 40%,
            hsl(142, 20%, 12%) 100%
        );
        overflow: hidden;
        padding-bottom: 24px;
    }

    /* Hide all desktop-only chrome */
    .gallery-cursor,
    .gallery-progress-bar,
    .gallery-edge,
    .gallery-seemore {
        display: none !important;
    }

    /* ── Mobile header ── */
    .gallery-mobile-header {
        display: block;
        text-align: left;
        padding: 48px 48px 24px 48px;
    }

    .gallery-mobile-header .gallery-eyebrow {
        font-size: 10px;
        letter-spacing: 4px;
        margin-bottom: 10px;
        color: var(--clr-primary);
    }

    .gallery-mobile-header .gallery-heading {
        font-size: 46px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 16px;
        color: #fff;
    }

    .gallery-mobile-header .gallery-lead {
        font-size: 14px;
        color: rgba(255,255,255,0.6);
        margin-bottom: 32px;
    }

    /* ── Carousel scroll container ── */
    .gallery-pin-wrap {
        height: auto;
        min-height: unset;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 50vw; /* Pad with half screen so first and last cards center */
        display: block;
        scroll-behavior: auto;
    }

    .gallery-pin-wrap::-webkit-scrollbar {
        display: none;
    }

    /* ── Track becomes a horizontal flex row ── */
    .gallery-track {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 20px 0;
        /* Pull back the track by half a card to perfectly center the first one */
        margin-left: calc(-37.5vw - 8px); 
    }

    /* Hide the desktop text intro card */
    .gallery-intro-card {
        display: none;
    }

    /* ── Each card: 75vw wide for nice peeking edges ── */
    .gallery-item,
    .gallery-item:nth-child(n) {
        flex: 0 0 75vw;
        width: 75vw;
        height: 105vw; /* 3:4 portrait ratio */
        max-height: 480px;
        border-radius: 16px;
        scroll-snap-align: center;
        cursor: pointer;
        margin-top: 0 !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
        /* Animation is handled by JS requestAnimationFrame now! */
        transform-origin: center center;
    }

    /* Overlay always visible on touch to show numbers and vignette */
    .gallery-overlay {
        opacity: 1;
        padding: 20px;
        background: linear-gradient(to top,
            rgba(0,0,0,0.85) 0%,
            rgba(0,0,0,0.1) 45%,
            rgba(0,0,0,0) 100%
        );
    }
    .gallery-num {
        transform: translateY(0);
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 4px;
    }

    .gallery-label {
        transform: translateY(0);
        font-size: 18px;
        font-weight: 800;
    }

    /* ── Swipe hint & CTA ── */
    .gallery-mobile-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 0 6px;
        color: rgba(255,255,255,0.28);
        font-size: 10px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-family: var(--font-heading);
    }

    .gallery-mobile-hint svg {
        animation: swipeAnim 1.6s ease-in-out infinite;
    }

    @keyframes swipeAnim {
        0%, 100% { transform: translateX(0); opacity: 0.5; }
        50%       { transform: translateX(6px); opacity: 1; }
    }

    .gallery-dots {
        display: none; /* Let's hide dots to keep it clean */
    }

    /* "See more on Instagram" link at the bottom */
    .gallery-mobile-cta {
        display: flex;
        justify-content: center;
        padding: 12px 0 16px;
    }

    .gallery-mobile-cta a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: rgba(255,255,255,0.5);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .gallery-mobile-cta a:hover {
        color: var(--clr-primary);
    }
}

/* ── Tablet: 768–900px ── */
@media (min-width: 768px) and (max-width: 900px) {
    .gallery-item,
    .gallery-item:nth-child(n) {
        width: 320px;
        height: 440px;
        margin-top: 0 !important;
        opacity: 1;
    }

    .gallery-track {
        padding: 0 60px 0 48px;
    }

    .gallery-intro-card {
        width: 280px;
        padding-right: 40px;
    }

    .gallery-heading {
        font-size: 36px;
    }
}

/* ── Hide mobile-only elements on desktop ── */
@media (min-width: 768px) {
    .gallery-mobile-header,
    .gallery-mobile-hint,
    .gallery-mobile-cta,
    .gallery-dots {
        display: none;
    }
}


/* --- MENU SECTION --- */
.menu-section {
    background: hsl(40, 15%, 95%);
    padding: 100px 0;
}

.menu-header {
    margin-bottom: 0;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--clr-secondary);
    color: white;
    border-color: var(--clr-secondary);
    box-shadow: var(--shadow-sm);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* ── Menu Card ── */
.menu-card {
    background: var(--clr-bg-card);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--clr-border);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    min-height: 168px;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
}

/* Image panel */
.menu-card-img {
    width: 168px;
    min-width: 168px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: var(--clr-border);
}

/* Graceful placeholder when image fails to load */
.menu-card-img.img-missing {
    background: linear-gradient(135deg, hsl(38, 30%, 92%) 0%, hsl(38, 20%, 88%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-img.img-missing::before {
    content: '🍽️';
    font-size: 32px;
    opacity: 0.5;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.09);
}

/* Fade edge from image into card body */
.menu-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 35%, var(--clr-bg-card) 95%);
    box-shadow: inset -3px 0 0 var(--clr-bg-card);
    pointer-events: none;
}

/* Text body */
.menu-card-body {
    padding: 22px 24px 22px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    gap: 0;
    background: var(--clr-bg-card);
    position: relative;
    z-index: 2;
    margin-left: -1px; /* Overlaps any GPU subpixel gap */
}

/* Category label */
.menu-card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: 6px;
}

/* Dish name */
.menu-card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--clr-secondary);
    line-height: 1.25;
    margin: 0 0 8px;
}

/* Description */
.menu-card-desc {
    font-size: 13.5px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin: 0 0 14px;
    flex-grow: 1;
}

/* Price */
.menu-card-price {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--clr-accent);
    display: block;
    letter-spacing: -0.3px;
}

.tag-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-badge.vegan {
    background: #e3f9e5;
    color: #1f7a26;
}

.tag-badge.gf {
    background: #fff3cd;
    color: #856404;
}

.tag-badge.spicy {
    background: #f8d7da;
    color: #721c24;
}

/* Delivery box */
.delivery-box {
    background: var(--clr-secondary);
    color: white;
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.delivery-box h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.delivery-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.delivery-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.delivery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}

.delivery-btn img,
.delivery-btn svg {
    display: block;
}

.delivery-btn.uber {
    background: black;
    color: white;
}

.delivery-btn.uber:hover {
    background: #222;
    transform: translateY(-2px);
}

.delivery-btn.glovo {
    background: #ffc010;
    color: #333;
}

.delivery-btn.glovo:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

.delivery-btn.bolt {
    background: #34D186;
    color: white;
}

.delivery-btn.bolt:hover {
    background: #2cb774;
    transform: translateY(-2px);
}

/* --- TESTIMONIALS (SWIPER) --- */
.testimonials-section {
    padding: 100px 0;
    background: var(--clr-bg-card);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    margin-top: 12px;
}

.rating-big {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 900;
    color: var(--clr-secondary);
    line-height: 1;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-stars-row {
    font-size: 24px;
    color: var(--clr-primary);
}

.rating-info span {
    font-size: 14px;
    color: var(--clr-text-muted);
}

.testimonials-swiper {
    padding-bottom: 50px !important;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.review-card {
    background: var(--clr-bg-page);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-rating {
    font-size: 18px;
    margin-bottom: 16px;
}

.review-text {
    font-style: italic;
    color: var(--clr-text-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-secondary);
}

.author-info span {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.swiper-pagination-bullet {
    background: var(--clr-border);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--clr-secondary);
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

/* --- INSTAGRAM SECTION --- */
.instagram-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(38, 95%, 96%) 0%, hsl(142, 30%, 95%) 100%);
    border-top: 1px solid var(--clr-border);
}

.instagram-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.insta-text h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--clr-secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.insta-text p {
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    font-size: 16px;
}

.insta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.insta-cell {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
}

.insta-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-cell:hover img {
    transform: scale(1.05);
}

/* --- CONTACT & MAP --- */
.contact-section {
    padding: 100px 0;
    background: var(--clr-bg-page);
    border-top: 1px solid var(--clr-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-details h2 {
    margin-bottom: 16px;
}

.contact-intro {
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    font-size: 16px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.info-block {
    display: flex;
    gap: 16px;
}

.info-icon {
    font-size: 26px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 6px;
}

.info-text p {
    font-size: 15px;
    color: var(--clr-text-muted);
}

.info-text a {
    color: var(--clr-text-muted);
}

.info-text a:hover {
    color: var(--clr-secondary);
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    color: var(--clr-text-muted);
}

.hours-row.weekend span:last-child {
    font-weight: 600;
    color: var(--clr-secondary);
}

.map-link-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-accent);
    display: inline-block;
    margin-top: 8px;
}

.map-link-btn:hover {
    color: var(--clr-primary-hover);
    text-decoration: underline;
}

.social-box h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-secondary);
    transition: var(--transition);
}

.social-icon-btn:hover {
    background: var(--clr-primary);
    color: hsl(220, 25%, 10%);
    transform: scale(1.1);
}

.social-icon-btn.social-wa:hover {
    background: #25D366;
    color: white;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
}

.contact-map iframe {
    display: block;
}

.whatsapp-map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #25D366;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s ease;
}

.whatsapp-map-btn:hover {
    background: #1ea855;
}

/* --- FOOTER --- */
.site-footer {
    background: var(--clr-dark-bg);
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-desc {
    font-size: 14px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: var(--clr-primary);
    color: hsl(220, 25%, 10%);
}

.footer-grid h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--clr-primary);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact a:hover {
    color: var(--clr-primary);
}

.footer-hours {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-hours p {
    font-size: 13px;
}

.footer-legal p {
    font-size: 13px;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px 0;
    font-size: 13px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- MODAL --- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--clr-bg-card);
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--clr-text-muted);
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--clr-secondary);
    transform: rotate(90deg);
}

.modal h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--clr-secondary);
    margin-bottom: 8px;
}

.modal>.modal-content>p {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--clr-border);
    outline: none;
    font-size: 15px;
    background: var(--clr-bg-page);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(254, 202, 87, 0.2);
    background: white;
}

/* --- FLATPICKR THEME --- */
.flatpickr-calendar {
    font-family: var(--font-body);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--clr-secondary);
    border-color: var(--clr-secondary);
}

.flatpickr-day:hover {
    background: hsl(40, 20%, 93%);
}

.flatpickr-day.today {
    border-color: var(--clr-primary);
}

.flatpickr-day.today:hover {
    background: var(--clr-primary);
    color: #1a1a1a;
}

.flatpickr-months .flatpickr-month,
.flatpickr-weekdays {
    background: var(--clr-secondary);
    color: white;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.flatpickr-current-month,
.flatpickr-current-month .numInputWrapper {
    color: white;
}

.flatpickr-weekday {
    color: rgba(255, 255, 255, 0.8) !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: white;
}

.success-message {
    display: none;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    font-size: 60px;
    margin-bottom: 16px;
}

.success-message h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 10px;
}

.success-message p {
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
}

/* --- LEGAL PAGES --- */
.legal-page {
    background: var(--clr-bg-page);
}

.legal-container {
    padding-top: 130px;
    padding-bottom: 80px;
}

.legal-content {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-sm);
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--clr-secondary);
    margin-bottom: 8px;
}

.last-updated {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 16px;
}

.lang-section {
    padding: 20px 0;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--clr-primary-hover);
    margin-bottom: 14px;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--clr-secondary);
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 18px;
    color: var(--clr-text-muted);
    font-size: 15px;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* ===== BREAKFAST COMBO SECTION ===== */
.breakfast-section {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(38, 70%, 94%) 0%, hsl(30, 65%, 88%) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.bf-decor-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bf-decor-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, hsl(38, 95%, 55%) 0%, transparent 70%);
    top: -180px;
    right: -80px;
    opacity: 0.18;
}

.bf-decor-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, hsl(23, 90%, 55%) 0%, transparent 70%);
    bottom: -120px;
    left: -60px;
    opacity: 0.14;
}

/* Main card — two-column ticket layout */
.breakfast-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13), 0 6px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

/* Dashed vertical divider between panels */
.breakfast-card::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 32px;
    bottom: 32px;
    width: 1px;
    border-left: 2px dashed rgba(230, 155, 0, 0.3);
    pointer-events: none;
}

/* ── Left golden panel ── */
.breakfast-panel-left {
    background: linear-gradient(145deg, hsl(38, 95%, 52%) 0%, hsl(26, 88%, 46%) 100%);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle texture rings */
.breakfast-panel-left::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.06);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.breakfast-panel-left::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 30px solid rgba(255, 255, 255, 0.05);
    bottom: -60px;
    right: -40px;
    pointer-events: none;
}

.bf-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.22);
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.bf-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.05;
    color: white;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 1;
}

.bf-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.bf-time-icon {
    font-size: 17px;
}

.bf-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.87);
    max-width: 380px;
    position: relative;
    z-index: 1;
}

.bf-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.bf-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.bf-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bf-cta-btn {
    background: white !important;
    color: hsl(26, 88%, 42%) !important;
    border-color: white !important;
    font-weight: 700 !important;
    margin-top: 8px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18) !important;
    position: relative;
    z-index: 1;
}

.bf-cta-btn:hover {
    background: hsl(38, 95%, 94%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22) !important;
}

/* ── Right white panel ── */
.breakfast-panel-right {
    background: white;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

/* Price circle */
.bf-price-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
}

.bf-price-circle {
    width: 158px;
    height: 158px;
    border-radius: 50%;
    background: linear-gradient(145deg, hsl(38, 95%, 55%), hsl(26, 88%, 46%));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 36px rgba(230, 130, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bf-price-circle:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 18px 48px rgba(230, 130, 0, 0.38);
}

/* Dashed ring */
.bf-price-circle::before {
    content: '';
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 2px dashed hsl(38, 90%, 65%);
    opacity: 0.5;
    animation: bf-spin 18s linear infinite;
}

@keyframes bf-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bf-price-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1px;
}

.bf-price-value {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 900;
    color: white;
    line-height: 1;
    letter-spacing: -2px;
}

.bf-price-value sup {
    font-size: 20px;
    font-weight: 700;
    vertical-align: super;
    letter-spacing: 0;
}

.bf-price-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Dish chips */
.bf-choices-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    width: 100%;
}

.bf-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.bf-chip {
    display: inline-flex;
    align-items: center;
    background: hsl(38, 75%, 93%);
    color: hsl(26, 80%, 32%);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1.5px solid hsl(38, 75%, 86%);
    transition: var(--transition);
    cursor: default;
}

.bf-chip[data-img] {
    cursor: pointer;
}

.bf-chip:hover {
    background: hsl(38, 95%, 55%);
    color: white;
    border-color: hsl(38, 95%, 55%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 18px rgba(230, 130, 0, 0.3);
}

/* ---- Dish preview card ---- */
#dish-preview {
    position: fixed;
    pointer-events: none;
    z-index: 9900;
    width: 270px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.22),
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.12);
    opacity: 0;
    transform: scale(0.82) translateY(14px);
    transition:
        opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

#dish-preview.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Hide floating card on mobile — lightbox handles it there */
@media (max-width: 767px) {
    #dish-preview { display: none !important; }
}

/* ---- Mobile dish lightbox ---- */
#dish-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.90);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#dish-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
#dish-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 1;
    line-height: 1;
    font-family: var(--font-heading);
}
#dish-lightbox-close:hover,
#dish-lightbox-close:focus {
    background: rgba(255, 255, 255, 0.30);
}
.dish-lightbox-inner {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
    transform: scale(0.88) translateY(24px);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
#dish-lightbox.active .dish-lightbox-inner {
    transform: scale(1) translateY(0);
}
#dish-lightbox-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.dish-lightbox-label {
    background: linear-gradient(135deg, hsl(38, 95%, 52%) 0%, hsl(26, 88%, 46%) 100%);
    padding: 18px 24px;
}
.dish-lightbox-label span {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
}

#dish-preview img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.dish-preview-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
}

.dish-preview-label span {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .breakfast-card {
        grid-template-columns: 1fr;
        /* Remove the wrapper styles to let the panels act independently */
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
    }

    .breakfast-card::after {
        display: none;
    }

    .breakfast-panel-left {
        padding: 44px 32px 80px; /* Extra padding at bottom for the overlap */
        border-radius: 32px;
        box-shadow: 0 16px 40px rgba(230, 130, 0, 0.2);
    }

    .breakfast-panel-right {
        padding: 44px 32px;
        border-radius: 24px;
        /* Float it up over the orange section */
        margin-top: -50px;
        margin-left: 16px;
        margin-right: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        position: relative;
        z-index: 10;
    }

    .bf-title {
        font-size: 36px;
    }

    .bf-price-wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .breakfast-panel-left {
        padding: 36px 24px 70px;
    }

    .breakfast-panel-right {
        padding: 36px 24px;
        margin-top: -40px;
        margin-left: 12px;
        margin-right: 12px;
    }

    .bf-title {
        font-size: 30px;
    }
}

/* --- KEYFRAMES --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes lineReveal {
    from {
        clip-path: inset(0 0 100% 0);
        transform: translateY(-8px);
    }
    to {
        clip-path: inset(0 0 0% 0);
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-container {
        max-width: 480px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:nth-child(even) {
        border-left: none;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .instagram-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--clr-bg-card);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        gap: 36px;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 22px;
    }

    .burger-menu {
        display: flex;
    }

    .btn-book {
        display: none;
    }

    .burger-menu.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .features-grid,
    .menu-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-bar {
        margin-top: 0;
        padding-top: 40px;
    }

    .hero-headline {
        font-size: 34px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-actions .btn + .btn {
        margin-top: 12px;
    }

    .hero-trust {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 24px;
    }

    /* On mobile the hero content can be taller than half the screen, so centering
       bleeds it behind the fixed header. Use flex-start + explicit top padding instead. */
    .hero-section {
        /* svh = "small viewport height" — locked to the viewport size WITH
           browser chrome visible. Never changes when URL bar hides/shows,
           so the hero never jumps or expands on scroll. */
        height: 100svh;
        min-height: 580px;
        align-items: flex-start;
        padding-top: 0;
    }

    .hero-content {
        padding: 0 8px;
        padding-top: 100px;   /* 80px header + 20px breathing room = badge always visible */
        padding-bottom: 48px;
    }

    .hero-background {
        background-position: 65% center !important;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.5) 0%,
            rgba(0,0,0,0.15) 35%,
            rgba(0,0,0,0.55) 75%,
            rgba(0,0,0,0.75) 100%
        );
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 42px;
    }

    /* Menu filters — horizontal scroll instead of wrapping */
    .menu-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }

    .menu-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 13px;
    }

    .menu-card {
        flex-direction: column;
        min-height: unset;
    }

    .menu-card-img {
        width: 100%;
        min-width: unset;
        height: 190px;
    }

    .menu-card-img::after {
        background: linear-gradient(to bottom, transparent 35%, var(--clr-bg-card) 95%);
        box-shadow: inset 0 -3px 0 var(--clr-bg-card);
    }

    .menu-card-body {
        padding: 16px 18px 18px;
        gap: 0;
        margin-left: 0;
        margin-top: -1px; /* Overlaps the gap vertically */
    }

    .menu-card-title {
        font-size: 16px;
    }

    .menu-card-desc {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .modal-content {
        padding: 28px 20px;
        border-radius: var(--radius-md);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .whatsapp-fab {
        padding: 14px;
        border-radius: 50%;
    }

    .whatsapp-fab-label {
        display: none;
    }

    .rating-summary {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .rating-big {
        font-size: 56px;
    }

    .insta-text h2 {
        font-size: 28px;
    }

    .lang-btn {
        padding: 7px 14px;
        font-size: 13px;
    }

    /* About section */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .insta-inner,
    .instagram-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }

    .hero-headline {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
        height: auto;
    }
}



.gallery-pin-wrap.scrolling .gallery-item { pointer-events: none; }
.gallery-pin-wrap.scrolling { cursor: grabbing; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.2);
    animation: none;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.15); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 2px 10px rgba(0,0,0,0.2); }
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

.hero-wave {
    display: none;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 200px;
}

.hero-section {
    position: relative;
    z-index: 1;
}




.hero-frame {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-frame {
    display: flex;
    align-items: center;
}

/* -- Staggered Card Entrance -- */
.stagger-item {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
    /* deliberately no transition:none here — keep existing hover transitions */
}

.stagger-visible .stagger-item {
    animation: staggerIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--stagger-i, 0) * 90ms);
}

@keyframes staggerIn {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    /* Fluid hero headline */
    .hero-headline {
        font-size: clamp(30px, 7vw, 48px);
    }

    /* Minimum touch target size (Apple HIG: 44px) */
    .btn,
    .filter-btn,
    .bf-chip,
    .lang-btn {
        min-height: 44px;
    }

    .bf-chip {
        padding: 10px 16px;
        font-size: 14px;
    }

/* Features bar: reset negative margin on small screens so no white gap */
    .features-bar {
        margin-top: 0;
        padding-top: 24px;
        padding-bottom: 24px;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid var(--clr-border);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-item {
        padding: 18px 20px;
    }

    /* Hero trust bar — stack vertically on tiny screens */
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .trust-sep {
        display: none;
    }

    /* Bigger hero action buttons on mobile */
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* bf-chips: wrap nicely and larger tap area */
    .bf-chips {
        gap: 10px;
    }

    .bf-chip {
        font-size: 14px;
    }

    /* Section padding tighter on mobile */
    .section-title {
        font-size: clamp(22px, 6vw, 30px);
    }
}

@media (max-width: 480px) {
    /* Hero sub-text shorter line length */
    .hero-sub {
        font-size: 15px;
        max-width: 100%;
    }

    /* Stats: 2 columns only */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer tighter */
    .footer-grid {
        gap: 24px;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    #dish-preview {
        transition: opacity 0.15s ease;
    }
}

