/* Tokyo Imperial Palace — Imperial Navy Theme */
:root {
  --bg:        #fafaf8;
  --bg-alt:    #f2f0eb;
  --border:    #dedad4;
  --text:      #1c1b18;
  --muted:     #5a5751;
  --accent:    #1a3060;
  --accent-lt: #e8edf6;
  --warn:      #9a6809;
  --gold:      #b8860b;
  --highlight: #fde68a;
  --highlight-strong: #fbd35a;
  --serif:     'Fraunces', Georgia, serif;
  --sans:      'Source Sans 3', system-ui, sans-serif;
  --max:       820px;
  --wide:      1120px;
}

/* ─── Reset ─── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; overflow-x: clip; }
body { background: var(--bg); color: var(--text); font-family: var(--sans); line-height: 1.7; font-size: 1rem; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: var(--accent); }

/* ─── Typography ─── */
h1,h2,h3 { font-family: var(--serif); line-height: 1.25; }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h3 { font-size: 1.15rem; }
p { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

/* ─── Container ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.wide-container { max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem; }

/* ─── Site Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--accent); color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header-inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 52px;
}
.site-logo { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: .01em; }
.site-logo span { color: #f5d87a; }

.header-nav { display: flex; gap: .25rem; list-style: none; }
.header-nav a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .88rem; padding: .3rem .7rem; border-radius: 4px; transition: background .15s; }
.header-nav a:hover { background: rgba(255,255,255,.15); color: #fff; }

.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; padding: .4rem; }
.mobile-nav { display: none; background: var(--accent); padding: .75rem 1.5rem 1rem; list-style: none; }
.mobile-nav a { display: block; color: rgba(255,255,255,.85); text-decoration: none; padding: .5rem 0; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav a:hover { color: #fff; }

/* ─── Hero ─── */
.hero {
  background: var(--accent);
  color: #fff;
  padding: 3.5rem 0 3rem;
}
.hero-eyebrow { font-family: ui-monospace,'SF Mono',Menlo,Monaco,Consolas,monospace; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #f5d87a; margin-bottom: .75rem; }
.hero h1 { color: #fff; margin-bottom: .75rem; max-width: 680px; }
.hero .deck { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 580px; margin-bottom: 1.25rem; }
.hero-byline { font-size: .82rem; color: rgba(255,255,255,.55); font-style: italic; }
.hero-cta { display: inline-block; margin-top: 1.5rem; background: #f5d87a; color: var(--accent); font-weight: 700; padding: .65rem 1.4rem; border-radius: 4px; text-decoration: none; font-size: .95rem; transition: background .15s; }
.hero-cta:hover { background: #fde68a; color: var(--accent); }

/* ─── Facts Bar ─── */
.facts-bar { background: #12233f; color: #fff; padding: 1.2rem 0; }
.facts-grid {
  max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: .75rem 1.5rem;
}
.fact { min-width: 0; }
.fact-value { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: #f5d87a; line-height: 1.1; }
.fact-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .2rem; overflow-wrap: anywhere; }

/* ─── Anchor Nav ─── */
.anchor-nav {
  position: sticky; top: 52px; z-index: 90;
  background: var(--bg); border-bottom: 1px solid var(--border);
  overflow-x: auto; white-space: nowrap; scrollbar-width: none;
}
.anchor-nav::-webkit-scrollbar { display: none; }
.anchor-nav-list {
  max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem;
  display: inline-flex; gap: .15rem; list-style: none; min-width: 100%;
}
.anchor-nav-list li { flex-shrink: 0; padding: 0; margin: 0; }
.anchor-nav-list li::before { content: none; }
.anchor-link {
  display: inline-block; padding: .55rem .8rem;
  font-family: ui-monospace,'SF Mono',Menlo,Monaco,Consolas,monospace;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s, opacity .15s;
  opacity: .55; white-space: nowrap;
}
.anchor-link:hover { color: var(--accent); border-bottom-color: var(--accent); opacity: 1; }

/* ─── Section Shared ─── */
section { padding: 3.5rem 0; }
section + section { border-top: 1px solid var(--border); }
.section-eyebrow { font-family: ui-monospace,'SF Mono',Menlo,Monaco,Consolas,monospace; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
section h2 { margin-bottom: 1.25rem; }
.section-deck { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; max-width: 640px; }

/* ─── TL;DR ─── */
.tldr-box {
  background: var(--accent-lt); border-left: 4px solid var(--accent);
  padding: 1.5rem 1.75rem; border-radius: 0 8px 8px 0;
}
.tldr-box ul { list-style: none; }
.tldr-box li { padding: .5rem 0; border-bottom: 1px solid rgba(26,48,96,.12); font-size: 1.02rem; }
.tldr-box li:last-child { border-bottom: none; }
.tldr-box li::before { content: "→ "; color: var(--accent); font-weight: 700; }

/* ─── Access Tiers ─── */
.tiers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.25rem; }
.tier-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem 1.5rem; }
.tier-card.featured { border-color: var(--accent); background: var(--accent-lt); }
.tier-label { font-family: ui-monospace,'SF Mono',Menlo,Monaco,Consolas,monospace; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem; }
.tier-card h3 { font-size: 1rem; margin-bottom: .35rem; }
.tier-card p { font-size: .9rem; color: var(--muted); margin-bottom: .5rem; }
.tier-meta { font-size: .8rem; }
.tier-meta strong { color: var(--accent); }
.chip { display: inline-block; background: var(--accent); color: #fff; font-size: .75rem; font-weight: 700; padding: .2rem .65rem; border-radius: 20px; text-decoration: none; margin-top: .5rem; transition: background .15s; }
.chip:hover { background: #12233f; }
.chip.accent { background: var(--accent); color: #fff; }

/* ─── 10 Things to Know grid ─── */
.know-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; }
.know-card { border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem 1.5rem; background: var(--bg); }
.know-num { font-family: ui-monospace,'SF Mono',Menlo,Monaco,Consolas,monospace; font-size: .72rem; color: var(--accent); font-weight: 700; margin-bottom: .25rem; }
.know-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.know-card p { font-size: .88rem; color: var(--muted); margin-bottom: 0; }

/* ─── Persona Grid ─── */
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.25rem; }
.persona-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem 1.5rem; }
.persona-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.persona-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.persona-card ul { list-style: none; margin-bottom: .75rem; }
.persona-card li { font-size: .88rem; color: var(--muted); padding: .2rem 0; }
.persona-card li::before { content: "· "; color: var(--accent); }

/* ─── Season Guide ─── */
.season-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; }
.season-card { border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem 1.4rem; background: var(--bg); }
.season-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; color: var(--accent); }
.season-dates { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.season-card p { font-size: .88rem; color: var(--text); margin-bottom: .5rem; }

/* ─── Logistics Table ─── */
.logistics-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.logistics-table th { font-weight: 700; text-align: left; padding: .6rem .75rem; background: var(--bg-alt); border-bottom: 2px solid var(--border); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.logistics-table td { padding: .6rem .75rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.logistics-table tr:last-child td { border-bottom: none; }
.logistics-table tr:hover td { background: var(--accent-lt); }

/* ─── Red Flags ─── */
.flags-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1rem; }
.flag-item { display: flex; gap: .75rem; align-items: flex-start; padding: 1rem 1.25rem; background: #fff4e4; border: 1px solid #f5d5a0; border-radius: 8px; }
.flag-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.flag-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.flag-item p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ─── Tours CTA ─── */
.tours-cta { background: var(--accent); color: #fff; }
.tours-cta h2 { color: #fff; }
.tours-cta p { color: rgba(255,255,255,.82); }
.tours-cta ul { list-style: none; margin: 1rem 0 1.75rem; }
.tours-cta li { padding: .45rem 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.85); font-size: .98rem; }
.tours-cta li::before { content: "✓ "; color: #f5d87a; font-weight: 700; }
.tours-cta li:last-child { border-bottom: none; }
.cta-button { display: inline-block; background: #f5d87a; color: var(--accent); font-weight: 700; padding: .75rem 1.6rem; border-radius: 4px; text-decoration: none; font-size: 1.02rem; transition: background .15s; }
.cta-button:hover { background: #fde68a; color: var(--accent); }

/* ─── FAQ ─── */
.faq-list { max-width: var(--max); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1rem 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--text);
  gap: 1rem;
}
.faq-question:hover { color: var(--accent); }
.faq-arrow { flex-shrink: 0; transition: transform .2s; font-style: normal; font-size: .85rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 1rem; font-size: .97rem; color: var(--muted); }
.faq-answer p { margin-bottom: .5rem; }
.faq-item.open .faq-answer { display: block; }

/* ─── u-link (yellow highlighter) ─── */
.u-link {
  position: relative; font-weight: 700; text-decoration: none; color: var(--text);
  padding: 0 .12em;
  background-image: linear-gradient(to top, transparent .15em, var(--highlight) .15em, var(--highlight) 1.05em, transparent 1.05em);
  background-repeat: no-repeat; background-size: 100% 100%;
}
.u-link:hover { color: var(--accent); background-image: linear-gradient(to top, transparent .15em, var(--highlight-strong) .15em, var(--highlight-strong) 1.05em, transparent 1.05em); }

/* ─── Floating CTA Pill ─── */
.plan-pill {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 200;
  background: var(--accent); color: #fff;
  padding: .7em 1.3em; border-radius: 40px; font-weight: 700; font-size: .9rem;
  text-decoration: none; opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s; box-shadow: 0 4px 16px rgba(26,48,96,.3);
}
.plan-pill.visible { opacity: 1; pointer-events: auto; }
.plan-pill:hover { background: #12233f; color: #fff; }

/* ─── Tours Page Hero ─── */
.tours-hero { background: var(--accent); color: #fff; padding: 2.5rem 0 2rem; }
.tours-hero h1 { color: #fff; font-size: clamp(1.5rem,3.5vw,2.2rem); }
.tours-hero .deck { color: rgba(255,255,255,.78); font-size: 1rem; margin-top: .5rem; }

/* ─── Pick Cards (hero tier, small-pool) ─── */
.picks-section { padding: 2.5rem 0; }
.picks-section h2 { margin-bottom: .5rem; }
.picks-intro { color: var(--muted); font-size: .97rem; margin-bottom: 2rem; }
.picks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.pick-card {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  background: var(--bg); display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}
.pick-card:hover { border-color: var(--accent); box-shadow: 0 6px 20px rgba(26,48,96,.1); }
.pick-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.pick-img-link { display: block; overflow: hidden; }
.pick-img-link img { transition: transform .3s; }
.pick-img-link:hover img { transform: scale(1.04); }
.pick-body { padding: 1.1rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.pick-role { font-family: ui-monospace,'SF Mono',Menlo,Monaco,Consolas,monospace; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .3rem; }
.pick-card h3 { font-size: 1rem; margin-bottom: .4rem; line-height: 1.35; }
.pick-card h3 a { color: var(--text); text-decoration: none; }
.pick-card h3 a:hover { color: var(--accent); }
.pick-note { font-size: .85rem; color: var(--muted); margin-bottom: .6rem; line-height: 1.45; }
.pick-meta { font-size: .82rem; color: var(--muted); margin-bottom: .75rem; }
.pick-meta .star { color: var(--gold); }
.pick-badges { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .75rem; }
.badge { font-size: .7rem; font-weight: 700; padding: .15rem .5rem; border-radius: 20px; }
.badge-red { background: #fce8e8; color: #c0392b; }
.badge-green { background: #e8f5ea; color: #1a7a2e; }
.badge-amber { background: #fef3e2; color: var(--warn); }
.badge-purple { background: #f0ecfa; color: #5b2d90; }
.badge-navy { background: var(--accent-lt); color: var(--accent); }
.book-cta {
  display: block; text-align: center; background: var(--accent); color: #fff;
  padding: .55rem 1rem; border-radius: 4px; font-weight: 700; font-size: .88rem;
  text-decoration: none; margin-top: auto; transition: background .15s;
}
.book-cta:hover { background: #12233f; color: #fff; }

/* ─── Filter Bar ─── */
.filter-section { padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); }
.filter-bar { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.filter-group { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.filter-label { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-right: .25rem; flex-shrink: 0; }
.filter-divider { width: 1px; height: 20px; background: var(--border); margin: 0 .25rem; }
.filter-chip {
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--muted);
  padding: .35rem .8rem; border-radius: 20px; font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: background .12s, border-color .12s, color .12s;
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── Count Bar ─── */
.count-bar { font-size: .88rem; color: var(--muted); margin: 1.25rem 0 .75rem; }
.count-bar strong { color: var(--text); }

/* ─── Topic Banner ─── */
.topic-banner { display: none; background: #fff4e4; border: 1px solid #f5d5a0; border-radius: 6px; padding: .9rem 1.1rem; margin-bottom: 1rem; font-size: .92rem; color: var(--warn); }
.topic-banner.visible { display: block; }

/* ─── Tour Card Grid (hand-curated <30) ─── */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; padding: 1.5rem 0; }
.tour-card {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  background: var(--bg); display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}
.tour-card:hover { border-color: var(--accent); box-shadow: 0 6px 20px rgba(26,48,96,.08); }
.tour-card.tour-row-hidden { display: none; }
.tour-img { display: block; overflow: hidden; position: relative; }
.tour-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .3s; }
.tour-img:hover img { transform: scale(1.04); }
.tour-badge {
  position: absolute; top: .6rem; left: .6rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 20px; backdrop-filter: blur(4px);
}
.tour-badge.group { background: rgba(26,48,96,.85); color: #fff; }
.tour-badge.private { background: rgba(90,45,144,.85); color: #fff; }
.tour-badge.audio { background: rgba(26,122,46,.85); color: #fff; }
.tour-badge.combo { background: rgba(154,104,9,.85); color: #fff; }
.tour-badge.seasonal { background: rgba(192,57,43,.85); color: #fff; }
.tour-body { padding: 1.1rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.tour-body h3 { font-size: 1rem; margin-bottom: .3rem; line-height: 1.35; }
.tour-body h3 a { color: var(--text); text-decoration: none; }
.tour-body h3 a:hover { color: var(--accent); }
.tour-note { display: block; font-size: .82rem; color: var(--muted); margin-bottom: .5rem; line-height: 1.45; }
.tour-meta { font-size: .82rem; color: var(--muted); margin-bottom: .6rem; line-height: 1.5; }
.tour-meta .star { color: var(--gold); }
.tour-badges { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .6rem; }

/* ─── Details Disclosure ─── */
.disclosure-block { border: 1px dashed var(--border); padding: 1.25rem; margin-top: 1.5rem; border-radius: 8px; }
.disclosure-block summary { font-weight: 700; cursor: pointer; color: var(--muted); font-size: .92rem; padding: .25rem 0; }
.disclosure-block summary:hover { color: var(--accent); }
.disclosure-block .tour-grid { padding-top: 1.25rem; }

/* ─── Methodology Box ─── */
.methodology { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem 1.75rem; margin-top: 2rem; font-size: .9rem; color: var(--muted); }
.methodology strong { color: var(--text); }

/* ─── Sitemap Footer ─── */
.site-footer { background: #12233f; color: rgba(255,255,255,.7); padding: 2.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { font-family: var(--serif); color: #fff; font-size: .95rem; margin-bottom: .75rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .35rem; }
.footer-col a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }

/* ─── Callout Box ─── */
.callout { background: var(--accent-lt); border-left: 3px solid var(--accent); padding: 1rem 1.25rem; border-radius: 0 6px 6px 0; margin: 1.5rem 0; font-size: .95rem; }
.callout strong { color: var(--accent); }

/* ─── Responsive ─── */
@media (max-width: 680px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav.open { display: block; }
  .tiers-grid, .know-grid, .persona-grid, .season-grid, .flags-grid { grid-template-columns: 1fr; }
  .picks-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tour-note { display: none; }
  .filter-bar { gap: .5rem; }
}
@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Map & Book (#map) ── */
.tip-map { height: 440px; margin: 1.25rem 0 .5rem; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-alt); z-index: 1; }
.tip-maphint { font-size: .82rem; color: var(--muted); margin: 0 0 1.25rem; }
.tm-mapfail { padding: 1.5rem; color: var(--muted); font-size: .95rem; }
.tip-tours { list-style: none; margin: 1rem 0 .5rem; padding: 0; display: grid; gap: .6rem; }
.tip-tour-item { margin: 0; padding: 0; }
.tip-tour { display: flex; align-items: center; gap: .9rem; padding: .85rem 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; text-decoration: none; color: var(--text); cursor: pointer; transition: border-color .15s, box-shadow .15s, transform .15s; }
.tip-tour:hover { border-color: var(--accent); box-shadow: 0 4px 14px rgba(26,48,96,.16); transform: translateY(-1px); }
.tip-thumb { width: 92px; height: 92px; flex: 0 0 92px; object-fit: cover; border-radius: 6px; background: var(--bg-alt); }
.tip-body { display: flex; flex-direction: column; gap: .3rem; flex: 1; min-width: 0; }
.tip-title { font-family: var(--serif, Georgia), serif; font-weight: 700; font-size: 1rem; line-height: 1.25; }
.tip-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .55rem; font-size: .82rem; color: var(--muted); }
.tip-rating { font-weight: 700; color: var(--accent); }
.tip-price { font-weight: 700; color: var(--text); }
.tip-tag { font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--muted); background: var(--bg-alt); padding: .15em .55em; border-radius: 3px; }
.tip-tag-alt { color: var(--accent); background: var(--accent-lt); }
.tip-cta { align-self: center; flex: 0 0 auto; white-space: nowrap; font-size: .85rem; font-weight: 700; color: var(--accent); }
.tip-credit { font-size: .8rem; color: var(--muted); margin-top: 1rem; }
@media (max-width: 560px) { .tip-map { height: 360px; } .tip-tour { flex-wrap: wrap; } .tip-cta { width: 100%; padding-top: .3rem; } }
.tip-pin { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; font-size: 15px; line-height: 1; color: #fff; border: 2px solid #fff; box-shadow: 0 1px 5px rgba(0,0,0,.4); background: var(--accent); }
.tip-pin-book { background: var(--accent); }
.tip-pin-view { background: #33302c; }
.tip-pop { font-family: var(--sans, sans-serif); }
.tip-pop-title { display: block; font-family: var(--serif, Georgia), serif; font-weight: 700; font-size: 1rem; margin-bottom: .15rem; color: var(--text); }
.tip-pop-sub { display: block; font-size: .85rem; line-height: 1.4; color: var(--muted); }
.leaflet-popup.tip-cardpop .leaflet-popup-content-wrapper { padding: 0; overflow: hidden; border-radius: 10px; }
.leaflet-popup.tip-cardpop .leaflet-popup-content { margin: 0; width: 220px !important; }
.tip-pop-card { display: block; text-decoration: none; color: var(--text); cursor: pointer; }
.tip-pop-img { display: block; width: 100%; height: 120px; object-fit: cover; }
.tip-pop-body { display: block; padding: .65rem .8rem .8rem; }
.tip-pop-eyebrow { display: block; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-bottom: .25rem; }
.tip-pop-cardtitle { display: block; font-family: var(--serif, Georgia), serif; font-weight: 700; font-size: .95rem; line-height: 1.25; margin-bottom: .3rem; }
.tip-pop-cardmeta { display: block; font-size: .82rem; font-weight: 700; color: var(--muted); margin-bottom: .5rem; }
.tip-pop-cardcta { display: inline-block; font-size: .82rem; font-weight: 700; color: #fff; background: var(--accent); padding: .35em .8em; border-radius: 5px; }
