*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --teal: #1B4F4A; --teal-light: #2A6B64; --coral: #E8725A;
      --sage: #8AAF9F; --cream: #F7F4EF; --white: #FFFFFF;
      --ink: #2C2C2C; --ink-muted: #6B6B6B; --rule: #D8D3CB;
    }
    body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.6; }

    nav { background: var(--teal); padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; height: 60px; position: sticky; top: 0; z-index: 100; }
    .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); text-decoration: none; }
    .nav-logo span { color: var(--coral); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--cream); }

    .breadcrumb { padding: 14px 5vw; font-size: 0.75rem; color: var(--ink-muted); display: flex; gap: 0.5rem; background: var(--white); border-bottom: 1px solid var(--rule); }
    .breadcrumb a { color: var(--teal); text-decoration: none; }
    .breadcrumb-sep { color: var(--rule); }

    /* CITY HERO */
    .city-hero { background: var(--ink); padding: 56px 5vw; position: relative; overflow: hidden; }
    .city-hero::before { content: '🐝'; position: absolute; right: 5vw; top: 50%; transform: translateY(-50%); font-size: 8rem; opacity: 0.08; }
    .city-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); border-radius: 20px; padding: 5px 14px 5px 10px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.2rem; }
    .city-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
    .city-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1rem; max-width: 680px; }
    .city-hero p { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 580px; margin-bottom: 2rem; }
    .city-meta-row { display: flex; gap: 2rem; flex-wrap: wrap; }
    .city-meta-item { font-size: 0.78rem; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 0.4rem; }
    .city-meta-item strong { color: rgba(255,255,255,0.7); font-weight: 500; }

    /* Byline */
    .byline { display: flex; align-items: center; gap: 1rem; padding: 1rem 5vw; border-bottom: 1px solid var(--rule); background: var(--white); }
    .byline-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--white); flex-shrink: 0; font-weight: 600; overflow: hidden; }
    .byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .byline-name { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
    .byline-name a { color: var(--teal); text-decoration: none; }
    .byline-meta { font-size: 0.72rem; color: var(--ink-muted); }
    .contributor-tag { display: inline-flex; align-items: center; gap: 4px; background: rgba(232,114,90,0.1); color: var(--coral); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 20px; margin-left: 0.5rem; }

    /* FILTER BAR */
    .filter-bar { background: var(--white); padding: 16px 5vw; border-bottom: 1px solid var(--rule); display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
    .filter-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); margin-right: 0.4rem; }
    .filter-btn { font-size: 0.78rem; font-weight: 500; padding: 7px 14px; border-radius: 20px; border: 1.5px solid var(--rule); background: transparent; color: var(--ink-muted); cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
    .filter-btn:hover, .filter-btn.active { border-color: var(--teal); color: var(--teal); background: rgba(27,79,74,0.06); }

    /* MAIN LAYOUT */
    .guide-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 5vw; display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }

    /* INTRO */
    .guide-intro { font-size: 1rem; line-height: 1.8; color: var(--ink); margin-bottom: 2.5rem; }
    .guide-intro p { margin-bottom: 1.2rem; }

    /* VENUE CARDS */
    .venues-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--teal); display: flex; align-items: center; justify-content: space-between; }
    .venues-count { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 500; color: var(--ink-muted); }

    .venue-card { background: var(--white); border-radius: 8px; overflow: hidden; margin-bottom: 1.4rem; display: grid; grid-template-columns: 180px 1fr; border: 1px solid var(--rule); transition: box-shadow 0.2s; }
    .venue-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
    .venue-img { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; min-height: 160px; }
    .venue-body { padding: 1.4rem 1.6rem; }
    .venue-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; }
    .venue-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
    .venue-type-badge { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
    .badge-af { background: rgba(27,79,74,0.1); color: var(--teal); }
    .badge-friendly { background: rgba(232,114,90,0.1); color: var(--coral); }
    .badge-live { background: rgba(138,175,159,0.2); color: #3d6b5a; }
    .venue-area { font-size: 0.75rem; color: var(--ink-muted); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.3rem; }
    .venue-desc { font-size: 0.88rem; line-height: 1.65; color: var(--ink-muted); margin-bottom: 1rem; }
    .venue-details { display: flex; flex-wrap: wrap; gap: 0.8rem; }
    .venue-detail { font-size: 0.75rem; color: var(--ink-muted); display: flex; align-items: center; gap: 0.3rem; }
    .venue-detail strong { color: var(--ink); font-weight: 500; }
    .venue-order-tip { margin-top: 0.8rem; background: var(--cream); border-radius: 4px; padding: 0.7rem 0.9rem; font-size: 0.8rem; color: var(--teal); line-height: 1.45; }
    .venue-order-tip strong { font-weight: 600; }

    /* Map embed placeholder */
    .map-placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, #e8f0ee 0%, #d4e4e1 100%); border-radius: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--teal); font-size: 0.82rem; font-weight: 500; gap: 0.5rem; margin-bottom: 1.5rem; border: 1px solid var(--rule); }
    .map-icon { font-size: 2rem; }

    /* Article body */
    .guide-body { font-size: 0.95rem; line-height: 1.8; color: var(--ink); margin-top: 2rem; }
    .guide-body p { margin-bottom: 1.2rem; }
    .guide-body h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); margin: 2rem 0 0.8rem; }

    /* SIDEBAR */
    .guide-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.5rem; }
    .sidebar-panel { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.6rem; }
    .sidebar-panel-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--rule); }
    .toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .toc-list a { font-size: 0.82rem; color: var(--teal); text-decoration: none; padding: 3px 0 3px 8px; border-left: 2px solid transparent; display: block; transition: border-color 0.2s; line-height: 1.4; }
    .toc-list a:hover { border-left-color: var(--coral); }
    .quick-tips { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .quick-tips li { font-size: 0.82rem; color: var(--ink-muted); display: flex; gap: 0.6rem; line-height: 1.45; }
    .quick-tips li::before { content: '→'; color: var(--coral); flex-shrink: 0; }
    .nearby-cities { display: flex; flex-direction: column; gap: 0.5rem; }
    .nearby-city { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; font-size: 0.82rem; color: var(--teal); padding: 6px 0; border-bottom: 1px solid var(--rule); transition: color 0.2s; }
    .nearby-city:last-child { border-bottom: none; }
    .nearby-city:hover { color: var(--coral); }
    .nearby-city-emoji { font-size: 1rem; }

    /* Tags */
    .post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
    .tag { font-size: 0.72rem; font-weight: 500; color: var(--teal); background: rgba(27,79,74,0.08); padding: 5px 12px; border-radius: 20px; text-decoration: none; }

    /* Related */
    .related-section { max-width: 1100px; margin: 0 auto; padding: 0 5vw 60px; }
    .related-section h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--rule); }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .related-card { background: var(--white); border-radius: 6px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s; }
    .related-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
    .related-card-img { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
    .related-card-body { padding: 1.2rem; }
    .related-card-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.4rem; }
    .related-card-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; line-height: 1.3; color: var(--ink); }

    footer { background: var(--ink); padding: 40px 5vw 24px; }
    .footer-logo { font-family: 'Playfair Display', serif; color: white; font-size: 1rem; margin-bottom: 1rem; display: block; text-decoration: none; }
    .footer-logo span { color: var(--coral); }
    .footer-bottom { display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

    @media (max-width: 860px) {
      .guide-wrap { grid-template-columns: 1fr; gap: 2rem; }
      .guide-sidebar { position: static; }
      .venue-card { grid-template-columns: 1fr; }
      .venue-img { min-height: 120px; aspect-ratio: 16/9; }
      .related-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .nav-links { display: none; }
      .related-grid { grid-template-columns: 1fr; }
    }