/* ============================================
   STRUCTURING WEALTH — Ghost Theme CSS
   structuringwealth.co
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Mono:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --charcoal: #1a1a1a;
  --charcoal-mid: #2a2a2a;
  --charcoal-light: #3a3a3a;
  --gold: #c9a84c;
  --gold-light: #e0c06a;
  --gold-pale: #f5e9c8;
  --cream: #f8f5ee;
  --cream-dark: #ede8dc;
  --text-dark: #1c1c1c;
  --text-mid: #444;
  --text-light: #888;
  --white: #ffffff;
  --border: rgba(201,168,76,0.25);
  --border-subtle: rgba(0,0,0,0.08);
  --max-width: 1200px;
  --content-width: 720px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── BASE ── */
body {
  font-family: 'Libre Baskerville', Georgia, serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================================
   TOPBAR
   ============================================ */
.sw-topbar {
  background: var(--charcoal);
  color: var(--gold-pale);
  text-align: center;
  padding: 10px 20px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================
   NAVIGATION
   ============================================ */
.sw-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.sw-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}

.sw-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.sw-nav-logo span { color: var(--gold); }

.sw-nav-logo img {
  height: 40px;
  width: auto;
}

.sw-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.sw-nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  transition: color 0.2s;
}

.sw-nav-links a:hover { color: var(--gold); }

.sw-nav-cta {
  background: var(--charcoal) !important;
  color: var(--gold) !important;
  padding: 10px 22px;
  border: 1px solid var(--charcoal);
  transition: all 0.2s !important;
}

.sw-nav-cta:hover {
  background: transparent !important;
  color: var(--charcoal) !important;
  border-color: var(--charcoal) !important;
}

/* Member nav state */
.sw-nav-member {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sw-nav-member a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  transition: color 0.2s;
}

.sw-nav-member a:hover { color: var(--gold); }

/* ============================================
   HERO — HOME PAGE
   ============================================ */
.sw-hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
  gap: 80px;
}

.sw-hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.sw-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.sw-hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.sw-hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 44px;
}

.sw-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.sw-hero-logo-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.sw-hero-logo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
}

.sw-hero-logo-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,168,76,0.1);
}

.sw-hero-logo-frame img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.1));
}

.sw-hero-stats {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 40px;
}

.sw-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  display: block;
}

.sw-stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

/* ============================================
   MARQUEE BAND
   ============================================ */
.sw-band {
  background: var(--charcoal);
  padding: 18px 0;
  overflow: hidden;
}

.sw-band-inner {
  display: flex;
  gap: 60px;
  animation: sw-marquee 30s linear infinite;
  white-space: nowrap;
}

.sw-band-item {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.sw-band-item::before {
  content: '◆';
  font-size: 6px;
}

@keyframes sw-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   BUTTONS
   ============================================ */
.sw-btn-primary,
a.sw-btn-primary {
  background: var(--charcoal);
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border: 1px solid var(--charcoal);
  transition: all 0.25s;
  display: inline-block;
  cursor: pointer;
}

.sw-btn-primary:hover,
a.sw-btn-primary:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.sw-btn-ghost,
a.sw-btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--charcoal);
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}

.sw-btn-ghost:hover,
a.sw-btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.sw-btn-gold,
a.sw-btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: all 0.25s;
  display: inline-block;
}

.sw-btn-gold:hover,
a.sw-btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.sw-section {
  padding: 100px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.sw-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.sw-section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 56px;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.sw-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-subtle);
}

.sw-feature-card {
  background: var(--cream);
  padding: 44px 36px;
  transition: background 0.25s;
}

.sw-feature-card:hover { background: var(--charcoal); }

.sw-feature-card:hover .sw-feature-number,
.sw-feature-card:hover .sw-feature-title,
.sw-feature-card:hover .sw-feature-desc { color: var(--cream); }

.sw-feature-card:hover .sw-feature-icon { color: var(--gold); }

.sw-feature-number {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 20px;
  transition: color 0.25s;
}

.sw-feature-icon {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--gold);
  transition: color 0.25s;
}

.sw-feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  transition: color 0.25s;
}

.sw-feature-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mid);
  transition: color 0.25s;
}

/* ============================================
   POST FEED — INDEX PAGE
   ============================================ */
.sw-feed {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
}

.sw-feed .sw-feed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--border-subtle);
  width: 100%;
}

.sw-post-card {
  background: var(--cream);
  padding: 48px 40px;
  text-decoration: none;
  display: block;
  transition: background 0.25s;
  position: relative;
}

.sw-post-card:hover { background: var(--charcoal); }

.sw-post-card:hover .sw-post-tag,
.sw-post-card:hover .sw-post-title,
.sw-post-card:hover .sw-post-excerpt { color: var(--cream); }

.sw-post-card:hover .sw-post-tag { opacity: 0.6; }

.sw-post-access {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--gold);
  padding: 5px 12px;
}

.sw-post-card:hover .sw-post-access {
  background: var(--gold);
  color: var(--charcoal);
}

.sw-post-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  transition: color 0.25s;
}

.sw-post-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 16px;
  transition: color 0.25s;
}

.sw-post-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mid);
  transition: color 0.25s;
}

.sw-post-date {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-top: 24px;
  transition: color 0.25s;
}

/* ============================================
   PRICING — MEMBERSHIP TIERS
   ============================================ */
.sw-pricing {
  background: var(--charcoal);
  padding: 100px 40px;
}

.sw-pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.sw-pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.sw-pricing-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sw-pricing-label::before,
.sw-pricing-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.sw-pricing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.sw-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sw-tier-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 40px;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}

.sw-tier-card:hover,
.sw-tier-card.featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.sw-tier-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.sw-tier-name {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sw-tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.sw-tier-price sup {
  font-size: 22px;
  margin-top: 10px;
  color: var(--gold);
}

.sw-tier-cadence {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

.sw-tier-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sw-tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  flex: 1;
}

.sw-tier-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.sw-tier-features li::before {
  content: '◆';
  color: var(--gold);
  font-size: 7px;
  margin-top: 5px;
  flex-shrink: 0;
}

.sw-tier-btn {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px;
  text-decoration: none;
  transition: all 0.25s;
}

.sw-tier-btn:hover,
.sw-tier-card.featured .sw-tier-btn {
  background: var(--gold);
  color: var(--charcoal);
}

/* Ghost membership portal trigger */
.sw-portal-trigger { cursor: pointer; }

/* ============================================
   SINGLE POST — ARTICLE
   ============================================ */
.sw-article-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px 0;
}

.sw-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 56px;
}

.sw-article-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.sw-article-date {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-light);
}

.sw-article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 20px;
}

.sw-article-subtitle {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 48px;
}

/* ============================================
   POST CONTENT
   ============================================ */
.sw-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 40px 100px;
}

.sw-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.sw-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 56px 0 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.sw-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 40px 0 16px;
}

.sw-content strong { color: var(--charcoal); font-weight: 700; }
.sw-content em { font-style: italic; }

.sw-content ul, .sw-content ol {
  padding-left: 0;
  margin-bottom: 24px;
  list-style: none;
}

.sw-content ul li, .sw-content ol li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dark);
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.sw-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 7px;
  top: 14px;
}

.sw-content ol { counter-reset: sw-counter; }
.sw-content ol li { counter-increment: sw-counter; }
.sw-content ol li::before {
  content: counter(sw-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  top: 10px;
}

.sw-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--cream-dark);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--charcoal);
}

.sw-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sw-content a:hover { color: var(--charcoal); }

/* Info boxes */
.sw-content .kg-callout-card {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   PAYWALL — MEMBER GATE
   ============================================ */
.sw-paywall {
  position: relative;
  margin: 0;
}

.sw-paywall-blur {
  padding: 0 40px;
  max-width: var(--content-width);
  margin: 0 auto;
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  opacity: 0.45;
  max-height: 180px;
  overflow: hidden;
}

.sw-paywall-blur p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.sw-paywall-gate {
  position: relative;
  background: linear-gradient(to bottom, transparent, var(--cream) 55%);
  margin-top: -140px;
  padding: 160px 40px 80px;
  text-align: center;
}

.sw-paywall-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.sw-paywall-headline {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.sw-paywall-sub {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.sw-paywall-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.sw-paywall-note {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 16px;
}

/* ============================================
   ABOUT / PHILOSOPHY SECTION
   ============================================ */
.sw-about {
  max-width: 780px;
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
}

.sw-about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 36px;
}

.sw-about-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.sw-about-divider::before,
.sw-about-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--border);
}

.sw-about-divider span { color: var(--gold); }

.sw-about-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.sw-about-sig {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--charcoal);
  margin-top: 40px;
}

/* ============================================
   WHAT'S COMING
   ============================================ */
.sw-coming {
  background: var(--charcoal);
  padding: 100px 40px;
}

.sw-coming-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.sw-coming-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-coming-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.sw-coming-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}

.sw-coming-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  margin-bottom: 56px;
}

.sw-coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}

.sw-coming-card {
  background: rgba(255,255,255,0.03);
  padding: 36px 28px;
}

.sw-coming-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.sw-coming-card-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.4;
}

/* ============================================
   FAQ
   ============================================ */
.sw-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 40px;
}

.sw-faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}

.sw-faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.sw-faq-a {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ============================================
   FINAL CTA
   ============================================ */
.sw-final-cta {
  background: var(--charcoal);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sw-final-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sw-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.sw-final-cta-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sw-final-cta-label::before,
.sw-final-cta-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.sw-final-cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.sw-final-cta-headline em {
  font-style: italic;
  color: var(--gold);
}

.sw-final-cta-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}

.sw-final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.sw-footer {
  background: #111;
  padding: 60px 40px 40px;
}

.sw-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sw-footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
}

.sw-footer-brand span { color: var(--gold); }

.sw-footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  max-width: 280px;
}

.sw-footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.sw-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sw-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.sw-footer-links a:hover { color: var(--gold); }

.sw-footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sw-footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}

.sw-footer-sub-link {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.sw-footer-sub-link:hover { opacity: 1; }

/* ============================================
   MEMBER-SPECIFIC STATES
   Ghost adds .is-member and .is-subscriber classes to body
   ============================================ */

/* Hide subscribe prompts for logged-in members */
.is-member .sw-paywall,
.is-member .sw-hero-subscribe-prompt { display: none; }

/* Show member content */
.sw-member-content { display: none; }
.is-member .sw-member-content { display: block; }

/* Tier 2 content — Ghost adds data-members-plan */
.sw-tier2-content { display: none; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes sw-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.sw-animate-1 { animation: sw-fade-up 0.6s ease both; }
.sw-animate-2 { animation: sw-fade-up 0.7s 0.1s ease both; }
.sw-animate-3 { animation: sw-fade-up 0.7s 0.2s ease both; }
.sw-animate-4 { animation: sw-fade-up 0.7s 0.3s ease both; }
.sw-animate-5 { animation: sw-fade-up 0.8s 0.4s ease both; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .sw-hero { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .sw-hero-eyebrow { justify-content: center; }
  .sw-hero-actions { justify-content: center; }
  .sw-hero-stats { justify-content: center; }
  .sw-hero-logo-frame { order: -1; }
  .sw-hero-logo-frame img { width: 220px; height: 220px; }
  .sw-features-grid { grid-template-columns: 1fr 1fr; }
  .sw-tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  /* sw-feed-grid already 1fr */
  .sw-footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .sw-coming-grid { grid-template-columns: 1fr; }
  .sw-nav-links { gap: 20px; }
  .sw-nav-links li.sw-nav-hide-mobile { display: none; }
}

@media (max-width: 600px) {
  .sw-nav-inner { padding: 14px 20px; }
  .sw-section { padding: 60px 20px; }
  .sw-hero { padding: 60px 20px; }
  .sw-feed { padding: 60px 20px; }
  .sw-pricing { padding: 60px 20px; }
  .sw-coming { padding: 60px 20px; }
  .sw-about { padding: 60px 20px; }
  .sw-faq { padding: 60px 20px; }
  .sw-final-cta { padding: 80px 20px; }
  .sw-footer { padding: 48px 20px 28px; }
  .sw-features-grid { grid-template-columns: 1fr; }
  .sw-content { padding: 0 20px 80px; }
  .sw-article-header { padding: 60px 20px 0; }
  .sw-paywall-blur { padding: 0 20px; }
  .sw-paywall-gate { padding: 140px 20px 60px; }
  .sw-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .sw-nav-links { display: none; }
}

/* ============================================
   GHOST CARD WIDTH CLASSES — REQUIRED
   ============================================ */
.kg-width-wide {
  margin-left: calc(50% - min(720px, 45vw));
  margin-right: calc(50% - min(720px, 45vw));
  width: min(1440px, 90vw);
}

.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.kg-image { max-width: 100%; }
.kg-image-card { margin: 0 0 1.5em; }
.kg-gallery-card { margin: 0 0 1.5em; }
.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; gap: 8px; margin-bottom: 8px; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.kg-bookmark-card { margin: 0 0 1.5em; }
.kg-bookmark-container { display: flex; text-decoration: none; border: 1px solid var(--border-subtle); }
.kg-bookmark-content { padding: 20px; }
.kg-bookmark-title { font-weight: 700; color: var(--charcoal); }
.kg-bookmark-description { font-size: 13px; color: var(--text-mid); margin-top: 6px; }
.kg-bookmark-thumbnail img { width: 160px; object-fit: cover; }
