/* ============================================================
   orlando-theme-parks.com — editorial / data-journalism theme
   Accent: warm rust-coral (Florida sunset, theme-park heat)
   ============================================================ */

:root {
  --bg:        #fafaf8;
  --bg-alt:    #f2f0eb;
  --border:    #dedad4;
  --text:      #1c1b18;
  --muted:     #5a5751;
  --accent:    #c64a16;        /* rust-coral */
  --accent-lt: #fdeee5;
  --accent-dk: #8c2f08;
  --warn:      #9a6809;
  --highlight: #fde68a;
  --highlight-strong: #fbd35a;
  --serif:     'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:      'Source Sans 3', system-ui, -apple-system, sans-serif;
  --mono:      ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  --max:       820px;
  --wide:      1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  /* Prevent any element wider than the viewport from making the whole page
     horizontally scrollable. `clip` lets position:sticky keep working,
     unlike `hidden`. Without this, a too-wide .fact-label inside the grid
     was pushing the entire facts-bar wider than the viewport, and visitors
     could pan right and see all other text cut off on the left. */
  overflow-x: clip;
}
html {
  scroll-behavior: smooth;
  /* Sticky stack is header (52) on /tours, header (52) + anchor-nav (~33) = 85 on /.
     96 covers both with ~10px breathing. */
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-dk); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: .5rem; }
h4 { font-size: 1.05rem; margin-bottom: .4rem; }
p { margin-bottom: 1rem; }
strong { font-weight: 700; }
em { font-style: italic; }
ul, ol { margin: 0 0 1rem 1.2rem; }
li { margin-bottom: .35rem; }

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

/* ----- Header ----- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: 52px;
  display: flex; align-items: center;
}
.site-header-inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.brand {
  font-family: var(--serif); font-weight: 700; font-size: 1.1rem;
  color: var(--text); text-decoration: none; letter-spacing: -.01em;
}
.brand:hover { color: var(--accent); }
.brand-mark { color: var(--accent); }
.nav-links {
  display: flex; gap: 1.4rem; list-style: none; margin: 0;
  font-size: .95rem;
}
.nav-links a { color: var(--text); text-decoration: none; }
.nav-links a:hover { color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--text); }

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  /* Side drawer pattern (Tokyo). position:fixed so we're tied to the viewport,
     not to the sticky .site-header (which can produce containing-block weirdness
     and "scramble" the page width when combined with left:0 right:0).
     translateX hides off the right edge — no impact on document width. */
  .nav-links {
    position: fixed; top: 52px; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg);
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .5rem 0; min-width: 200px;
    box-shadow: -4px 8px 24px rgba(28, 27, 24, .08);
    transform: translateX(105%); transition: transform .2s;
    list-style: none; margin: 0;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { padding: 0; }
  .nav-links a { display: block; padding: .8rem 1.4rem; width: 100%; }
}

/* ----- Hero ----- */
.hero {
  padding: 3rem 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}
.deck {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--muted);
  margin-top: 1rem;
  max-width: 680px;
  font-weight: 400;
  line-height: 1.5;
}
.byline {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* ----- Facts bar ----- */
.facts-bar {
  background: var(--text);
  color: #f5f3ee;
  padding: 1.5rem 1.25rem;
}
.facts-bar-inner {
  max-width: var(--wide); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}
.fact {
  text-align: center;
  min-width: 0;  /* lets grid track shrink below content's intrinsic width */
}
.fact-num {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.7rem; color: #fff;
  display: block; line-height: 1;
  overflow-wrap: anywhere;
}
.fact-label {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: #cbc7be; margin-top: .4rem; display: block;
  overflow-wrap: anywhere;  /* break long uppercase mono labels on narrow viewports */
}

/* ----- Anchor-nav (sticky strip) ----- */
.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;
  -webkit-overflow-scrolling: touch;
}
.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; white-space: nowrap;
}
.anchor-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  opacity: 1;
}

/* ----- Section ----- */
.section {
  padding: 3rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.section.alt { background: var(--bg-alt); }
.section-eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: .5rem;
}

/* ----- TL;DR callout ----- */
.tldr-card {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 1.5rem 1.75rem;
  margin: 1rem 0;
  box-shadow: 0 1px 2px rgba(28,27,24,.04);
}
.tldr-card h3 {
  font-family: var(--mono);
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.tldr-card ul { margin: 0 0 0 1.1rem; }
.tldr-card li { margin-bottom: .9rem; line-height: 1.55; }
.tldr-card li:last-child { margin-bottom: 0; }

/* ----- u-link (yellow highlighter pattern, em stops) ----- */
.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);
  background-image: linear-gradient(to top,
    transparent .15em,
    var(--highlight-strong) .15em,
    var(--highlight-strong) 1.05em,
    transparent 1.05em);
}

/* ----- Top 8 parks list ----- */
.top10 { list-style: none; margin: 0; padding: 0; counter-reset: rank; }
.top10 li {
  counter-increment: rank;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}
.top10 li::before { content: none; }
.top10-rank {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.top10-rank::before { content: counter(rank, decimal-leading-zero); }
.top10-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.top10-desc { color: var(--muted); margin-bottom: .6rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.chip {
  display: inline-block;
  padding: .25em .7em;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .05em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  border-radius: 0;
  white-space: nowrap;
}
.chip.accent {
  background: var(--accent-lt);
  border-color: var(--accent);
  color: var(--accent-dk);
  font-weight: 700;
}
.chip.accent:hover { background: var(--accent); color: #fff; }
.chip.warn { background: #fef3d6; border-color: var(--warn); color: var(--warn); font-weight: 700; }

/* ----- Hidden gems grid ----- */
.gem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.gem-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.2rem 1.3rem;
}
.gem-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.gem-card p { font-size: .94rem; color: var(--muted); margin-bottom: .8rem; line-height: 1.5; }

/* ----- Persona grid ----- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.persona-card {
  background: var(--bg-alt);
  border-top: 3px solid var(--accent);
  padding: 1.4rem 1.5rem;
}
.persona-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.persona-card ul { font-size: .94rem; margin-bottom: .8rem; line-height: 1.55; }
.persona-card .chips { margin-top: .8rem; }

/* ----- Season grid ----- */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.season-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.2rem 1.3rem;
}
.season-card h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.season-card .season-when {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .8rem;
}
.season-card p { font-size: .94rem; color: var(--muted); margin-bottom: .5rem; line-height: 1.55; }

/* ----- Cost table ----- */
.data-table {
  width: 100%; border-collapse: collapse;
  background: #fff; font-size: .94rem;
  margin-top: 1rem;
}
.data-table th, .data-table td {
  padding: .7rem .9rem; text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table th {
  font-family: var(--mono);
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  background: var(--bg-alt);
}
.data-table tbody tr:hover { background: var(--accent-lt); }
.data-table .num { text-align: right; font-variant-numeric: tabular-nums; }

/* ----- Honest-rating callout (homepage teaser) ----- */
.honest-callout {
  background: var(--bg-alt);
  border-left: 4px solid var(--warn);
  padding: 1.7rem 1.9rem;
  margin: 2rem 0;
}
.honest-callout h3 {
  font-family: var(--mono); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--warn); margin-bottom: .8rem;
}
.honest-callout p { font-size: 1.05rem; line-height: 1.6; }
.honest-callout p:last-child { margin-bottom: 0; }
.honest-callout .stat-row {
  display: flex; flex-wrap: wrap; gap: 2rem; margin: 1.2rem 0;
  font-family: var(--mono); font-size: .85rem;
}
.honest-callout .stat-row strong { color: var(--text); font-size: 1.2rem; font-family: var(--serif); display: block; }

/* ----- Red flag list ----- */
.flag-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 1.5rem;
}
.flag-item {
  background: #fff; border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.1rem 1.3rem;
}
.flag-item h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.flag-item p { font-size: .94rem; color: var(--muted); line-height: 1.55; margin-bottom: 0; }

/* ----- FAQ ----- */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  padding: 1.1rem 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq-q::after {
  content: '+'; font-family: var(--mono); font-size: 1.4rem;
  color: var(--accent); flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  padding: 0 0 1.4rem;
  color: var(--text); line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }
.faq-a p { margin-bottom: .75rem; }
.faq-a p:last-child { margin-bottom: 0; }

/* ----- Footer ----- */
.site-footer {
  background: var(--text);
  color: #cbc7be;
  padding: 3rem 1.25rem 2rem;
  font-size: .92rem;
}
.site-footer-inner {
  max-width: var(--wide); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; margin-bottom: 1rem; font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; }
.footer-col li { padding: .25rem 0; }
.footer-col a { color: #cbc7be; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  max-width: var(--wide); margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid #4a4742;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .05em;
  color: #8e8a82;
}

/* ----- Floating plan-pill (homepage long pages) ----- */
.plan-pill {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  background: var(--accent); color: #fff;
  padding: .75em 1.4em;
  font-family: var(--sans); font-weight: 700; font-size: .92rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(28,27,24,.18);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .15s;
}
.plan-pill.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.plan-pill:hover { background: var(--accent-dk); color: #fff; }

/* ============================================================
   /tours catalogue (hand-curated <30 variant)
   ============================================================ */

.filter-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
  /* Not sticky — Tokyo theme parks pattern. The chips are visible at the top
     of /tours when the visitor lands; once they scroll into the cards, the
     active chip's color is no longer needed in view (cards already filtered). */
}
.filter-bar-inner {
  max-width: var(--wide); margin: 0 auto;
  display: flex; gap: .5rem; flex-wrap: wrap; align-items: center;
}
.filter-label {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-right: .25rem;
}
.filter-chip {
  display: inline-block;
  padding: .4em .9em;
  font-family: var(--sans); font-size: .9rem; font-weight: 600;
  background: #fff; border: 1px solid var(--border);
  color: var(--text); text-decoration: none; cursor: pointer;
  transition: background .15s, border-color .15s, color .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 {
  font-family: var(--mono); font-size: .85rem;
  color: var(--muted); padding: 1rem 0;
}
.count-bar strong { color: var(--text); font-size: 1.05rem; }
/* /tours?park=X#tickets anchors here. Only the site-header is sticky now
   (52px) — filter-bar is in normal flow, scrolls with the page. */
#tickets { scroll-margin-top: 64px; }

.topic-banner {
  background: #fef3d6; border: 1px solid var(--warn);
  border-left: 4px solid var(--warn);
  padding: 1rem 1.4rem;
  margin: 1.25rem 0;
  font-size: .95rem; line-height: 1.55;
  color: var(--text);
  display: none;
}
.topic-banner.visible { display: block; }
.topic-banner strong { color: var(--warn); }

/* ----- Tour-card grid (hand-curated <30 — whole-card-clickable per blueprint P.4) ----- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.tour-card {
  background: #fff;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
  overflow: hidden;
}
.tour-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(198, 74, 22, .08);
}
.tour-card.tour-row-hidden { display: none; }
.tour-img {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  background: var(--bg-alt);
  overflow: hidden;
}
.tour-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s;
}
.tour-card:hover .tour-img img { transform: scale(1.04); }
.tour-badge {
  position: absolute; top: .8rem; left: .8rem;
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3em .65em;
  background: rgba(28,27,24,.85); color: #fff;
  z-index: 2;
}
.tour-badge.disney    { background: #1a4069; }
.tour-badge.universal { background: #6b1f87; }
.tour-badge.seaworld  { background: #006d8c; }
.tour-badge.value     { background: #2c6a3f; }
.tour-badge.indoor    { background: #5a3621; }
.tour-badge.sightseeing { background: var(--accent); }
.tour-body {
  padding: 1.1rem 1.3rem 1.3rem;
  display: flex; flex-direction: column; flex-grow: 1;
}
.tour-body h3 {
  font-size: 1.1rem; line-height: 1.35;
  margin-bottom: .55rem; min-height: 2.7em;
}
.tour-body h3 a {
  color: var(--text); text-decoration: none;
}
.tour-body h3 a:hover { color: var(--accent); }
.tour-note {
  font-size: .9rem; color: var(--muted);
  line-height: 1.55; margin: 0 0 .9rem;
}
.tour-meta {
  font-family: var(--mono); font-size: .8rem;
  color: var(--muted); margin-bottom: 1rem;
  letter-spacing: .02em;
}
.tour-meta .star { color: var(--accent); font-weight: 700; }
.tour-meta .price-from { color: var(--text); font-weight: 700; }
.tour-meta .price-warn { color: var(--warn); font-style: italic; }
.book-cta {
  display: inline-block; align-self: flex-start;
  padding: .6em 1.2em;
  font-family: var(--sans); font-weight: 700; font-size: .9rem;
  background: var(--accent); color: #fff !important;
  text-decoration: none;
  margin-top: auto;
  transition: background .15s;
}
.book-cta:hover { background: var(--accent-dk); }
.book-cta::after { content: ' \2192'; }

/* ----- Methodology box ----- */
.methodology {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  padding: 1.6rem 1.8rem;
  margin: 2rem 0 0;
  font-size: .94rem; line-height: 1.6;
}
.methodology h3 {
  font-family: var(--mono); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .8rem;
}
.methodology p { margin-bottom: .75rem; }
.methodology p:last-child { margin-bottom: 0; }

/* ============================================================
   /seaworld-honest-rating (VoC-style page)
   ============================================================ */

.voc-hero {
  background: var(--bg);
  padding: 4rem 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.voc-hero-inner { max-width: 780px; margin: 0 auto; }
.voc-kicker {
  font-family: var(--mono);
  font-size: .78rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  margin-bottom: 1.5rem;
}
.voc-title-main {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: .95; letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: .5rem;
}
.voc-title-main em { font-style: italic; color: var(--accent); font-weight: 600; }
.voc-title-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--muted); font-weight: 400;
  margin-bottom: 1.5rem;
}
.voc-masthead {
  display: flex; justify-content: center; gap: 1rem;
  font-family: var(--mono); font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); padding-top: 1.5rem;
  border-top: 1px solid var(--border); margin-top: 1.5rem;
  flex-wrap: wrap;
}
.voc-masthead span:not(:last-child)::after {
  content: ' · '; color: var(--border); margin-left: 1rem;
}

/* ----- 3-number stat row ----- */
.voc-stat-row {
  background: var(--bg-alt);
  padding: 2.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.voc-stat-row-inner {
  max-width: 920px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; text-align: center;
}
.voc-stat .voc-stat-num {
  font-family: var(--serif); font-size: 3.4rem; font-weight: 600;
  line-height: 1; color: var(--text);
  letter-spacing: -.02em;
}
.voc-stat .voc-stat-num.dim { color: var(--muted); }
.voc-stat .voc-stat-num.warn { color: var(--warn); }
.voc-stat .voc-stat-num.accent { color: var(--accent); }
.voc-stat .voc-stat-label {
  font-family: var(--mono); font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: .8rem;
}
.voc-stat .voc-stat-foot {
  font-size: .85rem; color: var(--muted);
  margin-top: .4rem; line-height: 1.4;
}

/* ----- Distribution chart ----- */
.voc-chart {
  max-width: 720px; margin: 2rem auto;
  font-family: var(--mono); font-size: .9rem;
}
.voc-chart-row {
  display: grid; grid-template-columns: 36px 1fr 80px;
  gap: 1rem; align-items: center;
  padding: .35rem 0;
}
.voc-chart-star { font-weight: 700; color: var(--text); }
.voc-chart-bar {
  height: 22px; background: var(--bg-alt);
  border: 1px solid var(--border); position: relative;
}
.voc-chart-bar-fill {
  height: 100%; background: var(--accent);
  transition: width .4s;
}
.voc-chart-row.lo .voc-chart-bar-fill { background: var(--warn); }
.voc-chart-count { color: var(--muted); font-size: .82rem; text-align: right; }

/* ----- Pro/con columns ----- */
.voc-grid {
  max-width: var(--wide); margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 760px) { .voc-grid { grid-template-columns: 1fr; gap: 2rem; } }
.voc-col h2 {
  font-size: 1.6rem; margin-bottom: 1.5rem;
  padding-bottom: .8rem; border-bottom: 2px solid var(--text);
  display: flex; align-items: baseline; gap: .8rem;
}
.voc-col.pro h2 { border-bottom-color: #2c6a3f; }
.voc-col.con h2 { border-bottom-color: #8c2f08; }
.voc-col h2 small {
  font-family: var(--mono); font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}
.voc-item {
  margin-bottom: 2.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.voc-item:last-child { border-bottom: 0; }
.voc-item-head {
  display: grid; grid-template-columns: 24px 1fr;
  gap: .6rem; align-items: baseline; margin-bottom: .7rem;
}
.voc-item-num {
  font-family: var(--mono); font-size: .85rem;
  letter-spacing: .04em; color: var(--muted); font-style: italic;
}
.voc-item h3 {
  font-size: 1.2rem; margin-bottom: 0;
  font-family: var(--serif);
}
.voc-item-body {
  font-size: .98rem; line-height: 1.65; color: var(--text);
  margin-bottom: 1rem; margin-left: 1.85rem;
}
.voc-item-body em { color: var(--muted); font-style: italic; }
.voc-quote {
  margin-left: 1.85rem;
  border-left: 3px solid var(--border);
  padding: .35rem 0 .35rem 1.1rem;
  font-family: var(--serif); font-style: italic;
  font-size: .96rem; color: var(--text); line-height: 1.55;
}
.voc-col.pro .voc-quote { border-left-color: #2c6a3f; }
.voc-col.con .voc-quote { border-left-color: #8c2f08; }
.voc-quote-meta {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-top: .5rem; font-style: normal;
}

/* ----- Verdict box ----- */
.voc-verdict {
  max-width: 880px; margin: 2rem auto;
  padding: 2.5rem 1.25rem;
}
.voc-verdict-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 760px) { .voc-verdict-grid { grid-template-columns: 1fr; } }
.voc-verdict-card {
  background: #fff; border: 1px solid var(--border);
  padding: 1.8rem 1.9rem;
}
.voc-verdict-card.go { border-top: 4px solid #2c6a3f; }
.voc-verdict-card.skip { border-top: 4px solid #8c2f08; }
.voc-verdict-card h3 {
  font-family: var(--mono); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.voc-verdict-card.go h3 { color: #2c6a3f; }
.voc-verdict-card.skip h3 { color: #8c2f08; }
.voc-verdict-card ul { margin: 0 0 0 1.1rem; }
.voc-verdict-card li { font-size: .96rem; line-height: 1.55; margin-bottom: .7rem; }

/* ----- Persona tour cards ----- */
.voc-tcards {
  max-width: var(--wide); margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
/* .voc-tcard is an <a> wrapping the entire card (whole-card-clickable per blueprint P.4) */
.voc-tcard {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 1.6rem 1.7rem;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.voc-tcard:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 22px rgba(198, 74, 22, .14);
  transform: translateY(-2px);
}
.voc-tcard:hover h3 { color: var(--accent); }
.voc-tcard-persona {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  margin-bottom: .8rem;
}
.voc-tcard h3 {
  font-size: 1.15rem; margin-bottom: .55rem; line-height: 1.35;
  color: var(--text);
  transition: color .15s;
}
.voc-tcard p { font-size: .94rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.55; }
.voc-tcard-meta {
  font-family: var(--mono); font-size: .8rem; color: var(--muted);
  margin-top: auto; padding-top: .8rem; border-top: 1px solid var(--border);
}

/* ----- How-we-read footer (replaces 'colophon' wording per user) ----- */
.voc-howread {
  background: var(--text); color: #cbc7be;
  padding: 3rem 1.25rem;
  font-size: .92rem;
}
.voc-howread-inner { max-width: 780px; margin: 0 auto; }
.voc-howread h3 {
  font-family: var(--mono); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: #fff; margin-bottom: 1.2rem;
}
.voc-howread p { margin-bottom: 1rem; line-height: 1.65; }
.voc-howread strong { color: #fff; }
.voc-howread a { color: #fff; }

/* ----- Page intro callout (above grid) ----- */
.intro-callout {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 1.4rem 1.6rem;
  margin: 1.5rem 0 0;
  font-size: 1rem; line-height: 1.6;
}
.intro-callout p { margin-bottom: .7rem; }
.intro-callout p:last-child { margin-bottom: 0; }

/* ----- Mobile tweaks ----- */
@media (max-width: 600px) {
  .hero { padding: 2rem 1.25rem 1.5rem; }
  .section { padding: 2rem 1.25rem; }
  .top10 li { grid-template-columns: 44px 1fr; gap: .75rem; }
  .top10-rank { font-size: 1.7rem; }
  .voc-grid { padding: 2rem 1.25rem; }
  .voc-stat .voc-stat-num { font-size: 2.6rem; }
}

