/* The Jester Bench — birelaxon.site — cosy blog, cream / forest green / mustard */
:root {
  --tjb_green: #2e5b3e;
  --tjb_green_dark: #1f4029;
  --tjb_mustard: #d9a521;
  --tjb_mustard_deep: #b3860f;
  --tjb_cream: #fbf7ee;
  --tjb_card: #fffdf8;
  --tjb_text: #33392f;
  --tjb_border: #e4dcc8;
}

body.tjb_page {
  background: var(--tjb_cream);
  color: var(--tjb_text);
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  line-height: 1.75;
}

/* centered top nav */
.tjb_topnav {
  background: var(--tjb_cream);
  border-bottom: 1px dashed var(--tjb_border);
  padding: 1.4rem 0 1rem;
  text-align: center;
}
.tjb_brand {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--tjb_green);
  text-decoration: none;
  letter-spacing: .01em;
}
.tjb_brand:hover { color: var(--tjb_green_dark); }
.tjb_brand .tjb_dot { color: var(--tjb_mustard); }
.tjb_menu {
  margin-top: .5rem;
}
.tjb_menu a {
  display: inline-block;
  margin: 0 .85rem;
  color: var(--tjb_text);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.tjb_menu a:hover { border-bottom-color: var(--tjb_mustard); }
.tjb_menu a.tjb_here {
  color: var(--tjb_green);
  border-bottom-color: var(--tjb_green);
  font-weight: 700;
}

/* narrow column layout */
.tjb_column {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.1rem;
}

/* intro letter */
.tjb_letter {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}
.tjb_letter h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--tjb_green);
  font-weight: 700;
}
.tjb_letter .tjb_hand {
  font-style: italic;
  color: #6a705f;
  font-size: 1.05rem;
}
.tjb_hero_img {
  width: 100%;
  border-radius: 18px;
  border: 6px solid #fff;
  box-shadow: 0 14px 34px rgba(46,91,62,.16);
  margin: 1.6rem 0;
}

/* post cards stacked */
.tjb_post {
  background: var(--tjb_card);
  border: 1px solid var(--tjb_border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.4rem;
  box-shadow: 0 6px 18px rgba(51,57,47,.06);
}
.tjb_post img { width: 100%; display: block; }
.tjb_post_body { padding: 1.8rem 2rem 2rem; }
.tjb_stamp {
  display: inline-block;
  background: var(--tjb_mustard);
  color: #3d2f05;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .25rem .9rem;
  margin-bottom: .7rem;
  font-family: Verdana, Geneva, sans-serif;
}
.tjb_post_body h2, .tjb_post_body h3 {
  color: var(--tjb_green);
  font-weight: 700;
  font-size: 1.55rem;
}
.tjb_teacups {
  color: var(--tjb_mustard_deep);
  font-size: 1.05rem;
  letter-spacing: .12em;
}
.tjb_more {
  color: var(--tjb_green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px dotted var(--tjb_mustard);
}
.tjb_more:hover { color: var(--tjb_green_dark); }

/* rating list */
.tjb_ratinglist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tjb_ratinglist li {
  padding: .9rem 0;
  border-bottom: 1px dashed var(--tjb_border);
}
.tjb_ratinglist li:last-child { border-bottom: none; }
.tjb_ratinglist .tjb_cups { color: var(--tjb_mustard_deep); font-weight: 700; }

/* subscribe card */
.tjb_subscribe {
  background: var(--tjb_green);
  color: #eef3e9;
  border-radius: 18px;
  padding: 2.4rem 2.2rem;
  margin: 3rem 0;
}
.tjb_subscribe h2 { color: #fff; font-size: 1.6rem; }
.tjb_subscribe .form-control {
  border-radius: 10px;
  border: none;
  padding: .75rem .9rem;
}
.tjb_btn_mustard {
  background: var(--tjb_mustard);
  border: none;
  color: #3d2f05;
  font-weight: 700;
  border-radius: 10px;
  padding: .7rem 1.5rem;
  font-family: Verdana, Geneva, sans-serif;
  font-size: .95rem;
}
.tjb_btn_mustard:hover { background: #c6940f; color: #2a2003; }
.tjb_btn_green {
  background: var(--tjb_green);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: .7rem 1.5rem;
  font-family: Verdana, Geneva, sans-serif;
  font-size: .95rem;
}
.tjb_btn_green:hover { background: var(--tjb_green_dark); color: #fff; }

/* headings between sections */
.tjb_heading {
  text-align: center;
  margin: 3rem 0 1.6rem;
}
.tjb_heading h2 {
  display: inline-block;
  color: var(--tjb_green);
  font-size: 1.7rem;
  font-weight: 700;
  position: relative;
  padding: 0 1.2rem;
}
.tjb_heading h2::before, .tjb_heading h2::after {
  content: "~";
  color: var(--tjb_mustard);
  font-size: 1.4rem;
}

/* forms */
.tjb_formbox {
  background: var(--tjb_card);
  border: 1px solid var(--tjb_border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.tjb_formbox .form-label {
  font-family: Verdana, Geneva, sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--tjb_green);
}
.tjb_formbox .form-control, .tjb_formbox .form-select {
  border-radius: 10px;
  border-color: var(--tjb_border);
  background: #fff;
}
.tjb_formbox .form-control:focus, .tjb_formbox .form-select:focus {
  border-color: var(--tjb_green);
  box-shadow: 0 0 0 .2rem rgba(46,91,62,.12);
}
.tjb_thanks {
  display: none;
  background: #eef6e9;
  border: 1px solid #bcd9b0;
  border-radius: 10px;
  padding: .9rem 1.1rem;
  margin-top: 1rem;
  font-size: .95rem;
}
.tjb_thanks.tjb_visible { display: block; }

/* about page bits */
.tjb_about_img {
  width: 100%;
  border-radius: 16px;
  border: 6px solid #fff;
  box-shadow: 0 12px 28px rgba(46,91,62,.15);
}
.tjb_promise {
  background: #f2eddc;
  border-left: 5px solid var(--tjb_mustard);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
}

/* policy text */
.tjb_policy h2 {
  color: var(--tjb_green);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 2rem;
}
.tjb_policy table { background: #fff; }

/* footer — minimal centered */
.tjb_footer {
  border-top: 1px dashed var(--tjb_border);
  margin-top: 3.5rem;
  padding: 2.4rem 1rem 2.8rem;
  text-align: center;
  font-size: .92rem;
  color: #5c6353;
}
.tjb_footer a { color: var(--tjb_green); text-decoration: none; border-bottom: 1px dotted var(--tjb_mustard); }
.tjb_footer a:hover { color: var(--tjb_green_dark); }
.tjb_footer .tjb_footer_brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tjb_green);
  margin-bottom: .4rem;
}

/* cookie banner — full-width bottom bar */
.tjb_crumbbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--tjb_green_dark);
  color: #edf3e8;
  padding: .9rem 1rem;
  z-index: 1080;
  display: none;
  font-size: .9rem;
}
.tjb_crumbbar.tjb_open { display: block; }
.tjb_crumbbar a { color: var(--tjb_mustard); }
.tjb_crumbbar .btn { border-radius: 8px; font-size: .85rem; }

@media (max-width: 575.98px) {
  .tjb_post_body { padding: 1.3rem 1.2rem 1.5rem; }
  .tjb_menu a { margin: 0 .5rem; font-size: .95rem; }
}
