/* ════════════════════════════════════════════════════════════════
   OOTW JOURNAL — UNIFIED DESIGN SYSTEM (v1.0)
   Single source of truth for tokens, nav, footer, hero, CTAs.
   Linked from every page. Same look, same feel, everywhere.
   ════════════════════════════════════════════════════════════════ */

:root {
  /* ── Colour tokens ── */
  --ootw-bg:           #0D0805;
  --ootw-bg-elevated: #14100C;
  --ootw-bg-deeper:   #07050A;
  --ootw-text:        #F5F0EB;
  --ootw-text-muted:  #B8A893;
  --ootw-text-dim:    #8A7A68;
  --ootw-accent:      #C9A84C;
  --ootw-accent-soft: #8E743D;
  --ootw-border:      #3A2A1E;
  --ootw-border-soft: #1F1812;

  /* ── Typography ── */
  --ootw-font-heading: 'Epilogue', sans-serif;
  --ootw-font-body:    'Literata', Georgia, serif;

  /* ── Layout widths ── */
  --ootw-w-content:   720px;   /* article body */
  --ootw-w-wide:      1100px;  /* landing/marketing */
  --ootw-w-shell:     1200px;  /* nav, footer, full-width pages */
}

/* ════════════════════════════════════════════════════════════════
   GLOBAL TYPOGRAPHY (Literata everywhere)
   ════════════════════════════════════════════════════════════════ */
body {
  background: var(--ootw-bg);
  color: var(--ootw-text);
  font-family: var(--ootw-font-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ootw-font-heading);
}

/* ════════════════════════════════════════════════════════════════
   GLOBAL NAV (sticky, same on every page)
   Structure:
     <nav class="ootw-nav">
       <div class="ootw-nav-inner">
         <a class="ootw-nav-logo" href="/">OOTW Journal</a>
         <div class="ootw-nav-links">
           <a href="/articles">Articles</a>
           <a href="/about">About</a>
           <div class="ootw-eco-wrap"> ... ecosystem dropdown ... </div>
           <a class="ootw-shop-btn" href="https://outofthisworldcacao.com">Shop OOTW</a>
         </div>
       </div>
     </nav>
   ════════════════════════════════════════════════════════════════ */
.ootw-nav {
  position: sticky;
  top: 0;
  background: rgba(13, 8, 5, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ootw-border);
  z-index: 1000;
}
.ootw-nav-inner {
  max-width: var(--ootw-w-shell);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ootw-nav-logo {
  font-family: var(--ootw-font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--ootw-accent);
  text-transform: uppercase;
  text-decoration: none;
}
.ootw-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.ootw-nav-links > a {
  font-family: var(--ootw-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ootw-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.ootw-nav-links > a:hover { color: var(--ootw-accent); }

/* Shop pill — gold, primary CTA in nav */
.ootw-shop-btn {
  font-family: var(--ootw-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--ootw-accent);
  color: var(--ootw-bg);
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.ootw-shop-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Ecosystem dropdown trigger + menu */
.ootw-eco-wrap { position: relative; }
.ootw-eco-trigger {
  font-family: var(--ootw-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ootw-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.ootw-eco-trigger:hover { color: var(--ootw-accent); }
.ootw-eco-trigger .ootw-eco-caret {
  font-size: 9px;
  transition: transform 0.25s;
}
.ootw-eco-wrap.open .ootw-eco-caret { transform: rotate(180deg); }
.ootw-eco-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: -20px;
  min-width: 340px;
  background: var(--ootw-bg-elevated);
  border: 1px solid var(--ootw-border);
  border-radius: 4px;
  padding: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1100;
}
.ootw-eco-wrap.open .ootw-eco-menu { display: block; }
.ootw-eco-tier-label {
  font-family: var(--ootw-font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ootw-accent);
  margin: 12px 0 4px 6px;
}
.ootw-eco-tier-label:first-child { margin-top: 0; }
.ootw-eco-item {
  display: block;
  padding: 10px 10px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s;
}
.ootw-eco-item:hover { background: rgba(201, 168, 76, 0.08); }
.ootw-eco-item .ootw-eco-name {
  font-family: var(--ootw-font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--ootw-text);
  letter-spacing: 0.2px;
  display: block;
}
.ootw-eco-item .ootw-eco-tagline {
  font-family: var(--ootw-font-body);
  font-size: 12px;
  color: var(--ootw-text-muted);
  margin-top: 2px;
  line-height: 1.45;
  display: block;
}
.ootw-eco-item.t1 .ootw-eco-name { color: var(--ootw-accent); }

@media (max-width: 760px) {
  .ootw-nav-inner { padding: 0 20px; }
  .ootw-nav-links { gap: 18px; }
  .ootw-nav-links > a:not(.ootw-shop-btn):not(.ootw-eco-trigger) { display: none; }
  .ootw-eco-menu { right: -10px; min-width: 280px; }
  .ootw-shop-btn { padding: 9px 16px; font-size: 10px; }
}

/* ════════════════════════════════════════════════════════════════
   UNIVERSAL HERO PATTERN
   Structure used on every page:
     <section class="ootw-hero">
       <div class="ootw-hero-eyebrow">EYEBROW LABEL</div>
       <h1 class="ootw-hero-h1">Headline. <em>Italic accent.</em></h1>
       <p class="ootw-hero-sub">Subtitle text.</p>
       <div class="ootw-hero-meta">META · META · META</div>
       <div class="ootw-hero-cta">(optional CTAs)</div>
     </section>
   ════════════════════════════════════════════════════════════════ */
.ootw-hero {
  max-width: var(--ootw-w-wide);
  margin: 0 auto;
  padding: 100px 32px 64px;
  text-align: center;
}
.ootw-hero-eyebrow {
  display: inline-block;
  font-family: var(--ootw-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--ootw-accent);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--ootw-accent);
  border-radius: 2px;
  margin-bottom: 28px;
}
.ootw-hero-h1 {
  font-family: var(--ootw-font-heading);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ootw-text);
  margin: 0 0 24px;
}
.ootw-hero-h1 em {
  font-style: italic;
  font-family: var(--ootw-font-body);
  font-weight: 500;
  color: var(--ootw-accent);
}
.ootw-hero-sub {
  font-family: var(--ootw-font-body);
  font-size: 20px;
  color: var(--ootw-text-muted);
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto 24px;
  font-style: italic;
}
.ootw-hero-meta {
  font-family: var(--ootw-font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ootw-text-dim);
}
.ootw-hero-meta span:not(:last-child)::after {
  content: " · ";
  margin: 0 6px;
  color: var(--ootw-accent);
}
.ootw-hero-cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}
.ootw-hero-cta a {
  font-family: var(--ootw-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 2px;
  border: 1px solid var(--ootw-accent);
  color: var(--ootw-accent);
  text-decoration: none;
  transition: all 0.2s;
}
.ootw-hero-cta a.primary {
  background: var(--ootw-accent);
  color: var(--ootw-bg);
}
.ootw-hero-cta a:hover { opacity: 0.9; transform: translateY(-1px); }
@media (max-width: 760px) {
  .ootw-hero { padding: 60px 20px 40px; }
  .ootw-hero-h1 { font-size: 38px; }
  .ootw-hero-sub { font-size: 17px; }
}

/* ════════════════════════════════════════════════════════════════
   GLOBAL FOOTER (tiered ecosystem footer, same everywhere)
   ════════════════════════════════════════════════════════════════ */
.ootw-footer {
  border-top: 1px solid var(--ootw-border);
  background: var(--ootw-bg);
  padding: 64px 32px 32px;
  margin-top: 80px;
}
.ootw-footer-inner {
  max-width: var(--ootw-w-shell);
  margin: 0 auto;
}
.ootw-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.ootw-footer-brand h3 {
  font-family: var(--ootw-font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--ootw-accent);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.ootw-footer-brand p {
  font-family: var(--ootw-font-body);
  font-size: 14px;
  color: var(--ootw-text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}
.ootw-footer-col .ootw-col-heading {
  font-family: var(--ootw-font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--ootw-accent);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.ootw-footer-col a {
  display: block;
  font-family: var(--ootw-font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--ootw-text);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.ootw-footer-col a:hover { color: var(--ootw-accent); }
.ootw-footer-col .ootw-tag {
  display: block;
  font-family: var(--ootw-font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--ootw-text-muted);
  margin-top: 2px;
  margin-bottom: 14px;
  line-height: 1.4;
}
.ootw-footer-bottom {
  border-top: 1px solid var(--ootw-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ootw-footer-bottom .ootw-meta {
  font-family: var(--ootw-font-heading);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ootw-text-dim);
  text-transform: uppercase;
}
.ootw-footer-bottom .ootw-meta a {
  color: var(--ootw-text-muted);
  text-decoration: none;
}
.ootw-footer-bottom .ootw-meta a:hover { color: var(--ootw-accent); }
@media (max-width: 900px) {
  .ootw-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .ootw-footer-grid { grid-template-columns: 1fr; }
  .ootw-footer { padding: 48px 20px 24px; }
}

/* ════════════════════════════════════════════════════════════════
   UNIVERSAL CTA COMPONENTS
   Reusable cards used 3× per article:
     • .ootw-cta-psilocybin        × 2 (mid + end)
     • .ootw-cta-spirit-guide × 1 (mid/late)
   ════════════════════════════════════════════════════════════════ */
.ootw-cta-card {
  position: relative;
  display: block;
  max-width: 720px;
  margin: 48px auto;
  padding: 36px 36px 32px;
  background: var(--ootw-bg-elevated);
  border: 1px solid var(--ootw-border);
  border-left: 3px solid var(--ootw-accent);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.ootw-cta-card:hover {
  border-color: var(--ootw-accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.4);
}
.ootw-cta-eyebrow {
  font-family: var(--ootw-font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--ootw-accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.ootw-cta-title {
  font-family: var(--ootw-font-heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ootw-text);
  line-height: 1.2;
  margin: 0 0 12px;
}
.ootw-cta-body {
  font-family: var(--ootw-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ootw-text-muted);
  margin: 0 0 18px;
}
.ootw-cta-card:hover /* Cacao variant — warmth, gold glow */
.ootw-cta-psilocybin { background: linear-gradient(135deg, var(--ootw-bg-elevated) 0%, #1a1410 100%); }
.ootw-cta-psilocybin::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: var(--ootw-accent);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

/* Spirit Guide variant — cool indigo / cosmic */
.ootw-cta-spirit-guide {
  border-left-color: #7B6FD1;
  background: linear-gradient(135deg, #11101A 0%, #1a1822 100%);
}
.ootw-cta-spirit-guide .ootw-cta-eyebrow { color: #9C92E4; }
.ootw-cta-spirit-guide .ootw-cta-spirit-guide:hover { border-color: #9C92E4; }
.ootw-cta-spirit-guide::after {
  content: "";
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: #7B6FD1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
}

@media (max-width: 700px) {
  .ootw-cta-card { padding: 28px 24px 24px; margin: 36px 16px; }
  .ootw-cta-title { font-size: 22px; }
  .ootw-cta-body { font-size: 15px; }
}

/* Actual visible CTA buttons (replaces old arrow span) */
.ootw-cta-btn {
  display: inline-block;
  font-family: var(--ootw-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 2px;
  background: var(--ootw-accent);
  color: #0D0805 !important;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  margin-top: 6px;
}
.ootw-cta-card:hover .ootw-cta-btn {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}
.ootw-cta-spirit-guide .ootw-cta-btn {
  background: #9C92E4;
  color: #07050A !important;
}
.ootw-cta-spirit-guide:hover .ootw-cta-btn {
  box-shadow: 0 8px 24px rgba(123, 111, 209, 0.35);
}

/* Force Shop OOTW button: dark text on gold (fix for white-on-yellow bug) */
.ootw-shop-btn { color: #0D0805 !important; }



/* ════════════════════════════════════════════════════════════════
   TYPOGRAPHY BASELINE (light defaults, no !important overrides)
   Page-specific CSS keeps full control of its own components.
   ════════════════════════════════════════════════════════════════ */
body {
  font-family: var(--ootw-font-body);
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: var(--ootw-font-heading);
}

/* Opt-in utility classes for pages that want the unified hero scale */
.ootw-h1 { font-family: var(--ootw-font-heading); font-size: 56px; font-weight: 800; line-height: 1.08; letter-spacing: -1.2px; color: var(--ootw-text); }
.ootw-h2 { font-family: var(--ootw-font-heading); font-size: 30px; font-weight: 700; line-height: 1.2; letter-spacing: -0.4px; color: var(--ootw-text); }
.ootw-h3 { font-family: var(--ootw-font-heading); font-size: 22px; font-weight: 700; line-height: 1.3; letter-spacing: -0.2px; color: var(--ootw-text); }
.ootw-body-text { font-family: var(--ootw-font-body); font-size: 18px; line-height: 1.75; color: var(--ootw-text); }
.ootw-sub-text { font-family: var(--ootw-font-body); font-size: 19px; font-style: italic; line-height: 1.55; color: var(--ootw-text-muted); }

@media (max-width: 760px) {
  .ootw-h1 { font-size: 38px; letter-spacing: -0.8px; }
  .ootw-h2 { font-size: 24px; }
  .ootw-h3 { font-size: 20px; }
  .ootw-body-text { font-size: 17px; }
  .ootw-sub-text { font-size: 17px; }
}

/* ════════════════════════════════════════════════════════════════
   HOMEPAGE TAILWIND FALLBACKS — explicit colors for bg-primary etc.
   Ensures hero buttons render gold even if Tailwind CDN is slow
   ════════════════════════════════════════════════════════════════ */
.bg-primary { background-color: var(--ootw-accent) !important; }
.text-on-primary { color: var(--ootw-bg) !important; }
.hover\:bg-primary-fixed-dim:hover { background-color: #E0BE5C !important; }
.text-primary { color: var(--ootw-accent) !important; }
.border-outline-variant { border-color: var(--ootw-border) !important; }
.text-on-background { color: var(--ootw-text) !important; }
.bg-background { background-color: var(--ootw-bg) !important; }
.text-on-surface { color: var(--ootw-text) !important; }
.bg-surface { background-color: var(--ootw-bg-elevated) !important; }
.bg-surface-container { background-color: var(--ootw-bg-elevated) !important; }
.bg-surface-container-high { background-color: #1a1410 !important; }
.text-gold { color: var(--ootw-accent) !important; }
.hover\:text-gold:hover { color: var(--ootw-accent) !important; }
.text-outline { color: var(--ootw-text-muted) !important; }
.text-on-surface-variant { color: var(--ootw-text-muted) !important; }
.bg-primary\/5:hover, .hover\:bg-primary\/5:hover { background-color: rgba(201, 168, 76, 0.06) !important; }
.font-literata { font-family: var(--ootw-font-body) !important; }
.font-epilogue { font-family: var(--ootw-font-heading) !important; }

/* ════════════════════════════════════════════════════════════════
   TAILWIND OPACITY VARIANT FALLBACKS
   Handles bg-primary/95, bg-primary/10, etc. that the homepage uses
   ════════════════════════════════════════════════════════════════ */
.bg-primary\/95 { background-color: rgba(201, 168, 76, 0.95) !important; }
.bg-primary\/90 { background-color: rgba(201, 168, 76, 0.90) !important; }
.bg-primary\/80 { background-color: rgba(201, 168, 76, 0.80) !important; }
.bg-primary\/20 { background-color: rgba(201, 168, 76, 0.20) !important; }
.bg-primary\/10 { background-color: rgba(201, 168, 76, 0.10) !important; }
.bg-primary\/5 { background-color: rgba(201, 168, 76, 0.05) !important; }
.bg-primary-container\/10 { background-color: rgba(201, 168, 76, 0.10) !important; }
.bg-secondary-container\/5 { background-color: rgba(239, 188, 155, 0.05) !important; }
.bg-surface-container-low { background-color: #211a16 !important; }
.bg-surface-container-high { background-color: #1a1410 !important; }
.bg-surface-container { background-color: var(--ootw-bg-elevated) !important; }
.border-outline-variant\/10, .border-outline-variant\/20 { border-color: rgba(58, 42, 30, 0.5) !important; }

/* CTA quote on photo: explicit safety net */
.cta-quote { background-color: rgba(201, 168, 76, 0.95) !important; color: #0D0805 !important; }
.cta-quote * { color: #0D0805 !important; }

/* ════════════════════════════════════════════════════════════════
   SOCIAL SHARE BLOCK
   • Desktop: fixed vertical rail on the left edge
   • Mobile:  horizontal row at the bottom of the article body
   ════════════════════════════════════════════════════════════════ */
/* Bottom row (mobile-first, shown everywhere) */
.ootw-share-bottom {
  max-width: 720px;
  margin: 56px auto 32px;
  padding: 24px 0 20px;
  border-top: 1px solid var(--ootw-border);
  text-align: center;
}
.ootw-share-label {
  display: block;
  font-family: var(--ootw-font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ootw-accent);
  margin-bottom: 14px;
}
.ootw-share-row {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.ootw-share-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ootw-bg-elevated);
  border: 1px solid var(--ootw-border);
  border-radius: 50%;
  color: var(--ootw-text-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.ootw-share-btn:hover { color: var(--ootw-accent); border-color: var(--ootw-accent); transform: translateY(-2px); }
.ootw-share-btn svg { display: block; }

/* Left rail (desktop only) */
.ootw-share-rail {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 60;
  pointer-events: auto;
}
.ootw-share-icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(20, 16, 12, 0.7);
  border: 1px solid var(--ootw-border-soft);
  border-radius: 50%;
  color: var(--ootw-text-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ootw-share-icon:hover {
  color: var(--ootw-accent);
  border-color: var(--ootw-accent);
  background: rgba(201, 168, 76, 0.12);
  transform: translateX(2px);
}
@media (max-width: 1100px) {
  .ootw-share-rail { display: none; }
}
@media (max-width: 760px) {
  .ootw-share-bottom { margin: 40px 16px 24px; padding: 20px 0 16px; }
  .ootw-share-btn { width: 38px; height: 38px; }
}

/* ════════════════════════════════════════════════════════════════
   CONTEXTUAL SIDECARD (one per article — topic-routed)
   ════════════════════════════════════════════════════════════════ */
.ootw-side-cta {
  max-width: 720px;
  margin: 56px auto 64px;
  padding: 0 16px;
}
.ootw-side-cta-card {
  display: block;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--ootw-bg-elevated) 0%, #181210 100%);
  border: 1px solid var(--ootw-border);
  border-left: 3px solid var(--ootw-accent);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ootw-side-cta-card:hover {
  border-color: var(--ootw-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}
.ootw-side-cta-eyebrow {
  display: block;
  font-family: var(--ootw-font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ootw-accent);
  margin-bottom: 10px;
}
.ootw-side-cta-title {
  font-family: var(--ootw-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--ootw-text);
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}
.ootw-side-cta-body {
  font-family: var(--ootw-font-body);
  font-size: 15px;
  color: var(--ootw-text-muted);
  line-height: 1.55;
  margin: 0 0 14px;
}
.ootw-side-cta-btn {
  font-family: var(--ootw-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ootw-accent);
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .ootw-side-cta-card { padding: 22px 22px; }
  .ootw-side-cta-title { font-size: 18px; }
}

/* ── Unified share system additions (Instagram modal + toast) — 2026-06-11 ── */
#ootw-toast{position:fixed;left:50%;bottom:32px;transform:translateX(-50%) translateY(20px);background:#1a1410;color:#F5F0EB;border:1px solid var(--ootw-accent,#C9A84C);padding:12px 22px;font-family:'Epilogue',sans-serif;font-size:12px;letter-spacing:1px;border-radius:6px;opacity:0;pointer-events:none;transition:opacity .3s,transform .3s;z-index:10000;}
#ootw-toast.show{opacity:1;transform:translateX(-50%) translateY(0);}
.ootw-ig-modal{position:fixed;inset:0;z-index:10001;display:none;align-items:center;justify-content:center;background:rgba(5,3,2,.86);backdrop-filter:blur(6px);padding:24px;}
.ootw-ig-modal.open{display:flex;}
.ootw-ig-modal__card{background:#0D0805;border:1px solid #3A2A1E;max-width:380px;width:100%;padding:24px;text-align:center;border-radius:14px;box-shadow:0 30px 80px rgba(0,0,0,.6);}
.ootw-ig-modal__eyebrow{font-family:'Epilogue',sans-serif;font-size:10px;letter-spacing:3px;text-transform:uppercase;color:var(--ootw-accent,#C9A84C);margin-bottom:14px;}
.ootw-ig-modal__img{width:100%;max-height:62vh;object-fit:contain;border-radius:10px;border:1px solid #2A1E14;margin-bottom:18px;}
.ootw-ig-modal__hint{font-family:'Literata',Georgia,serif;font-size:14px;color:#A89A8C;line-height:1.6;margin-bottom:18px;}
.ootw-ig-modal__actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;}
.ootw-ig-modal__btn{display:inline-flex;align-items:center;gap:8px;background:var(--ootw-accent,#C9A84C);color:#0D0805;padding:12px 22px;font-family:'Epilogue',sans-serif;font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;text-decoration:none;border:none;cursor:pointer;border-radius:4px;}
.ootw-ig-modal__btn.secondary{background:transparent;color:#F5F0EB;border:1px solid #3A2A1E;}

/* Native "Share…" button — primary share action, accented */
.ootw-share-btn.s-share{background:var(--ootw-accent,#C9A84C);color:#0D0805;border-color:var(--ootw-accent,#C9A84C);}
.ootw-share-btn.s-share:hover{filter:brightness(1.08);color:#0D0805;}
.ootw-share-icon.s-share,.ootw-share-rail [data-share="share"]{color:var(--ootw-accent,#C9A84C);}

/* Mobile sticky share bar — present through the whole article (mobile only) */
.ootw-share-mobilebar{position:fixed;left:0;right:0;bottom:0;z-index:9000;display:none;align-items:center;justify-content:center;background:rgba(13,8,5,.97);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-top:1px solid var(--ootw-border,#3A2A1E);padding:9px 12px calc(9px + env(safe-area-inset-bottom));transition:transform .35s ease,opacity .35s ease;}
.ootw-share-mobilebar.ootw-hide{transform:translateY(120%);opacity:0;pointer-events:none;}
.ootw-share-mobilebar .msb-btns{display:flex;align-items:center;justify-content:space-around;width:100%;max-width:520px;gap:4px;}
.ootw-share-mobilebar button{display:flex;align-items:center;justify-content:center;width:42px;height:42px;flex:0 0 auto;border:1px solid var(--ootw-border,#3A2A1E);background:transparent;color:var(--ootw-text,#F5F0EB);border-radius:10px;cursor:pointer;-webkit-tap-highlight-color:transparent;}
.ootw-share-mobilebar button.msb-primary{background:var(--ootw-accent,#C9A84C);color:#0D0805;border-color:var(--ootw-accent,#C9A84C);}
.ootw-share-mobilebar button svg{display:block;}
@media(max-width:768px){.ootw-share-mobilebar{display:flex;}}
