/* HK Food Guide — Shared Stylesheet (Canonical) */
/* ===== DESIGN TOKENS ===== */
:root {
    --bg: #fefcf7;
    --page: #f5f1e7;
    --text: #1a1a1a;
    --muted: #5e5b52;
    --border: #e6e0d4;
    --accent: #c81e1e;
    --accent-hover: #a11818;
    --accent-ink: white;
    --chip-bg: #f0ece1;
    --rule: #e8e3d5;
    --warm-ink: #2d2a24;
    --price: #8a6b28;
    --shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.08);
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    --warm-bg: #faf6ef;
    --warm-card-bg: #fff;
    --font-display: 'Playfair Display', 'Noto Serif HK', Georgia, serif;
    --font-body: 'Noto Sans HK', 'Inter', system-ui, -apple-system, sans-serif;
    --font-ui: 'Inter', system-ui, -apple-system, sans-serif;
    --font-hand: 'Caveat', 'Brush Script MT', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--page);
    line-height: 1.55;
}

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

/* ===== TEXTURE OVERLAYS ===== */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(1200px 480px at 10% -5%, rgba(200,30,30,0.04), transparent 60%),
                radial-gradient(900px 420px at 90% 0%, rgba(160,140,120,0.05), transparent 55%);
    background-repeat: no-repeat;
}

/* ===== TOPBAR (canonical header) ===== */
.topbar {
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
}
.topbar > div {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
    height: auto;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.topbar-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.topbar-logo small {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.75rem;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.topbar-back {
    font-size: 0.8125rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    min-height: 44px;
    padding: 6px 2px;
}
.topbar-back:hover { color: var(--accent); }
.updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
    min-height: 44px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
}
.hero-img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    display: block;
    filter: saturate(0.92);
}
.hero-caption {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
    line-height: 1.35;
    margin-bottom: 6px;
}
.hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 20px 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.0) 75%);
    color: white;
    pointer-events: none;
}
.hero-overlay h1 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.6vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
    max-width: 1120px;
    margin: 0 auto;
}
.hero-overlay .badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.92);
    color: #1a1a1a;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* ── Full-screen hero (2026-08-02 boss directive) ───────────────────────── */
.hero-full .hero-img,
.hero.hero-tall .hero-img,
.hero-full img {
    max-height: none;
    height: clamp(340px, 52vh, 560px);
    width: 100%;
    object-fit: cover;
}
.hero-full .hero-overlay,
.hero.hero-tall .hero-overlay {
    padding: 40px 20px 30px;
}
.hero-full .hero-overlay h1,
.hero.hero-tall .hero-overlay h1 {
    font-size: clamp(1.6rem, 3.6vw, 2.6rem);
}

/* ── Restaurant heroes: full-bleed overlay, EN+ZH names, text-only bubbles (2026-08-02 boss v2) ── */
.hero-full.hero-restaurant,
.hero.hero-restaurant {
    min-height: clamp(380px, 58vh, 640px);
    position: relative;
}
.hero-full.hero-restaurant .hero-img,
.hero.hero-restaurant .hero-img {
    height: 100%;
    position: absolute;
    inset: 0;
    width: 100%;
    object-fit: cover;
    max-height: none;
}
/* full-coverage bottom→top gradient (boss v6): darkens the WHOLE picture, no transparent gaps */
.hero-full.hero-restaurant .hero-overlay,
.hero.hero-restaurant .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(8,6,4,0.82) 0%, rgba(8,6,4,0.55) 45%, rgba(8,6,4,0.3) 100%);
    pointer-events: none;
    padding: 0;
}
/* guide hubs without a hero <img>: rich dark gradient base so white text always reads */
.hero-full.hero-restaurant:not(:has(img)),
.hero.hero-restaurant:not(:has(img)) {
    background: linear-gradient(135deg, #1c1917 0%, #292524 55%, #44403c 100%);
}
.hero-full.hero-restaurant:not(:has(img)) .hero-overlay,
.hero.hero-restaurant:not(:has(img)) .hero-overlay {
    background: transparent;
}
/* hero inner container: names stacked LEFT, bubbles RIGHT, anchored bottom with breathing room */
.hero-full.hero-restaurant .hero-content,
.hero.hero-restaurant .hero-content {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px 28px;
}
/* left column: stacked names (zh on top, EN below) — clean white, soft shadow only */
.hero-full.hero-restaurant .hero-overlay .hero-names,
.hero.hero-restaurant .hero-overlay .hero-names {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}
.hero-full.hero-restaurant .hero-overlay .zh-name,
.hero.hero-restaurant .hero-overlay .zh-name {
    order: -1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(8,6,4,0.7);
    font-size: clamp(1.9rem, 4.2vw, 3.1rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.hero-full.hero-restaurant .hero-overlay .hero-caption,
.hero.hero-restaurant .hero-overlay .hero-caption {
    display: none; /* boss: remove the EN+ZH caption line */
}
.hero-full.hero-restaurant .hero-overlay h1,
.hero.hero-restaurant .hero-overlay h1 {
    order: 1;
    margin: 0;
    padding: 0;
    color: #fff;
    text-shadow: 0 2px 10px rgba(8,6,4,0.7);
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    display: block;
}
/* right column: bubbles — clean white, soft shadow */
.hero-full.hero-restaurant .hero-overlay .badge-row,
.hero.hero-restaurant .hero-overlay .badge-row {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}
.hero-full.hero-restaurant .hero-overlay .badge,
.hero.hero-restaurant .hero-overlay .badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.45);
    color: #fff;
    text-shadow: 0 1px 4px rgba(8,6,4,0.65);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.hero-full.hero-restaurant .hero-overlay .badge svg,
.hero.hero-restaurant .hero-overlay .badge svg {
    display: none; /* remove logos per boss */
}
.hero-full.hero-restaurant .hero-overlay .badge > span,
.hero.hero-restaurant .hero-overlay .badge > span {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}
@media (max-width: 860px) {
    .hero-full.hero-restaurant,
    .hero.hero-restaurant { min-height: 340px; }
    .hero-full.hero-restaurant .hero-overlay .zh-name,
    .hero.hero-restaurant .hero-overlay .zh-name { font-size: 1.5rem; }
    .hero-full.hero-restaurant .hero-overlay .hero-caption,
    .hero.hero-restaurant .hero-overlay .hero-caption { display: none; }
    .hero-full.hero-restaurant .hero-overlay h1,
    .hero.hero-restaurant .hero-overlay h1 { font-size: 1.05rem; }
    .hero-full.hero-restaurant .hero-overlay .badge,
    .hero.hero-restaurant .hero-overlay .badge { font-size: 0.68rem; padding: 5px 12px; }
}

/* ── Breathing room below hero (2026-08-02 boss) ────────────────────────── */
/* moved to end-of-file SAVORA override block (line 4392 margin: 0 auto would override) */

/* Homepage full-bleed hero: text over image, readable, button clickable */
.hero-home {
    min-height: clamp(360px, 56vh, 620px);
}
.hero-home .hero-img {
    height: 100%;
    position: absolute;
    inset: 0;
}
.hero-home .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(8,6,4,0.82) 0%, rgba(8,6,4,0.55) 45%, rgba(8,6,4,0.3) 100%);
    pointer-events: none;
}
.hero-home .hero-overlay .hero-home-inner {
    pointer-events: auto;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px 48px;
    width: 100%;
}
.hero-home .hero-overlay h1 {
    font-size: clamp(1.8rem, 4.2vw, 3rem);
    color: #fff;
    text-shadow: 0 2px 10px rgba(8,6,4,0.7);
}
.hero-home .hero-overlay .subtitle,
.hero-home .hero-overlay p {
    color: rgba(255,255,255,0.94);
    text-shadow: 0 2px 8px rgba(8,6,4,0.6);
}
.hero-home .superman-btn {
    display: inline-flex;
    margin-bottom: 12px;
}
@media (max-width: 860px) {
    .hero-home { min-height: 340px; }
    .hero-home .hero-overlay h1 { font-size: 1.5rem; }
}

/* ===== INTENT BAR ===== */
.intent-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 14px 20px;
    position: sticky;
    top: 56px;
    z-index: 40;
}
.intent-bar > div {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.intent-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--muted);
}
.intent-meta strong { color: var(--text); font-weight: 600; }

.tel-btn, .intent-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 600;
    border-radius: 10px;
    font-size: 0.9375rem;
    transition: transform 0.08s ease, filter 0.15s ease;
}
.tel-btn:hover, .intent-btn:hover { filter: brightness(1.05); color: white; }
.tel-btn svg, .intent-btn svg { width: 16px; height: 16px; }

/* ===== CATEGORY NAV ===== */
.category-nav {
    position: sticky;
    top: 56px;
    z-index: 40;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 10px 20px 8px;
    backdrop-filter: blur(6px);
}
.category-nav .cat-filters {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.category-nav .cat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.8125rem;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 999px;
    color: var(--muted);
    font-weight: 500;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    cursor: pointer;
}
.cat-chip:hover, .cat-chip.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* ===== VERIFIED CARD CHINESE NAME ===== */
.card-name-zh {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 1px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===== LAYOUT (listing + pillar pages) ===== */
.layout {
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px 20px 56px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 22px;
    align-items: start;
}
@media (max-width: 860px) {
    .layout { grid-template-columns: 1fr; }
    .rail-col { order: -1; }
}
.main-col { display: flex; flex-direction: column; gap: 18px; }
.rail-col { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 112px; }

/* ===== PANELS ===== */
.panel {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.panel-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--rule);
    background: #faf9f6;
}
.panel-head svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.panel-head h2 {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}
.panel-body { padding: 18px 20px 20px; }
.panel-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; word-break: break-word; overflow-wrap: break-word; }
.panel-body p + p { margin-top: 10px; }
.panel-body p strong { color: var(--text); display: inline-block; }
.panel-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}
.panel-body a:hover { color: var(--accent-hover); }

/* ===== GALLERY ===== */
.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }
.gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--rule);
    background: #cfcfc7;
    display: block;
}

/* ===== INFO GRID ===== */
.info-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
@media (min-width: 560px) { .info-row { grid-template-columns: 1fr 1fr; } }
.info-chip {
    padding: 12px 13px;
    background: #faf9f6;
    border: 1px solid var(--rule);
    border-radius: 10px;
    font-size: 0.8125rem;
    color: var(--muted);
}
.info-chip strong {
    display: block;
    font-weight: 600;
    color: var(--text);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

/* ===== RATINGS ===== */
.ratings {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #faf9f6;
    border: 1px solid var(--rule);
    border-radius: 10px;
    font-size: 0.8125rem;
    color: var(--muted);
}
.rating-stars { color: #d97706; font-weight: 700; letter-spacing: 0.02em; }

/* ===== RELATED CARDS ===== */
.related-list { display: flex; flex-direction: column; gap: 10px; }
.related-card {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 12px;
    transition: transform 0.08s ease, border-color 0.15s ease;
}
.related-card:hover { border-color: #cbd1d6; transform: translateY(-1px); }
.related-card img {
    width: 86px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    background: #cfcfc7;
    border: 1px solid var(--rule);
    display: block;
}
.related-card .rc-body { display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.related-card h3 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
}
.related-card .rc-meta { font-size: 0.75rem; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; }
.rc-tag {
    display: inline-block;
    padding: 2px 8px;
    background: var(--chip-bg);
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--muted);
}

/* ===== AFFILIATE CARDS ===== */
.aff-list { display: flex; flex-direction: column; gap: 10px; }
.aff-card {
    display: grid;
    grid-template-columns: 24px 1fr 16px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    background: #faf9f6;
    border: 1px solid var(--rule);
    border-radius: 10px;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.aff-card:hover { border-color: #c7c6bf; background: #f5f4ef; color: var(--text); }
.aff-icon {
    width: 32px; height: 32px;
    display: inline-grid; place-items: center;
    background: var(--chip-bg);
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1;
}
.aff-body { display: flex; flex-direction: column; gap: 2px; }
.aff-body strong { font-size: 0.8125rem; font-weight: 600; color: var(--text); }
.aff-body em { font-size: 0.75rem; color: var(--muted); font-style: normal; }
.aff-arrow { color: var(--muted); }

.disclaimer {
    font-size: 0.6875rem;
    color: var(--muted);
    padding: 10px 2px 0;
    line-height: 1.45;
}

/* ===== TEXT AD SLOT (canonical) ===== */
.ad-slot {
    background: repeating-linear-gradient(45deg,#f4f3ef,#f4f3ef 8px,#ebe9e3 8px,#ebe9e3 16px);
    border: 1px dashed #d5d3cb;
    color: #9a9790;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    padding: 18px 12px;
    border-radius: 12px;
    letter-spacing: 0.02em;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}
.ad-slot a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.ad-slot a:hover { color: var(--accent-hover); }

/* Ad slot — display variant (full-width, before hero) */
.ad-slot--display {
    margin: 0 auto;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 14px 12px;
    font-size: 0.75rem;
}

/* Ad slot — inline variant (sidebar, compact) */
.ad-slot--inline {
    padding: 16px 12px;
    max-width: 100%;
    margin: 0;
}

/* ===== FOOTER (canonical) ===== */
footer {
    border-top: 1px solid var(--rule);
    padding: 22px 20px;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--muted);
    background: var(--bg);
    position: relative;
    z-index: 1;
}
footer a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
footer a:hover { color: var(--accent); }
footer .footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 6px; }
footer .footer-links a { color: var(--muted); }
footer .footer-links a:hover { color: var(--accent); }

/* Footer — detailed variant (used on guide + index pages) */
.footer-detailed {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
    padding: 0 20px;
}
.footer-detailed .footer-brand-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-detailed .footer-brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text);
}
.footer-detailed .footer-tagline {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px;
}
.footer-detailed hr {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 0;
}
.footer-detailed .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
}
.footer-detailed .footer-nav a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.footer-detailed .footer-nav a:hover { color: var(--accent); }
.footer-detailed .footer-madeby {
    font-size: 0.6875rem;
    opacity: 0.5;
    font-style: italic;
}

/* ===== GUIDE PAGES ===== */
.guide-hero {
    position: relative;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
}
.guide-hero img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
    filter: saturate(0.92);
}
.guide-hero .guide-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 48px 20px 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.0) 72%);
    color: white;
    pointer-events: none;
}
.guide-hero .guide-overlay h1 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
    max-width: 900px;
    margin: 0 auto;
}
.guide-hero .guide-overlay .guide-meta {
    max-width: 900px;
    margin: 8px auto 0;
    font-size: 0.875rem;
    opacity: 0.85;
}
.guide-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px 56px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}
@media (max-width: 780px) { .guide-layout { grid-template-columns: 1fr; } }
.guide-content { font-size: 0.9375rem; line-height: 1.8; color: var(--text); }
.guide-content p { margin-bottom: 1em; }
.guide-content h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    letter-spacing: -0.01em;
}
.guide-content h2:first-of-type { margin-top: 0; }
.guide-content ul { margin: 0.8em 0; padding-left: 1.2em; }
.guide-content ul li { margin-bottom: 0.4em; }
.guide-content ul li a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}
.guide-content ul li a:hover { color: var(--accent-hover); }
.guide-sidebar { display: flex; flex-direction: column; gap: 16px; }
.guide-sidebar .panel {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.guide-sidebar .panel-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--rule);
    background: #faf9f6;
}
.guide-sidebar .panel-head h3 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
}
.guide-sidebar .panel-body { padding: 14px 18px 18px; }
@media (max-width: 780px) { .guide-sidebar { order: -1; } }

/* ===== STATIC PAGES (about, privacy, terms) ===== */
.static-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 20px 56px;
}
.static-card {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 22px 22px 26px;
    margin-top: 18px;
    box-shadow: var(--shadow);
}
.static-card h1 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--text);
}
.static-card p {
    color: var(--muted);
    font-size: 0.9375rem;
    margin-top: 10px;
    line-height: 1.7;
}
.static-card ul {
    color: var(--muted);
    padding-left: 18px;
    margin-top: 10px;
    font-size: 0.9375rem;
}
.static-card li + li { margin-top: 6px; }

/* ===== SITEMAP ===== */
.sitemap-hero {
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 24px 20px;
}
.sitemap-hero > div {
    max-width: 960px;
    margin: 0 auto;
}
.sitemap-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 6px;
}
.sitemap-hero p { font-size: 0.9375rem; color: var(--muted); }
.sitemap-hero .stats { margin-top: 12px; display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.8125rem; color: var(--muted); }
.sitemap-hero .stats strong { color: var(--text); }

.sitemap-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 20px 60px;
}
.sitemap-section { margin-bottom: 28px; }
.sitemap-section h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    gap: 8px;
}
.sitemap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
@media (min-width: 600px) { .sitemap-grid { grid-template-columns: 1fr 1fr; } }
.sitemap-grid a {
    display: block;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: background 0.15s;
}
.sitemap-grid a:hover { background: var(--chip-bg); color: var(--accent); }
.sitemap-grid .site-sm { font-size: 0.75rem; color: var(--muted); }

/* ===== LOCAL TIPS ===== */
.local-tips {
    background: var(--warm-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin: 4px 0;
}
.local-tips .tips-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.local-tips .tips-title {
    font-family: var(--font-hand);
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
}
.local-tips .tips-zh {
    font-size: 0.75rem;
    color: var(--muted);
    background: var(--chip-bg);
    padding: 2px 8px;
    border-radius: 999px;
}
.local-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.local-tips li {
    display: flex;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text);
}
.local-tips li .tip-icon {
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

/* ===== SPONSOR PANEL ===== */
.sponsor-panel {
    border: 2px solid #d97706;
    background: linear-gradient(135deg, #fffbeb, #fff);
}
.sponsor-panel .panel-head {
    background: #fef3c7;
    border-bottom: 2px solid #d97706;
}
.sponsor-panel .panel-head h2 { color: #92400e; }
.sponsor-panel .panel-head svg { color: #d97706; }

/* ===== GOOD-FOR TAGS ===== */
.good-for-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 20px 14px;
}
.good-for-tag {
    font-family: var(--font-hand);
    font-size: 0.8rem;
    background: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    color: #4338ca;
    font-weight: 600;
    border: 1px solid #c7c2f8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 10px 20px;
    font-size: 0.75rem;
    color: var(--muted);
}
.breadcrumb-nav .breadcrumb-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.breadcrumb-nav a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav .breadcrumb-sep { opacity: 0.4; }
.breadcrumb-nav .breadcrumb-current { color: var(--text); font-weight: 500; }

/* ===== SCROLL-TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--muted);
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.15s, color 0.15s;
}
.scroll-top-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }

/* ===== CARDS (index page style) ===== */
.card-img-placeholder {
    width: 96px; height: 72px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    letter-spacing: 0.03em;
    border: 1px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
}
.card-img {
    width: 96px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--chip-bg);
    border: 1px solid var(--rule);
    display: block;
    flex-shrink: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero, .local-tips, .panel, .gallery {
    animation: fadeSlideUp 0.5s ease both;
}
.hero { animation-delay: 0s; }
.panel:nth-of-type(1) { animation-delay: 0.1s; }
.panel:nth-of-type(2) { animation-delay: 0.2s; }
.panel:nth-of-type(3) { animation-delay: 0.3s; }
.local-tips { animation-delay: 0.15s; }

/* ===== MOBILE ===== */
@media (max-width: 640px) {
    .intent-bar, .category-nav {
        position: static;
        top: auto;
    }
    .category-nav {
        top: auto;
    }
}
@media (max-width: 480px) {
    html { font-size: 16px; }
    .layout {
        grid-template-columns: 1fr;
        padding: 16px 14px 48px;
        gap: 16px;
    }
    .rail-col { position: static; top: auto; }
    .hero-overlay h1 { font-size: 1.25rem; }
    .hero-overlay .badge-row { gap: 6px; }
    .badge { font-size: 0.7rem; padding: 5px 10px; gap: 4px; }
    .badge svg { width: 12px; height: 12px; }
    .panel { border-radius: 10px; }
    .panel-head { padding: 12px 14px; }
    .panel-head h2 { font-size: 0.9rem; }
    .panel-body { padding: 14px 14px 16px; }
    .panel-body p { font-size: 1rem; line-height: 1.75; }
    .info-row { grid-template-columns: 1fr; gap: 8px; }
    .info-chip { padding: 12px 13px; font-size: 0.9375rem; }
    .info-chip strong { font-size: 0.7rem; }
    .gallery { grid-template-columns: 1fr; }
    .gallery img { height: 180px; border-radius: 8px; aspect-ratio: 4/3; }
    .related-card { grid-template-columns: 72px 1fr; gap: 10px; padding: 10px; border-radius: 10px; }
    .related-card img { width: 72px; height: 54px; border-radius: 6px; aspect-ratio: 4/3; }
    .related-card h3 { font-size: 0.85rem; }
    .related-card .rc-meta { font-size: 0.75rem; }
    .aff-card { padding: 10px; border-radius: 8px; }
    .aff-icon { width: 30px; height: 30px; font-size: 1rem; }
    .aff-body strong { font-size: 0.8125rem; }
    .aff-body em { font-size: 0.75rem; }
    .ad-slot { padding: 14px 10px; border-radius: 10px; font-size: 0.75rem; }
    footer { padding: 18px 14px; font-size: 0.8125rem; }
    .intent-bar { padding: 12px 14px; }
    .intent-meta { font-size: 0.8125rem; gap: 10px; }
    .tel-btn, .intent-btn { padding: 10px 16px; font-size: 0.9375rem; border-radius: 10px; }
    .tel-btn svg, .intent-btn svg { width: 16px; height: 16px; }
    .category-nav { padding: 10px 14px 8px; }
    .cat-chip {
        font-size: 0.9375rem;
        padding: 8px 16px;
        min-height: 44px;
        line-height: 1.2;
    }
    .cat-label { font-size: 0.8125rem; }
    .guide-layout { padding: 20px 14px 48px; gap: 18px; }
    .guide-hero img { max-height: 220px; aspect-ratio: 16/9; }
    .guide-content { font-size: 1rem; line-height: 1.8; }
    .static-wrap { padding: 20px 14px 48px; }
    .static-card { padding: 18px 16px 22px; }
    .sitemap-content { padding: 16px 14px 48px; }
    .sitemap-grid { gap: 6px; }
    .sitemap-grid a { padding: 10px 12px; font-size: 0.9375rem; min-height: 44px; display: flex; align-items: center; }
    .v-card-img { aspect-ratio: 4/3; height: 180px; }
    .hero-img { aspect-ratio: 16/9; }
}

/* Fix FAQ/local-tips text wrapping */
.local-tips ul li { max-width: 100%; }
.local-tips ul li span:last-child { flex: 1 1 auto; word-break: break-word; overflow-wrap: break-word; }

/* === SAVORA GRID FIX (FORCE) === */
.verified-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 20px !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding: 24px 20px 0 !important;
}
.hub-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 16px !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding: 16px 20px 0 !important;
}

/* 2026-08-01 boss directive: cards MUST be vertical (image top, text bottom).
   Defensive rules — apply regardless of DOM nesting so a stale/legacy DOM
   still renders image-on-top, text-below instead of horizontal drift. */
.verified-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 16px !important;
}
.verified-grid > a.v-card,
.verified-grid > div.v-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
}
.verified-grid .v-card-img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    display: block !important;
    order: 0 !important;
}
.verified-grid .v-card-img-link {
    display: block !important;
    order: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px 12px 0 0 !important;
}
/* OpenRice-style gradient overlay with district badge */
.v-card-img-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 10px 10px;
    background: linear-gradient(transparent 20%, rgba(20,16,12,0.65) 100%);
    pointer-events: none;
    z-index: 1;
}
.v-card-district-badge {
    display: inline-block;
    background: rgba(255,255,255,0.92);
    color: var(--warm-ink, #2d2a24);
    font-size: 0.68rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
    padding: 3px 9px;
    border-radius: 6px;
}
.verified-grid .v-card-body {
    display: flex !important;
    flex-direction: column !important;
    order: 1 !important;
}

/* inline-merged from index.html */

        /* Keep original design tokens but add warm editorial overrides */
        

        /* Updated badge from original topbar */
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.6875rem;
            color: var(--muted, #5e5b52);
        }
        .updated-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--verified-green, #2E7D32);
            display: inline-block;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
            border-bottom: 1px solid #D4C9B8;
            padding: 48px 20px 40px;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        .superman-btn {
            position: absolute;
            top: 16px;
            right: 20px;
            z-index: 5;
            font-family: 'Caveat', cursive;
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(93, 64, 55, 0.4);
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(93, 64, 55, 0.1);
            border-radius: 999px;
            padding: 4px 16px 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: -0.01em;
            backdrop-filter: blur(2px);
        }
        .superman-btn:hover {
            color: rgba(184, 134, 11, 0.9);
            border-color: rgba(184, 134, 11, 0.3);
            background: rgba(255,255,255,0.15);
        }
        .superman-btn::before {
            content: '🗺️ ';
            font-size: 0.7rem;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(196,168,130,0.12), transparent 70%);
            pointer-events: none;
        }
        .hero > div {
            max-width: 1120px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.12;
            color: #3D3028;
        }
        .hero .subtitle {
            font-size: 1.05rem;
            color: #5E5548;
            max-width: 660px;
            line-height: 1.55;
            margin-top: 8px;
            font-family: var(--font-display);
            font-style: italic;
        }
        .hero p {
            font-size: 0.9375rem;
            color: #6B6255;
            max-width: 600px;
            margin-top: 6px;
        }
        .hero-actions {
            display: flex;
            gap: 12px;
            margin-top: 22px;
            flex-wrap: wrap;
            align-items: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9375rem;
            border: 1px solid #D4C9B8;
            background: #FFFDF9;
            color: #3D3028;
            transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease;
            cursor: pointer;
            text-decoration: none;
        }
        .btn:hover { border-color: #8B7355; background: #F5F0EB; color: #3D3028; }
        .btn-primary {
            background: #8B7355;
            color: #FFFDF9;
            border-color: #8B7355;
        }
        .btn-primary:hover { background: #6D5A40; border-color: #6D5A40; color: white; }

        /* Verified badge */
        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--verified-green);
            background: var(--verified-green-bg);
            padding: 3px 10px;
            border-radius: 999px;
            white-space: nowrap;
            line-height: 1.3;
        }
        .verified-badge svg {
            width: 13px;
            height: 13px;
            flex-shrink: 0;
        }

        /* Section headers */
        .section-head {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-head h2 {
            font-family: var(--font-display);
            font-size: clamp(1.3rem, 2.5vw, 1.7rem);
            font-weight: 700;
            letter-spacing: -0.01em;
            color: #3D3028;
        }
        .section-head p {
            font-size: 0.9375rem;
            color: #6B6255;
            margin-top: 4px;
        }

        /* Verified restaurants grid - FIXED FOR INDEX */
        .verified-section {
            max-width: 1120px;
            margin: 0 auto;
            padding: 32px 20px 12px;
            position: relative;
            z-index: 1;
            display: block !important;
        }
        .verified-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
            gap: 16px !important;
            margin-top: 16px !important;
            width: 100% !important;
        }

        .v-card {
            display: flex;
            flex-direction: column;
            background: var(--warm-card-bg);
            border: 1px solid #E0D6C6;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, border-color 0.15s ease;
        }
        .v-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            border-color: #C4A882;
        }
        .v-card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
            background: #E0D6C6;
        }
        .v-card-body {
            padding: 14px 16px 16px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 1;
        }
        .v-card h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.2;
            color: #3D3028;
        }
        .v-card-meta {
            font-size: 0.8125rem;
            color: #6B6255;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }
        .v-card .tag {
            display: inline-block;
            padding: 3px 10px;
            background: #E8E0D4;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #5E5548;
        }
        .v-card .arrow-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 8px;
        }
        .v-card .arrow-row .arrow-link {
            font-size: 0.8125rem;
            font-weight: 600;
            color: #8B7355;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.15s ease;
        }
        .v-card:hover .arrow-row .arrow-link { gap: 8px; }

        /* Hub pages grid */
        .hub-section {
            max-width: 1120px;
            margin: 0 auto;
            padding: 36px 20px 12px;
            position: relative;
            z-index: 1;
        }
        .hub-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 12px;
            margin-top: 16px;
        }

        .hub-card {
            display: flex;
            flex-direction: column;
            padding: 16px;
            background: var(--warm-card-bg);
            border: 1px solid #E0D6C6;
            border-radius: 12px;
            transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, border-color 0.15s ease;
            min-height: 120px;
        }
        .hub-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
            border-color: #C4A882;
        }
        .hub-card .hub-icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
            line-height: 1;
        }
        .hub-card h3 {
            font-family: var(--font-display);
            font-size: 0.9375rem;
            font-weight: 700;
            color: #3D3028;
            line-height: 1.25;
        }
        .hub-card p {
            font-size: 0.8125rem;
            color: #6B6255;
            margin-top: 4px;
            line-height: 1.45;
            flex: 1;
        }
        .hub-card .hub-arrow {
            color: #8B7355;
            margin-top: 8px;
            font-size: 0.8125rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.15s ease;
        }
        .hub-card:hover .hub-arrow { gap: 8px; }

        /* Squiggle divider */
        .squiggle-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 0;
            position: relative;
            z-index: 1;
        }
        .squiggle-divider svg {
            width: 100%;
            max-width: 280px;
            height: auto;
        }

        /* Animation */
        .hero, .verified-section, .hub-section {
            animation: fadeSlideUp 0.5s ease both;
        }
        .hero { animation-delay: 0s; }
        .verified-section { animation-delay: 0.1s; }
        .hub-section { animation-delay: 0.2s; }

        /* Mobile tweaks */
        @media (max-width: 480px) {
            .hero { padding: 32px 16px 28px; }
            .v-card-img { height: 140px; }
            .v-card-body { padding: 12px 14px 14px; }
            .hub-card { padding: 14px; min-height: auto; }
            .hub-card .hub-icon { font-size: 1.2rem; }
        }
    

/* inline-merged from best-beef-brisket-noodles-hong-kong.html */

22|        
32|        .topbar {
33|            max-width: 1120px;
34|            margin: 0 auto;
35|            padding: 16px 20px;
36|            display: flex;
37|            align-items: center;
38|            justify-content: space-between;
39|            gap: 12px;
40|            flex-wrap: wrap;
41|        }
42|        .brand {
43|            display: flex;
44|            align-items: baseline;
45|            gap: 10px;
46|            flex-wrap: wrap;
47|        }
48|        .brand-en {
49|            font-family: var(--font-display, 'Playfair Display', serif);
50|            font-size: 1.2rem;
51|            font-weight: 700;
52|            color: var(--text);
53|            letter-spacing: -0.01em;
54|        }
55|        .brand-zh {
56|            font-size: 0.85rem;
57|            color: var(--muted);
58|            font-weight: 500;
59|        }
60|        .brand small {
61|            font-size: 0.75rem;
62|            color: var(--warm-brown, #8B7355);
63|            font-weight: 600;
64|            text-transform: uppercase;
65|            letter-spacing: 0.08em;
66|        }
67|        .topbar-back {
68|            font-size: 0.8125rem;
69|            font-weight: 600;
70|            color: var(--warm-brown, #8B7355);
71|            text-decoration: none;
72|            display: inline-flex;
73|            align-items: center;
74|            gap: 6px;
75|            transition: gap 0.15s ease;
76|        }
77|        .topbar-back:hover { gap: 10px; }
78|        .ad-slot {
79|            max-width: 1120px;
80|            margin: 0 auto 18px;
81|            padding: 0 20px;
82|        }
83|        .ad-slot--display {
84|            background: linear-gradient(135deg, #8B7355 0%, #6D5A40 100%);
85|            color: #FFFDF9;
86|            border-radius: 10px;
87|            padding: 14px 18px;
88|            font-size: 0.875rem;
89|            text-align: center;
90|        }
91|        .ad-slot a { color: #F5F0EB; text-decoration: underline; font-weight: 600; }
92|        .hero {
93|            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
94|            border-bottom: 1px solid #D4C9B8;
95|            padding: 44px 20px 38px;
96|        }
97|        .hero-overlay {
98|            max-width: 1120px;
99|            margin: 0 auto;
100|            text-align: center;
101|            position: relative;
102|            z-index: 1;
103|        }
104|        .hero-overlay h1 {
105|            font-family: var(--font-display, 'Playfair Display', serif);
106|            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
107|            font-weight: 700;
108|            letter-spacing: -0.02em;
109|            line-height: 1.15;
110|            color: var(--text);
111|            margin-top: 8px;
112|        }
113|        .hero-overlay p {
114|            font-family: var(--font-serif, 'Playfair Display', serif);
115|            font-style: italic;
116|            font-size: 1.05rem;
117|            color: var(--muted);
118|            max-width: 600px;
119|            margin: 10px auto 0;
120|            line-height: 1.55;
121|        }
122|        .intent-bar {
123|            max-width: 800px;
124|            margin: 0 auto;
125|            padding: 14px 20px 0;
126|        }
127|        .intent-meta {
128|            display: flex;
129|            gap: 12px;
130|            align-items: center;
131|            flex-wrap: wrap;
132|            font-size: 0.875rem;
133|            color: var(--muted);
134|        }
135|        .intent-meta strong {
136|            color: var(--text);
137|            font-weight: 600;
138|        }
139|        .main {
140|            max-width: 800px;
141|            margin: 0 auto;
142|            padding: 32px 20px 60px;
143|        }
144|        .main h2 {
145|            font-family: var(--font-display, 'Playfair Display', serif);
146|            font-size: 1.5rem;
147|            font-weight: 700;
148|            color: var(--text);
149|            margin: 32px 0 12px;
150|            line-height: 1.2;
151|        }
152|        .main h2:first-of-type {
153|            margin-top: 0;
154|        }
155|        .main h3 {
156|            font-family: var(--font-display, 'Playfair Display', serif);
157|            font-size: 1.15rem;
158|            font-weight: 600;
159|            color: var(--text);
160|            margin: 24px 0 8px;
161|        }
162|        .main p {
163|            font-size: 1rem;
164|            line-height: 1.75;
165|            color: var(--text);
166|            margin-bottom: 16px;
167|        }
168|        .main img {
169|            width: 100%;
170|            max-height: 350px;
171|            object-fit: cover;
172|            border-radius: 12px;
173|            margin: 20px 0;
174|        }
175|        .main ul {
176|            list-style: none;
177|            padding: 0;
178|            margin: 16px 0 24px;
179|        }
180|        .main ul li {
181|            padding: 10px 14px;
182|            margin-bottom: 8px;
183|            background: var(--warm-card-bg);
184|            border: 1px solid var(--border);
185|            border-radius: 10px;
186|            font-size: 0.95rem;
187|            line-height: 1.6;
188|        }
189|        .main ul li strong {
190|            color: var(--warm-brown);
191|        }
192|        .main a {
193|            color: var(--warm-accent);
194|            text-decoration: underline;
195|            text-underline-offset: 2px;
196|            font-weight: 500;
197|        }
198|        .main a:hover {
199|            color: #8B6914;
200|        }
201|        .sponsor-box {
202|            border: 2px solid #d97706;
203|            background: linear-gradient(135deg, #fffbeb, #fff);
204|            border-radius: 12px;
205|            padding: 20px;
206|            margin: 32px 0;
207|            text-align: center;
208|        }
209|        .sponsor-box h3 {
210|            font-family: var(--font-display, 'Playfair Display', serif);
211|            font-size: 1.1rem;
212|            color: #92400e;
213|            margin: 0 0 8px;
214|        }
215|        .sponsor-box p {
216|            font-size: 0.875rem;
217|            color: var(--muted);
218|            margin: 0 0 12px;
219|        }
220|        .sponsor-box .btn {
221|            display: inline-block;
222|            padding: 10px 24px;
223|            background: #d97706;
224|            color: white;
225|            border-radius: 8px;
226|            font-weight: 600;
227|            font-size: 0.875rem;
228|            text-decoration: none;
229|        }
230|        .sponsor-box .btn:hover {
231|            background: #b85e04;
232|        }
233|        .footer-links a { color: var(--warm-brown); }
234|        .footer-links a:hover { color: var(--warm-accent); }
235|    

/* inline-merged from best-claypot-rice-hong-kong.html */

22|        
32|        .topbar {
33|            max-width: 1120px;
34|            margin: 0 auto;
35|            padding: 16px 20px;
36|            display: flex;
37|            align-items: center;
38|            justify-content: space-between;
39|            gap: 12px;
40|            flex-wrap: wrap;
41|        }
42|        .brand {
43|            display: flex;
44|            align-items: baseline;
45|            gap: 10px;
46|            flex-wrap: wrap;
47|        }
48|        .brand-en {
49|            font-family: var(--font-display, 'Playfair Display', serif);
50|            font-size: 1.2rem;
51|            font-weight: 700;
52|            color: var(--text);
53|            letter-spacing: -0.01em;
54|        }
55|        .brand-zh {
56|            font-size: 0.85rem;
57|            color: var(--muted);
58|            font-weight: 500;
59|        }
60|        .brand small {
61|            font-size: 0.75rem;
62|            color: var(--warm-brown, #8B7355);
63|            font-weight: 600;
64|            text-transform: uppercase;
65|            letter-spacing: 0.08em;
66|        }
67|        .topbar-back {
68|            font-size: 0.8125rem;
69|            font-weight: 600;
70|            color: var(--warm-brown, #8B7355);
71|            text-decoration: none;
72|            display: inline-flex;
73|            align-items: center;
74|            gap: 6px;
75|            transition: gap 0.15s ease;
76|        }
77|        .topbar-back:hover { gap: 10px; }
78|        .ad-slot {
79|            max-width: 1120px;
80|            margin: 0 auto 18px;
81|            padding: 0 20px;
82|        }
83|        .ad-slot--display {
84|            background: linear-gradient(135deg, #8B7355 0%, #6D5A40 100%);
85|            color: #FFFDF9;
86|            border-radius: 10px;
87|            padding: 14px 18px;
88|            font-size: 0.875rem;
89|            text-align: center;
90|        }
91|        .ad-slot a { color: #F5F0EB; text-decoration: underline; font-weight: 600; }
92|        .hero {
93|            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
94|            border-bottom: 1px solid #D4C9B8;
95|            padding: 44px 20px 38px;
96|        }
97|        .hero-overlay {
98|            max-width: 1120px;
99|            margin: 0 auto;
100|            text-align: center;
101|            position: relative;
102|            z-index: 1;
103|        }
104|        .hero-overlay h1 {
105|            font-family: var(--font-display, 'Playfair Display', serif);
106|            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
107|            font-weight: 700;
108|            letter-spacing: -0.02em;
109|            line-height: 1.15;
110|            color: var(--text);
111|            margin-top: 8px;
112|        }
113|        .hero-overlay p {
114|            font-family: var(--font-serif, 'Playfair Display', serif);
115|            font-style: italic;
116|            font-size: 1.05rem;
117|            color: var(--muted);
118|            max-width: 600px;
119|            margin: 10px auto 0;
120|            line-height: 1.55;
121|        }
122|        .intent-bar {
123|            max-width: 800px;
124|            margin: 0 auto;
125|            padding: 14px 20px 0;
126|        }
127|        .intent-meta {
128|            display: flex;
129|            gap: 12px;
130|            align-items: center;
131|            flex-wrap: wrap;
132|            font-size: 0.875rem;
133|            color: var(--muted);
134|        }
135|        .intent-meta strong {
136|            color: var(--text);
137|            font-weight: 600;
138|        }
139|        .main {
140|            max-width: 800px;
141|            margin: 0 auto;
142|            padding: 32px 20px 60px;
143|        }
144|        .main h2 {
145|            font-family: var(--font-display, 'Playfair Display', serif);
146|            font-size: 1.5rem;
147|            font-weight: 700;
148|            color: var(--text);
149|            margin: 32px 0 12px;
150|            line-height: 1.2;
151|        }
152|        .main h2:first-of-type {
153|            margin-top: 0;
154|        }
155|        .main h3 {
156|            font-family: var(--font-display, 'Playfair Display', serif);
157|            font-size: 1.15rem;
158|            font-weight: 600;
159|            color: var(--text);
160|            margin: 24px 0 8px;
161|        }
162|        .main p {
163|            font-size: 1rem;
164|            line-height: 1.75;
165|            color: var(--text);
166|            margin-bottom: 16px;
167|        }
168|        .main img {
169|            width: 100%;
170|            max-height: 350px;
171|            object-fit: cover;
172|            border-radius: 12px;
173|            margin: 20px 0;
174|        }
175|        .main ul {
176|            list-style: none;
177|            padding: 0;
178|            margin: 16px 0 24px;
179|        }
180|        .main ul li {
181|            padding: 10px 14px;
182|            margin-bottom: 8px;
183|            background: var(--warm-card-bg);
184|            border: 1px solid var(--border);
185|            border-radius: 10px;
186|            font-size: 0.95rem;
187|            line-height: 1.6;
188|        }
189|        .main ul li strong {
190|            color: var(--warm-brown);
191|        }
192|        .main a {
193|            color: var(--warm-accent);
194|            text-decoration: underline;
195|            text-underline-offset: 2px;
196|            font-weight: 500;
197|        }
198|        .main a:hover {
199|            color: #8B6914;
200|        }
201|        .sponsor-box {
202|            border: 2px solid #d97706;
203|            background: linear-gradient(135deg, #fffbeb, #fff);
204|            border-radius: 12px;
205|            padding: 20px;
206|            margin: 32px 0;
207|            text-align: center;
208|        }
209|        .sponsor-box h3 {
210|            font-family: var(--font-display, 'Playfair Display', serif);
211|            font-size: 1.1rem;
212|            color: #92400e;
213|            margin: 0 0 8px;
214|        }
215|        .sponsor-box p {
216|            font-size: 0.875rem;
217|            color: var(--muted);
218|            margin: 0 0 12px;
219|        }
220|        .sponsor-box .btn {
221|            display: inline-block;
222|            padding: 10px 24px;
223|            background: #d97706;
224|            color: white;
225|            border-radius: 8px;
226|            font-weight: 600;
227|            font-size: 0.875rem;
228|            text-decoration: none;
229|        }
230|        .sponsor-box .btn:hover {
231|            background: #b85e04;
232|        }
233|        .footer-links a { color: var(--warm-brown); }
234|        .footer-links a:hover { color: var(--warm-accent); }
235|    

/* inline-merged from best-curry-fish-balls-hong-kong.html */

22|        
32|        .topbar {
33|            max-width: 1120px;
34|            margin: 0 auto;
35|            padding: 16px 20px;
36|            display: flex;
37|            align-items: center;
38|            justify-content: space-between;
39|            gap: 12px;
40|            flex-wrap: wrap;
41|        }
42|        .brand {
43|            display: flex;
44|            align-items: baseline;
45|            gap: 10px;
46|            flex-wrap: wrap;
47|        }
48|        .brand-en {
49|            font-family: var(--font-display, 'Playfair Display', serif);
50|            font-size: 1.2rem;
51|            font-weight: 700;
52|            color: var(--text);
53|            letter-spacing: -0.01em;
54|        }
55|        .brand-zh {
56|            font-size: 0.85rem;
57|            color: var(--muted);
58|            font-weight: 500;
59|        }
60|        .brand small {
61|            font-size: 0.75rem;
62|            color: var(--warm-brown, #8B7355);
63|            font-weight: 600;
64|            text-transform: uppercase;
65|            letter-spacing: 0.08em;
66|        }
67|        .topbar-back {
68|            font-size: 0.8125rem;
69|            font-weight: 600;
70|            color: var(--warm-brown, #8B7355);
71|            text-decoration: none;
72|            display: inline-flex;
73|            align-items: center;
74|            gap: 6px;
75|            transition: gap 0.15s ease;
76|        }
77|        .topbar-back:hover { gap: 10px; }
78|        .ad-slot {
79|            max-width: 1120px;
80|            margin: 0 auto 18px;
81|            padding: 0 20px;
82|        }
83|        .ad-slot--display {
84|            background: linear-gradient(135deg, #8B7355 0%, #6D5A40 100%);
85|            color: #FFFDF9;
86|            border-radius: 10px;
87|            padding: 14px 18px;
88|            font-size: 0.875rem;
89|            text-align: center;
90|        }
91|        .ad-slot a { color: #F5F0EB; text-decoration: underline; font-weight: 600; }
92|        .hero {
93|            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
94|            border-bottom: 1px solid #D4C9B8;
95|            padding: 44px 20px 38px;
96|        }
97|        .hero-overlay {
98|            max-width: 1120px;
99|            margin: 0 auto;
100|            text-align: center;
101|            position: relative;
102|            z-index: 1;
103|        }
104|        .hero-overlay h1 {
105|            font-family: var(--font-display, 'Playfair Display', serif);
106|            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
107|            font-weight: 700;
108|            letter-spacing: -0.02em;
109|            line-height: 1.15;
110|            color: var(--text);
111|            margin-top: 8px;
112|        }
113|        .hero-overlay p {
114|            font-family: var(--font-serif, 'Playfair Display', serif);
115|            font-style: italic;
116|            font-size: 1.05rem;
117|            color: var(--muted);
118|            max-width: 600px;
119|            margin: 10px auto 0;
120|            line-height: 1.55;
121|        }
122|        .intent-bar {
123|            max-width: 800px;
124|            margin: 0 auto;
125|            padding: 14px 20px 0;
126|        }
127|        .intent-meta {
128|            display: flex;
129|            gap: 12px;
130|            align-items: center;
131|            flex-wrap: wrap;
132|            font-size: 0.875rem;
133|            color: var(--muted);
134|        }
135|        .intent-meta strong {
136|            color: var(--text);
137|            font-weight: 600;
138|        }
139|        .main {
140|            max-width: 800px;
141|            margin: 0 auto;
142|            padding: 32px 20px 60px;
143|        }
144|        .main h2 {
145|            font-family: var(--font-display, 'Playfair Display', serif);
146|            font-size: 1.5rem;
147|            font-weight: 700;
148|            color: var(--text);
149|            margin: 32px 0 12px;
150|            line-height: 1.2;
151|        }
152|        .main h2:first-of-type {
153|            margin-top: 0;
154|        }
155|        .main h3 {
156|            font-family: var(--font-display, 'Playfair Display', serif);
157|            font-size: 1.15rem;
158|            font-weight: 600;
159|            color: var(--text);
160|            margin: 24px 0 8px;
161|        }
162|        .main p {
163|            font-size: 1rem;
164|            line-height: 1.75;
165|            color: var(--text);
166|            margin-bottom: 16px;
167|        }
168|        .main img {
169|            width: 100%;
170|            max-height: 350px;
171|            object-fit: cover;
172|            border-radius: 12px;
173|            margin: 20px 0;
174|        }
175|        .main ul {
176|            list-style: none;
177|            padding: 0;
178|            margin: 16px 0 24px;
179|        }
180|        .main ul li {
181|            padding: 10px 14px;
182|            margin-bottom: 8px;
183|            background: var(--warm-card-bg);
184|            border: 1px solid var(--border);
185|            border-radius: 10px;
186|            font-size: 0.95rem;
187|            line-height: 1.6;
188|        }
189|        .main ul li strong {
190|            color: var(--warm-brown);
191|        }
192|        .main a {
193|            color: var(--warm-accent);
194|            text-decoration: underline;
195|            text-underline-offset: 2px;
196|            font-weight: 500;
197|        }
198|        .main a:hover {
199|            color: #8B6914;
200|        }
201|        .sponsor-box {
202|            border: 2px solid #d97706;
203|            background: linear-gradient(135deg, #fffbeb, #fff);
204|            border-radius: 12px;
205|            padding: 20px;
206|            margin: 32px 0;
207|            text-align: center;
208|        }
209|        .sponsor-box h3 {
210|            font-family: var(--font-display, 'Playfair Display', serif);
211|            font-size: 1.1rem;
212|            color: #92400e;
213|            margin: 0 0 8px;
214|        }
215|        .sponsor-box p {
216|            font-size: 0.875rem;
217|            color: var(--muted);
218|            margin: 0 0 12px;
219|        }
220|        .sponsor-box .btn {
221|            display: inline-block;
222|            padding: 10px 24px;
223|            background: #d97706;
224|            color: white;
225|            border-radius: 8px;
226|            font-weight: 600;
227|            font-size: 0.875rem;
228|            text-decoration: none;
229|        }
230|        .sponsor-box .btn:hover {
231|            background: #b85e04;
232|        }
233|        .footer-links a { color: var(--warm-brown); }
234|        .footer-links a:hover { color: var(--warm-accent); }
235|    

/* inline-merged from best-dim-sum-hong-kong.html */

22|        
32|        .topbar {
33|            max-width: 1120px;
34|            margin: 0 auto;
35|            padding: 16px 20px;
36|            display: flex;
37|            align-items: center;
38|            justify-content: space-between;
39|            gap: 12px;
40|            flex-wrap: wrap;
41|        }
42|        .brand {
43|            display: flex;
44|            align-items: baseline;
45|            gap: 10px;
46|            flex-wrap: wrap;
47|        }
48|        .brand-en {
49|            font-family: var(--font-display, 'Playfair Display', serif);
50|            font-size: 1.2rem;
51|            font-weight: 700;
52|            color: var(--text);
53|            letter-spacing: -0.01em;
54|        }
55|        .brand-zh {
56|            font-size: 0.85rem;
57|            color: var(--muted);
58|            font-weight: 500;
59|        }
60|        .brand small {
61|            font-size: 0.75rem;
62|            color: var(--warm-brown, #8B7355);
63|            font-weight: 600;
64|            text-transform: uppercase;
65|            letter-spacing: 0.08em;
66|        }
67|        .topbar-back {
68|            font-size: 0.8125rem;
69|            font-weight: 600;
70|            color: var(--warm-brown, #8B7355);
71|            text-decoration: none;
72|            display: inline-flex;
73|            align-items: center;
74|            gap: 6px;
75|            transition: gap 0.15s ease;
76|        }
77|        .topbar-back:hover { gap: 10px; }
78|        .ad-slot {
79|            max-width: 1120px;
80|            margin: 0 auto 18px;
81|            padding: 0 20px;
82|        }
83|        .ad-slot--display {
84|            background: linear-gradient(135deg, #8B7355 0%, #6D5A40 100%);
85|            color: #FFFDF9;
86|            border-radius: 10px;
87|            padding: 14px 18px;
88|            font-size: 0.875rem;
89|            text-align: center;
90|        }
91|        .ad-slot a { color: #F5F0EB; text-decoration: underline; font-weight: 600; }
92|        .hero {
93|            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
94|            border-bottom: 1px solid #D4C9B8;
95|            padding: 44px 20px 38px;
96|        }
97|        .hero-overlay {
98|            max-width: 1120px;
99|            margin: 0 auto;
100|            text-align: center;
101|            position: relative;
102|            z-index: 1;
103|        }
104|        .hero-overlay h1 {
105|            font-family: var(--font-display, 'Playfair Display', serif);
106|            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
107|            font-weight: 700;
108|            letter-spacing: -0.02em;
109|            line-height: 1.15;
110|            color: var(--text);
111|            margin-top: 8px;
112|        }
113|        .hero-overlay p {
114|            font-family: var(--font-serif, 'Playfair Display', serif);
115|            font-style: italic;
116|            font-size: 1.05rem;
117|            color: var(--muted);
118|            max-width: 600px;
119|            margin: 10px auto 0;
120|            line-height: 1.55;
121|        }
122|        .intent-bar {
123|            max-width: 800px;
124|            margin: 0 auto;
125|            padding: 14px 20px 0;
126|        }
127|        .intent-meta {
128|            display: flex;
129|            gap: 12px;
130|            align-items: center;
131|            flex-wrap: wrap;
132|            font-size: 0.875rem;
133|            color: var(--muted);
134|        }
135|        .intent-meta strong {
136|            color: var(--text);
137|            font-weight: 600;
138|        }
139|        .main {
140|            max-width: 800px;
141|            margin: 0 auto;
142|            padding: 32px 20px 60px;
143|        }
144|        .main h2 {
145|            font-family: var(--font-display, 'Playfair Display', serif);
146|            font-size: 1.5rem;
147|            font-weight: 700;
148|            color: var(--text);
149|            margin: 32px 0 12px;
150|            line-height: 1.2;
151|        }
152|        .main h2:first-of-type {
153|            margin-top: 0;
154|        }
155|        .main h3 {
156|            font-family: var(--font-display, 'Playfair Display', serif);
157|            font-size: 1.15rem;
158|            font-weight: 600;
159|            color: var(--text);
160|            margin: 24px 0 8px;
161|        }
162|        .main p {
163|            font-size: 1rem;
164|            line-height: 1.75;
165|            color: var(--text);
166|            margin-bottom: 16px;
167|        }
168|        .main img {
169|            width: 100%;
170|            max-height: 350px;
171|            object-fit: cover;
172|            border-radius: 12px;
173|            margin: 20px 0;
174|        }
175|        .main ul {
176|            list-style: none;
177|            padding: 0;
178|            margin: 16px 0 24px;
179|        }
180|        .main ul li {
181|            padding: 10px 14px;
182|            margin-bottom: 8px;
183|            background: var(--warm-card-bg);
184|            border: 1px solid var(--border);
185|            border-radius: 10px;
186|            font-size: 0.95rem;
187|            line-height: 1.6;
188|        }
189|        .main ul li strong {
190|            color: var(--warm-brown);
191|        }
192|        .main a {
193|            color: var(--warm-accent);
194|            text-decoration: underline;
195|            text-underline-offset: 2px;
196|            font-weight: 500;
197|        }
198|        .main a:hover {
199|            color: #8B6914;
200|        }
201|        .sponsor-box {
202|            border: 2px solid #d97706;
203|            background: linear-gradient(135deg, #fffbeb, #fff);
204|            border-radius: 12px;
205|            padding: 20px;
206|            margin: 32px 0;
207|            text-align: center;
208|        }
209|        .sponsor-box h3 {
210|            font-family: var(--font-display, 'Playfair Display', serif);
211|            font-size: 1.1rem;
212|            color: #92400e;
213|            margin: 0 0 8px;
214|        }
215|        .sponsor-box p {
216|            font-size: 0.875rem;
217|            color: var(--muted);
218|            margin: 0 0 12px;
219|        }
220|        .sponsor-box .btn {
221|            display: inline-block;
222|            padding: 10px 24px;
223|            background: #d97706;
224|            color: white;
225|            border-radius: 8px;
226|            font-weight: 600;
227|            font-size: 0.875rem;
228|            text-decoration: none;
229|        }
230|        .sponsor-box .btn:hover {
231|            background: #b85e04;
232|        }
233|        .footer-links a { color: var(--warm-brown); }
234|        .footer-links a:hover { color: var(--warm-accent); }
235|    

/* inline-merged from best-egg-tarts-hong-kong.html */

22|        
32|        .topbar {
33|            max-width: 1120px;
34|            margin: 0 auto;
35|            padding: 16px 20px;
36|            display: flex;
37|            align-items: center;
38|            justify-content: space-between;
39|            gap: 12px;
40|            flex-wrap: wrap;
41|        }
42|        .brand {
43|            display: flex;
44|            align-items: baseline;
45|            gap: 10px;
46|            flex-wrap: wrap;
47|        }
48|        .brand-en {
49|            font-family: var(--font-display, 'Playfair Display', serif);
50|            font-size: 1.2rem;
51|            font-weight: 700;
52|            color: var(--text);
53|            letter-spacing: -0.01em;
54|        }
55|        .brand-zh {
56|            font-size: 0.85rem;
57|            color: var(--muted);
58|            font-weight: 500;
59|        }
60|        .brand small {
61|            font-size: 0.75rem;
62|            color: var(--warm-brown, #8B7355);
63|            font-weight: 600;
64|            text-transform: uppercase;
65|            letter-spacing: 0.08em;
66|        }
67|        .topbar-back {
68|            font-size: 0.8125rem;
69|            font-weight: 600;
70|            color: var(--warm-brown, #8B7355);
71|            text-decoration: none;
72|            display: inline-flex;
73|            align-items: center;
74|            gap: 6px;
75|            transition: gap 0.15s ease;
76|        }
77|        .topbar-back:hover { gap: 10px; }
78|        .ad-slot {
79|            max-width: 1120px;
80|            margin: 0 auto 18px;
81|            padding: 0 20px;
82|        }
83|        .ad-slot--display {
84|            background: linear-gradient(135deg, #8B7355 0%, #6D5A40 100%);
85|            color: #FFFDF9;
86|            border-radius: 10px;
87|            padding: 14px 18px;
88|            font-size: 0.875rem;
89|            text-align: center;
90|        }
91|        .ad-slot a { color: #F5F0EB; text-decoration: underline; font-weight: 600; }
92|        .hero {
93|            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
94|            border-bottom: 1px solid #D4C9B8;
95|            padding: 44px 20px 38px;
96|        }
97|        .hero-overlay {
98|            max-width: 1120px;
99|            margin: 0 auto;
100|            text-align: center;
101|            position: relative;
102|            z-index: 1;
103|        }
104|        .hero-overlay h1 {
105|            font-family: var(--font-display, 'Playfair Display', serif);
106|            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
107|            font-weight: 700;
108|            letter-spacing: -0.02em;
109|            line-height: 1.15;
110|            color: var(--text);
111|            margin-top: 8px;
112|        }
113|        .hero-overlay p {
114|            font-family: var(--font-serif, 'Playfair Display', serif);
115|            font-style: italic;
116|            font-size: 1.05rem;
117|            color: var(--muted);
118|            max-width: 600px;
119|            margin: 10px auto 0;
120|            line-height: 1.55;
121|        }
122|        .intent-bar {
123|            max-width: 800px;
124|            margin: 0 auto;
125|            padding: 14px 20px 0;
126|        }
127|        .intent-meta {
128|            display: flex;
129|            gap: 12px;
130|            align-items: center;
131|            flex-wrap: wrap;
132|            font-size: 0.875rem;
133|            color: var(--muted);
134|        }
135|        .intent-meta strong {
136|            color: var(--text);
137|            font-weight: 600;
138|        }
139|        .main {
140|            max-width: 800px;
141|            margin: 0 auto;
142|            padding: 32px 20px 60px;
143|        }
144|        .main h2 {
145|            font-family: var(--font-display, 'Playfair Display', serif);
146|            font-size: 1.5rem;
147|            font-weight: 700;
148|            color: var(--text);
149|            margin: 32px 0 12px;
150|            line-height: 1.2;
151|        }
152|        .main h2:first-of-type {
153|            margin-top: 0;
154|        }
155|        .main h3 {
156|            font-family: var(--font-display, 'Playfair Display', serif);
157|            font-size: 1.15rem;
158|            font-weight: 600;
159|            color: var(--text);
160|            margin: 24px 0 8px;
161|        }
162|        .main p {
163|            font-size: 1rem;
164|            line-height: 1.75;
165|            color: var(--text);
166|            margin-bottom: 16px;
167|        }
168|        .main img {
169|            width: 100%;
170|            max-height: 350px;
171|            object-fit: cover;
172|            border-radius: 12px;
173|            margin: 20px 0;
174|        }
175|        .main ul {
176|            list-style: none;
177|            padding: 0;
178|            margin: 16px 0 24px;
179|        }
180|        .main ul li {
181|            padding: 10px 14px;
182|            margin-bottom: 8px;
183|            background: var(--warm-card-bg);
184|            border: 1px solid var(--border);
185|            border-radius: 10px;
186|            font-size: 0.95rem;
187|            line-height: 1.6;
188|        }
189|        .main ul li strong {
190|            color: var(--warm-brown);
191|        }
192|        .main a {
193|            color: var(--warm-accent);
194|            text-decoration: underline;
195|            text-underline-offset: 2px;
196|            font-weight: 500;
197|        }
198|        .main a:hover {
199|            color: #8B6914;
200|        }
201|        .sponsor-box {
202|            border: 2px solid #d97706;
203|            background: linear-gradient(135deg, #fffbeb, #fff);
204|            border-radius: 12px;
205|            padding: 20px;
206|            margin: 32px 0;
207|            text-align: center;
208|        }
209|        .sponsor-box h3 {
210|            font-family: var(--font-display, 'Playfair Display', serif);
211|            font-size: 1.1rem;
212|            color: #92400e;
213|            margin: 0 0 8px;
214|        }
215|        .sponsor-box p {
216|            font-size: 0.875rem;
217|            color: var(--muted);
218|            margin: 0 0 12px;
219|        }
220|        .sponsor-box .btn {
221|            display: inline-block;
222|            padding: 10px 24px;
223|            background: #d97706;
224|            color: white;
225|            border-radius: 8px;
226|            font-weight: 600;
227|            font-size: 0.875rem;
228|            text-decoration: none;
229|        }
230|        .sponsor-box .btn:hover {
231|            background: #b85e04;
232|        }
233|        .footer-links a { color: var(--warm-brown); }
234|        .footer-links a:hover { color: var(--warm-accent); }
235|    

/* inline-merged from best-egg-waffles-hong-kong.html */

22|        
32|        .topbar {
33|            max-width: 1120px;
34|            margin: 0 auto;
35|            padding: 16px 20px;
36|            display: flex;
37|            align-items: center;
38|            justify-content: space-between;
39|            gap: 12px;
40|            flex-wrap: wrap;
41|        }
42|        .brand {
43|            display: flex;
44|            align-items: baseline;
45|            gap: 10px;
46|            flex-wrap: wrap;
47|        }
48|        .brand-en {
49|            font-family: var(--font-display, 'Playfair Display', serif);
50|            font-size: 1.2rem;
51|            font-weight: 700;
52|            color: var(--text);
53|            letter-spacing: -0.01em;
54|        }
55|        .brand-zh {
56|            font-size: 0.85rem;
57|            color: var(--muted);
58|            font-weight: 500;
59|        }
60|        .brand small {
61|            font-size: 0.75rem;
62|            color: var(--warm-brown, #8B7355);
63|            font-weight: 600;
64|            text-transform: uppercase;
65|            letter-spacing: 0.08em;
66|        }
67|        .topbar-back {
68|            font-size: 0.8125rem;
69|            font-weight: 600;
70|            color: var(--warm-brown, #8B7355);
71|            text-decoration: none;
72|            display: inline-flex;
73|            align-items: center;
74|            gap: 6px;
75|            transition: gap 0.15s ease;
76|        }
77|        .topbar-back:hover { gap: 10px; }
78|        .ad-slot {
79|            max-width: 1120px;
80|            margin: 0 auto 18px;
81|            padding: 0 20px;
82|        }
83|        .ad-slot--display {
84|            background: linear-gradient(135deg, #8B7355 0%, #6D5A40 100%);
85|            color: #FFFDF9;
86|            border-radius: 10px;
87|            padding: 14px 18px;
88|            font-size: 0.875rem;
89|            text-align: center;
90|        }
91|        .ad-slot a { color: #F5F0EB; text-decoration: underline; font-weight: 600; }
92|        .hero {
93|            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
94|            border-bottom: 1px solid #D4C9B8;
95|            padding: 44px 20px 38px;
96|        }
97|        .hero-overlay {
98|            max-width: 1120px;
99|            margin: 0 auto;
100|            text-align: center;
101|            position: relative;
102|            z-index: 1;
103|        }
104|        .hero-overlay h1 {
105|            font-family: var(--font-display, 'Playfair Display', serif);
106|            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
107|            font-weight: 700;
108|            letter-spacing: -0.02em;
109|            line-height: 1.15;
110|            color: var(--text);
111|            margin-top: 8px;
112|        }
113|        .hero-overlay p {
114|            font-family: var(--font-serif, 'Playfair Display', serif);
115|            font-style: italic;
116|            font-size: 1.05rem;
117|            color: var(--muted);
118|            max-width: 600px;
119|            margin: 10px auto 0;
120|            line-height: 1.55;
121|        }
122|        .intent-bar {
123|            max-width: 800px;
124|            margin: 0 auto;
125|            padding: 14px 20px 0;
126|        }
127|        .intent-meta {
128|            display: flex;
129|            gap: 12px;
130|            align-items: center;
131|            flex-wrap: wrap;
132|            font-size: 0.875rem;
133|            color: var(--muted);
134|        }
135|        .intent-meta strong {
136|            color: var(--text);
137|            font-weight: 600;
138|        }
139|        .main {
140|            max-width: 800px;
141|            margin: 0 auto;
142|            padding: 32px 20px 60px;
143|        }
144|        .main h2 {
145|            font-family: var(--font-display, 'Playfair Display', serif);
146|            font-size: 1.5rem;
147|            font-weight: 700;
148|            color: var(--text);
149|            margin: 32px 0 12px;
150|            line-height: 1.2;
151|        }
152|        .main h2:first-of-type {
153|            margin-top: 0;
154|        }
155|        .main h3 {
156|            font-family: var(--font-display, 'Playfair Display', serif);
157|            font-size: 1.15rem;
158|            font-weight: 600;
159|            color: var(--text);
160|            margin: 24px 0 8px;
161|        }
162|        .main p {
163|            font-size: 1rem;
164|            line-height: 1.75;
165|            color: var(--text);
166|            margin-bottom: 16px;
167|        }
168|        .main img {
169|            width: 100%;
170|            max-height: 350px;
171|            object-fit: cover;
172|            border-radius: 12px;
173|            margin: 20px 0;
174|        }
175|        .main ul {
176|            list-style: none;
177|            padding: 0;
178|            margin: 16px 0 24px;
179|        }
180|        .main ul li {
181|            padding: 10px 14px;
182|            margin-bottom: 8px;
183|            background: var(--warm-card-bg);
184|            border: 1px solid var(--border);
185|            border-radius: 10px;
186|            font-size: 0.95rem;
187|            line-height: 1.6;
188|        }
189|        .main ul li strong {
190|            color: var(--warm-brown);
191|        }
192|        .main a {
193|            color: var(--warm-accent);
194|            text-decoration: underline;
195|            text-underline-offset: 2px;
196|            font-weight: 500;
197|        }
198|        .main a:hover {
199|            color: #8B6914;
200|        }
201|        .sponsor-box {
202|            border: 2px solid #d97706;
203|            background: linear-gradient(135deg, #fffbeb, #fff);
204|            border-radius: 12px;
205|            padding: 20px;
206|            margin: 32px 0;
207|            text-align: center;
208|        }
209|        .sponsor-box h3 {
210|            font-family: var(--font-display, 'Playfair Display', serif);
211|            font-size: 1.1rem;
212|            color: #92400e;
213|            margin: 0 0 8px;
214|        }
215|        .sponsor-box p {
216|            font-size: 0.875rem;
217|            color: var(--muted);
218|            margin: 0 0 12px;
219|        }
220|        .sponsor-box .btn {
221|            display: inline-block;
222|            padding: 10px 24px;
223|            background: #d97706;
224|            color: white;
225|            border-radius: 8px;
226|            font-weight: 600;
227|            font-size: 0.875rem;
228|            text-decoration: none;
229|        }
230|        .sponsor-box .btn:hover {
231|            background: #b85e04;
232|        }
233|        .footer-links a { color: var(--warm-brown); }
234|        .footer-links a:hover { color: var(--warm-accent); }
235|    

/* inline-merged from best-milk-tea-hong-kong.html */

22|        
32|        .topbar {
33|            max-width: 1120px;
34|            margin: 0 auto;
35|            padding: 16px 20px;
36|            display: flex;
37|            align-items: center;
38|            justify-content: space-between;
39|            gap: 12px;
40|            flex-wrap: wrap;
41|        }
42|        .brand {
43|            display: flex;
44|            align-items: baseline;
45|            gap: 10px;
46|            flex-wrap: wrap;
47|        }
48|        .brand-en {
49|            font-family: var(--font-display, 'Playfair Display', serif);
50|            font-size: 1.2rem;
51|            font-weight: 700;
52|            color: var(--text);
53|            letter-spacing: -0.01em;
54|        }
55|        .brand-zh {
56|            font-size: 0.85rem;
57|            color: var(--muted);
58|            font-weight: 500;
59|        }
60|        .brand small {
61|            font-size: 0.75rem;
62|            color: var(--warm-brown, #8B7355);
63|            font-weight: 600;
64|            text-transform: uppercase;
65|            letter-spacing: 0.08em;
66|        }
67|        .topbar-back {
68|            font-size: 0.8125rem;
69|            font-weight: 600;
70|            color: var(--warm-brown, #8B7355);
71|            text-decoration: none;
72|            display: inline-flex;
73|            align-items: center;
74|            gap: 6px;
75|            transition: gap 0.15s ease;
76|        }
77|        .topbar-back:hover { gap: 10px; }
78|        .ad-slot {
79|            max-width: 1120px;
80|            margin: 0 auto 18px;
81|            padding: 0 20px;
82|        }
83|        .ad-slot--display {
84|            background: linear-gradient(135deg, #8B7355 0%, #6D5A40 100%);
85|            color: #FFFDF9;
86|            border-radius: 10px;
87|            padding: 14px 18px;
88|            font-size: 0.875rem;
89|            text-align: center;
90|        }
91|        .ad-slot a { color: #F5F0EB; text-decoration: underline; font-weight: 600; }
92|        .hero {
93|            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
94|            border-bottom: 1px solid #D4C9B8;
95|            padding: 44px 20px 38px;
96|        }
97|        .hero-overlay {
98|            max-width: 1120px;
99|            margin: 0 auto;
100|            text-align: center;
101|            position: relative;
102|            z-index: 1;
103|        }
104|        .hero-overlay h1 {
105|            font-family: var(--font-display, 'Playfair Display', serif);
106|            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
107|            font-weight: 700;
108|            letter-spacing: -0.02em;
109|            line-height: 1.15;
110|            color: var(--text);
111|            margin-top: 8px;
112|        }
113|        .hero-overlay p {
114|            font-family: var(--font-serif, 'Playfair Display', serif);
115|            font-style: italic;
116|            font-size: 1.05rem;
117|            color: var(--muted);
118|            max-width: 600px;
119|            margin: 10px auto 0;
120|            line-height: 1.55;
121|        }
122|        .intent-bar {
123|            max-width: 800px;
124|            margin: 0 auto;
125|            padding: 14px 20px 0;
126|        }
127|        .intent-meta {
128|            display: flex;
129|            gap: 12px;
130|            align-items: center;
131|            flex-wrap: wrap;
132|            font-size: 0.875rem;
133|            color: var(--muted);
134|        }
135|        .intent-meta strong {
136|            color: var(--text);
137|            font-weight: 600;
138|        }
139|        .main {
140|            max-width: 800px;
141|            margin: 0 auto;
142|            padding: 32px 20px 60px;
143|        }
144|        .main h2 {
145|            font-family: var(--font-display, 'Playfair Display', serif);
146|            font-size: 1.5rem;
147|            font-weight: 700;
148|            color: var(--text);
149|            margin: 32px 0 12px;
150|            line-height: 1.2;
151|        }
152|        .main h2:first-of-type {
153|            margin-top: 0;
154|        }
155|        .main h3 {
156|            font-family: var(--font-display, 'Playfair Display', serif);
157|            font-size: 1.15rem;
158|            font-weight: 600;
159|            color: var(--text);
160|            margin: 24px 0 8px;
161|        }
162|        .main p {
163|            font-size: 1rem;
164|            line-height: 1.75;
165|            color: var(--text);
166|            margin-bottom: 16px;
167|        }
168|        .main img {
169|            width: 100%;
170|            max-height: 350px;
171|            object-fit: cover;
172|            border-radius: 12px;
173|            margin: 20px 0;
174|        }
175|        .main ul {
176|            list-style: none;
177|            padding: 0;
178|            margin: 16px 0 24px;
179|        }
180|        .main ul li {
181|            padding: 10px 14px;
182|            margin-bottom: 8px;
183|            background: var(--warm-card-bg);
184|            border: 1px solid var(--border);
185|            border-radius: 10px;
186|            font-size: 0.95rem;
187|            line-height: 1.6;
188|        }
189|        .main ul li strong {
190|            color: var(--warm-brown);
191|        }
192|        .main a {
193|            color: var(--warm-accent);
194|            text-decoration: underline;
195|            text-underline-offset: 2px;
196|            font-weight: 500;
197|        }
198|        .main a:hover {
199|            color: #8B6914;
200|        }
201|        .sponsor-box {
202|            border: 2px solid #d97706;
203|            background: linear-gradient(135deg, #fffbeb, #fff);
204|            border-radius: 12px;
205|            padding: 20px;
206|            margin: 32px 0;
207|            text-align: center;
208|        }
209|        .sponsor-box h3 {
210|            font-family: var(--font-display, 'Playfair Display', serif);
211|            font-size: 1.1rem;
212|            color: #92400e;
213|            margin: 0 0 8px;
214|        }
215|        .sponsor-box p {
216|            font-size: 0.875rem;
217|            color: var(--muted);
218|            margin: 0 0 12px;
219|        }
220|        .sponsor-box .btn {
221|            display: inline-block;
222|            padding: 10px 24px;
223|            background: #d97706;
224|            color: white;
225|            border-radius: 8px;
226|            font-weight: 600;
227|            font-size: 0.875rem;
228|            text-decoration: none;
229|        }
230|        .sponsor-box .btn:hover {
231|            background: #b85e04;
232|        }
233|        .footer-links a { color: var(--warm-brown); }
234|        .footer-links a:hover { color: var(--warm-accent); }
235|    

/* inline-merged from best-pineapple-bun-hong-kong.html */

22|        
32|        .topbar {
33|            max-width: 1120px;
34|            margin: 0 auto;
35|            padding: 16px 20px;
36|            display: flex;
37|            align-items: center;
38|            justify-content: space-between;
39|            gap: 12px;
40|            flex-wrap: wrap;
41|        }
42|        .brand {
43|            display: flex;
44|            align-items: baseline;
45|            gap: 10px;
46|            flex-wrap: wrap;
47|        }
48|        .brand-en {
49|            font-family: var(--font-display, 'Playfair Display', serif);
50|            font-size: 1.2rem;
51|            font-weight: 700;
52|            color: var(--text);
53|            letter-spacing: -0.01em;
54|        }
55|        .brand-zh {
56|            font-size: 0.85rem;
57|            color: var(--muted);
58|            font-weight: 500;
59|        }
60|        .brand small {
61|            font-size: 0.75rem;
62|            color: var(--warm-brown, #8B7355);
63|            font-weight: 600;
64|            text-transform: uppercase;
65|            letter-spacing: 0.08em;
66|        }
67|        .topbar-back {
68|            font-size: 0.8125rem;
69|            font-weight: 600;
70|            color: var(--warm-brown, #8B7355);
71|            text-decoration: none;
72|            display: inline-flex;
73|            align-items: center;
74|            gap: 6px;
75|            transition: gap 0.15s ease;
76|        }
77|        .topbar-back:hover { gap: 10px; }
78|        .ad-slot {
79|            max-width: 1120px;
80|            margin: 0 auto 18px;
81|            padding: 0 20px;
82|        }
83|        .ad-slot--display {
84|            background: linear-gradient(135deg, #8B7355 0%, #6D5A40 100%);
85|            color: #FFFDF9;
86|            border-radius: 10px;
87|            padding: 14px 18px;
88|            font-size: 0.875rem;
89|            text-align: center;
90|        }
91|        .ad-slot a { color: #F5F0EB; text-decoration: underline; font-weight: 600; }
92|        .hero {
93|            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
94|            border-bottom: 1px solid #D4C9B8;
95|            padding: 44px 20px 38px;
96|        }
97|        .hero-overlay {
98|            max-width: 1120px;
99|            margin: 0 auto;
100|            text-align: center;
101|            position: relative;
102|            z-index: 1;
103|        }
104|        .hero-overlay h1 {
105|            font-family: var(--font-display, 'Playfair Display', serif);
106|            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
107|            font-weight: 700;
108|            letter-spacing: -0.02em;
109|            line-height: 1.15;
110|            color: var(--text);
111|            margin-top: 8px;
112|        }
113|        .hero-overlay p {
114|            font-family: var(--font-serif, 'Playfair Display', serif);
115|            font-style: italic;
116|            font-size: 1.05rem;
117|            color: var(--muted);
118|            max-width: 600px;
119|            margin: 10px auto 0;
120|            line-height: 1.55;
121|        }
122|        .intent-bar {
123|            max-width: 800px;
124|            margin: 0 auto;
125|            padding: 14px 20px 0;
126|        }
127|        .intent-meta {
128|            display: flex;
129|            gap: 12px;
130|            align-items: center;
131|            flex-wrap: wrap;
132|            font-size: 0.875rem;
133|            color: var(--muted);
134|        }
135|        .intent-meta strong {
136|            color: var(--text);
137|            font-weight: 600;
138|        }
139|        .main {
140|            max-width: 800px;
141|            margin: 0 auto;
142|            padding: 32px 20px 60px;
143|        }
144|        .main h2 {
145|            font-family: var(--font-display, 'Playfair Display', serif);
146|            font-size: 1.5rem;
147|            font-weight: 700;
148|            color: var(--text);
149|            margin: 32px 0 12px;
150|            line-height: 1.2;
151|        }
152|        .main h2:first-of-type {
153|            margin-top: 0;
154|        }
155|        .main h3 {
156|            font-family: var(--font-display, 'Playfair Display', serif);
157|            font-size: 1.15rem;
158|            font-weight: 600;
159|            color: var(--text);
160|            margin: 24px 0 8px;
161|        }
162|        .main p {
163|            font-size: 1rem;
164|            line-height: 1.75;
165|            color: var(--text);
166|            margin-bottom: 16px;
167|        }
168|        .main img {
169|            width: 100%;
170|            max-height: 350px;
171|            object-fit: cover;
172|            border-radius: 12px;
173|            margin: 20px 0;
174|        }
175|        .main ul {
176|            list-style: none;
177|            padding: 0;
178|            margin: 16px 0 24px;
179|        }
180|        .main ul li {
181|            padding: 10px 14px;
182|            margin-bottom: 8px;
183|            background: var(--warm-card-bg);
184|            border: 1px solid var(--border);
185|            border-radius: 10px;
186|            font-size: 0.95rem;
187|            line-height: 1.6;
188|        }
189|        .main ul li strong {
190|            color: var(--warm-brown);
191|        }
192|        .main a {
193|            color: var(--warm-accent);
194|            text-decoration: underline;
195|            text-underline-offset: 2px;
196|            font-weight: 500;
197|        }
198|        .main a:hover {
199|            color: #8B6914;
200|        }
201|        .sponsor-box {
202|            border: 2px solid #d97706;
203|            background: linear-gradient(135deg, #fffbeb, #fff);
204|            border-radius: 12px;
205|            padding: 20px;
206|            margin: 32px 0;
207|            text-align: center;
208|        }
209|        .sponsor-box h3 {
210|            font-family: var(--font-display, 'Playfair Display', serif);
211|            font-size: 1.1rem;
212|            color: #92400e;
213|            margin: 0 0 8px;
214|        }
215|        .sponsor-box p {
216|            font-size: 0.875rem;
217|            color: var(--muted);
218|            margin: 0 0 12px;
219|        }
220|        .sponsor-box .btn {
221|            display: inline-block;
222|            padding: 10px 24px;
223|            background: #d97706;
224|            color: white;
225|            border-radius: 8px;
226|            font-weight: 600;
227|            font-size: 0.875rem;
228|            text-decoration: none;
229|        }
230|        .sponsor-box .btn:hover {
231|            background: #b85e04;
232|        }
233|        .footer-links a { color: var(--warm-brown); }
234|        .footer-links a:hover { color: var(--warm-accent); }
235|    

/* inline-merged from best-roast-goose-hong-kong.html */

22|        
32|        .topbar {
33|            max-width: 1120px;
34|            margin: 0 auto;
35|            padding: 16px 20px;
36|            display: flex;
37|            align-items: center;
38|            justify-content: space-between;
39|            gap: 12px;
40|            flex-wrap: wrap;
41|        }
42|        .brand {
43|            display: flex;
44|            align-items: baseline;
45|            gap: 10px;
46|            flex-wrap: wrap;
47|        }
48|        .brand-en {
49|            font-family: var(--font-display, 'Playfair Display', serif);
50|            font-size: 1.2rem;
51|            font-weight: 700;
52|            color: var(--text);
53|            letter-spacing: -0.01em;
54|        }
55|        .brand-zh {
56|            font-size: 0.85rem;
57|            color: var(--muted);
58|            font-weight: 500;
59|        }
60|        .brand small {
61|            font-size: 0.75rem;
62|            color: var(--warm-brown, #8B7355);
63|            font-weight: 600;
64|            text-transform: uppercase;
65|            letter-spacing: 0.08em;
66|        }
67|        .topbar-back {
68|            font-size: 0.8125rem;
69|            font-weight: 600;
70|            color: var(--warm-brown, #8B7355);
71|            text-decoration: none;
72|            display: inline-flex;
73|            align-items: center;
74|            gap: 6px;
75|            transition: gap 0.15s ease;
76|        }
77|        .topbar-back:hover { gap: 10px; }
78|        .ad-slot {
79|            max-width: 1120px;
80|            margin: 0 auto 18px;
81|            padding: 0 20px;
82|        }
83|        .ad-slot--display {
84|            background: linear-gradient(135deg, #8B7355 0%, #6D5A40 100%);
85|            color: #FFFDF9;
86|            border-radius: 10px;
87|            padding: 14px 18px;
88|            font-size: 0.875rem;
89|            text-align: center;
90|        }
91|        .ad-slot a { color: #F5F0EB; text-decoration: underline; font-weight: 600; }
92|        .hero {
93|            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
94|            border-bottom: 1px solid #D4C9B8;
95|            padding: 44px 20px 38px;
96|        }
97|        .hero-overlay {
98|            max-width: 1120px;
99|            margin: 0 auto;
100|            text-align: center;
101|            position: relative;
102|            z-index: 1;
103|        }
104|        .hero-overlay h1 {
105|            font-family: var(--font-display, 'Playfair Display', serif);
106|            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
107|            font-weight: 700;
108|            letter-spacing: -0.02em;
109|            line-height: 1.15;
110|            color: var(--text);
111|            margin-top: 8px;
112|        }
113|        .hero-overlay p {
114|            font-family: var(--font-serif, 'Playfair Display', serif);
115|            font-style: italic;
116|            font-size: 1.05rem;
117|            color: var(--muted);
118|            max-width: 600px;
119|            margin: 10px auto 0;
120|            line-height: 1.55;
121|        }
122|        .intent-bar {
123|            max-width: 800px;
124|            margin: 0 auto;
125|            padding: 14px 20px 0;
126|        }
127|        .intent-meta {
128|            display: flex;
129|            gap: 12px;
130|            align-items: center;
131|            flex-wrap: wrap;
132|            font-size: 0.875rem;
133|            color: var(--muted);
134|        }
135|        .intent-meta strong {
136|            color: var(--text);
137|            font-weight: 600;
138|        }
139|        .main {
140|            max-width: 800px;
141|            margin: 0 auto;
142|            padding: 32px 20px 60px;
143|        }
144|        .main h2 {
145|            font-family: var(--font-display, 'Playfair Display', serif);
146|            font-size: 1.5rem;
147|            font-weight: 700;
148|            color: var(--text);
149|            margin: 32px 0 12px;
150|            line-height: 1.2;
151|        }
152|        .main h2:first-of-type {
153|            margin-top: 0;
154|        }
155|        .main h3 {
156|            font-family: var(--font-display, 'Playfair Display', serif);
157|            font-size: 1.15rem;
158|            font-weight: 600;
159|            color: var(--text);
160|            margin: 24px 0 8px;
161|        }
162|        .main p {
163|            font-size: 1rem;
164|            line-height: 1.75;
165|            color: var(--text);
166|            margin-bottom: 16px;
167|        }
168|        .main img {
169|            width: 100%;
170|            max-height: 350px;
171|            object-fit: cover;
172|            border-radius: 12px;
173|            margin: 20px 0;
174|        }
175|        .main ul {
176|            list-style: none;
177|            padding: 0;
178|            margin: 16px 0 24px;
179|        }
180|        .main ul li {
181|            padding: 10px 14px;
182|            margin-bottom: 8px;
183|            background: var(--warm-card-bg);
184|            border: 1px solid var(--border);
185|            border-radius: 10px;
186|            font-size: 0.95rem;
187|            line-height: 1.6;
188|        }
189|        .main ul li strong {
190|            color: var(--warm-brown);
191|        }
192|        .main a {
193|            color: var(--warm-accent);
194|            text-decoration: underline;
195|            text-underline-offset: 2px;
196|            font-weight: 500;
197|        }
198|        .main a:hover {
199|            color: #8B6914;
200|        }
201|        .sponsor-box {
202|            border: 2px solid #d97706;
203|            background: linear-gradient(135deg, #fffbeb, #fff);
204|            border-radius: 12px;
205|            padding: 20px;
206|            margin: 32px 0;
207|            text-align: center;
208|        }
209|        .sponsor-box h3 {
210|            font-family: var(--font-display, 'Playfair Display', serif);
211|            font-size: 1.1rem;
212|            color: #92400e;
213|            margin: 0 0 8px;
214|        }
215|        .sponsor-box p {
216|            font-size: 0.875rem;
217|            color: var(--muted);
218|            margin: 0 0 12px;
219|        }
220|        .sponsor-box .btn {
221|            display: inline-block;
222|            padding: 10px 24px;
223|            background: #d97706;
224|            color: white;
225|            border-radius: 8px;
226|            font-weight: 600;
227|            font-size: 0.875rem;
228|            text-decoration: none;
229|        }
230|        .sponsor-box .btn:hover {
231|            background: #b85e04;
232|        }
233|        .footer-links a { color: var(--warm-brown); }
234|        .footer-links a:hover { color: var(--warm-accent); }
235|    

/* inline-merged from best-wonton-noodles-hong-kong.html */

22|        
32|        .topbar {
33|            max-width: 1120px;
34|            margin: 0 auto;
35|            padding: 16px 20px;
36|            display: flex;
37|            align-items: center;
38|            justify-content: space-between;
39|            gap: 12px;
40|            flex-wrap: wrap;
41|        }
42|        .brand {
43|            display: flex;
44|            align-items: baseline;
45|            gap: 10px;
46|            flex-wrap: wrap;
47|        }
48|        .brand-en {
49|            font-family: var(--font-display, 'Playfair Display', serif);
50|            font-size: 1.2rem;
51|            font-weight: 700;
52|            color: var(--text);
53|            letter-spacing: -0.01em;
54|        }
55|        .brand-zh {
56|            font-size: 0.85rem;
57|            color: var(--muted);
58|            font-weight: 500;
59|        }
60|        .brand small {
61|            font-size: 0.75rem;
62|            color: var(--warm-brown, #8B7355);
63|            font-weight: 600;
64|            text-transform: uppercase;
65|            letter-spacing: 0.08em;
66|        }
67|        .topbar-back {
68|            font-size: 0.8125rem;
69|            font-weight: 600;
70|            color: var(--warm-brown, #8B7355);
71|            text-decoration: none;
72|            display: inline-flex;
73|            align-items: center;
74|            gap: 6px;
75|            transition: gap 0.15s ease;
76|        }
77|        .topbar-back:hover { gap: 10px; }
78|        .ad-slot {
79|            max-width: 1120px;
80|            margin: 0 auto 18px;
81|            padding: 0 20px;
82|        }
83|        .ad-slot--display {
84|            background: linear-gradient(135deg, #8B7355 0%, #6D5A40 100%);
85|            color: #FFFDF9;
86|            border-radius: 10px;
87|            padding: 14px 18px;
88|            font-size: 0.875rem;
89|            text-align: center;
90|        }
91|        .ad-slot a { color: #F5F0EB; text-decoration: underline; font-weight: 600; }
92|        .hero {
93|            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
94|            border-bottom: 1px solid #D4C9B8;
95|            padding: 44px 20px 38px;
96|        }
97|        .hero-overlay {
98|            max-width: 1120px;
99|            margin: 0 auto;
100|            text-align: center;
101|            position: relative;
102|            z-index: 1;
103|        }
104|        .hero-overlay h1 {
105|            font-family: var(--font-display, 'Playfair Display', serif);
106|            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
107|            font-weight: 700;
108|            letter-spacing: -0.02em;
109|            line-height: 1.15;
110|            color: var(--text);
111|            margin-top: 8px;
112|        }
113|        .hero-overlay p {
114|            font-family: var(--font-serif, 'Playfair Display', serif);
115|            font-style: italic;
116|            font-size: 1.05rem;
117|            color: var(--muted);
118|            max-width: 600px;
119|            margin: 10px auto 0;
120|            line-height: 1.55;
121|        }
122|        .intent-bar {
123|            max-width: 800px;
124|            margin: 0 auto;
125|            padding: 14px 20px 0;
126|        }
127|        .intent-meta {
128|            display: flex;
129|            gap: 12px;
130|            align-items: center;
131|            flex-wrap: wrap;
132|            font-size: 0.875rem;
133|            color: var(--muted);
134|        }
135|        .intent-meta strong {
136|            color: var(--text);
137|            font-weight: 600;
138|        }
139|        .main {
140|            max-width: 800px;
141|            margin: 0 auto;
142|            padding: 32px 20px 60px;
143|        }
144|        .main h2 {
145|            font-family: var(--font-display, 'Playfair Display', serif);
146|            font-size: 1.5rem;
147|            font-weight: 700;
148|            color: var(--text);
149|            margin: 32px 0 12px;
150|            line-height: 1.2;
151|        }
152|        .main h2:first-of-type {
153|            margin-top: 0;
154|        }
155|        .main h3 {
156|            font-family: var(--font-display, 'Playfair Display', serif);
157|            font-size: 1.15rem;
158|            font-weight: 600;
159|            color: var(--text);
160|            margin: 24px 0 8px;
161|        }
162|        .main p {
163|            font-size: 1rem;
164|            line-height: 1.75;
165|            color: var(--text);
166|            margin-bottom: 16px;
167|        }
168|        .main img {
169|            width: 100%;
170|            max-height: 350px;
171|            object-fit: cover;
172|            border-radius: 12px;
173|            margin: 20px 0;
174|        }
175|        .main ul {
176|            list-style: none;
177|            padding: 0;
178|            margin: 16px 0 24px;
179|        }
180|        .main ul li {
181|            padding: 10px 14px;
182|            margin-bottom: 8px;
183|            background: var(--warm-card-bg);
184|            border: 1px solid var(--border);
185|            border-radius: 10px;
186|            font-size: 0.95rem;
187|            line-height: 1.6;
188|        }
189|        .main ul li strong {
190|            color: var(--warm-brown);
191|        }
192|        .main a {
193|            color: var(--warm-accent);
194|            text-decoration: underline;
195|            text-underline-offset: 2px;
196|            font-weight: 500;
197|        }
198|        .main a:hover {
199|            color: #8B6914;
200|        }
201|        .sponsor-box {
202|            border: 2px solid #d97706;
203|            background: linear-gradient(135deg, #fffbeb, #fff);
204|            border-radius: 12px;
205|            padding: 20px;
206|            margin: 32px 0;
207|            text-align: center;
208|        }
209|        .sponsor-box h3 {
210|            font-family: var(--font-display, 'Playfair Display', serif);
211|            font-size: 1.1rem;
212|            color: #92400e;
213|            margin: 0 0 8px;
214|        }
215|        .sponsor-box p {
216|            font-size: 0.875rem;
217|            color: var(--muted);
218|            margin: 0 0 12px;
219|        }
220|        .sponsor-box .btn {
221|            display: inline-block;
222|            padding: 10px 24px;
223|            background: #d97706;
224|            color: white;
225|            border-radius: 8px;
226|            font-weight: 600;
227|            font-size: 0.875rem;
228|            text-decoration: none;
229|        }
230|        .sponsor-box .btn:hover {
231|            background: #b85e04;
232|        }
233|        .footer-links a { color: var(--warm-brown); }
234|        .footer-links a:hover { color: var(--warm-accent); }
235|    

/* inline-merged from sitemap.html */

        
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
        html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--page);
            line-height: 1.55;
            position: relative;
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.035;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
        }
        a { color: inherit; text-decoration: none; }
        a:hover { color: var(--accent); }

        .sitemap-wrap {
            max-width: 1120px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .sitemap-hero {
            background: var(--bg);
            border-bottom: 1px solid var(--rule);
            padding: 32px 20px 28px;
            position: relative;
            z-index: 1;
        }
        .sitemap-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(1.4rem, 3.2vw, 2rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.15;
            color: var(--warm-ink);
        }
        .sitemap-hero .subtitle {
            font-size: 1rem;
            color: var(--muted);
            max-width: 680px;
            line-height: 1.5;
            margin-top: 6px;
            font-style: italic;
            font-family: var(--font-display);
        }
        .sitemap-hero p {
            font-size: 0.9375rem;
            color: var(--muted);
            max-width: 760px;
            margin-top: 4px;
        }
        .sitemap-hero .stats-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 16px;
        }
        .stat-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: var(--chip-bg);
            border: 1px solid var(--rule);
            border-radius: 999px;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--muted);
            font-family: var(--font-ui);
            transition: border-color 0.15s;
        }
        .stat-chip strong { color: var(--text); font-weight: 700; }
        .stat-chip span { color: var(--muted); font-weight: 500; }

        .sitemap-content { padding: 28px 20px 56px; }
        .section-group { margin-bottom: 32px; }
        .section-group:last-child { margin-bottom: 0; }
        .section-group h2 {
            font-family: var(--font-display);
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--warm-ink);
        }
        .section-group h2 svg { color: var(--accent); flex-shrink: 0; }
        .section-group .section-desc {
            font-size: 0.875rem;
            color: var(--muted);
            margin-bottom: 14px;
            line-height: 1.5;
        }

        .card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }
        @media (min-width: 600px) { .card-grid { grid-template-columns: 1fr 1fr; } }
        @media (min-width: 900px) {
            .card-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
            .card-grid.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
            .card-grid.cols-2 { grid-template-columns: 1fr 1fr; }
        }
        .card-grid.single-col { grid-template-columns: 1fr; }

        .sitemap-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            background: var(--bg);
            border: 1px solid var(--rule);
            border-radius: 12px;
            transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.15s ease, box-shadow 0.2s ease;
        }
        .sitemap-card:hover {
            border-color: #d4cfc2;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            color: var(--text);
        }
        .sitemap-card .card-icon {
            width: 36px; height: 36px;
            border-radius: 10px;
            background: var(--chip-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.15s;
        }
        .sitemap-card:hover .card-icon { background: #e8e5dc; }
        .sitemap-card .card-icon svg { width: 16px; height: 16px; color: var(--muted); transition: color 0.15s; }
        .sitemap-card:hover .card-icon svg { color: var(--accent); }
        .sitemap-card .card-body { flex: 1; min-width: 0; }
        .sitemap-card .card-body h3 {
            font-size: 0.9375rem;
            font-weight: 600;
            line-height: 1.25;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .sitemap-card .card-body .desc {
            font-size: 0.8125rem;
            color: var(--muted);
            line-height: 1.4;
            margin-top: 2px;
        }
        .sitemap-card .card-arrow {
            color: var(--muted);
            flex-shrink: 0;
            transition: transform 0.15s ease, color 0.15s ease;
        }
        .sitemap-card:hover .card-arrow { transform: translateX(4px); color: var(--text); }

        .photo-card {
            display: grid;
            grid-template-columns: 96px 1fr auto;
            gap: 12px;
            padding: 12px;
            background: var(--bg);
            border: 1px solid var(--rule);
            border-radius: 12px;
            transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.15s ease, box-shadow 0.2s ease;
            align-items: center;
        }
        .photo-card:hover {
            border-color: #d4cfc2;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            color: var(--text);
        }
        .photo-card .card-img {
            width: 96px; height: 72px;
            object-fit: cover;
            border-radius: 8px;
            background: var(--chip-bg);
            border: 1px solid var(--rule);
            display: block;
            flex-shrink: 0;
        }
        .photo-card .card-body { flex: 1; min-width: 0; }
        .photo-card .card-body h3 {
            font-size: 0.9375rem;
            font-weight: 600;
            line-height: 1.25;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .photo-card .card-body .desc {
            font-size: 0.8125rem;
            color: var(--muted);
            line-height: 1.4;
            margin-top: 2px;
        }
        .photo-card .card-arrow {
            color: var(--muted);
            flex-shrink: 0;
            transition: transform 0.15s ease, color 0.15s ease;
        }
        .photo-card:hover .card-arrow { transform: translateX(4px); color: var(--text); }
        .card-tag {
            display: inline-block;
            padding: 2px 8px;
            background: var(--chip-bg);
            border-radius: 999px;
            font-size: 0.6875rem;
            font-weight: 600;
            color: var(--muted);
            white-space: nowrap;
        }

        .verified-badge-sm {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            font-size: 0.6875rem;
            font-weight: 600;
            color: var(--verified-green);
            background: var(--verified-green-bg);
            padding: 2px 7px;
            border-radius: 999px;
            white-space: nowrap;
            line-height: 1.2;
        }
        .verified-badge-sm svg { width: 11px; height: 11px; flex-shrink: 0; }

        .squiggle-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 0 8px;
            position: relative;
            z-index: 1;
        }
        .squiggle-divider svg { width: 100%; max-width: 260px; height: auto; }

        .listing-intro {
            background: var(--bg);
            border: 1px solid var(--rule);
            border-radius: 12px;
            padding: 16px 18px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .listing-intro .li-icon {
            width: 32px; height: 32px;
            border-radius: 8px;
            background: var(--chip-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .listing-intro .li-icon svg { width: 16px; height: 16px; color: var(--accent); }
        .listing-intro .li-body { flex: 1; }
        .listing-intro .li-body strong { font-size: 0.9375rem; font-weight: 600; }
        .listing-intro .li-body p { font-size: 0.8125rem; color: var(--muted); }
        .listing-intro .li-count {
            font-family: var(--font-hand);
            font-weight: 700;
            font-size: 1.125rem;
            color: var(--accent);
            white-space: nowrap;
        }

        .img-placeholder {
            width: 96px; height: 72px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 0.75rem;
            color: white;
            text-align: center;
            line-height: 1.2;
            letter-spacing: 0.02em;
            border: 1px solid rgba(0,0,0,0.08);
            flex-shrink: 0;
        }

        @keyframes fadeSlideUp {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .sitemap-hero, .section-group { animation: fadeSlideUp 0.5s ease both; }
        .sitemap-hero { animation-delay: 0s; }
        .section-group:nth-of-type(1) { animation-delay: 0.1s; }
        .section-group:nth-of-type(2) { animation-delay: 0.15s; }
        .section-group:nth-of-type(3) { animation-delay: 0.2s; }
        .section-group:nth-of-type(4) { animation-delay: 0.25s; }

        @media (max-width: 480px) {
            .sitemap-hero .stats-row { gap: 6px; }
            .stat-chip { font-size: 0.75rem; padding: 5px 10px; }
            .sitemap-card .card-body .desc { font-size: 0.75rem; }
            .photo-card .card-body .desc { font-size: 0.75rem; }
        }
    

/* inline-merged from hong-kong-hidden-gems.html */

20|        
30|
31|        .topbar {
32|            max-width: 1120px;
33|            margin: 0 auto;
34|            padding: 16px 20px;
35|            display: flex;
36|            align-items: center;
37|            justify-content: space-between;
38|            gap: 12px;
39|            flex-wrap: wrap;
40|        }
41|
42|        .brand {
43|            display: flex;
44|            align-items: baseline;
45|            gap: 10px;
46|            flex-wrap: wrap;
47|        }
48|        .brand-en {
49|            font-family: var(--font-display, 'Playfair Display', serif);
50|            font-size: 1.2rem;
51|            font-weight: 700;
52|            color: var(--text);
53|            letter-spacing: -0.01em;
54|        }
55|        .brand-zh {
56|            font-size: 0.85rem;
57|            color: var(--muted);
58|            font-weight: 500;
59|        }
60|        .brand small {
61|            font-size: 0.75rem;
62|            color: var(--warm-brown, #8B7355);
63|            font-weight: 600;
64|            text-transform: uppercase;
65|            letter-spacing: 0.08em;
66|        }
67|
68|        .topbar-back {
69|            font-size: 0.8125rem;
70|            font-weight: 600;
71|            color: var(--warm-brown, #8B7355);
72|            text-decoration: none;
73|            display: inline-flex;
74|            align-items: center;
75|            gap: 6px;
76|            transition: gap 0.15s ease;
77|        }
78|        .topbar-back:hover { gap: 10px; }
79|
80|        .ad-slot {
81|            max-width: 1120px;
82|            margin: 0 auto 18px;
83|            padding: 0 20px;
84|        }
85|        .ad-slot--display {
86|            background: linear-gradient(135deg, #8B7355 0%, #6D5A40 100%);
87|            color: #FFFDF9;
88|            border-radius: 10px;
89|            padding: 14px 18px;
90|            font-size: 0.875rem;
91|            text-align: center;
92|        }
93|        .ad-slot a { color: #F5F0EB; text-decoration: underline; font-weight: 600; }
94|
95|        .hero {
96|            background: linear-gradient(135deg, #F5F0EB 0%, #EDE4D8 100%);
97|            border-bottom: 1px solid #D4C9B8;
98|            padding: 44px 20px 38px;
99|        }
100|        .hero-overlay {
101|            max-width: 1120px;
102|            margin: 0 auto;
103|            text-align: center;
104|            position: relative;
105|            z-index: 1;
106|        }
107|        .hero-overlay h1 {
108|            font-family: var(--font-display, 'Playfair Display', serif);
109|            font-size: clamp(1.6rem, 3.8vw, 2.4rem);
110|            font-weight: 700;
111|            letter-spacing: -0.02em;
112|            line-height: 1.15;
113|            color: var(--text);
114|            margin-top: 8px;
115|        }
116|        .hero-overlay p {
117|            font-family: var(--font-serif, 'Playfair Display', serif);
118|            font-style: italic;
119|            font-size: 1.05rem;
120|            color: var(--muted);
121|            max-width: 600px;
122|            margin: 10px auto 0;
123|            line-height: 1.55;
124|        }
125|
126|        .intent-bar {
127|            max-width: 800px;
128|            margin: 0 auto;
129|            padding: 14px 20px 0;
130|        }
131|        .intent-meta {
132|            display: flex;
133|            gap: 12px;
134|            align-items: center;
135|            flex-wrap: wrap;
136|            font-size: 0.875rem;
137|            color: var(--muted);
138|        }
139|        .intent-meta strong {
140|            color: var(--text);
141|            font-weight: 600;
142|        }
143|
144|        .main {
145|            max-width: 800px;
146|            margin: 0 auto;
147|            padding: 24px 20px 60px;
148|        }
149|
150|        .panel {
151|            margin-bottom: 32px;
152|            border: 1px solid var(--border);
153|            border-radius: 12px;
154|            overflow: hidden;
155|            background: var(--warm-card-bg);
156|            transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.15s ease;
157|        }
158|        .panel:hover {
159|            transform: translateY(-3px);
160|            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
161|            border-color: var(--warm-tan);
162|        }
163|
164|        .panel-grid {
165|            display: grid;
166|            grid-template-columns: 1fr;
167|        }
168|        @media (min-width: 640px) {
169|            .panel-grid { grid-template-columns: 1fr 1fr; }
170|            .panel-img-wrap { order: 0 !important; }
171|            .panel-body { order: 1 !important; }
172|            .panel--flip .panel-img-wrap { order: 1 !important; }
173|            .panel--flip .panel-body { order: 0 !important; }
174|        }
175|
176|        .panel-img-wrap {
177|            position: relative;
178|            min-height: 220px;
179|            background: linear-gradient(135deg, var(--warm-tan) 0%, var(--warm-brown) 100%);
180|            overflow: hidden;
181|        }
182|        .panel-img-wrap img {
183|            width: 100%;
184|            height: 100%;
185|            object-fit: cover;
186|            display: block;
187|            position: absolute;
188|            inset: 0;
189|        }
190|
191|        .panel-body {
192|            padding: 24px 22px;
193|            display: flex;
194|            flex-direction: column;
195|            gap: 6px;
196|            background: var(--warm-card-bg);
197|        }
198|        .panel-rank {
199|            font-family: 'Caveat', cursive;
200|            font-size: 0.9rem;
201|            font-weight: 600;
202|            color: var(--warm-accent);
203|        }
204|        .panel-body h2 {
205|            font-family: var(--font-display, 'Playfair Display', serif);
206|            font-size: 1.35rem;
207|            font-weight: 700;
208|            line-height: 1.2;
209|            color: var(--text);
210|            margin: 0;
211|        }
212|        .panel-subtitle {
213|            font-size: 0.85rem;
214|            color: var(--muted);
215|            line-height: 1.4;
216|        }
217|        .panel-body p {
218|            font-size: 0.9375rem;
219|            line-height: 1.7;
220|            color: var(--text);
221|            margin-top: 10px;
222|        }
223|        .panel-map {
224|            margin-top: auto;
225|            padding-top: 12px;
226|            font-size: 0.875rem;
227|            font-weight: 600;
228|            color: var(--warm-brown);
229|            text-decoration: none;
230|            display: inline-flex;
231|            align-items: center;
232|            gap: 6px;
233|            transition: gap 0.15s ease;
234|        }
235|        .panel-map:hover { gap: 10px; color: var(--warm-accent); }
236|        .panel-cta {
237|            margin-top: 6px;
238|            font-size: 0.8125rem;
239|            color: var(--warm-brown);
240|            text-decoration: underline;
241|            text-underline-offset: 3px;
242|        }
243|        .panel-cta:hover { color: var(--warm-accent); }
244|
245|        .panel-footer {
246|            text-align: center;
247|            padding: 32px 0 16px;
248|            border-top: 1px solid var(--border);
249|            margin-top: 36px;
250|        }
251|        .panel-footer p {
252|            font-family: 'Caveat', cursive;
253|            font-size: 1.1rem;
254|            color: var(--muted);
255|            margin: 0 0 6px;
256|        }
257|        .panel-footer a {
258|            font-size: 0.9rem;
259|            color: var(--warm-accent);
260|            text-decoration: underline;
261|            text-underline-offset: 3px;
262|        }
263|
264|        .footer-links a { color: var(--warm-brown); }
265|        .footer-links a:hover { color: var(--warm-accent); }
266|    

/* 2026-08-01 boss directive: Klook ads = clickable image banners, not text links */
.klook-banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    margin: 4px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.klook-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}
.klook-banner .klook-banner-cta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.72));
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-align: left;
}

/* P1 offer card (M.I.L.E.S ad research 2026-08-01) */
.klook-offer-card {
    position: relative;
    border: 2px solid #C4A882;
    background: linear-gradient(180deg, #FFFDF8, #F7F1E5);
}
.klook-offer-card .v-card-img-link { position: relative; display: block; }
.offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(60, 48, 40, 0.82);
    color: #FFF;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 999px;
    z-index: 2;
}
.klook-offer-card .v-card-body { border-top: 1px dashed #D8CDB8; }
.klook-offer-card h3 { color: #8B5E2A; }

/* P5 inline disclosure (M.I.L.E.S ad research 2026-08-01) */
.klook-disclosure {
    font-size: 0.68rem;
    color: #8A8378;
    margin: 0 0 6px;
    line-height: 1.35;
}


/* OpenRice-inspired sidebar ad (native "Featured Food Tours" card — no Sponsored label) */
.home-sidebar {
    float: right;
    width: 280px;
    margin-left: 20px;
    margin-bottom: 16px;
    position: sticky;
    top: 112px;
}
.home-sidebar-inner {
    background: var(--bg, #FFFDF8);
    border: 1px solid #E0D6C6;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
}
.sidebar-section-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--warm-ink, #2d2a24);
    margin: 0 0 10px;
    letter-spacing: 0.01em;
}
.sidebar-banner-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}
.sidebar-banner-img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.home-sidebar-banner:hover .sidebar-banner-img-wrap img {
    transform: scale(1.04);
}
.sidebar-banner-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 12px 10px;
    background: linear-gradient(transparent, rgba(20,16,12,0.78));
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sidebar-banner-label {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}
.sidebar-banner-cta {
    color: rgba(255,255,255,0.88);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.sidebar-banner-sub {
    font-size: 0.75rem;
    color: var(--muted, #5e5b52);
    line-height: 1.45;
    margin: 8px 0 0;
}
.home-sidebar-banner {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.home-sidebar-banner:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
/* Popular Districts tag cloud widget */
.sidebar-districts .sidebar-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.sidebar-districts .sidebar-tag-cloud a {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f2ede1;
    color: var(--warm-ink, #2d2a24);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.sidebar-districts .sidebar-tag-cloud a:hover {
    background: var(--accent, #c81e1e);
    color: #fff;
}
@media (max-width: 860px) {
    .home-sidebar {
        float: none;
        width: 100%;
        margin-left: 0;
        position: static;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════ */
/*  SAVORA v2.0 — OpenRice-inspired layout overrides (added 2026-08-01)       */
/*  All rules here override earlier duplicate rules in this file.              */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. Clean canonical .brand header (single source of truth) ──────────── */
.brand {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}
.brand-en {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}
.brand-zh {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}
.brand small {
    font-size: 0.75rem;
    color: var(--warm-brown, #8B7355);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-left: 2px;
}

/* ── 2. Homepage: two-column layout (OpenRice-style, NOT sticky) ────────────── */
.home-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
.home-main {
    min-width: 0;
}
.home-rail {
    width: 300px;
}

/* Kill the old floating sidebar */
.home-sidebar {
    float: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    position: static !important;
}

/* Sidebar cards */
.rail-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}
.rail-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #3D3028;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    border-bottom: 1px solid #ece5d8;
    padding-bottom: 10px;
}

/* Rail banner */
.rail-banner {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    margin-bottom: 10px;
}
.rail-banner img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.rail-banner:hover img {
    transform: scale(1.03);
}
.rail-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
    color: #fff;
}
.rail-banner-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.9;
    margin-bottom: 2px;
}
.rail-banner-cta {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
}
.rail-banner-sub {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
}

/* Rail tag cloud */
.rail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.rail-tags a {
    font-size: 0.8125rem;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    background: var(--chip-bg);
    color: var(--warm-ink);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.rail-tags a:hover {
    background: var(--accent);
    color: #fff;
}

/* ── 3. Section headings with "More ›" (OpenRice style) ───────────────────── */
.section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}
.section-heading h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.section-heading .more-link {
    font-size: 0.8125rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.section-heading .more-link:hover {
    text-decoration: underline;
}
.section-heading p {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.5;
}

/* ── 4. Compact hero (tighten padding) ───────────────────────────────────── */
.hero {
    padding: 32px 20px 28px !important;
}

/* ── 5. Horizontal Klook banner (below restaurant grid) ─────────────────── */
.horiz-banner {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    margin-top: 24px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s ease;
}
.horiz-banner:hover {
    box-shadow: var(--shadow-hover);
}
.horiz-banner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
}
.horiz-banner-img {
    width: 200px;
    height: 130px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}
.horiz-banner-body {
    padding: 16px 20px 16px 0;
    flex: 1;
}
.horiz-banner-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 4px;
}
.horiz-banner-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.horiz-banner-desc {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
}
.horiz-banner-cta {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 8px;
    display: inline-block;
}

/* ── 6. Footer: centered, clean ─────────────────────────────────────────────────── */
.page-footer {
    border-top: 1px solid var(--rule);
    background: var(--page);
    padding: 32px 20px 24px;
    margin-top: 40px;
}
.page-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}
.page-footer-brand {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.page-footer-brand small {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-left: 4px;
}
.page-footer-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
    margin-bottom: 16px;
}
.page-footer-nav a {
    font-size: 0.8125rem;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.page-footer-nav a:hover {
    color: var(--accent);
}
.page-footer-disclosure {
    font-size: 0.7rem;
    color: var(--muted);
    opacity: 0.7;
    line-height: 1.5;
    max-width: 680px;
    margin: 0 auto;
}

/* ── 7. Card improvements ─────────────────────────────────────────────────── */
/* Remove duplicate "Read more →" links inside cards */
.v-card-body .read-more {
    display: none !important;
}

/* ── 8. Mobile: stack columns ─────────────────────────────────────────────── */
@media (max-width: 860px) {
    .home-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .home-rail {
        width: 100%;
        order: -1;
    }
    .horiz-banner-inner {
        flex-direction: column;
    }
    .horiz-banner-img {
        width: 100%;
        height: 140px;
    }
    .horiz-banner-body {
        padding: 16px;
    }
}


/* ── 9. HK Experiences & Deals (Klook product cards) ───────────────────────── */
.deals-section { margin: 28px auto 8px; max-width: 1120px; padding: 0 20px; }
.deals-intro { color: #6b6257; font-size: 13px; margin: -4px 0 14px; }
.deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.deal-card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid #ece5d8; border-radius: 14px;
    overflow: hidden; text-decoration: none; color: inherit;
    transition: transform .15s ease, box-shadow .15s ease;
}
.deal-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.deal-card-img { width: 100%; height: 130px; object-fit: cover; display: block; background: #f5f0e6; }
.deal-card-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; }
.deal-card-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #b78a3e; }
.deal-card-name { font-size: 14px; font-weight: 700; color: #2a241c; line-height: 1.35; min-height: 38px; }
.deal-card-price { font-size: 15px; font-weight: 800; color: #c2410c; }
.deal-card-comm { font-size: 11px; font-weight: 500; color: #9aa08a; margin-left: 4px; }
.deal-card-cta { margin-top: 4px; font-size: 12px; font-weight: 700; color: #b78a3e; }

/* Rail product mini-cards */
.rail-product {
    display: flex; align-items: center; gap: 10px;
    padding: 8px; border-radius: 14px; background: #fff;
    border: 1px solid #ece5d8; text-decoration: none; color: inherit;
    margin-bottom: 8px; transition: transform .15s ease, box-shadow .15s ease;
}
.rail-product:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.rail-product-img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0; background: #f5f0e6; }
.rail-product-name { font-size: 12.5px; font-weight: 600; color: #2a241c; line-height: 1.3; flex: 1; }
.rail-product-price { font-size: 13px; font-weight: 800; color: #c2410c; white-space: nowrap; }

/* Language toggle */
.lang-toggle { display: inline-flex; border: 1px solid #e2d8c6; border-radius: 999px; overflow: hidden; margin-left: 10px; vertical-align: middle; }
.lang-btn {
    border: 0; background: transparent; padding: 5px 12px; font-size: 12px; font-weight: 700;
    font-family: inherit; color: #8a7f6d; cursor: pointer; transition: background .15s ease, color .15s ease;
}
.lang-btn.active { background: #b78a3e; color: #fff; }

@media (max-width: 1000px) {
    .deals-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
    .deals-grid { grid-template-columns: repeat(2, 1fr); }
    .lang-toggle { margin-left: 0; margin-top: 8px; }
}
@media (max-width: 480px) {
    .deals-grid { grid-template-columns: 1fr; }
}

/* ── Breathing room below hero (2026-08-02 boss) ────────────────────────── */
/* In the SAVORA override block so it beats .home-layout { margin: 0 auto } */
.home-layout { margin-top: 36px !important; }
@media (max-width: 860px) {
    .home-layout { margin-top: 24px !important; }
}

/* ── Guide & article content panels (2026-08-02 boss swarm: fix "copy-paste" look) ── */
.guide-body { max-width: 1120px; margin: 0 auto; padding: 24px 20px 48px; }
.guide-body > .guide-panel { margin-bottom: 22px; }
.guide-panel {
    background: #fff;
    border: 1px solid var(--rule, #e7dfd0);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
}
.guide-panel-head {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--rule, #e7dfd0);
    background: linear-gradient(180deg, #fdfaf4, #f8f2e6);
}
.guide-panel-head h2 { margin: 0; font-size: 1.25rem; font-weight: 700; color: #2a241c; }
.guide-panel-head .guide-num {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 30px; height: 30px; padding: 0 8px;
    border-radius: 999px; background: #b78a3e; color: #fff;
    font-size: 0.85rem; font-weight: 700;
}
.guide-panel-body { padding: 18px 22px 22px; }
.guide-panel-body p { margin: 0 0 12px; line-height: 1.7; color: #3d372e; font-size: 0.95rem; }
.guide-panel-body p:last-child { margin-bottom: 0; }
.guide-panel-body strong { color: #2a241c; }
/* Spot rows inside panels (restaurant recs) */
.spot-row {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0;
    border-top: 1px dashed var(--rule, #e7dfd0);
}
.spot-row:first-of-type { border-top: 0; }
.spot-rank {
    flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 10px;
    background: #2a241c; color: #fff; font-weight: 700; font-size: 0.85rem;
    margin-top: 2px;
}
.spot-info { flex: 1; min-width: 0; }
.spot-info h3 { margin: 0 0 6px; font-size: 1.05rem; font-weight: 700; color: #2a241c; }
.spot-info p { margin: 0; line-height: 1.65; color: #3d372e; font-size: 0.92rem; }
/* Tip boxes (local tips / etiquette / verdict) */
.tip-box {
    background: #fdf8ec;
    border: 1px solid #ecd9ae;
    border-left: 4px solid #b78a3e;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 14px 0;
}
.tip-box p { margin: 0; color: #4a3f2c; line-height: 1.65; font-size: 0.92rem; }
.tip-box strong { color: #92400e; }
.verdict-box {
    background: #f0f7ee;
    border: 1px solid #cfe3c9;
    border-left: 4px solid #3f9e4d;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 14px 0;
}
.verdict-box p { margin: 0; color: #2c4a2a; line-height: 1.65; }
.verdict-box strong { color: #1f7a2e; }
/* Inline photo for guide pages: framed, rounded */
.guide-body > img.guide-photo,
.guide-photo {
    width: 100%; max-height: 380px; object-fit: cover;
    border-radius: 14px; margin-bottom: 22px; display: block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
/* About page: stacked sections with icon headers */
.about-section { margin-bottom: 22px; }
.about-section h2 {
    display: flex; align-items: center; gap: 10px;
    margin: 0 0 10px; font-size: 1.3rem; font-weight: 700; color: #2a241c;
}
.about-section h2::before {
    content: ""; width: 8px; height: 8px; border-radius: 999px;
    background: #b78a3e; display: inline-block;
}
.about-section p { margin: 0 0 12px; line-height: 1.75; color: #3d372e; }
.about-section ol, .about-section ul { margin: 0 0 12px; padding-left: 22px; line-height: 1.75; color: #3d372e; }
@media (max-width: 640px) {
    .guide-panel-head { padding: 14px 16px; }
    .guide-panel-body { padding: 14px 16px 18px; }
    .spot-row { flex-direction: column; gap: 8px; }
    .about-section h2 { font-size: 1.15rem; }
}


/* From the Guides row — force 3 columns on desktop (boss: 2026-08-02), responsive on mobile */
.verified-grid.guides-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.verified-grid.guides-3 .v-card-img {
    height: 150px !important;
}
/* Mobile treatment 2026-08-02: never let guide cards shrink below readable size.
   Was 3-col all the way to 480px (cards ~144px = unreadable). Now:
   ≥861px = 3 cols · 561–860px = 2 cols · ≤560px = 1 col (full-width, thumbnails) */
@media (max-width: 860px) {
    .verified-grid.guides-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .verified-grid.guides-3 .v-card-img {
        height: 170px !important;
    }
    .verified-grid.guides-3 .v-card-body h3 {
        font-size: 0.95rem;
    }
    .verified-grid.guides-3 .v-card-body .card-name-zh {
        font-size: 0.8rem;
    }
}
@media (max-width: 560px) {
    .verified-grid.guides-3 {
        grid-template-columns: 1fr !important;
    }
    .verified-grid.guides-3 .v-card-img {
        height: 190px !important;
    }
}
/* Old 480/360 overrides removed — superseded by the 860/560 steps above */

/* Rail content as full-width strip (boss: 2026-08-02) */
.home-rail-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0 8px;
}
.home-rail-strip .rail-card {
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .home-rail-strip {
        grid-template-columns: 1fr;
    }
}
