/* ═══════════════════════════════════════════════════════
   DINEVAULT - Glassmorphism Restaurant Directory
   ═══════════════════════════════════════════════════════ */

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

:root {
    --gold: #c8a97e;
    --gold-dark: #b08e5a;
    --gold-light: #e8d5b5;
    --dark: #0a0a1a;
    --dark-mid: #12122a;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-bg-light: rgba(255, 255, 255, 0.1);
    --glass-bg-medium: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-light: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    --glass-blur: blur(16px);
    --text: #e8e6f0;
    --text-muted: rgba(255, 255, 255, 0.55);
    --text-dim: rgba(255, 255, 255, 0.35);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1280px;
    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── ANIMATED BACKGROUND ───────────────────────────── */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(200, 169, 126, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(100, 80, 160, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(200, 169, 126, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #0a0a1a 0%, #12122a 30%, #1a1040 60%, #0a0a1a 100%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
    animation: floatOrb 20s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-60px, 80px); }
    66% { transform: translate(40px, -40px); }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

/* ── GLASS CARD MIXIN ─────────────────────────────── */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

.glass-light {
    background: var(--glass-bg-light);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

.glass-medium {
    background: var(--glass-bg-medium);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

/* ── NAVIGATION ────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-logo i {
    color: var(--gold);
    font-size: 1.3rem;
}

.nav-logo span {
    color: var(--gold);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 700 !important;
    transition: var(--transition);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(200, 169, 126, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600') center/cover no-repeat;
    opacity: 0.12;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 169, 126, 0.12);
    border: 1px solid rgba(200, 169, 126, 0.25);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.12rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-search {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 560px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-search input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    font-size: 1rem;
    font-family: var(--font);
    outline: none;
    background: transparent;
    color: #fff;
}

.hero-search input::placeholder {
    color: var(--text-muted);
}

.hero-search button {
    padding: 18px 32px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.hero-search button:hover {
    background: var(--gold-light);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ── PAGE HERO (inner pages) ──────────────────────── */
.page-hero {
    position: relative;
    padding: 160px 0 50px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.12rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── SECTIONS ──────────────────────────────────────── */
.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header .overline {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── HOW IT WORKS ──────────────────────────────────── */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hiw-card {
    text-align: center;
    padding: 44px 28px;
    transition: var(--transition);
}

.hiw-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-light);
    border-color: var(--glass-border-light);
}

.hiw-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(200, 169, 126, 0.3);
}

.hiw-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.hiw-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── RESTAURANT CARDS ──────────────────────────────── */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

.rest-card {
    overflow: hidden;
    transition: var(--transition);
    display: block;
}

.rest-card:hover {
    transform: translateY(-6px);
    background: var(--glass-bg-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.rest-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.rest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.rest-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(200, 169, 126, 0.9);
    backdrop-filter: blur(8px);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
}

.rest-card-body {
    padding: 24px;
}

.rest-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.rest-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.rest-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rest-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold);
}

.rest-card-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.rest-card-link:hover {
    gap: 10px;
}

/* ── CTA BANNER ────────────────────────────────────── */
.cta-banner {
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 32px;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 169, 126, 0.35);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--glass-bg-light);
    backdrop-filter: blur(12px);
    color: var(--gold);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
}

.btn-glass:hover {
    background: rgba(200, 169, 126, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
    padding: 50px 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-col h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* ── MOVE TO TOP BUTTON ───────────────────────────── */
.move-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(200, 169, 126, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.move-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.move-to-top:hover {
    background: #b8956a;
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(200, 169, 126, 0.5);
}

/* ── LISTINGS PAGE ────────────────────────────────── */
.listings-search {
    padding: 16px 24px;
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 50;
}

.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrap i {
    color: var(--text-muted);
    font-size: 1rem;
    margin-right: 12px;
}

.search-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    padding: 8px 0;
}

.search-input-wrap input::placeholder {
    color: var(--text-dim);
}

.search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    z-index: 9999;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 169, 126, 0.08);
    max-height: 320px;
    overflow-y: auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--text);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(200, 169, 126, 0.1);
}

.suggestion-item i {
    color: var(--gold);
    font-size: 0.8rem;
    margin: 0;
    width: 20px;
    text-align: center;
}

.suggestion-item strong {
    color: #fff;
}

.suggestion-item span {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-left: auto;
    background: rgba(200, 169, 126, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

.listings-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.listings-filters {
    padding: 28px;
    border-radius: var(--radius-lg);
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    background: rgba(20, 20, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 126, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - var(--nav-height) - 40px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.listings-filters::-webkit-scrollbar {
    display: none;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(200, 169, 126, 0.12);
}

.filter-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.filter-header h3 i {
    color: var(--gold);
}

.filter-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-close {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.filter-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

@media (max-width: 768px) {
    .filter-close {
        display: flex;
    }
}

.filter-clear {
    background: none;
    border: 1px solid rgba(200, 169, 126, 0.2);
    color: var(--gold);
    font-size: 0.78rem;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    font-weight: 500;
}

.filter-clear:hover {
    background: rgba(200, 169, 126, 0.12);
    border-color: var(--gold);
}

.filter-group {
    margin-bottom: 28px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.filter-check:hover {
    color: #fff;
}

.filter-check input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(200, 169, 126, 0.25);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
    background: rgba(200, 169, 126, 0.04);
}

.filter-check input:checked+.checkmark {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(200, 169, 126, 0.3);
}

.filter-check input:checked+.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: var(--dark);
}

.filter-check:has(input:checked) {
    color: #fff;
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.filter-toggle-btn {
    display: none;
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    gap: 6px;
    align-items: center;
}

.listings-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.listings-empty i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 20px;
}

.listings-empty h3 {
    color: #fff;
    margin-bottom: 8px;
}

.rest-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rest-card-cuisine {
    font-size: 0.82rem;
    color: var(--gold);
}

.rest-card-cuisine i {
    margin-right: 4px;
    font-size: 0.7rem;
}

.rest-card-price {
    font-size: 0.82rem;
    color: var(--text-dim);
    font-weight: 600;
}

.rest-card-loc {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin: 0;
}

.rest-card-loc i {
    margin-right: 4px;
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .listings-layout {
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }

    .listings-filters {
        padding: 24px;
    }
}

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

    .listings-filters {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        border-radius: 0;
        overflow-y: auto;
        padding: calc(var(--nav-height) + 20px) 24px 24px;
        background: rgba(10, 10, 26, 0.98);
        max-height: 100vh;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .listings-filters::-webkit-scrollbar {
        display: none;
    }

    .listings-filters.open {
        display: block;
    }

    .filter-toggle-btn {
        display: flex;
    }

    .listings-search {
        margin-bottom: 20px;
    }
}

/* ── ABOUT PAGE ────────────────────────────────────── */
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.about-block {
    padding: 40px;
}

.about-block h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.about-block p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

.stat-card {
    text-align: center;
    padding: 40px 24px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    background: var(--glass-bg-light);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ── CONTACT PAGE ──────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font);
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

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

.form-group select option {
    background: var(--dark);
    color: #fff;
}

.contact-info-card {
    padding: 48px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200, 169, 126, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--text);
}

/* ── RESTAURANT DETAIL ─────────────────────────────── */
.rest-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.rest-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rest-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px 40px;
    background: linear-gradient(to top, rgba(10, 10, 26, 0.9), transparent);
}

.rest-hero-overlay h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.rest-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
}

.rest-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    padding: 60px 0;
}

.rest-main {
    min-width: 0;
}

.rest-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.rest-sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar-card {
    padding: 28px;
}

.sidebar-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h3 i {
    color: var(--gold);
}

.sidebar-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.menu-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.menu-toggle-btn {
    padding: 10px 24px;
    border: 1px solid var(--glass-border-light);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.menu-toggle-btn.active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.menu-content {
    position: relative;
    padding: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.menu-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.menu-content pre {
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    line-height: 1.9;
    white-space: pre-wrap;
    color: var(--text);
    padding: 36px 40px;
    margin: 0;
    background: transparent;
    border: none;
}

.menu-content pre::first-line {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.menu-parsed {
    padding: 36px 40px;
    font-family: 'Courier New', Courier, monospace;
    color: var(--text);
}
.menu-spacer {
    height: 16px;
}
.menu-main-title {
    text-align: center;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px double rgba(255, 255, 255, 0.1);
}
.menu-section-header {
    color: var(--gold);
    font-size: 1rem;
    margin: 32px 0 16px 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.menu-section-header::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 16px;
}
.menu-item-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.menu-item-name {
    font-weight: 500;
}
.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    margin: 0 16px;
}
.menu-item-price {
    font-weight: 700;
}

.menu-file-view {
    text-align: center;
    padding: 48px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 2px dashed rgba(200, 169, 126, 0.2);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.menu-file-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.menu-file-view i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(200, 169, 126, 0.3));
}

.menu-section {
    padding: 48px 0;
}

.menu-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.menu-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.menu-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* ── LOCATION SECTION ─────────────────────────────── */
.location-section {
    padding: 48px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.location-map {
    min-height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    z-index: 1;
}

.location-info {
    padding: 32px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.location-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(200, 169, 126, 0.12);
}

.location-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.location-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.location-item:first-of-type {
    padding-top: 0;
}

.location-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(200, 169, 126, 0.08);
    border: 1px solid rgba(200, 169, 126, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-address {
    font-size: 0.92rem;
    color: var(--text);
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.location-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px 0;
}

.location-hours {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.location-directions {
    font-size: 0.82rem;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: color 0.2s;
}

.location-directions:hover {
    color: #dbb88a;
}

.location-directions i {
    font-size: 0.75rem;
}

.custom-marker {
    background: transparent !important;
    border: none !important;
}

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

    .location-map {
        min-height: 280px;
    }
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    padding: 28px;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.review-name {
    font-weight: 600;
    color: #fff;
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.review-stars {
    color: #f4c150;
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── GET LISTED ────────────────────────────────────── */
.get-listed-form {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px;
}

.get-listed-form h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.success-message {
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
}

/* ── FAQS ACCORDION ────────────────────────────────── */
.faqs-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    text-align: left;
    font-size: 1.02rem;
    font-weight: 600;
    font-family: var(--font);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--glass-bg-light);
    border-color: var(--glass-border-light);
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px 28px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ── LEGAL PAGES ───────────────────────────────────── */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    text-align: center;
}

.legal-content p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ── BREADCRUMBS ───────────────────────────────────── */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.82rem;
}

.breadcrumb a {
    color: var(--text-dim);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--text-dim);
    margin: 0 8px;
}

.breadcrumb strong {
    color: var(--text-muted);
}

/* ── SPLIT SECTIONS (Content + Image) ──────────────── */
.split-section {
    padding: 50px 0;
}

.split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.split-content {
    padding: 0;
}

.split-content .overline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.split-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.split-content>p {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 28px;
}

.split-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.split-bullet {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text);
}

.split-bullet i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(200, 169, 126, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.split-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 9;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-section:hover .split-image img {
    transform: scale(1.04);
}

.split-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.split-section.reverse .split-inner {
    direction: rtl;
}

.split-section.reverse .split-inner>* {
    direction: ltr;
}

/* ── MENU BUILDER ════════════════════════════════════ */
.menu-builder-container {
    background: rgba(0,0,0,0.1);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 12px;
}

.menu-category-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 16px;
}

.menu-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.menu-category-header input {
    font-size: 1rem;
    font-weight: bold;
    color: var(--gold);
    width: 60%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 4px 8px;
    transition: var(--transition);
}

.menu-category-header input:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.menu-item-row input[type="text"] {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border-light);
    border-radius: 4px;
    padding: 8px 12px;
    color: #fff;
}

.menu-item-name {
    flex: 2;
}

.menu-item-price {
    flex: 1;
}

.btn-remove {
    background: rgba(255, 50, 50, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 50, 50, 0.2);
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.btn-remove:hover {
    background: rgba(255, 50, 50, 0.2);
}

.btn-add-item {
    background: transparent;
    color: var(--gold);
    border: 1px dashed var(--gold);
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    margin-top: 12px;
    width: 100%;
    transition: 0.2s;
}

.btn-add-item:hover {
    background: rgba(200, 169, 126, 0.1);
}

.btn-add-category {
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-bottom: 12px;
    transition: 0.2s;
}

.btn-add-category:hover {
    opacity: 0.9;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .restaurants-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .rest-detail-grid { grid-template-columns: 1fr; }
    .about-mission-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .split-inner { gap: 32px; }
    .split-content h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--glass-shadow);
        transform: translateY(-120%);
        transition: var(--transition);
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.active { transform: translateY(0); }
    .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--glass-border); }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-search { flex-direction: column; }
    .hiw-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .restaurants-grid { grid-template-columns: 1fr; }
    .rest-hero { height: 350px; }
    .rest-hero-overlay h1 { font-size: 2rem; }
    .get-listed-form { padding: 32px 24px; }
    .page-hero h1 { font-size: 2.2rem; }
    .section { padding: 50px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .cta-banner h2 { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .about-block { padding: 28px; }
    .split-inner, .split-section.reverse .split-inner { grid-template-columns: 1fr; direction: ltr; gap: 24px; }
    .split-content h2 { font-size: 1.6rem; }
    .split-image { order: -1; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-search button { padding: 14px 24px; }
    .stat-number { font-size: 1.8rem; }
    .rest-card-img { height: 180px; }
}
