/* nycattractions.tours — editorial theme, NYC subway-orange accent */

:root {
  --bg:        #fafaf8;
  --bg-alt:    #f2f0eb;
  --border:    #dedad4;
  --text:      #1c1b18;
  --muted:     #5a5751;
  --accent:    #dc6803;
  --accent-dk: #a04902;
  --accent-lt: #fef3e7;
  --warn:      #9a6809;
  --highlight: #fde68a;
  --highlight-strong: #fbd35a;
  --good:      #166534;
  --bad:       #991b1b;
  --serif:     'Fraunces', Georgia, serif;
  --sans:      'Source Sans 3', system-ui, -apple-system, sans-serif;
  --mono:      ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  --max:       820px;
  --wide:      1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.2; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: 2.6rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.4em; }
li { margin-bottom: .35em; }
a { color: var(--accent-dk); }
img { max-width: 100%; height: auto; display: block; }

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

/* ── Inline u-link with 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, background-image .15s;
}
.u-link:hover {
  color: var(--accent-dk);
  background-image: linear-gradient(to top,
    transparent .15em,
    var(--highlight-strong) .15em,
    var(--highlight-strong) 1.05em,
    transparent 1.05em);
}

/* ── Chip (filter-preset link from prose) ─────────────────────────── */
.chip {
  display: inline-block;
  padding: .35em .85em;
  margin: .35em .25em 0 0;
  font-size: .85rem; font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.chip:hover { background: var(--accent-lt); border-color: var(--accent); color: var(--accent-dk); }
.chip.accent { background: var(--accent-lt); border-color: var(--accent); color: var(--accent-dk); }
.chip.accent:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── Site header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,248,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: padding .15s;
}
.header-inner {
  max-width: var(--wide); margin: 0 auto; padding: .9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  font-family: var(--serif); font-weight: 800; font-size: 1.3rem;
  text-decoration: none; color: var(--text);
}
.site-logo span { color: var(--accent); }
.header-nav { display: flex; gap: 1.5rem; }
.header-nav a {
  color: var(--muted); text-decoration: none;
  font-weight: 600; font-size: .95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px; transition: color .15s, border-color .15s;
}
.header-nav a:hover, .header-nav a.active { color: var(--accent-dk); border-bottom-color: var(--accent); }
.hamburger {
  display: none; background: none; border: 0; cursor: pointer;
  padding: .5rem; flex-direction: column; gap: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); }
.mobile-nav { display: none; flex-direction: column; padding: 1rem 1.5rem; border-top: 1px solid var(--border); background: var(--bg); }
.mobile-nav a { padding: .5rem 0; color: var(--text); text-decoration: none; font-weight: 600; }
.mobile-nav.open { display: flex; }

@media (max-width: 720px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero { padding: 3.5rem 0 2rem; background: var(--bg); }
.hero-eyebrow {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent-dk); margin-bottom: 1rem;
}
.hero h1 { font-size: 3rem; margin-bottom: .8rem; }
.hero-deck { font-size: 1.15rem; color: var(--muted); margin-bottom: .8rem; }
.hero-byline { font-size: .9rem; color: var(--muted); margin-bottom: 1.6rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
  display: inline-block; padding: .75rem 1.4rem;
  font-weight: 700; font-size: .95rem;
  text-decoration: none; border-radius: 6px;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); }
.btn-secondary { border: 2px solid var(--text); color: var(--text); background: transparent; }
.btn-secondary:hover { background: var(--text); color: #fff; }

@media (max-width: 600px) {
  .hero h1 { font-size: 2.1rem; }
  .hero { padding: 2.5rem 0 1.5rem; }
}

/* ── Page hero (catalogue) ────────────────────────────────────────── */
.page-hero { padding: 2.5rem 0 1.5rem; }
.page-hero h1 { font-size: 2.4rem; margin-bottom: .5rem; }
.page-hero .hero-deck { font-size: 1.05rem; }

/* ── Facts bar ─────────────────────────────────────────────────────── */
.facts-bar { background: #1c1b18; color: #f4f0e8; padding: 1.4rem 0; }
.facts-inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.fact { min-width: 0; text-align: center; }
.fact-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.fact-label {
  display: block;
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: #c5b9a3; margin-top: .25rem;
  overflow-wrap: anywhere;
}

@media (max-width: 600px) {
  .facts-inner { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .fact-num { font-size: 1.25rem; }
}

/* ── Sticky anchor-nav ────────────────────────────────────────────── */
.anchor-nav {
  position: sticky; top: 60px; 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: var(--mono);
  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;
}
.anchor-link:hover { color: var(--accent-dk); border-bottom-color: var(--accent); opacity: 1; }

/* ── Section labels ────────────────────────────────────────────────── */
section { padding: 3rem 0; border-top: 1px solid var(--border); }
section:first-of-type { border-top: 0; }
.section-label {
  font-family: var(--mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-dk); margin-bottom: .6rem;
}

/* ── TL;DR box ─────────────────────────────────────────────────────── */
.tldr-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 1.5rem 1.8rem;
  border-radius: 0 8px 8px 0;
}
.tldr-box ul { margin: 0; }
.tldr-box li { margin-bottom: .8em; }
.tldr-box li:last-child { margin-bottom: 0; }

/* ── Comparison grid (4-up) ───────────────────────────────────────── */
.compare-grid, .deck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0;
}
.compare-card, .deck-card {
  background: var(--bg-alt);
  padding: 1.4rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.compare-vs, .deck-tag {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-bottom: .5rem;
}
.compare-card h3, .deck-card h3 { margin-bottom: .5rem; }
.deck-stats {
  font-size: .9rem; color: var(--muted);
  margin: .4rem 0 .8rem;
  font-family: var(--mono);
}

/* ── Big8 list (top attractions) ──────────────────────────────────── */
.big-list { list-style: none; padding-left: 0; }
.big-list > li {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
.big-list > li:last-child { border-bottom: 0; }
.big-list > li::before { content: none; }
.big-num {
  font-family: var(--serif); font-weight: 800;
  font-size: 2rem; color: var(--accent);
  line-height: 1;
}
.big-name { font-weight: 700; font-size: 1.1rem; margin-bottom: .25rem; display: block; font-family: var(--serif); }
.big-meta {
  font-family: var(--mono); font-size: .8rem; color: var(--muted);
  margin-bottom: .5rem;
}
.big-body p { margin-bottom: .6rem; }

/* ── Pass economics table ──────────────────────────────────────────── */
.pass-table { overflow-x: auto; margin: 1.5rem 0; }
.pass-table table {
  width: 100%; border-collapse: collapse;
  font-size: .92rem;
  min-width: 560px;
}
.pass-table th, .pass-table td {
  padding: .8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.pass-table th { background: var(--bg-alt); font-weight: 700; }
.pass-price { font-family: var(--mono); white-space: nowrap; font-weight: 700; }

/* ── Persona grid ─────────────────────────────────────────────────── */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0;
}
.persona-card {
  background: var(--bg-alt);
  padding: 1.4rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.persona-card h3 { margin-bottom: .8rem; }
.persona-card ul { padding-left: 1.2rem; flex: 1; }
.persona-chip {
  display: inline-block; margin-top: .8rem;
  padding: .4rem 1rem; font-size: .82rem; font-weight: 700;
  background: var(--accent); color: #fff;
  border-radius: 999px; text-decoration: none;
  align-self: flex-start;
  transition: background .15s;
}
.persona-chip:hover { background: var(--accent-dk); }

/* ── Season grid ──────────────────────────────────────────────────── */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0;
}
.season-card {
  padding: 1.3rem;
  background: var(--bg-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.season-months {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-dk); margin-bottom: .3rem;
}
.season-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.season-verdict {
  margin-top: .6rem; font-style: italic; color: var(--muted);
  font-size: .92rem;
}

/* ── Flag list (red flags + scams) ────────────────────────────────── */
.flag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0;
}
.flag-item {
  background: #fff8f5;
  border-left: 3px solid var(--bad);
  padding: 1.2rem 1.4rem;
  border-radius: 0 6px 6px 0;
}
.flag-item h3 { font-size: 1rem; margin-bottom: .4rem; color: var(--bad); }
.flag-item p { margin-bottom: .6rem; font-size: .94rem; }

/* ── Underserved gems ──────────────────────────────────────────────── */
.gems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0;
}
.gem-card {
  background: var(--bg-alt);
  padding: 1.3rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.gem-tag {
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent-dk); margin-bottom: .5rem;
}
.gem-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.gem-card p { font-size: .94rem; margin-bottom: .6rem; }

/* ── Tours CTA box ─────────────────────────────────────────────────── */
.tours-cta-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 1.8rem 2rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.tours-cta-box ul { margin: 1rem 0; }

/* ── FAQ accordion ─────────────────────────────────────────────────── */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; text-align: left;
  background: none; border: 0; padding: 1.2rem 0;
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.5rem; color: var(--accent);
  transition: transform .15s;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
}
.faq-item.open .faq-answer { max-height: 1200px; padding-bottom: 1.2rem; }
.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: .8rem; }

/* ── Floating plan 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;
  box-shadow: 0 6px 20px rgba(220,104,3,.3);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s, background .15s;
}
.plan-pill.visible { opacity: 1; pointer-events: auto; }
.plan-pill:hover { background: var(--accent-dk); }

@media (max-width: 600px) {
  .plan-pill { bottom: 1rem; right: 1rem; padding: .55em 1.1em; font-size: .9rem; }
}

/* ── Footer ────────────────────────────────────────────────────────── */
.site-footer { background: #1c1b18; color: #c5b9a3; padding: 3rem 0 1.5rem; margin-top: 4rem; }
.footer-inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand h3 { color: #fff; font-size: 1.2rem; margin-bottom: .8rem; }
.footer-brand p { font-size: .92rem; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--mono); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .5em; }
.footer-col a { color: #c5b9a3; text-decoration: none; font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--wide); margin: 2.5rem auto 0; padding: 1.5rem 1.5rem 0;
  border-top: 1px solid #3a3733;
  font-size: .85rem; color: #8a8077;
}
.footer-bottom a { color: #c5b9a3; }

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================ */
/* CATALOGUE (tours.html) — large-pool variant                  */
/* ============================================================ */

.ban-notice, .intro-callout {
  background: var(--accent-lt);
  border-left: 4px solid var(--accent);
  padding: 1.1rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}
.intro-callout p { margin: 0; }
.intro-callout p + p { margin-top: .8rem; }

/* Hero picks */
.picks-header { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: .25rem; }
.picks-header h2 { margin: 0; }
.view-all-link {
  font-size: .9rem; font-weight: 700; color: var(--accent-dk);
  text-decoration: none; white-space: nowrap;
}
.view-all-link:hover { color: var(--accent); }

.hero-picks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
  margin: 1.2rem 0 2rem;
}

/* Filter bar — NOT sticky per blueprint P */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 1.5rem;
}
.filter-label {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-right: .3rem;
}
.filter-divider {
  width: 1px; height: 24px; background: var(--border);
  margin: 0 .8rem;
}
.filter-chip {
  font-family: var(--sans);
  padding: .35em .85em;
  font-size: .85rem; font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.filter-chip:hover { background: var(--accent-lt); border-color: var(--accent); color: var(--accent-dk); }
.filter-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.count-bar {
  margin: 1.2rem 0 1rem;
  font-family: var(--mono); font-size: .9rem; color: var(--muted);
  scroll-margin-top: 80px;
}
.count-bar strong { color: var(--text); font-weight: 700; }

/* Topic banner */
.topic-banner {
  background: #fff8e8;
  border-left: 4px solid var(--warn);
  padding: 1rem 1.4rem;
  border-radius: 0 6px 6px 0;
  margin: 1rem 0;
  font-size: .94rem;
  display: none;
}
.topic-banner.visible { display: block; }

/* Tour cards (used in hero picks) */
.tour-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  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(220,104,3,.08);
}
.tour-img {
  display: block;
  position: relative;
  aspect-ratio: 720 / 480;
  background: var(--bg-alt);
  text-decoration: none;
}
.tour-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.tour-badge {
  position: absolute; top: .8rem; left: .8rem;
  padding: .25em .7em;
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--bg); color: var(--text);
  border-radius: 4px;
  z-index: 2;
}
.tour-badge.helicopter   { background: #6b21a8; color: #fff; }
.tour-badge.liberty      { background: #166534; color: #fff; }
.tour-badge.memorial     { background: #1c1b18; color: #fff; }
.tour-badge.observation  { background: #0369a1; color: #fff; }
.tour-badge.cruise       { background: #075985; color: #fff; }
.tour-badge.daytrip      { background: #92400e; color: #fff; }
.tour-badge.food         { background: #ca8a04; color: #fff; }
.tour-badge.museum       { background: #7c2d12; color: #fff; }
.tour-badge.brooklyn     { background: #0f766e; color: #fff; }
.tour-badge.walking      { background: #374151; color: #fff; }
.tour-badge.bike         { background: #15803d; color: #fff; }
.tour-badge.other        { background: var(--muted); color: #fff; }

.tour-flags {
  position: absolute; top: .8rem; right: .8rem;
  display: flex; flex-direction: column; gap: .25rem; align-items: flex-end;
  z-index: 2;
}
.flag-pill {
  padding: .2em .6em;
  font-family: var(--mono); font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  border-radius: 3px;
}
.flag-pill.sellout { background: #b91c1c; color: #fff; }
.flag-pill.offer   { background: #d97706; color: #fff; }
.flag-pill.skip    { background: #166534; color: #fff; }

.hero-badge {
  position: absolute; bottom: .8rem; left: .8rem;
  padding: .3em .8em;
  font-family: var(--mono); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--accent); color: #fff;
  border-radius: 4px;
  z-index: 2;
}

.tour-body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex; flex-direction: column;
  flex: 1;
}
.tour-body h3 {
  font-size: 1rem; font-family: var(--sans);
  font-weight: 700; line-height: 1.35;
  margin-bottom: .5rem;
}
.tour-body h3 a {
  color: var(--text); text-decoration: none;
}
.tour-body h3 a:hover { color: var(--accent-dk); }
.tour-meta {
  font-size: .85rem; color: var(--muted);
  font-family: var(--mono);
  margin: 0 0 .9rem;
  flex: 1;
}
.tour-meta .star { color: var(--warn); font-weight: 700; }
.tour-meta .strike { text-decoration: line-through; color: var(--muted); margin-right: .35em; }

.book-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .55em 1.2em;
  font-weight: 700; font-size: .9rem;
  text-decoration: none;
  border-radius: 4px;
  align-self: flex-start;
  transition: background .15s;
}
.book-cta:hover { background: var(--accent-dk); }

/* ── Auto-table catalogue (large-pool variant) ────────────────────── */
.tours-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.tours-table {
  width: 100%; border-collapse: collapse;
  font-size: .92rem;
  min-width: 760px;
}
.tours-table th, .tours-table td {
  padding: .8rem 1rem; text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.tours-table th {
  background: var(--bg-alt);
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted);
  cursor: pointer; user-select: none;
  position: sticky; top: 0;
}
.tours-table th.sortable::after {
  content: ' ⇅'; font-size: .8em; color: var(--muted); opacity: .5;
}
.tours-table th.sort-asc::after { content: ' ↑'; opacity: 1; color: var(--accent); }
.tours-table th.sort-desc::after { content: ' ↓'; opacity: 1; color: var(--accent); }
.tours-table tr.tour-row-hidden { display: none; }
.tours-table tr:hover td { background: var(--bg-alt); }
.tc-name { font-weight: 700; }
.tc-name a {
  color: var(--text); text-decoration: none;
}
.tc-name a:hover { color: var(--accent-dk); text-decoration: underline; }
.tc-tag {
  display: inline-block;
  padding: .1em .55em;
  font-family: var(--mono); font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  background: var(--bg-alt); color: var(--muted);
  border-radius: 3px;
}
.tc-tag.helicopter { background: #f3e8ff; color: #6b21a8; }
.tc-tag.liberty { background: #dcfce7; color: #166534; }
.tc-tag.memorial { background: #e5e5e5; color: #1c1b18; }
.tc-tag.observation { background: #dbeafe; color: #0369a1; }
.tc-tag.cruise { background: #cffafe; color: #075985; }
.tc-tag.daytrip { background: #fed7aa; color: #92400e; }
.tc-tag.food { background: #fef3c7; color: #ca8a04; }
.tc-tag.museum { background: #ffedd5; color: #7c2d12; }
.tc-tag.brooklyn { background: #ccfbf1; color: #0f766e; }
.tc-tag.walking { background: #f3f4f6; color: #374151; }
.tc-tag.bike { background: #dcfce7; color: #15803d; }
.tc-rating { font-family: var(--mono); white-space: nowrap; }
.tc-rating .star { color: var(--warn); }
.tc-num { text-align: right; font-family: var(--mono); white-space: nowrap; }
.tc-cta a {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: .35em 1em;
  font-size: .85rem; font-weight: 700;
  text-decoration: none; border-radius: 4px;
  white-space: nowrap;
  transition: background .15s;
}
.tc-cta a:hover { background: var(--accent-dk); }
.tc-flags { font-size: .68rem; color: var(--bad); font-weight: 700; font-family: var(--mono); }
.tc-flags .skip { color: var(--good); }
.tc-flags .offer { color: var(--warn); }

/* ── Methodology box ──────────────────────────────────────────────── */
.methodology {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 1.5rem 1.8rem;
  border-radius: 8px;
  margin-top: 2rem;
  font-size: .94rem;
}
.methodology h3 { margin-top: 0; font-size: 1.1rem; }
.methodology p { margin-bottom: .8rem; }
.methodology p:last-child { margin-bottom: 0; }
