@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Outfit:wght@300;400;500;600&family=JetBrains+Mono:wght@300;400&display=swap');

/* ── TOKENS ── */
:root[data-theme="dark"] {
  --bg:       #080F0A;
  --bg2:      #0A1A10;
  --bg3:      #060D08;
  --panel:    #0E2318;
  --panel2:   #162C1A;
  --border:   rgba(125,190,90,.12);
  --border2:  rgba(125,190,90,.22);
  --text:     #F0EBE0;
  --text2:    rgba(240,235,224,.6);
  --text3:    rgba(240,235,224,.35);
  --text4:    rgba(240,235,224,.2);
  --sage:     #7DBE5A;
  --sage2:    #9DC872;
  --sage3:    rgba(125,190,90,.08);
  --sage4:    rgba(125,190,90,.16);
  --gold:     #C8A85A;
  --gold2:    rgba(200,168,90,.14);
  --card:     rgba(14,35,24,.55);
  --card2:    rgba(22,44,26,.4);
  --navBg:    rgba(8,15,10,.88);
  --divider:  rgba(255,255,255,.06);
  --locked:   rgba(200,168,90,.06);
  --lockedBd: rgba(200,168,90,.18);
  --inputBg:  rgba(255,255,255,.04);
  --inputBd:  rgba(255,255,255,.12);
  /* ── aliases for archive pages ── */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --clr-bg:    var(--bg);
  --clr-fg:    var(--text);
  --clr-fg2:   var(--text2);
  --clr-fg3:   var(--text3);
  --clr-accent: var(--sage2);
  --clr-border: var(--border);
  --clr-border2: var(--border2);
}
:root[data-theme="light"] {
  --bg:       #F5F1E8;
  --bg2:      #EBE6D8;
  --bg3:      #E0DAC8;
  --panel:    #0E2318;
  --panel2:   #162C1A;
  --border:   rgba(46,107,58,.18);
  --border2:  rgba(46,107,58,.32);
  --text:     #1A1F12;
  --text2:    rgba(26,31,18,.65);
  --text3:    rgba(26,31,18,.4);
  --text4:    rgba(26,31,18,.22);
  --sage:     #2E6B3A;
  --sage2:    #4A8A4A;
  --sage3:    rgba(46,107,58,.07);
  --sage4:    rgba(46,107,58,.14);
  --gold:     #8A6020;
  --gold2:    rgba(138,96,32,.12);
  --card:     rgba(255,255,255,.7);
  --card2:    rgba(255,255,255,.5);
  --navBg:    rgba(245,241,232,.92);
  --divider:  rgba(0,0,0,.07);
  --locked:   rgba(138,96,32,.05);
  --lockedBd: rgba(138,96,32,.18);
  --inputBg:  rgba(0,0,0,.03);
  --inputBd:  rgba(0,0,0,.14);
  /* ── aliases for archive pages ── */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --clr-bg:    var(--bg);
  --clr-fg:    var(--text);
  --clr-fg2:   var(--text2);
  --clr-fg3:   var(--text3);
  --clr-accent: var(--sage2);
  --clr-border: var(--border);
  --clr-border2: var(--border2);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .3s ease, color .3s ease;
}
a { text-decoration: none; color: inherit; }
button { font-family: 'Outfit', sans-serif; cursor: pointer; }
::selection { background: rgba(125,190,90,.3); }
.serif  { font-family: 'Cormorant Garamond', serif; }
.mono   { font-family: 'JetBrains Mono', monospace; }
.eyebrow { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 400; }
.label-tiny { font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; }
.section { padding: clamp(4rem,9vh,7rem) clamp(1.5rem,5vw,5vw); }
.wrap    { max-width: 1180px; margin: 0 auto; }
.wrap-sm { max-width: 760px; margin: 0 auto; }
html[data-lang="en"] .es, html[data-lang="es"] .en { display: none !important; }
html[data-lang="en"] .en, html[data-lang="es"] .es { display: revert !important; }

/* ── ANIMATIONS ── */
@keyframes float-up {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: .55; }
  90%  { opacity: .25; }
  100% { transform: translateY(-90vh) translateX(20px); opacity: 0; }
}
@keyframes reveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes wave {
  0%, 100% { transform: scaleY(.3); }
  50%       { transform: scaleY(1); }
}
@keyframes nav-drop {
  from { opacity: 0; transform: translate(-50%, -6px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.reveal   { animation: reveal .8s ease both; }
.reveal-1 { animation: reveal .8s .15s ease both; }
.reveal-2 { animation: reveal .8s .3s ease both; }
.reveal-3 { animation: reveal .8s .45s ease both; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem clamp(1.25rem,5vw,4vw);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--navBg);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav-logo {
  display: flex; align-items: baseline; gap: 8px;
  background: none; border: none; padding: 0;
}
.nav-logo .name { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 400; color: var(--text); letter-spacing: -.005em; }
.nav-logo .ver  { font-size: .5rem; letter-spacing: .26em; text-transform: uppercase; color: var(--sage); }
.nav-links { display: flex; gap: 1.9rem; align-items: center; }
.nav-group { position: relative; }
.nav-group-btn {
  background: none; border: none; padding: 6px 0;
  font-size: .84rem; color: var(--text2); font-weight: 400;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-group-btn:hover, .nav-group-btn.open { color: var(--text); }
.nav-group-btn svg { opacity: .6; transition: transform .25s; }
.nav-group-btn.open svg { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  min-width: 296px; padding: 6px;
  background: var(--navBg);
  border: 1px solid var(--border2); border-radius: 12px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  animation: nav-drop .18s ease both;
}
.nav-dropdown.open { display: block; }
.nav-dropdown a {
  display: flex; flex-direction: column; gap: 2px; width: 100%; text-align: left;
  padding: 10px 12px; border-radius: 8px; border: none;
  background: transparent; transition: background .18s;
}
.nav-dropdown a:hover { background: var(--sage3); }
.nav-dropdown a .lbl { font-size: .86rem; font-weight: 500; color: var(--text); }
.nav-dropdown a .desc { font-size: .72rem; color: var(--text3); font-weight: 300; line-height: 1.35; }
.nav-controls { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.lang-toggle {
  display: inline-flex; border: 1px solid var(--border2); border-radius: 16px; padding: 2px;
  background: var(--sage3);
}
.lang-btn {
  padding: 4px 10px; border-radius: 14px; border: none;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  background: transparent; color: var(--text2); transition: background .2s, color .2s;
}
.lang-btn.active { background: var(--sage); color: #050F07; }
[data-theme="light"] .lang-btn.active { color: #fff; }
.mode-btn {
  width: 34px; height: 34px; border-radius: 17px;
  border: 1px solid var(--border2); background: var(--sage3);
  color: var(--text2); display: inline-flex; align-items: center; justify-content: center;
}
.nav-join {
  padding: 7px 18px; border-radius: 20px; border: none;
  background: var(--sage); color: #050F07; font-size: .8rem; font-weight: 600;
  letter-spacing: .04em;
}
[data-theme="light"] .nav-join { color: #fff; }
.nav-mobile-btn { display: none; background: none; border: none; color: var(--text2); padding: 6px; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-join  { display: none; }
  .nav-mobile-btn { display: inline-flex; }
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(5rem,12vh,9rem) clamp(1.5rem,5vw,5vw) clamp(4rem,8vh,6rem);
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 60%, var(--bg2) 0%, var(--bg3) 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-particles span {
  position: absolute; border-radius: 50%;
  background: var(--sage); filter: blur(.5px);
}
.hero-trees {
  position: absolute; bottom: 0; left: 0; right: 0;
  width: 100%; height: 42%; pointer-events: none; z-index: 1;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .8 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-content { position: relative; z-index: 3; max-width: 820px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid var(--border2); background: var(--sage3);
  color: var(--sage); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px var(--sage3); flex-shrink: 0; }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400; line-height: 1.08; letter-spacing: -.02em;
  color: var(--text); margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--sage); }
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: var(--text2); font-weight: 300; line-height: 1.6;
  max-width: 560px; margin: 0 auto 2.5rem;
}
.hero-form {
  display: flex; gap: 8px; max-width: 480px; margin: 0 auto 1.25rem;
  flex-wrap: wrap; justify-content: center;
}
.hero-form input {
  flex: 1; min-width: 220px;
  padding: 14px 18px; border-radius: 10px;
  border: 1px solid var(--inputBd); background: var(--inputBg);
  color: var(--text); font-size: .95rem; font-family: 'Outfit',sans-serif;
  outline: none; transition: border-color .2s;
}
.hero-form input::placeholder { color: var(--text3); }
.hero-form input:focus { border-color: var(--sage); }
.hero-form button {
  padding: 14px 26px; border-radius: 10px; border: none;
  background: var(--sage); color: #050F07;
  font-size: .9rem; font-weight: 600; letter-spacing: .03em;
  transition: opacity .2s;
}
[data-theme="light"] .hero-form button { color: #fff; }
.hero-form button:hover { opacity: .85; }
.hero-meta { font-size: .75rem; color: var(--text3); letter-spacing: .06em; }
.hero-meta a { color: var(--sage); }
.hero-edition-badge {
  position: absolute; top: 50%; right: clamp(1.5rem,5vw,4vw);
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  opacity: .45;
}
.hero-edition-badge .num { font-family: 'Cormorant Garamond',serif; font-size: 5rem; font-weight: 300; line-height: 1; color: var(--text); }
.hero-edition-badge .lbl { font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--text3); }
@media (max-width: 900px) { .hero-edition-badge { display: none; } }

/* ── TICKER ── */
.ticker { overflow: hidden; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); padding: .85rem 0; background: var(--bg2); }
.ticker-track { display: flex; gap: 3rem; white-space: nowrap; animation: ticker 28s linear infinite; width: max-content; }
.ticker-item { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text3); display: flex; align-items: center; gap: .75rem; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sage); opacity: .6; flex-shrink: 0; }

/* ── SECTION HEADER ── */
.s-eyebrow { display: flex; align-items: center; gap: 10px; color: var(--sage); margin-bottom: 1rem; }
.s-eyebrow span.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px var(--sage3); }
.s-title { font-family: 'Cormorant Garamond',serif; font-size: clamp(2rem,4vw,3rem); font-weight: 400; line-height: 1.15; color: var(--text); margin-bottom: 1rem; }
.s-sub   { font-size: 1rem; color: var(--text2); font-weight: 300; line-height: 1.6; max-width: 560px; }
.s-divider { display: flex; align-items: center; gap: 14px; color: var(--text4); margin: 3rem 0; }
.s-divider::before, .s-divider::after { content: ''; flex: 1; height: 1px; background: var(--divider); }
.s-divider-gem { width: 5px; height: 5px; transform: rotate(45deg); background: var(--sage); opacity: .6; }

/* ── PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 3rem; }
@media (max-width: 980px) { .products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .products-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--bg); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .2s;
}
.product-card:hover { background: var(--card2); }
.product-glyph { font-family: 'JetBrains Mono',monospace; font-size: .68rem; color: var(--text4); letter-spacing: .1em; }
.product-tier {
  display: inline-flex; padding: 3px 10px; border-radius: 20px;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  align-self: flex-start;
}
.tier-free    { background: var(--sage3); color: var(--sage); border: 1px solid var(--border2); }
.tier-freemium { background: var(--sage3); color: var(--sage2); border: 1px solid var(--border2); }
.tier-premium { background: var(--gold2); color: var(--gold); border: 1px solid var(--lockedBd); }
.tier-paid    { background: var(--gold2); color: var(--gold); border: 1px solid var(--lockedBd); }
.tier-dual    { background: var(--sage3); color: var(--sage2); border: 1px solid var(--border2); }
.product-title { font-family: 'Cormorant Garamond',serif; font-size: 1.35rem; font-weight: 400; color: var(--text); }
.product-subtitle { font-size: .8rem; color: var(--sage); letter-spacing: .04em; }
.product-body { font-size: .875rem; color: var(--text2); line-height: 1.65; flex: 1; }
.product-meta { font-size: .72rem; color: var(--text3); letter-spacing: .06em; margin-top: auto; }

/* ── RITUAL ── */
.ritual-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 3rem; }
@media (max-width: 860px) { .ritual-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ritual-grid { grid-template-columns: 1fr; } }
.ritual-step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.ritual-step:last-child, .ritual-step:nth-child(4n) { border-right: none; }
.ritual-num { font-family: 'Cormorant Garamond',serif; font-size: 3rem; font-weight: 300; color: var(--text4); line-height: 1; margin-bottom: .75rem; }
.ritual-step-label { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); margin-bottom: .5rem; }
.ritual-title { font-size: 1.05rem; font-weight: 500; color: var(--text); margin-bottom: .5rem; }
.ritual-body  { font-size: .875rem; color: var(--text2); line-height: 1.6; }
.ritual-product { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text4); margin-top: 1rem; }

/* ── EDITORS ── */
.editors-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3rem; }
@media (max-width: 860px) { .editors-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .editors-grid { grid-template-columns: 1fr; } }
/* ThisWeek block rows */
@media (max-width: 680px) { .tw-block-row { grid-template-columns: 1fr !important; } }
/* New sections responsive */
@media (max-width: 900px) {
  .membership-tiers { grid-template-columns: 1fr !important; max-width: 480px !important; }
}
@media (max-width: 860px) {
  .milestones-grid { grid-template-columns: repeat(2,1fr) !important; }
  .tailor-promo-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 540px) {
  .milestones-grid { grid-template-columns: 1fr !important; }
}
.editor-card {
  padding: 1.75rem; border-radius: 8px;
  border: 1px solid var(--border); background: var(--card);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: .75rem;
}
.editor-color { width: 32px; height: 3px; border-radius: 2px; margin-bottom: .25rem; }
.editor-name  { font-family: 'Cormorant Garamond',serif; font-size: 1.3rem; font-weight: 400; color: var(--text); }
.editor-role  { font-size: .75rem; color: var(--text3); line-height: 1.4; }
.editor-bio   { font-size: .875rem; color: var(--text2); line-height: 1.6; font-style: italic; flex: 1; }
.editor-editions { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text4); }

/* ── SUBSCRIBE SECTION ── */
.subscribe-section {
  background: var(--panel); padding: clamp(4rem,8vh,6rem) clamp(1.5rem,5vw,5vw);
  text-align: center;
}
.subscribe-form2 { display: flex; gap: 8px; max-width: 460px; margin: 2rem auto 0; flex-wrap: wrap; justify-content: center; }
.subscribe-form2 input {
  flex: 1; min-width: 200px; padding: 13px 18px; border-radius: 8px;
  border: 1px solid var(--inputBd); background: var(--inputBg);
  color: var(--text); font-size: .9rem; font-family: 'Outfit',sans-serif; outline: none;
}
.subscribe-form2 input:focus { border-color: var(--sage); }
.subscribe-form2 button {
  padding: 13px 24px; border-radius: 8px; border: 1px solid var(--sage);
  background: transparent; color: var(--sage);
  font-size: .88rem; font-weight: 500; letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.subscribe-form2 button:hover { background: var(--sage); color: #050F07; }

/* ── FOOTER ── */
footer { padding: 2.5rem clamp(1.5rem,5vw,5vw); border-top: 1px solid var(--divider); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; color: var(--text2); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .78rem; color: var(--text3); letter-spacing: .06em; }
.footer-links a:hover { color: var(--text2); }

/* ── ARCHIVE EDITION PAGES ── */
.ed-page { padding-top: 6rem; }
.ed-title-big {
  font-family: var(--f-display, 'Cormorant Garamond', Georgia, serif);
  font-style: italic; font-weight: 300;
  font-size: clamp(1.9rem,5vw,3rem);
  color: var(--text); line-height: 1.1; margin-bottom: 1rem;
}
.ed-hook-big {
  font-size: 1.05rem; color: var(--text2); line-height: 1.7;
  font-style: italic; margin-bottom: 2rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
}
/* Section headers — italic serif with sage left accent */
.ed-content h3.sec-title {
  font-family: var(--f-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1rem; font-weight: 400; font-style: italic;
  color: var(--sage2); margin: 2rem 0 .6rem;
  padding-left: .75rem;
  border-left: 2px solid var(--sage);
  letter-spacing: .01em;
}
/* Body text */
.ed-content p.sec-text {
  font-size: .95rem; color: var(--text2); line-height: 1.8; margin-bottom: .9rem;
}
/* Premium indicator pill */
.premium-indicator {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage2); border: 1px solid rgba(157,200,114,.25);
  padding: 4px 14px; border-radius: 12px; margin-bottom: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
}
/* Upgrade gate */
.ed-gate {
  margin-top: 1.5rem; padding: 1.5rem 1.75rem;
  border: 1px solid var(--border2);
  border-left: 2px solid var(--sage);
  border-radius: 10px;
  background: var(--card);
  backdrop-filter: blur(6px);
}
.ed-gate-title {
  font-family: var(--f-display, 'Cormorant Garamond', Georgia, serif);
  font-style: italic; font-size: 1.15rem;
  color: var(--text); margin-bottom: .5rem;
}
.ed-gate-body { font-size: .88rem; color: var(--text2); margin-bottom: 1rem; line-height: 1.65; }
.btn-upgrade {
  display: inline-flex; align-items: center; gap: .4rem;
  color: #050F07; background: var(--sage2);
  padding: 11px 26px; border-radius: 24px; font-size: .88rem;
  font-weight: 600; text-decoration: none; transition: background .18s;
  font-family: 'Outfit', sans-serif;
}
.btn-upgrade:hover { background: var(--sage); }
/* Nav strip prev/next */
.ed-nav-strip { border-top: 1px solid var(--border); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: .82rem; }
.ed-nav-strip a { color: var(--text3); text-decoration: none; display: flex; align-items: center; gap: .35rem; transition: color .15s; }
.ed-nav-strip a:hover { color: var(--sage2); }
/* Freemium gate fade */
.freemium-wrap { position: relative; margin-bottom: .5rem; }
/* Theme/topic pills */
.theme-pill {
  font-size: .65rem; padding: 3px 10px; border-radius: 10px;
  background: var(--sage3); color: var(--text3);
  border: 1px solid var(--border); font-family: 'JetBrains Mono', monospace;
}
/* Breadcrumb */
.ed-breadcrumb { font-size: .72rem; color: var(--text3); margin-bottom: 1.5rem; }
.ed-breadcrumb a { color: var(--text3); text-decoration: none; }
.ed-breadcrumb a:hover { color: var(--sage2); }
/* Edition meta bar */
.ed-meta-bar { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.ed-num-big { font-size: .65rem; font-family: 'JetBrains Mono', monospace; letter-spacing: .14em; text-transform: uppercase; color: var(--sage2); }
.ed-format, .ed-date-big { font-size: .65rem; font-family: 'JetBrains Mono', monospace; color: var(--text3); }
.ed-date-big { margin-left: auto; }
.badge-tier { font-size: .58rem; padding: 2px 9px; border-radius: 10px; font-family: 'JetBrains Mono', monospace; letter-spacing: .08em; text-transform: uppercase; }
.badge-tier.free { background: rgba(157,200,114,.1); color: var(--sage2); border: 1px solid rgba(157,200,114,.2); }
.badge-tier.premium { background: var(--gold2); color: var(--gold); border: 1px solid rgba(200,168,90,.2); }

/* ═══ WT EDITION SHELL SYSTEM ═══════════════════════════════════════════════ */

/* ── Utility classes ── */
.wt-label { font-family: 'JetBrains Mono', monospace; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }
.wt-mono  { font-family: 'JetBrains Mono', monospace; }

/* ── Navigation bar ── */
.wt-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 56px; display: flex; align-items: center;
  padding: 0 clamp(1rem,4vw,2.5rem);
  background: var(--navBg, rgba(8,15,10,.88));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.wt-nav-logo {
  display: flex; align-items: center; gap: .55rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  color: var(--text); flex: 1;
}
.wt-nav-logo .name { font-weight: 400; letter-spacing: .01em; }
.wt-nav-logo .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--sage); opacity: .55;
}
.wt-nav-logo .tier-label {
  font-family: 'Outfit', sans-serif; font-size: .72rem;
  color: var(--text3); font-weight: 400; letter-spacing: .02em;
}
.wt-nav-controls { display: flex; align-items: center; gap: .5rem; }

/* ── Pills & lang buttons ── */
.wt-pill {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .66rem; letter-spacing: .12em;
  background: var(--sage3); border: 1px solid var(--border2);
  color: var(--sage); white-space: nowrap;
}
.wt-lang-btn {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem; letter-spacing: .12em;
  border: 1px solid var(--border); color: var(--text3);
  background: transparent; text-decoration: none;
  transition: color .15s, border-color .15s;
}
.wt-lang-btn:hover, .wt-lang-btn.active { color: var(--text); border-color: var(--border2); }
.wt-editor-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400;
  flex-shrink: 0;
}

/* ── Hero section ── */
.wt-hero {
  padding: 5rem clamp(1rem,5vw,2.5rem) 2.5rem;
  background: var(--bg2); border-bottom: 1px solid var(--border);
}
.wt-hero-inner { max-width: 660px; margin: 0 auto; }
.wt-hero-pills { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.wt-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-weight: 300; font-size: clamp(1.75rem,4.5vw,2.75rem);
  color: var(--text); line-height: 1.1; margin-bottom: .75rem;
}
.wt-hero-subtitle {
  font-size: 1rem; color: var(--text2); line-height: 1.65;
  margin-bottom: 1.25rem; font-style: italic;
}
.wt-hero-byline { display: flex; align-items: center; gap: .65rem; }
.wt-hero-byline-text .name { font-size: .85rem; color: var(--text2); font-weight: 500; }
.wt-hero-byline-text .meta { font-size: .72rem; color: var(--text3); font-family: 'JetBrains Mono', monospace; margin-top: 1px; }

/* ── Ribbon (free/premium indicator) ── */
.wt-ribbon {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.wt-ribbon-inner {
  max-width: 660px; margin: 0 auto;
  padding: .75rem clamp(1rem,5vw,2.5rem);
  display: flex; align-items: center; gap: .65rem;
}
.wt-ribbon-inner.free-ribbon { border-left: none; }
.wt-ribbon-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
  border: 1px solid var(--border2);
}
.wt-ribbon-text { flex: 1; }
.wt-ribbon-text .label { font-size: .6rem; }
.wt-ribbon-text .desc { font-size: .78rem; color: var(--text3); margin-top: 1px; }
.wt-ribbon-cta {
  display: inline-flex; align-items: center;
  padding: 5px 14px; border-radius: 16px;
  font-size: .72rem; font-family: 'Outfit', sans-serif;
  background: var(--sage); color: #050F07; font-weight: 600;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background .15s;
}
.wt-ribbon-cta:hover { background: var(--sage2); }

/* ── Body / content area ── */
.wt-body { background: var(--bg); }
.wt-body-inner {
  max-width: 660px; margin: 0 auto;
  padding: 2.5rem clamp(1rem,5vw,2.5rem) 5rem;
}

/* ── Block container ── */
.wt-block {
  display: flex; gap: 0; margin-bottom: 2.25rem;
  border-top: 1px solid var(--divider); padding-top: 1.5rem;
}
.wt-block:first-child { border-top: none; padding-top: 0; }
.wt-block-gutter {
  width: 52px; flex-shrink: 0; padding-right: .75rem;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 2px;
}
.wt-block-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage3); border: 1px solid var(--border);
  color: var(--sage); font-size: .6rem; letter-spacing: 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wt-block-name {
  font-size: .54rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text4); margin-top: .35rem; text-align: center;
  writing-mode: vertical-rl; transform: rotate(180deg);
  max-height: 80px; overflow: hidden;
}
.wt-block-content { flex: 1; min-width: 0; }
@media (max-width: 540px) {
  .wt-block { flex-direction: column; }
  .wt-block-gutter { flex-direction: row; align-items: center; width: auto; padding-right: 0; padding-bottom: .6rem; }
  .wt-block-name { writing-mode: horizontal-tb; transform: none; max-height: none; margin-top: 0; margin-left: .4rem; }
}

/* ── Content block types ── */
.wt-opening-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.25rem; color: var(--text); line-height: 1.65;
  font-weight: 300;
}
.wt-body-text {
  font-size: .95rem; color: var(--text2); line-height: 1.8;
}
.wt-reflection {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.1rem; color: var(--text); line-height: 1.6;
  border-left: 2px solid var(--gold); padding: .5rem 0 .5rem 1.1rem;
  background: var(--locked); border-radius: 0 6px 6px 0;
  padding-right: 1rem; margin: 0;
}

/* ── Tip card ── */
.wt-tip-card {
  background: var(--sage3); border: 1px solid var(--border2);
  border-left: 3px solid var(--sage); border-radius: 0 8px 8px 0;
  padding: 1rem 1.1rem;
}
.wt-tip-body { font-size: .95rem; color: var(--text); line-height: 1.7; }

/* ── Tres cosas (3 things) ── */
.wt-tres-list {
  list-style: none; display: flex; flex-direction: column; gap: .9rem;
}
.wt-tres-list li {
  display: flex; align-items: flex-start; gap: .75rem;
}
.wt-tres-num {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--panel); border: 1px solid var(--border2);
  color: var(--sage2); font-family: 'JetBrains Mono', monospace;
  font-size: .68rem; flex-shrink: 0; margin-top: 1px;
}
.wt-tres-text { font-size: .95rem; color: var(--text2); line-height: 1.65; }

/* ── Activity card ── */
.wt-activity-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.wt-activity-header {
  padding: 1rem 1.2rem; border-bottom: 1px solid var(--divider);
}
.wt-activity-intro { font-size: .95rem; color: var(--text2); line-height: 1.65; }
.wt-activity-meta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace; font-size: .65rem;
  color: var(--text3); margin-bottom: .6rem;
}
.wt-activity-tags { display: flex; gap: .35rem; flex-wrap: wrap; margin-top: .5rem; }
.wt-activity-tag {
  font-size: .58rem; padding: 2px 8px; border-radius: 8px;
  background: var(--sage3); color: var(--sage); border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace; letter-spacing: .08em;
}
.wt-activity-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-top: 1px solid var(--divider);
}
.wt-activity-col { padding: .9rem 1.1rem; }
.wt-activity-col:first-child { border-right: 1px solid var(--divider); }
.wt-activity-col-label {
  font-family: 'JetBrains Mono', monospace; font-size: .6rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text4);
  margin-bottom: .6rem;
}
.wt-activity-materials {
  list-style: none; display: flex; flex-direction: column; gap: .3rem;
}
.wt-activity-materials li { font-size: .85rem; color: var(--text2); line-height: 1.5; }
.wt-activity-materials li::before { content: '·'; color: var(--sage); margin-right: .5rem; }
.wt-activity-steps {
  list-style: none; display: flex; flex-direction: column; gap: .5rem;
  padding: 0;
}
.wt-activity-steps li { display: flex; align-items: flex-start; gap: .55rem; }
.wt-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--sage3); border: 1px solid var(--border2);
  color: var(--sage); font-size: .62rem; font-family: 'JetBrains Mono', monospace;
  margin-top: 1px;
}
.wt-step-text { font-size: .88rem; color: var(--text2); line-height: 1.6; }
.wt-activity-footer {
  padding: .9rem 1.1rem; border-top: 1px solid var(--divider);
  display: flex; flex-direction: column; gap: .75rem;
}
.wt-activity-footer-label {
  font-family: 'JetBrains Mono', monospace; font-size: .58rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text4);
  margin-bottom: .25rem;
}
@media (max-width: 480px) {
  .wt-activity-grid { grid-template-columns: 1fr; }
  .wt-activity-col:first-child { border-right: none; border-bottom: 1px solid var(--divider); }
}

/* ── Community quote ── */
.wt-community-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.05rem; color: var(--text2); line-height: 1.65;
  border-left: 2px solid var(--sage); padding: .4rem 0 .4rem .9rem;
  margin: 0;
}

/* ── Kiko bonus card ── */
.wt-kiko-card {
  background: var(--card2); border: 1px solid var(--border);
  border-top: 2px solid var(--sage); border-radius: 0 0 8px 8px;
  padding: 1.1rem 1.25rem;
}
.wt-kiko-card p, .wt-kiko-card h4 { margin-bottom: .6rem; }

/* ── P.S. block ── */
.wt-ps {
  font-size: .9rem; color: var(--text3); line-height: 1.7;
  padding-top: 1.25rem; border-top: 1px solid var(--divider);
}

/* ── Premium divider ── */
.wt-premium-divider {
  display: flex; align-items: center; gap: .75rem;
  padding: 1.25rem 0; color: var(--text4); font-size: .72rem;
}
.wt-premium-divider .line {
  flex: 1; height: 1px; background: var(--divider);
}

/* ── Gate (content lock) ── */
.wt-gate {
  position: relative;
}
.wt-gate-fade {
  position: relative;
  pointer-events: none;
}
.wt-gate-fade::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(transparent, var(--bg, #080F0A));
  pointer-events: none;
}
.wt-gate-wall {
  margin-top: 1.5rem; padding: 2rem 1.75rem;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 10px; text-align: center;
}
.wt-gate-icon {
  font-size: 1.4rem; color: var(--gold);
  display: block; margin-bottom: .75rem;
}
.wt-gate-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.35rem; font-weight: 300; color: var(--text);
  margin-bottom: .5rem;
}
.wt-gate-wall p {
  font-size: .88rem; color: var(--text2); line-height: 1.65;
  max-width: 400px; margin: 0 auto .75rem;
}
.wt-gate-unlocks {
  list-style: none; display: flex; flex-direction: column;
  gap: .45rem; margin: .75rem auto 1.25rem; max-width: 320px; text-align: left;
}
.wt-gate-unlock-item { display: flex; align-items: flex-start; gap: .65rem; }
.wt-gate-unlock-glyph {
  color: var(--sage); font-size: .85rem; flex-shrink: 0; margin-top: 1px;
}
.wt-gate-unlock-title { font-size: .85rem; color: var(--text2); line-height: 1.45; }
.wt-gate-actions {
  display: flex; gap: .65rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: .75rem;
}
.wt-btn-primary {
  display: inline-flex; align-items: center; padding: 11px 22px;
  border-radius: 24px; font-size: .88rem; font-weight: 600;
  font-family: 'Outfit', sans-serif; text-decoration: none;
  background: var(--sage2); color: #050F07;
  transition: background .15s;
}
.wt-btn-primary:hover { background: var(--sage); }
.wt-btn-secondary {
  display: inline-flex; align-items: center; padding: 10px 20px;
  border-radius: 24px; font-size: .88rem; font-weight: 500;
  font-family: 'Outfit', sans-serif; text-decoration: none;
  border: 1px solid var(--border2); color: var(--text2);
  background: transparent; transition: border-color .15s, color .15s;
}
.wt-btn-secondary:hover { border-color: var(--sage); color: var(--sage); }
.wt-gate-signin {
  font-size: .8rem; color: var(--text3); margin-top: .25rem;
}
.wt-gate-signin-link { color: var(--sage2); text-decoration: underline; }

/* ── Loading / error ── */
.wt-loading {
  display: flex; flex-direction: column; align-items: center;
  padding: 3rem 1rem; gap: .75rem; color: var(--text3); font-size: .88rem;
}
.wt-spinner {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--sage);
  animation: wt-spin .75s linear infinite;
}
@keyframes wt-spin { to { transform: rotate(360deg); } }
.wt-error {
  padding: 2rem 1rem; text-align: center; color: var(--text3);
  font-size: .9rem; border: 1px solid var(--border); border-radius: 8px;
}

/* ── Archive index list ── */
.wt-archive-list { display: flex; flex-direction: column; gap: 0; }
.wt-archive-item {
  display: grid; grid-template-columns: 52px 1fr 24px;
  gap: 1rem; align-items: center;
  padding: 1.25rem 1.4rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text);
  transition: border-color .15s, background .15s;
  text-decoration: none; margin-bottom: 6px;
}
.wt-archive-item:hover { border-color: var(--border2); background: var(--card); }
.wt-archive-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem; color: var(--sage); letter-spacing: .06em;
}
.wt-archive-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1rem; color: var(--text); line-height: 1.3; margin-bottom: .25rem;
}
.wt-archive-sub {
  font-size: .78rem; color: var(--text2); line-height: 1.45; margin-bottom: .25rem;
}
.wt-archive-meta {
  font-size: .65rem; color: var(--text3);
  font-family: 'JetBrains Mono', monospace; letter-spacing: .04em;
}
.wt-archive-body { min-width: 0; }
.wt-archive-arrow { color: var(--text4); font-size: .88rem; text-align: right; }

/* ── Footer ── */
.wt-footer {
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.wt-footer-inner {
  max-width: 660px; margin: 0 auto;
  padding: 1.75rem clamp(1rem,5vw,2.5rem);
  display: flex; flex-direction: column; gap: .75rem;
}
.wt-footer-nav {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
}
.wt-footer-nav a {
  font-size: .8rem; color: var(--text3); text-decoration: none;
  transition: color .15s;
}
.wt-footer-nav a:hover { color: var(--sage2); }
.wt-footer-meta {
  font-size: .72rem; color: var(--text4);
  font-family: 'JetBrains Mono', monospace; letter-spacing: .04em;
}
.wt-footer-meta a { color: var(--text4); text-decoration: none; }
.wt-footer-meta a:hover { color: var(--text3); }
.wt-footer-switch {
  font-size: .78rem; color: var(--sage); text-decoration: none;
}
.wt-footer-switch:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════════════
   EDITION PAGES — dark forest editorial v2
   (moved from per-page inline <style> blocks — 2026-09-02)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Radial gradient bg — scoped to edition pages via class on <body> */
body.is-edition {
  background: radial-gradient(ellipse 70% 45% at 18% 0%, #163E1E 0%, transparent 52%), var(--bg);
  color: var(--text);
}

/* Edition shell */
.ed-page { max-width: 720px; margin: 0 auto; padding: 0 1.75rem 4rem; }

/* Breadcrumb */
.ed-breadcrumb { font-size: .72rem; color: var(--text3); padding: 1rem 0 0; margin-bottom: 0; }
.ed-breadcrumb a { color: var(--text3); text-decoration: none; }
.ed-breadcrumb a:hover { color: var(--sage2); }

/* Meta bar */
.ed-meta-bar { display: flex; align-items: center; gap: .65rem; margin: 1rem 0 1.25rem; flex-wrap: wrap; }
.ed-num-big { font-size: .65rem; font-family: 'JetBrains Mono', monospace; letter-spacing: .18em; text-transform: uppercase; color: var(--sage2); }
.ed-format { font-size: .65rem; font-family: 'JetBrains Mono', monospace; color: var(--text3); }
.ed-date-big { font-size: .68rem; color: var(--text3); font-family: 'JetBrains Mono', monospace; margin-left: auto; }
.badge-tier.freemium { background: rgba(200,168,90,.08); color: var(--gold); border: 1px solid rgba(200,168,90,.2); }

/* Hero */
.ed-title-big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  color: var(--text); line-height: 1.08; letter-spacing: -.01em; margin-bottom: .85rem;
}
.ed-hook-big { font-size: 1.05rem; color: var(--text2); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; font-weight: 300; }

/* Theme pills */
.ed-themes-bar { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(125,190,90,.1); }
.theme-pill { font-size: .62rem; padding: 2px 8px; border-radius: 8px; background: var(--sage3); color: var(--text3); border: 1px solid var(--border); }

/* ── Block shell — numbered gutter layout ── */
.fe-block { display: grid; grid-template-columns: 90px 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.fe-block-gutter { padding-top: 2px; }
.fe-block-num { font-family: 'JetBrains Mono', monospace; font-size: .65rem; color: var(--text4); letter-spacing: .04em; }
.fe-block-name { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage2); margin-top: 5px; display: block; }
.fe-block-name.premium { color: var(--gold); }
.fe-block-tier { font-size: .55rem; color: var(--text4); margin-top: 3px; display: block; letter-spacing: .05em; }

/* ── Text styles ── */
.fe-opening {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 1.3rem; line-height: 1.72; font-weight: 300; color: var(--text);
  white-space: pre-line;
}
.fe-body { font-size: 1rem; line-height: 1.85; font-weight: 300; color: var(--text2); margin-bottom: .85rem; }
.fe-body p + p { margin-top: .65rem; }
.sec-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem; color: var(--text); margin: 1.5rem 0 .55rem;
  font-style: italic; font-weight: 400;
}
.sec-text { font-size: 1rem; color: var(--text2); line-height: 1.85; margin-bottom: .85rem; font-weight: 300; }

/* ── Activity card — sage green ── */
.activity-card { background: rgba(10,26,15,.7); border: 1px solid var(--border2); border-radius: 10px; overflow: hidden; margin: .5rem 0; }
.activity-card-hd { display: flex; align-items: center; gap: 10px; padding: .85rem 1.3rem; background: var(--sage3); border-bottom: 1px solid var(--border2); }
.activity-card-hd .card-icon { font-size: 1.1rem; line-height: 1; }
.activity-card-hd .card-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage2); font-weight: 500; }
.activity-card-ft { padding: .9rem 1.3rem .85rem; border-top: 1px solid var(--border); background: rgba(125,190,90,.04); }
.activity-card-ft .card-ft-label { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(157,200,114,.6); margin-bottom: .35rem; }
.activity-card-body { padding: 1.1rem 1.3rem; }

/* ── Recipe card — gold ── */
.recipe-card { background: rgba(18,14,6,.7); border: 1px solid rgba(200,168,90,.2); border-radius: 10px; overflow: hidden; margin: .5rem 0; }
.recipe-card-hd { display: flex; align-items: center; gap: 10px; padding: .85rem 1.3rem; background: var(--gold2); border-bottom: 1px solid rgba(200,168,90,.15); }
.recipe-card-hd .card-icon { font-size: 1.1rem; line-height: 1; }
.recipe-card-hd .card-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.recipe-card-ft { padding: .9rem 1.3rem .85rem; border-top: 1px solid rgba(200,168,90,.1); background: rgba(200,168,90,.04); }
.recipe-card-ft .card-ft-label { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(200,168,90,.55); margin-bottom: .35rem; }
.recipe-card-body { padding: 1.1rem 1.3rem; }

/* ── Tres Cosas card — blue-sage ── */
.tres-cosas-card { background: rgba(8,14,22,.6); border: 1px solid rgba(100,160,200,.18); border-radius: 10px; overflow: hidden; margin: .5rem 0; }
.tres-cosas-card-hd { display: flex; align-items: center; gap: 10px; padding: .85rem 1.3rem; background: rgba(100,160,200,.07); border-bottom: 1px solid rgba(100,160,200,.14); }
.tres-cosas-card-hd .card-icon { font-size: 1rem; line-height: 1; color: rgba(140,200,240,.7); }
.tres-cosas-card-hd .card-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(140,200,240,.75); font-weight: 500; }
.tres-cosas-card-body { padding: 1.1rem 1.3rem; }
.tc-list { display: flex; flex-direction: column; gap: .95rem; }
.tc-item { display: grid; grid-template-columns: 26px 1fr; gap: .55rem; align-items: start; }
.tc-num { font-family: 'JetBrains Mono', monospace; font-size: .68rem; color: rgba(140,200,240,.55); padding-top: .25rem; font-weight: 600; letter-spacing: .05em; }

/* ── Gift ribbon — milestone editions ── */
.gift-ribbon { display: flex; align-items: center; gap: 10px; padding: .7rem 1.1rem; background: var(--gold2); border: 1px solid rgba(200,168,90,.22); border-radius: 8px; margin-bottom: 2rem; }
.gift-ribbon-icon { font-size: 1.1rem; flex-shrink: 0; }
.gift-ribbon-text { font-size: .72rem; color: var(--gold); line-height: 1.4; }
.gift-ribbon-text strong { font-weight: 600; display: block; font-size: .76rem; margin-bottom: 1px; }

/* ── Shared card body text ── */
.card-p { font-size: .95rem; line-height: 1.75; font-weight: 300; color: var(--text2); margin-bottom: .7rem; }
.card-p:last-child { margin-bottom: 0; }
.card-p strong { color: var(--text); font-weight: 500; }
.card-p em { color: var(--text2); font-style: italic; }
.premium-indicator { display: inline-flex; align-items: center; gap: .5rem; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(200,168,90,.22); padding: 4px 12px; border-radius: 12px; margin-bottom: 2rem; }

/* ── Freemium gate wall ── */
.fe-gate { position: relative; margin-top: -.25rem; margin-bottom: 1rem; }
.fe-gate-preview { position: relative; max-height: 120px; overflow: hidden; -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.45), transparent); mask-image: linear-gradient(180deg, rgba(0,0,0,.45), transparent); pointer-events: none; }
.fe-gate-wall { margin-top: -.75rem; position: relative; z-index: 2; background: linear-gradient(180deg, #14301D, #0F2417); border: 1px solid rgba(200,168,90,.35); border-radius: 12px; box-shadow: 0 24px 60px -24px rgba(0,0,0,.7); padding: clamp(1.5rem,4vw,2.5rem); text-align: center; }
.fe-gate-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gold2); border: 1px solid rgba(200,168,90,.45); color: var(--gold); font-size: 1.15rem; margin-bottom: .9rem; }
.fe-gate-eyebrow { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .55rem; }
.fe-gate-title { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 400; font-size: clamp(1.45rem,3.5vw,2rem); color: var(--text); line-height: 1.15; margin-bottom: .75rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.fe-gate-desc { font-size: .9rem; color: var(--text2); font-weight: 300; line-height: 1.6; max-width: 420px; margin: 0 auto 1.4rem; }
.fe-gate-list { display: flex; flex-direction: column; gap: 9px; max-width: 400px; margin: 0 auto 1.6rem; text-align: left; }
.fe-gate-item { display: flex; gap: 11px; align-items: flex-start; }
.fe-gate-item-icon { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; margin-top: 1px; }
.fe-gate-item-t { font-size: .88rem; color: var(--text); font-weight: 500; }
.fe-gate-item-d { font-size: .8rem; color: var(--text3); font-weight: 300; line-height: 1.4; margin-top: 1px; }
.fe-gate-btn { display: inline-block; background: var(--gold); border: none; color: #1A1206; padding: 12px 26px; border-radius: 24px; font-size: .9rem; font-weight: 600; cursor: pointer; text-decoration: none; }
.fe-gate-btn:hover { opacity: .9; }
.fe-gate-note { font-size: .72rem; color: var(--text4); margin-top: .85rem; }
.fe-gate-note a { color: var(--text3); text-decoration: none; }
.fe-gate-note a:hover { color: var(--sage2); }

/* ── Edition bottom nav (prev/next) ── */
.ed-nav-strip { border-top: 1px solid var(--border); margin-top: 2.5rem; padding-top: 1.25rem; display: flex; justify-content: space-between; font-size: .8rem; }
.ed-nav-strip a { color: var(--text3); text-decoration: none; display: flex; align-items: center; gap: .35rem; }
.ed-nav-strip a:hover { color: var(--sage2); }

/* ── Edition responsive ── */
@media (max-width: 680px) {
  .fe-block { grid-template-columns: 1fr; gap: .4rem; }
  .fe-block-gutter { display: flex; align-items: center; gap: .5rem; }
  .fe-block-name { margin-top: 0; margin-left: .5rem; }
  .fe-block-tier { display: none; }
  .ed-page { padding: 0 1.1rem 3rem; }
}
