/* =====================================================
   DMZ Korea Tour — styles.css
   Theme: deep forest/military green — DMZ wildlife sanctuary
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,400&family=Source+Sans+3:wght@400;600;700&display=optional');

:root {
  --bg:        #fafaf8;
  --bg-alt:    #f2f0eb;
  --border:    #dedad4;
  --text:      #1c1b18;
  --muted:     #5a5751;
  --accent:    #1e3a2a;
  --accent-lt: #e8f0ec;
  --warn:      #9a6809;
  --highlight: #fde68a;
  --highlight-strong: #fbd35a;
  --serif:     'Fraunces', Georgia, serif;
  --sans:      'Source Sans 3', system-ui, sans-serif;
  --max:       820px;
  --wide:      1120px;
}

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

/* Typography */
h1, h2, h3 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* =====================================================
   Header
   ===================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--accent);
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,.1);
}
.site-header .wide {
  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;
  white-space: nowrap;
}
.site-logo span { font-style: italic; font-weight: 400; opacity: .8; }

.site-nav { display: flex; gap: 1.5rem; align-items: center; }
.site-nav a {
  color: rgba(255,255,255,.85); text-decoration: none; font-size: .88rem;
  font-weight: 600; letter-spacing: .02em;
  transition: color .15s;
}
.site-nav a:hover { color: #fff; }
.site-nav .nav-cta {
  background: rgba(255,255,255,.15); border-radius: 4px;
  padding: .3em .9em; color: #fff;
}
.site-nav .nav-cta:hover { background: rgba(255,255,255,.25); }

.mobile-nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: .4rem; color: #fff;
}
.mobile-nav-toggle span {
  display: block; width: 22px; height: 2px; background: #fff;
  margin: 4px 0; transition: all .2s;
}
.mobile-nav { display: none; }

@media (max-width: 640px) {
  .site-nav { display: none; }
  .mobile-nav-toggle { display: block; }
  .mobile-nav {
    position: fixed; inset: 52px 0 0 0; z-index: 99;
    background: var(--accent); padding: 2rem 1.5rem;
    overflow-y: auto;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a {
    display: block; color: rgba(255,255,255,.9); text-decoration: none;
    font-size: 1.1rem; font-weight: 600; padding: .75rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
}

/* =====================================================
   Hero
   ===================================================== */
.hero {
  padding: 4rem 0 3rem;
  background: var(--bg);
}
.hero-eyebrow {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
}
.hero h1 { max-width: 700px; margin-bottom: 1rem; }
.hero-deck {
  font-size: 1.15rem; color: var(--muted); max-width: 600px;
  line-height: 1.6; margin-bottom: 1.5rem;
}
.hero-byline {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .72rem; color: var(--muted); letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-byline span { color: var(--accent); }

/* =====================================================
   Facts Bar
   ===================================================== */
.facts-bar {
  background: var(--accent); color: #fff;
  padding: 1.25rem 0;
}
.facts-bar .wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
}
.fact { text-align: center; min-width: 0; }
.fact-num {
  display: block;
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
  line-height: 1;
}
.fact-label {
  display: block; font-size: .65rem; letter-spacing: .1em;
  text-transform: uppercase; opacity: .75; margin-top: .3rem;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  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, monospace;
  font-size: .65rem; 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 scaffolding
   ===================================================== */
.section { padding: 3rem 0; }
.section + .section { border-top: 1px solid var(--border); }
.section-alt { background: var(--bg-alt); }
.section-label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .5rem;
}

/* =====================================================
   TL;DR Callout
   ===================================================== */
.tldr-box {
  background: var(--accent-lt);
  border-left: 4px solid var(--accent);
  padding: 1.5rem 1.75rem; border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
}
.tldr-box ul { list-style: none; padding: 0; }
.tldr-box li {
  padding: .4rem 0 .4rem 1.5rem; position: relative;
  font-size: 1.05rem;
}
.tldr-box li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

/* =====================================================
   Inline U-link (persistent 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%;
  transition: color .15s;
}
.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);
}

/* Chip links */
.chip {
  display: inline-flex; align-items: center; gap: .3em;
  padding: .3em .9em; border-radius: 40px;
  font-size: .82rem; font-weight: 700; text-decoration: none;
  transition: background .15s, color .15s;
}
.chip.accent {
  background: var(--accent-lt); color: var(--accent);
  border: 1px solid var(--accent);
}
.chip.accent:hover { background: var(--accent); color: #fff; }

/* =====================================================
   Top Stops Grid
   ===================================================== */
.stops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 1.5rem;
}
.stop-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.25rem 1.5rem;
}
.stop-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.stop-card p { font-size: .9rem; color: var(--muted); margin: 0; }
.stop-num {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .7rem; font-weight: 700; color: var(--accent);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .3rem;
}

/* =====================================================
   Tour Type Cards (persona-style)
   ===================================================== */
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem; margin-top: 1.5rem;
}
.type-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.5rem;
  transition: border-color .15s, box-shadow .15s;
}
.type-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(30,58,42,.08);
}
.type-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.type-card ul {
  list-style: none; padding: 0; font-size: .9rem; color: var(--muted);
}
.type-card li { padding: .2rem 0 .2rem 1.2rem; position: relative; }
.type-card li::before {
  content: '→'; position: absolute; left: 0; color: var(--accent); font-size: .8rem;
}
.type-icon {
  font-size: 1.5rem; margin-bottom: .75rem; display: block;
}

/* =====================================================
   Season Grid
   ===================================================== */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 1.5rem;
}
.season-card {
  padding: 1.25rem; border-radius: 8px;
  border: 1px solid var(--border);
}
.season-card h3 { font-size: .95rem; margin-bottom: .5rem; }
.season-card p { font-size: .88rem; color: var(--muted); margin: 0; }
.season-badge {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .2em .6em; border-radius: 3px;
  display: inline-block; margin-bottom: .5rem;
}
.badge-best { background: var(--accent-lt); color: var(--accent); }
.badge-good { background: #f0f4ef; color: #4a6a5a; }
.badge-ok   { background: #f4f2ec; color: var(--warn); }

/* =====================================================
   Red Flags
   ===================================================== */
.flag-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem; margin-top: 1.5rem;
}
.flag-item {
  background: #fdf8f3; border: 1px solid #e8d8c4;
  border-left: 4px solid var(--warn);
  border-radius: 0 6px 6px 0; padding: 1rem 1.25rem;
}
.flag-item h3 { font-size: .95rem; color: var(--warn); margin-bottom: .3rem; }
.flag-item p { font-size: .88rem; color: var(--muted); margin: 0; }

/* =====================================================
   Community Voices
   ===================================================== */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 1.5rem;
}
.voice-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.25rem;
}
.voice-quote {
  font-family: var(--serif); font-style: italic; font-size: 1rem;
  line-height: 1.6; margin-bottom: .75rem; color: var(--text);
}
.voice-meta { font-size: .8rem; color: var(--muted); }
.voice-stars { color: var(--accent); font-size: .9rem; }
blockquote.editorial {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem; font-family: var(--serif);
  font-size: 1.1rem; line-height: 1.6; font-style: italic;
  background: var(--accent-lt); margin-bottom: 1.5rem; border-radius: 0 6px 6px 0;
}

/* =====================================================
   FAQ Accordion
   ===================================================== */
.faq-list { margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 1rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 1.05rem; color: var(--text);
  gap: 1rem;
}
.faq-question::after {
  content: '+'; font-family: var(--sans); font-size: 1.2rem;
  color: var(--accent); flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  display: none; padding: 0 0 1.25rem;
  font-size: .95rem; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* =====================================================
   Tours CTA section
   ===================================================== */
.tours-cta-box {
  background: var(--accent-lt); border: 1px solid var(--accent);
  border-radius: 8px; padding: 2rem 2.5rem;
}
.tours-cta-box h2 { color: var(--accent); margin-bottom: 1rem; }
.tours-cta-box ul {
  list-style: none; padding: 0; margin-bottom: 1.5rem;
}
.tours-cta-box li { padding: .3rem 0 .3rem 1.5rem; position: relative; }
.tours-cta-box li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.btn {
  display: inline-flex; align-items: center; gap: .4em;
  padding: .75em 1.75em; border-radius: 4px;
  font-weight: 700; font-size: .95rem; text-decoration: none;
  transition: background .15s, transform .1s;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #2a5040; }

/* =====================================================
   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;
  text-decoration: none; font-weight: 700; font-size: .9rem;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 4px 20px rgba(30,58,42,.3);
  white-space: nowrap;
}
.plan-pill.visible { opacity: 1; pointer-events: auto; }
.plan-pill:hover { background: #2a5040; transform: translateY(-2px); }

/* =====================================================
   Tours Page — Hero (shorter)
   ===================================================== */
.tours-hero { padding: 2.5rem 0 1.5rem; }
.tours-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: .5rem; }
.tours-hero p { color: var(--muted); font-size: 1rem; }

/* =====================================================
   Hero Pick Cards (top picks — 4-card grid)
   ===================================================== */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 1.5rem;
}
.pick-card {
  background: var(--bg); border: 2px solid var(--accent);
  border-radius: 10px; overflow: hidden;
  transition: box-shadow .15s, transform .15s;
}
.pick-card:hover { box-shadow: 0 8px 28px rgba(30,58,42,.12); transform: translateY(-2px); }
.pick-card .pick-img-wrap a {
  display: block; overflow: hidden;
}
.pick-card .pick-img-wrap img {
  width: 100%; height: 180px; object-fit: cover;
  transition: transform .3s;
}
.pick-card:hover .pick-img-wrap img { transform: scale(1.03); }
.pick-body { padding: 1rem 1.25rem 1.25rem; }
.pick-role {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .4rem;
}
.pick-body h3 { font-size: .98rem; margin-bottom: .5rem; line-height: 1.3; }
.pick-body h3 a { text-decoration: none; color: var(--text); }
.pick-body h3 a:hover { color: var(--accent); }
.pick-meta { font-size: .82rem; color: var(--muted); margin-bottom: .75rem; }
.pick-meta .star { color: var(--accent); }
.pick-body .book-cta {
  display: inline-flex; align-items: center; gap: .3em;
  background: var(--accent); color: #fff;
  padding: .45em 1.1em; border-radius: 4px;
  font-weight: 700; font-size: .85rem; text-decoration: none;
  transition: background .15s;
}
.pick-body .book-cta:hover { background: #2a5040; }

/* =====================================================
   Filter Bar
   ===================================================== */
.filter-bar { padding: 1.25rem 0; }
.filter-section { margin-bottom: .75rem; }
.filter-label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .4rem;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.filter-chip {
  padding: .35em 1em; border-radius: 40px; cursor: pointer;
  border: 1px solid var(--border); background: var(--bg);
  font-size: .82rem; font-weight: 600; color: var(--muted);
  transition: all .15s;
}
.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-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .72rem; color: var(--muted); letter-spacing: .06em;
  padding: .5rem 0 .75rem;
  border-bottom: 1px solid var(--border); margin-bottom: 1.5rem;
}

/* =====================================================
   Tour Cards (hand-curated, whole-card-clickable)
   ===================================================== */
.section-heading {
  font-size: 1.1rem; font-weight: 700; font-family: var(--serif);
  color: var(--text); margin: 2rem 0 1rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--accent-lt);
  display: flex; align-items: center; gap: .75rem;
}
.section-heading-num {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .65rem; color: var(--accent); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.tour-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.tour-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(30,58,42,.08);
}
.tour-card.hidden { display: none; }

a.tour-img {
  display: block; overflow: hidden; position: relative;
}
a.tour-img img {
  width: 100%; height: 195px; object-fit: cover;
  transition: transform .3s;
}
.tour-card:hover a.tour-img img { transform: scale(1.03); }

/* Badges */
.badge-row {
  position: absolute; top: .6rem; left: .6rem;
  display: flex; flex-wrap: wrap; gap: .3rem;
}
.tour-badge {
  font-size: .65rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: .25em .6em;
  border-radius: 3px; white-space: nowrap;
}
.badge-sellout { background: #dc2626; color: #fff; }
.badge-private { background: #6d28d9; color: #fff; }
.badge-new     { background: #0369a1; color: #fff; }
.badge-offer   { background: #d97706; color: #fff; }
.badge-freec   { background: rgba(30,58,42,.85); color: #fff; }

.tour-body { padding: 1rem 1.1rem 1.1rem; }
.tour-body h3 { font-size: .97rem; margin-bottom: .4rem; line-height: 1.3; }
.tour-body h3 a { text-decoration: none; color: var(--text); }
.tour-body h3 a:hover { color: var(--accent); }
.tour-note {
  display: block; font-size: .82rem; color: var(--muted);
  margin-bottom: .5rem; line-height: 1.4;
}
.tour-meta { font-size: .82rem; color: var(--muted); margin-bottom: .75rem; }
.tour-meta .star { color: #d97706; }
a.book-cta {
  display: inline-flex; align-items: center; gap: .3em;
  background: var(--accent); color: #fff;
  padding: .4em 1em; border-radius: 4px;
  font-weight: 700; font-size: .82rem; text-decoration: none;
  transition: background .15s;
}
a.book-cta:hover { background: #2a5040; }

/* =====================================================
   Methodology Box
   ===================================================== */
.methodology {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.5rem 2rem; margin-top: 2.5rem;
  font-size: .88rem; color: var(--muted);
}
.methodology h3 { font-size: 1rem; color: var(--text); margin-bottom: .75rem; }
.methodology p { margin-bottom: .5rem; }

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  background: var(--text); color: rgba(255,255,255,.7);
  padding: 2.5rem 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.footer-brand { font-family: var(--serif); font-size: 1.1rem; color: #fff; margin-bottom: .5rem; }
.footer-col h4 {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: .2rem 0; }
.footer-col a { color: rgba(255,255,255,.7); 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: .8rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.footer-disclosure { font-size: .78rem; opacity: .6; max-width: 600px; }
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =====================================================
   Logistics / Info table
   ===================================================== */
.info-table { width: 100%; border-collapse: collapse; margin-top: 1.25rem; font-size: .9rem; }
.info-table th {
  text-align: left; font-weight: 700; padding: .6rem 1rem;
  background: var(--accent-lt); color: var(--accent);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
}
.info-table td { padding: .6rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.info-table tr:last-child td { border-bottom: none; }
.info-table td:first-child { font-weight: 700; white-space: nowrap; color: var(--accent); }

/* =====================================================
   Callout boxes
   ===================================================== */
.callout {
  background: var(--accent-lt); border: 1px solid var(--accent);
  border-radius: 8px; padding: 1.25rem 1.5rem; margin: 1.25rem 0;
}
.callout-warn {
  background: #fef3c7; border-color: var(--warn); color: var(--text);
}
.callout-warn strong { color: var(--warn); }
.callout h4 { font-size: 1rem; color: var(--accent); margin-bottom: .4rem; }
.callout-warn h4 { color: var(--warn); }

/* =====================================================
   JSA Status Banner
   ===================================================== */
.jsa-banner {
  background: #fef3c7; border: 1px solid #fbbf24;
  border-radius: 6px; padding: 1rem 1.25rem;
  margin: 1.5rem 0; font-size: .9rem;
}
.jsa-banner strong { color: #92400e; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 768px) {
  .stops-grid, .type-grid, .season-grid, .flag-list,
  .voices-grid, .picks-grid, .cards-grid {
    grid-template-columns: 1fr;
  }
  .picks-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
  .section { padding: 2rem 0; }
}
@media (max-width: 480px) {
  html { font-size: 16px; }
  .hero { padding: 2.5rem 0 2rem; }
  .facts-bar .wide { grid-template-columns: repeat(2, 1fr); }
  .tour-note { display: none; }
}
