/* =========================================================
   Community Journal — paper-feel typography, warm earthy tone
   No comment UI, no engagement metrics.
   ========================================================= */

:root{
  --paper:#FBF6EA;
  --paper-edge:#EFE6D2;
  --ink-warm:#28251D;
  --ink-soft:#54503F;
  --rule:#D9CDB3;
  --forest:#2F5D3A;
  --teal:#01696F;
  --taupe:#8B755B;
  --sage:#9CAF88;
  --soft-cream:#F2E9D9;
  --warm-orange:#964219;
}

/* Page background for the whole journal area */
body.journal-page{
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(156,175,136,.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(1,105,111,.07), transparent 60%),
    var(--bg);
}

.journal-page .narrow{
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- HERO ---------- */
.journal-hero{
  padding: 84px 0 48px;
  text-align: center;
}
.journal-hero .eyebrow{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 14px;
}
.journal-hero h1{
  font-family: 'Gambarino', Georgia, serif;
  font-weight: 400;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--ink-warm);
}
.journal-hero h1 em{
  font-style: italic;
  color: var(--forest);
}
.journal-hero .lede{
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto 16px;
}
.journal-hero .lede-sub{
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 32px;
  font-style: italic;
}
.journal-hero-cta{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.share-hero{
  padding-bottom: 28px;
}

/* ---------- TAGS ---------- */
.journal-tags{
  padding: 24px 0 36px;
}
.section-eyebrow{
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--taupe);
  text-align: center;
  margin: 0 0 18px;
}
.tag-cloud{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.j-tag{
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--forest);
  color: #FBF6EA;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
}
.j-tag-soft{
  background: var(--soft-cream);
  color: var(--ink-warm);
  border: 1px solid var(--paper-edge);
}

/* ---------- LIST / CARDS ---------- */
.journal-list{
  padding: 36px 0 72px;
}
.journal-section-head{
  text-align: center;
  margin-bottom: 36px;
}
.journal-section-head h2{
  font-family: 'Gambarino', Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--ink-warm);
  margin: 0 0 6px;
}
.journal-section-head p{
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0;
}

.journal-card{
  max-width: 760px;
  margin: 0 auto 28px;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 24px 60px -36px rgba(40,37,29,.22);
  position: relative;
}
.journal-card-feature{
  background:
    linear-gradient(180deg, #FCF8EE 0%, #FBF6EA 100%);
  border: 1px solid var(--paper-edge);
}
.journal-card-feature::before{
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 76px;
  bottom: 40px;
  background-image: linear-gradient(transparent 27px, rgba(139,117,91,.10) 28px);
  background-size: 100% 28px;
  pointer-events: none;
  opacity: .55;
  border-radius: 4px;
}
.journal-card-meta{
  font-size: 13px;
  color: var(--taupe);
  letter-spacing: .02em;
  margin-bottom: 8px;
  position: relative;
}
.journal-card-meta .perspective{
  font-weight: 700;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}
.journal-card-meta .dot{
  margin: 0 8px;
  color: var(--taupe);
}
.journal-card-title{
  font-family: 'Gambarino', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  margin: 4px 0 14px;
  position: relative;
}
.journal-card-title a{
  color: var(--ink-warm);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.journal-card-title a:hover{
  border-bottom-color: var(--forest);
}
.journal-card-excerpt{
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
  position: relative;
}
.journal-card-excerpt em{
  color: var(--forest);
  font-style: italic;
  font-weight: 500;
}
.journal-card-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  position: relative;
}
.read-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
.read-link:hover{
  color: var(--forest);
}

.journal-empty{
  max-width: 600px;
  margin: 48px auto 0;
  text-align: center;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px dashed var(--paper-edge);
  border-radius: 18px;
}
.journal-empty h3{
  font-family: 'Gambarino', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--ink-warm);
  margin: 0 0 8px;
}
.journal-empty p{
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.6;
}

/* ---------- PROMISE / BRIDGE ---------- */
.journal-promise{
  padding: 64px 0;
  background: var(--soft-cream);
  border-top: 1px solid var(--paper-edge);
  border-bottom: 1px solid var(--paper-edge);
}
.journal-promise h2{
  font-family: 'Gambarino', Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--ink-warm);
  text-align: center;
  margin: 0 0 24px;
}
.promise-list{
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.promise-list li{
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.promise-list li strong{
  color: var(--forest);
}
.journal-promise .btn{
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.journal-academy-bridge{
  padding: 72px 0;
}
.bridge-card{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 22px;
  padding: 44px 36px;
  box-shadow: 0 24px 60px -40px rgba(40,37,29,.22);
}
.bridge-card .eyebrow{
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--taupe);
  margin: 0 0 10px;
}
.bridge-card h2{
  font-family: 'Gambarino', Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--forest);
  margin: 0 0 14px;
}
.bridge-card p{
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 22px;
}

/* =========================================================
   SINGLE ENTRY — paper page
   ========================================================= */

.journal-entry{
  padding: 56px 0 80px;
}
.crumbs{
  margin-bottom: 24px;
}
.crumbs a{
  color: var(--taupe);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.crumbs a:hover{
  color: var(--forest);
}
.entry-header{
  text-align: center;
  margin-bottom: 32px;
}
.entry-meta{
  font-size: 13px;
  color: var(--taupe);
  margin-bottom: 12px;
}
.entry-meta .perspective{
  font-weight: 700;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}
.entry-meta .dot{
  margin: 0 8px;
  color: var(--taupe);
}
.entry-header h1{
  font-family: 'Gambarino', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.1;
  color: var(--ink-warm);
  margin: 0 0 16px;
}
.entry-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.entry-paper{
  background: var(--paper);
  background-image: linear-gradient(transparent 29px, rgba(139,117,91,.12) 30px);
  background-size: 100% 30px;
  border: 1px solid var(--paper-edge);
  border-radius: 14px;
  padding: 48px 56px 56px;
  box-shadow: 0 30px 70px -40px rgba(40,37,29,.28);
  position: relative;
  font-family: 'Gambarino', Georgia, serif;
}
.entry-paper::before{
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(176, 60, 60, .18);
  pointer-events: none;
}
.entry-paper p,
.entry-paper h2{
  font-family: 'Gambarino', Georgia, serif;
  color: var(--ink-warm);
}
.entry-paper p{
  font-size: 19px;
  line-height: 30px;
  margin: 0 0 30px;
}
.entry-paper p.single-line{
  margin: 0 0 30px;
}
.entry-paper h2{
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  margin: 44px 0 18px;
  line-height: 30px;
}
.entry-paper .entry-salutation{
  font-style: italic;
  color: var(--forest);
  font-size: 22px;
  margin-bottom: 30px;
}
.entry-paper .entry-salutation em{
  font-style: italic;
}
.entry-paper .entry-closing{
  font-style: italic;
  color: var(--forest);
}
.entry-signoff{
  margin-top: 36px;
  text-align: right;
  font-size: 15px;
  color: var(--taupe);
  font-style: italic;
  font-family: 'Gambarino', Georgia, serif;
}

.entry-aside{
  margin: 36px auto 0;
  max-width: 720px;
  padding: 18px 22px;
  background: var(--soft-cream);
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.entry-aside strong{
  color: var(--forest);
}

.entry-next{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.entry-next-card{
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.entry-next-card-soft{
  background: var(--soft-cream);
}
.entry-next-card h3{
  font-family: 'Gambarino', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink-warm);
  margin: 0 0 8px;
}
.entry-next-card p{
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
}

@media (max-width: 720px){
  .entry-paper{
    padding: 32px 24px 36px;
    background-image: linear-gradient(transparent 27px, rgba(139,117,91,.10) 28px);
    background-size: 100% 28px;
  }
  .entry-paper::before{ left: 28px; }
  .entry-paper p{ font-size: 17px; line-height: 28px; margin-bottom: 28px; }
  .entry-paper h2{ font-size: 24px; }
  .entry-next{ grid-template-columns: 1fr; }
  .journal-card{ padding: 26px 22px; }
  .journal-card-feature::before{ left: 22px; right: 22px; top: 64px; bottom: 28px; }
}

/* =========================================================
   SHARE YOUR STORY
   ========================================================= */

.share-policy{
  padding: 36px 0 12px;
}
.policy-card{
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 18px;
  padding: 32px 36px;
  margin: 0 auto 20px;
  box-shadow: 0 24px 60px -40px rgba(40,37,29,.22);
}
.policy-card-soft{
  background: var(--soft-cream);
}
.policy-card h2{
  font-family: 'Gambarino', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink-warm);
  margin: 0 0 18px;
}
.policy-steps{
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 14px;
}
.policy-steps li{
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.policy-steps li strong{
  color: var(--forest);
}

.share-form-section{
  padding: 36px 0 24px;
}
.share-form-section h2{
  font-family: 'Gambarino', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--ink-warm);
  text-align: center;
  margin: 0 0 12px;
}
.form-intro{
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 auto 32px;
  max-width: 600px;
}
.share-fields{
  display: grid;
  gap: 18px;
}
.field{
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 14px;
  padding: 22px 26px;
}
.field h3{
  font-family: 'Satoshi', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-warm);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.field h3 .req{
  background: var(--forest);
  color: #FBF6EA;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 999px;
}
.field p{
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.field p.muted{
  font-size: 13px;
  color: var(--taupe);
  margin-top: 8px;
  font-style: italic;
}
.perspective-list{
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.optin-quote{
  margin: 8px 0 6px;
  padding: 12px 16px;
  background: var(--soft-cream);
  border-left: 3px solid var(--forest);
  border-radius: 6px;
  color: var(--ink-warm);
  font-size: 15px;
  line-height: 1.55;
}

.share-cta{
  text-align: center;
  margin-top: 36px;
  padding: 36px 28px;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 18px;
}
.share-cta .btn-lg{
  font-size: 17px;
  padding: 16px 28px;
}
.cta-fallback{
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.cta-fallback a{
  color: var(--teal);
  font-weight: 600;
}

.share-thanks{
  padding: 56px 0 80px;
  text-align: center;
}
.share-thanks h2{
  font-family: 'Gambarino', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--ink-warm);
  margin: 0 0 14px;
}
.share-thanks p{
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 24px;
}

/* btn-ghost (in case base CSS lacks it) */
.btn-ghost{
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-ghost:hover{
  background: var(--forest);
  color: #FBF6EA;
}

@media (max-width: 720px){
  .policy-card{ padding: 24px 22px; }
  .field{ padding: 18px 20px; }
  .share-cta{ padding: 28px 20px; }
  .journal-hero{ padding: 56px 0 32px; }
}
