/* GoodFlowEnergy shared styles */
:root {
    --sand: #EDE7DE;
    --sand-deep: #E3DBD0;
    --sand-line: #CFC4B5;
    --umber: #3B2F26;
    --umber-soft: #6B5B4E;
    --dusk: #21395A;
    --dusk-deep: #172A45;
    --gold: #D9992A;
    --gold-deep: #B77A17;
    --haze: #F1E3CB;
    --white: #FAF7F2;

    --display: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    --body: "Mulish", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

    --container: 1120px;
    --measure: 62ch;
    --radius: 14px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
  }

  body {
    margin: 0;
    background: var(--sand);
    color: var(--umber);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3 {
    font-family: var(--display);
    font-weight: 400;
    line-height: 1.12;
    margin: 0;
    text-wrap: balance;
  }
  h2 { font-size: clamp(1.6rem, 1.2rem + 1.3vw, 2.1rem); letter-spacing: -0.005em; }
  h3 { font-size: 1.25rem; }
  p { margin: 0; }
  a { color: inherit; }
  a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .wrap {
    width: min(var(--container), 100% - 2.5rem);
    margin-inline: auto;
  }

  .eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--umber-soft);
    margin-bottom: 1rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.7rem;
    border-radius: 999px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--gold); color: var(--umber); }
  .btn-primary:hover { background: #E3A63A; }
  .btn-dark { background: var(--umber); color: var(--white); }
  .btn-dark:hover { background: #2C221B; }
  .btn svg { width: 18px; height: 18px; }

  /* ---------- Header ---------- */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(239, 230, 218, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(205, 187, 165, 0.6);
  }
  .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 72px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.005em;
  }
  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 2px var(--haze);
  }
  .brand small {
    display: block;
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--umber-soft);
    line-height: 1.2;
  }
  .nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }
  .nav a {
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--umber-soft);
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    transition: color 140ms ease, border-color 140ms ease;
  }
  .nav a:hover { color: var(--umber); border-bottom-color: var(--gold); }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
  }
  .lang {
    display: inline-flex;
    border: 1px solid var(--sand-line);
    border-radius: 999px;
    overflow: hidden;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  .lang a {
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    color: var(--umber-soft);
  }
  .lang a[aria-current="page"] { background: var(--umber); color: var(--white); }
  .header-actions .btn { padding: 0.65rem 1.25rem; font-size: 0.85rem; }

  .menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--sand-line);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    color: var(--umber);
    align-items: center;
    justify-content: center;
  }
  .menu-toggle svg { width: 22px; height: 22px; }

  @media (max-width: 900px) {
    .nav {
      display: none;
      position: absolute;
      left: 0; right: 0; top: 72px;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: var(--sand);
      border-bottom: 1px solid var(--sand-line);
      padding: 0.5rem 1.25rem 1rem;
    }
    .nav a { padding: 0.8rem 0; border-bottom: 1px solid rgba(205, 187, 165, 0.5); font-size: 1rem; }
    .nav a:last-child { border-bottom: none; }
    .site-header.open .nav { display: flex; }
    .menu-toggle { display: inline-flex; }
    .header-actions .btn-book { display: none; }
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    color: var(--white);
    background: var(--umber) url("/images/hero.jpg") center 40% / cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    isolation: isolate;
  }
  .hero-inner {
    padding: 5rem 0 4.5rem;
    max-width: 640px;
    text-align: left;
    animation: rise 700ms ease both;
  }
  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
  .hero .eyebrow { color: var(--haze); }
  .hero h1 {
    font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.3rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.1;
    text-shadow: 0 1px 18px rgba(59, 47, 38, 0.35);
  }
  .hero .sub {
    display: block;
    margin-top: 0.35em;
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.3rem, 1rem + 1.4vw, 1.85rem);
    color: var(--haze);
  }
  .hero p {
    margin-top: 1.3rem;
    font-size: 1.05rem;
    max-width: 46ch;
    color: rgba(250, 247, 242, 0.95);
    text-shadow: 0 1px 12px rgba(59, 47, 38, 0.35);
  }
  .hero .eyebrow, .hero .sub { text-shadow: 0 1px 12px rgba(59, 47, 38, 0.35); }
  .hero-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 1.8rem;
  }

  /* ---------- Book strip ---------- */
  .strip {
    background: var(--umber);
    color: var(--sand);
  }
  .strip .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.8rem 0;
    font-size: 0.92rem;
  }
  .strip strong { color: var(--haze); font-weight: 600; }
  .strip a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
  }

  .icon {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ---------- Sections ---------- */
  section { padding: 6rem 0; }
  @media (max-width: 700px) { section { padding: 4rem 0; } }

  .help { padding: 4rem 0 3.5rem; text-align: center; }
  .help h2 { font-size: clamp(1.5rem, 1.15rem + 1.1vw, 1.9rem); color: var(--umber); }
  .help .lede {
    font-size: 1rem;
    color: var(--umber-soft);
    margin: 0.8rem auto 0;
    max-width: var(--measure);
  }
  .chips {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1rem;
    margin: 2.2rem auto 0;
    max-width: 980px;
  }
  .chip {
    border-radius: 80px;
    background: var(--sand-deep);
    padding: 1.4rem 0.9rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--body);
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--umber-soft);
    text-wrap: balance;
  }
  .chip .icon { color: var(--umber-soft); }
  @media (max-width: 760px) {
    .chips { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
    .chip:last-child { grid-column: 1 / -1; justify-self: center; min-width: 48%; }
  }
  .signals-close {
    margin: 1.8rem auto 0;
    font-size: 1rem;
    max-width: var(--measure);
    color: var(--umber-soft);
  }
  .signals-close strong { font-weight: 700; color: var(--umber); }

  /* Steps band */
  .band-dusk {
    background: #C8B8A6;
    color: var(--umber);
    padding: 3.5rem 0;
    text-align: center;
  }
  .band-dusk h2 { color: var(--umber); font-size: clamp(1.5rem, 1.15rem + 1.1vw, 1.9rem); }
  .steps {
    list-style: none;
    margin: 2.2rem auto 0;
    padding: 0;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .steps li { padding: 0 1.5rem; }
  .steps li + li { border-left: 1px solid rgba(59, 47, 38, 0.18); }
  @media (max-width: 760px) {
    .steps { grid-template-columns: 1fr; gap: 1.6rem; max-width: 420px; }
    .steps li + li { border-left: none; border-top: 1px solid rgba(59, 47, 38, 0.18); padding-top: 1.6rem; }
  }
  .steps .icon { width: 44px; height: 44px; color: var(--umber-soft); }
  .steps h3 { font-size: 1.2rem; margin: 0.7rem 0 0.4rem; color: var(--umber); }
  .steps p { font-size: 0.95rem; line-height: 1.5; color: var(--umber-soft); }
  .band-dusk .cta-row { margin-top: 2.4rem; display: flex; justify-content: center; }

  /* About */
  .about-body { max-width: var(--measure); }
  .about-body h3 {
    margin: 2.2rem 0 0.7rem;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--umber-soft);
  }
  .about-body p + p { margin-top: 1rem; }
  .about-body a { color: var(--umber); text-decoration-thickness: 1px; text-underline-offset: 3px; }

  .about-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 3.5rem;
    align-items: start;
    margin-top: 2rem;
  }
  .about-photo {
    position: sticky;
    top: 96px;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    background: var(--sand-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(59, 47, 38, 0.14);
  }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } .about-photo { position: static; max-width: 280px; } }
  .read-more { margin-top: 1.2rem; }
  .read-more summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--umber);
  }
  .read-more summary::-webkit-details-marker { display: none; }
  .read-more summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 160ms ease;
  }
  .read-more[open] summary::after { transform: rotate(45deg); }
  .read-more[open] summary .more { display: none; }
  .read-more summary .less { display: none; }
  .read-more[open] summary .less { display: inline; }
  .read-more .panel { margin-top: 1rem; }
  .read-more .panel p + p { margin-top: 1rem; }

  /* Testimonials */
  .stories { text-align: center; padding: 3.5rem 0; }
  .stories h2 { font-size: clamp(1.5rem, 1.15rem + 1.1vw, 1.9rem); }
  .carousel {
    position: relative;
    margin: 1.6rem auto 0;
    max-width: 860px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 1rem;
    align-items: center;
  }
  .carousel-viewport { overflow: hidden; grid-column: 2; transition: height 320ms ease; }
  .carousel-nav-side { display: flex; justify-content: center; }
  .carousel-nav-side button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--sand-line);
    background: transparent;
    color: var(--umber);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 140ms ease, background 140ms ease;
  }
  .carousel-nav-side button:hover { border-color: var(--umber-soft); background: var(--white); }
  .carousel-nav-side button:disabled { opacity: 0.35; cursor: default; }
  .carousel-nav-side svg { width: 18px; height: 18px; }
  @media (max-width: 600px) {
    .carousel { grid-template-columns: 1fr; }
    .carousel-viewport { grid-column: 1; }
    .carousel-nav-side { display: none; }
  }
  .carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 420ms ease;
    align-items: flex-start;
  }
  .quote {
    flex: 0 0 100%;
    background: var(--white);
    border: 1px solid var(--sand-line);
    border-radius: var(--radius);
    padding: 1.7rem 2.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  .quote blockquote {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.02rem;
    line-height: 1.5;
    max-width: 44em;
  }
  .quote blockquote p + p { margin-top: 0.6rem; }
  .quote footer {
    font-size: 0.85rem;
    color: var(--umber-soft);
    letter-spacing: 0.04em;
  }
  .quote footer strong { color: var(--umber); font-weight: 700; }
  .quote footer::before {
    content: "";
    display: block;
    width: 1.6rem;
    height: 1px;
    background: var(--sand-line);
    margin: 0 auto 0.6rem;
  }
  .carousel-nav {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.4rem;
  }
  .carousel-dots { display: flex; gap: 0.5rem; }
  .carousel-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--sand-line);
    cursor: pointer;
  }
  .carousel-dots button[aria-current="true"] { background: var(--umber); }

  /* FAQ */
  .faq {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3.5rem;
    align-items: start;
  }
  .faq-col { border-top: 1px solid var(--sand-line); }
  @media (max-width: 760px) { .faq { grid-template-columns: 1fr; gap: 0; } .faq-col + .faq-col { border-top: none; } }
  #faq { padding-top: 4rem; padding-bottom: 4rem; }
  #faq h2 { font-size: clamp(1.5rem, 1.15rem + 1.1vw, 1.9rem); }
  .faq details { border-bottom: 1px solid var(--sand-line); }
  .faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 0.9rem 0;
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 600;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "";
    flex: none;
    width: 12px;
    height: 12px;
    border-right: 1.5px solid var(--umber-soft);
    border-bottom: 1.5px solid var(--umber-soft);
    transform: rotate(45deg);
    transition: transform 180ms ease;
    margin-right: 4px;
  }
  .faq details[open] summary::after { transform: rotate(-135deg); }
  .faq details div {
    padding: 0 0 1.1rem;
    max-width: var(--measure);
    color: var(--umber-soft);
    font-size: 0.95rem;
  }
  .faq details div a { color: var(--umber); }

  /* Closing CTA */
  .closing {
    position: relative;
    color: var(--white);
    background: var(--umber) url("/images/hero.jpg") center 70% / cover no-repeat;
    isolation: isolate;
    text-align: center;
    padding: 3.5rem 0;
  }
  .closing::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(59, 47, 38, 0.6);
  }
  .closing h2 {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.5rem, 1.15rem + 1.2vw, 2rem);
    color: var(--white);
    max-width: 24ch;
    margin-inline: auto;
  }
  .closing .btn { margin-top: 1.4rem; }

  /* Contact */
  .contact { padding: 4.5rem 0; }
  .contact .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .contact p { color: var(--umber-soft); max-width: 40ch; margin-top: 0.4rem; }
  .contact-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }
  .contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--sand-line);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    background: var(--white);
    transition: border-color 140ms ease;
  }
  .contact-links a:hover { border-color: var(--gold); }
  .contact-links svg { width: 18px; height: 18px; }

  /* Footer */
  .site-footer {
    border-top: 1px solid var(--sand-line);
    padding: 3rem 0 2.5rem;
    font-size: 0.85rem;
    color: var(--umber-soft);
  }
  .disclaimer { max-width: 78ch; }
  .disclaimer h3 {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: var(--umber);
  }
  .disclaimer p + p { margin-top: 0.6rem; }
  .footer-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(205, 187, 165, 0.5);
  }
  .footer-row nav { display: flex; gap: 1.2rem; }
  .footer-row a { text-decoration: none; }
  .footer-row a:hover { color: var(--umber); }

/* ---------- Shared extras ---------- */
.btn-outline { border-color: var(--umber); color: var(--umber); background: transparent; }
.btn-outline:hover { background: var(--white); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.text-link { font-weight: 700; font-size: 0.9rem; text-decoration: none; border-bottom: 1.5px solid currentColor; }
.band-soft { background: var(--sand-deep); }
.footer-row.no-rule { margin-top: 0; padding-top: 0; border-top: none; }
main > section h1 { font-size: clamp(1.9rem, 1.3rem + 2vw, 2.7rem); font-weight: 400; line-height: 1.1; }
.lede { font-size: 1rem; color: var(--umber-soft); max-width: var(--measure); margin-top: 0.9rem; }

/* ---------- Journal landing ---------- */
.journal-hero { padding: 4rem 0 3.5rem; }
.journal-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 3rem;
  align-items: center;
}
.journal-hero h1 .sub {
  display: block;
  margin-top: 0.3em;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 0.9rem + 1.2vw, 1.6rem);
  color: var(--umber-soft);
}
.journal-hero .lede { max-width: 50ch; }
.journal-hero .actions, .journal-cta .actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.journal-hero .meta { margin-top: 1.4rem; font-size: 0.85rem; color: var(--umber-soft); letter-spacing: 0.02em; }
.journal-hero img { width: 100%; max-width: 440px; display: block; margin-inline: auto; }
@media (max-width: 800px) {
  .journal-hero .wrap { grid-template-columns: 1fr; gap: 2rem; }
  .journal-hero img { max-width: 320px; order: -1; }
}
.journal-intro { padding: 3rem 0; }
.journal-intro p { max-width: var(--measure); font-size: 1.05rem; }
.journal-toc { padding: 4rem 0; }
.toc { max-width: 820px; margin-top: 2rem; border-top: 1px solid var(--sand-line); }
.toc a {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--sand-line);
  text-decoration: none;
}
.toc .num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--umber-soft);
  font-variant-numeric: tabular-nums;
}
.toc h3 { font-size: 1.15rem; margin-bottom: 0.3rem; transition: color 140ms ease; }
.toc p { font-size: 0.95rem; color: var(--umber-soft); }
.toc a:hover h3 { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.journal-cta { padding: 3.5rem 0; text-align: center; }
.journal-cta .lede { margin-inline: auto; }
.journal-cta .actions { justify-content: center; }

/* ---------- Journal reader ---------- */
.reader-bar { background: var(--sand-deep); border-bottom: 1px solid var(--sand-line); }
.reader-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  padding: 0.8rem 0;
  font-size: 0.9rem;
  color: var(--umber-soft);
}
.reader-bar a:not(.btn) { color: var(--umber); font-weight: 700; text-decoration: none; }
.reader-bar-cta { display: inline-flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.reader {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.reader ::selection { background: transparent; }
.reader .reading-time { text-align: right; font-style: italic; font-size: 0.9rem; color: var(--umber-soft); margin-bottom: 1.5rem; }
.reader .prologue { margin-bottom: 2.5rem; }
.reader .prologue p { margin: 0 0 0.8rem; }
.reader .prologue-label { font-family: var(--display); font-style: italic; font-size: 1.6rem; text-align: center; }
.reader .prologue-text { text-align: center; font-size: 0.97rem; color: var(--umber-soft); }
.reader .prologue-last { text-align: center; font-size: 0.85rem; color: var(--umber-soft); }
.reader .divider { text-align: center; letter-spacing: 8px; opacity: 0.6; margin: 1rem 0; }
.reader h2.chapter-title {
  font-size: clamp(1.5rem, 1.15rem + 1.2vw, 1.95rem);
  margin: 3rem 0 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--sand-line);
  scroll-margin-top: 90px;
}
.reader .entry { margin-bottom: 2.4rem; }
.reader h3.entry-title { font-size: 1.3rem; font-weight: 400; margin: 0; }
.reader .entry-date { text-align: right; font-family: var(--display); font-style: italic; color: var(--umber-soft); margin: -0.2rem 0 0.6rem; }
.reader .entry-image { height: 130px; overflow: hidden; border-radius: 8px; margin-bottom: 1rem; }
.reader .entry-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reader .entry p { margin: 0 0 0.8rem; font-size: 1rem; }
.reader .entry p:last-child { margin-bottom: 0; }
.reader .entry-note { font-style: italic; font-size: 0.8rem; text-align: right; }
.reader .indent-left { padding-left: 1.25rem; }
.reader .indent-right { margin-right: 1.25rem; }
.reader .centered-quote { text-align: center; }
.reader a { color: var(--umber); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.reader .closing-prayer {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--sand-line);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.9;
}
.reader .closing-prayer .attribution { display: block; margin-top: 1rem; font-family: var(--body); font-style: normal; font-size: 0.85rem; color: var(--umber-soft); }

/* ---------- Shop ---------- */
.shop-head { text-align: center; padding: 3.5rem 0 0.5rem; }
.shop-head .lede { margin-inline: auto; }
.shop { padding: 2rem 0 4rem; }
.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 700px) { .products { grid-template-columns: 1fr; } }
.product {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
}
.product img { width: 100%; max-width: 300px; height: 230px; object-fit: contain; margin-bottom: 0.4rem; }
.product .fmt { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--umber-soft); font-weight: 700; }
.product h2 { font-size: 1.35rem; }
.product p { color: var(--umber-soft); font-size: 0.95rem; max-width: 34ch; }
.product .btn { margin-top: 0.8rem; }
.shop-note { text-align: center; margin-top: 2.5rem; font-size: 0.9rem; color: var(--umber-soft); }
.shop-note a { color: var(--umber); }

/* ---------- Certificate ---------- */
.cert { text-align: center; padding: 3.5rem 0 4rem; }
.cert .lede { margin-inline: auto; }
.cert img { width: 100%; max-width: 720px; display: block; margin: 2rem auto 0; border-radius: 8px; box-shadow: 0 12px 32px rgba(59, 47, 38, 0.15); }
.back-link { display: inline-block; margin-top: 1.8rem; font-weight: 700; text-decoration: none; border-bottom: 1.5px solid currentColor; }
