/** Shopify CDN: Minification failed

Line 7:3 Unexpected "="

**/
   Tight, sans-forward, data-aware editorial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --paper:        #FAFAF7;   /* warm off-white */
  --paper-tint:   #F0EFEA;
  --paper-card:   #FFFFFF;
  --paper-dark:   #15171A;
  --ink:          #0A0A0A;
  --ink-soft:     #2B2D31;
  --muted:        #6B6864;
  --muted-soft:   #9A9690;
  --rule:         #E0DDD6;
  --rule-strong:  #B7B0A5;

  --red:          #D5223C;   /* breaking / negative */
  --red-deep:     #A8182F;
  --green:        #0EA66D;   /* positive / live */
  --blue:         #0048AD;   /* opinion / links */
  --yellow:       #FFD400;   /* accent */
  --purple:       #6B3FA0;   /* policy */
  --orange:       #E07B00;   /* markets */

  --serif:  'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  --sans:   'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono:   'IBM Plex Mono', ui-monospace, 'SF Mono', Monaco, monospace;

  --max:    1320px;
  --gutter: 24px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.45;
  font-feature-settings: 'kern', 'liga', 'tnum';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ============================================================
   Top bar — market data strip
   ============================================================ */
.topbar {
  background: var(--paper-dark);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #000;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 30px; gap: 24px;
}
.topbar a { color: var(--paper); font-family: var(--sans); font-weight: 500; }
.topbar a:hover { color: var(--yellow); }
.topbar-links { display: flex; gap: 18px; }
.topbar-markets { display: flex; gap: 20px; align-items: center; color: rgba(250,250,247,0.65); }
.topbar-markets .ticker-item { display: flex; gap: 6px; align-items: center; }
.topbar-markets .ticker-item .label { color: rgba(250,250,247,0.55); font-weight: 500; }
.topbar-markets .ticker-item .val { color: var(--paper); font-weight: 600; }
.topbar-markets .mk-up { color: #4FD18B; font-weight: 600; }
.topbar-markets .mk-down { color: #FF5A66; font-weight: 600; }
.topbar-markets .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s infinite;
  margin-right: 4px;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ============================================================
   Masthead
   ============================================================ */
.site-header { background: var(--paper); border-bottom: 1px solid var(--ink); }
.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0 14px;
  gap: 24px;
}
.masthead-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.masthead-logo {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  line-height: 1;
}
.masthead-logo:hover { color: var(--ink); }
.masthead-logo .stamp {
  font-weight: 700;
  color: var(--red);
}
.masthead-tagline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: right;
  text-transform: uppercase;
}

/* ============================================================
   Primary nav
   ============================================================ */
.nav-primary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 0 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
  letter-spacing: 0.005em;
}
.nav-primary a {
  color: var(--ink);
  padding: 4px 0;
  position: relative;
}
.nav-primary a:hover {
  color: var(--red);
}
.nav-primary a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red);
}
.nav-primary .nav-cart {
  margin-left: auto;
  color: var(--muted);
  font-family: var(--mono);
  font-weight: 500;
}

/* ============================================================
   Kickers / section labels (Bloomberg-style)
   ============================================================ */
.kicker {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kicker.opinion       { color: var(--blue); }
.kicker.markets       { color: var(--orange); }
.kicker.policy        { color: var(--purple); }
.kicker.investigation { color: var(--red); }
.kicker.tech          { color: var(--ink); }
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.kicker .live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); animation: pulse 1.6s infinite;
}

.section-rule {
  border: none;
  border-top: 1px solid var(--ink);
  margin: 40px 0 20px;
}
.section-title {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px;
}
.section-title .more {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: none;
}
.section-title .more:hover { color: var(--red); }

/* ============================================================
   Hero — Bloomberg-style dense lead
   ============================================================ */
.hero {
  padding: 24px 0 8px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}

.hero-lead .hero-image {
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--paper-tint);
  aspect-ratio: 16/9;
}
.hero-lead .hero-image img,
.hero-lead .hero-image > * { width: 100%; height: 100%; object-fit: cover; }

.hero-lead h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: calc(var(--hero-headline-size) * var(--headline-scale));
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
}
.hero-lead h1 a { color: inherit; }
.hero-lead h1 a:hover { color: var(--red); }

.hero-lead .deck {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 12px;
  max-width: 40em;
  font-weight: 400;
}

.byline {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  letter-spacing: 0;
}
.byline strong { color: var(--ink); font-weight: 600; }
.byline .sep { color: var(--rule-strong); }
.byline .time-ago { font-family: var(--mono); font-weight: 500; }

/* Hero secondary stack */
.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-stack .hs-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.hero-stack .hs-item:first-child { padding-top: 0; }
.hero-stack .hs-item:last-child { border-bottom: none; }
.hero-stack .hs-item h3 {
  font-family: var(--serif);
  font-size: calc(var(--story-headline-size) * var(--headline-scale));
  font-weight: 600;
  line-height: 1.2;
  margin: 4px 0 6px;
  letter-spacing: -0.005em;
}
.hero-stack .hs-item h3 a { color: var(--ink); }
.hero-stack .hs-item h3 a:hover { color: var(--red); }
.hero-stack .hs-item .deck-mini {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 6px;
  line-height: 1.4;
}

/* ============================================================
   Story grid — denser, Bloomberg cards
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 0 16px;
}
.story-card { display: flex; flex-direction: column; }
.story-card .story-image {
  margin-bottom: 10px;
  background: var(--paper-tint);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.story-card .story-image img,
.story-card .story-image > * {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 300ms ease;
}
.story-card:hover .story-image img,
.story-card:hover .story-image > * { transform: scale(1.03); }
.story-card h2 {
  font-family: var(--serif);
  font-size: calc(var(--story-headline-size) * var(--headline-scale));
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.005em;
  margin: 4px 0 8px;
}
.story-card h2 a { color: var(--ink); }
.story-card h2 a:hover { color: var(--red); }
.story-card p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 8px;
}

/* Three-up larger variant */
.story-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.story-grid.cols-3 .story-card h2 { font-size: 19px; }

/* ============================================================
   Data band — fake market data strip
   ============================================================ */
.data-band {
  background: var(--paper-card);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  margin: 32px 0 0;
  overflow: hidden;
}
.data-band .row {
  display: flex;
  gap: 36px;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
}
.data-band .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.data-band .item { display: flex; gap: 8px; align-items: baseline; }
.data-band .item .name { color: var(--ink); font-weight: 500; }
.data-band .item .val { color: var(--ink); font-weight: 600; }
.data-band .item .chg { font-weight: 500; }
.data-band .item .chg.up { color: var(--green); }
.data-band .item .chg.dn { color: var(--red); }

/* ============================================================
   Editorial band — pull quote, refined
   ============================================================ */
.editorial-band {
  background: var(--paper-dark);
  color: var(--paper);
  padding: 56px 0;
  margin: 48px 0;
}
.editorial-band .inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.editorial-band .kicker {
  color: var(--yellow);
  margin-bottom: 18px;
}
.editorial-band blockquote {
  font-family: var(--serif);
  font-size: calc(28px * var(--headline-scale));
  font-weight: 500;
  line-height: 1.32;
  color: var(--paper);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.editorial-band .attr {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.55);
  margin-bottom: 22px;
  font-weight: 500;
}
.editorial-band .btn { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.editorial-band .btn:hover { background: #fff; border-color: #fff; color: var(--ink); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
  text-decoration: none;
  border-radius: 0;
}
.btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn.btn-ghost { background: transparent; color: var(--ink); }
.btn.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ============================================================
   Merch / product cards
   ============================================================ */
.merch-section { padding: 12px 0 40px; }
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 140ms ease;
}
.product-card:hover { border-color: var(--ink); }
.product-card .product-image {
  aspect-ratio: 4 / 5;
  background: var(--paper-tint);
  overflow: hidden;
  position: relative;
}
.product-card .product-image img,
.product-card .product-image > * { width: 100%; height: 100%; object-fit: cover; }
.product-card .product-body { padding: 12px 14px 16px; }
.product-card h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 4px;
  color: var(--ink);
}
.product-card h3 a { color: inherit; }
.product-card h3 a:hover { color: var(--red); }
.product-card .price {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.product-card .price-compare {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 400;
  margin-left: 6px;
}
.product-card .badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
}

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter {
  background: var(--paper-card);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 44px 0;
  text-align: center;
}
.newsletter h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.newsletter p {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 20px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  font-family: var(--sans);
  font-size: 13px;
  padding: 11px 14px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  border-right: none;
  outline: none;
}
.newsletter-form input:focus { background: var(--paper-tint); }
.newsletter-form button { border-left: none; }

/* ============================================================
   Article page
   ============================================================ */
.article-wrap { max-width: 720px; margin: 0 auto; padding: 32px var(--gutter) 56px; }
.article-wrap h1 {
  font-family: var(--serif);
  font-size: calc(var(--hero-headline-size) * 1.15 * var(--headline-scale));
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 8px 0 14px;
}
.article-wrap .standfirst {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 24px;
  font-weight: 400;
}
.article-meta {
  display: flex;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-meta strong { color: var(--ink); font-weight: 600; }
.article-meta .meta-block { display: flex; flex-direction: column; gap: 2px; }
.article-meta .meta-block .label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
.article-meta .meta-block .val { font-family: var(--sans); font-weight: 600; color: var(--ink); font-size: 13px; }

.article-hero {
  margin: 0 calc(-1 * var(--gutter)) 24px;
}
.article-hero > div, .article-hero img { width: 100%; }
.article-hero figcaption {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  padding: 8px var(--gutter) 0;
  line-height: 1.4;
}

.article-body {
  font-family: var(--sans);
  font-size: var(--article-body-size);
  line-height: 1.6;
  color: var(--ink-soft);
}
.article-body p { margin: 0 0 18px; }
.article-body h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 28px 0 12px;
  color: var(--ink);
}
.article-body h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 24px 0 10px;
  color: var(--ink);
}
.article-body a { color: var(--blue); border-bottom: 1px solid var(--rule-strong); }
.article-body a:hover { color: var(--red); border-bottom-color: var(--red); }
.article-body blockquote {
  margin: 24px 0;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--red);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
.article-body ul, .article-body ol { margin: 0 0 18px 1.2em; }
.article-body li { margin-bottom: 6px; }

/* Bloomberg "key takeaways" callout */
.key-points {
  background: var(--paper-tint);
  border-left: 3px solid var(--ink);
  padding: 14px 18px;
  margin: 24px 0;
  font-family: var(--sans);
}
.key-points .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.key-points ul { margin: 0; padding-left: 18px; }
.key-points li { font-size: 14px; line-height: 1.45; margin-bottom: 6px; color: var(--ink-soft); }

.article-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 28px 0;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.article-tags a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 9px;
  background: var(--paper-tint);
  border: 1px solid var(--rule);
  color: var(--ink);
  letter-spacing: 0.02em;
}
.article-tags a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ============================================================
   Comments
   ============================================================ */
.comments-section {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
  margin-top: 32px;
}
.comments-section h2 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.comments-section h2 .count {
  font-family: var(--mono);
  background: var(--ink);
  color: var(--paper);
  padding: 2px 7px;
  font-size: 11px;
  letter-spacing: 0;
}
.comment {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.comment-avatar {
  width: 36px; height: 36px;
  border-radius: 0;
  background: var(--paper-tint);
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.comment-avatar.anon {
  background: var(--paper-card);
  border-style: dashed;
  color: var(--muted);
}
.comment-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.comment-author {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}
.comment-badge {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  background: var(--paper-tint);
  color: var(--ink);
  border: 1px solid var(--rule);
}
.comment-badge.reader { background: var(--red); color: #fff; border-color: var(--red); }
.comment-badge.anon   { background: transparent; color: var(--muted); border-style: dashed; }
.comment-badge.author { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.comment-date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-left: auto;
}
.comment-body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.comment-body p { margin: 0 0 8px; }
.comment-actions {
  display: flex; gap: 14px;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.comment-actions button {
  background: none; border: none; cursor: pointer;
  color: var(--muted);
  font-family: inherit; font-size: inherit; font-weight: inherit;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comment-actions button:hover { color: var(--red); }
.comment-actions .upvote { color: var(--ink); font-family: var(--mono); font-weight: 600; }

/* Comment form */
.comment-form {
  margin-top: 28px;
  padding: 20px;
  background: var(--paper-card);
  border: 1px solid var(--rule);
}
.comment-form h3 {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  font-weight: 700;
}
.identity-toggle {
  display: flex; gap: 6px;
  margin-bottom: 14px;
}
.identity-toggle button {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  cursor: pointer;
  text-transform: uppercase;
}
.identity-toggle button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.identity-toggle button.active.anon { background: var(--muted); border-color: var(--muted); }
.form-row { margin-bottom: 10px; display: flex; gap: 10px; flex-wrap: wrap; }
.form-row > * { flex: 1; min-width: 200px; }
.form-row input, .form-row textarea {
  font-family: var(--sans);
  font-size: 13px;
  padding: 9px 11px;
  background: #fff;
  border: 1px solid var(--rule);
  color: var(--ink);
  width: 100%;
  outline: none;
  transition: border-color 100ms ease;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--ink); }
.form-row textarea { min-height: 90px; resize: vertical; line-height: 1.5; }

/* ============================================================
   Product page
   ============================================================ */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 32px 0 64px;
}
.product-gallery {
  background: var(--paper-tint);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.product-gallery > * { width: 100%; height: 100%; }
.product-info h1 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 6px 0 10px;
  line-height: 1.1;
}
.product-info .product-price {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.product-info .product-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.variant-group { margin-bottom: 18px; }
.variant-group .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
.variant-options { display: flex; gap: 6px; flex-wrap: wrap; }
.variant-options button {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--rule);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 120ms ease;
}
.variant-options button:hover { border-color: var(--ink); }
.variant-options button.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.qty-stepper { display: flex; align-items: center; gap: 0; border: 1px solid var(--rule); width: fit-content; }
.qty-stepper button {
  width: 34px; height: 34px;
  background: var(--paper-card); border: none;
  font-family: var(--sans); font-size: 14px; cursor: pointer;
  color: var(--ink);
}
.qty-stepper button:hover { background: var(--paper-tint); }
.qty-stepper input { width: 44px; height: 34px; border: none; text-align: center; font-family: var(--mono); font-size: 13px; background: #fff; }

.product-features {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.product-features li {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  padding: 7px 0;
  border-bottom: 1px solid var(--rule);
  list-style: none;
}
.product-features li:last-child { border-bottom: none; }
.product-features ul { padding: 0; margin: 0; }

/* ============================================================
   Cart
   ============================================================ */
.cart-page { padding: 32px 0 64px; }
.cart-page h1 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
}
.cart-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 14px;
  vertical-align: middle;
}
.cart-table td.num { font-family: var(--mono); font-weight: 600; }
.cart-table td .item-img {
  width: 60px; height: 76px; background: var(--paper-tint); margin-right: 12px;
  display: inline-block; vertical-align: middle;
  background-size: cover; background-position: center;
}
.cart-totals {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.cart-totals .subtotal-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.cart-totals .subtotal {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
}

/* ============================================================
   404
   ============================================================ */
.notfound { text-align: center; padding: 80px 24px; }
.notfound h1 {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}
.notfound p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--paper-dark);
  color: var(--paper);
  padding: 48px 0 28px;
  margin-top: 40px;
  font-family: var(--sans);
  font-size: 12px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(250,250,247,0.1);
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.5);
  margin: 0 0 12px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 7px; }
.site-footer ul a { color: var(--paper); }
.site-footer ul a:hover { color: var(--yellow); }
.site-footer .brand-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.site-footer .brand-desc {
  color: rgba(250,250,247,0.65);
  line-height: 1.5;
  font-size: 12px;
}
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(250,250,247,0.5);
  font-size: 11px;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
}
.footer-bottom a { color: rgba(250,250,247,0.7); }
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: repeat(3, 1fr); }
  .merch-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  .product-page { grid-template-columns: 1fr; gap: 28px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .topbar-markets { display: none; }
}
@media (max-width: 560px) {
  :root { --gutter: 16px; }
  .masthead { grid-template-columns: 1fr; text-align: center; }
  .masthead-tagline { text-align: center; }
  .nav-primary { gap: 14px; font-size: 12px; }
  .story-grid, .story-grid.cols-3 { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .article-wrap h1 { font-size: 28px; }
}
