/* ==========================================================================
   Chalcot Lodge Primary School — "be kids" (Waldorf/Montessori-gentle)
   Everything scoped under .sh-template_04 so nothing leaks into other sites.
   ========================================================================== */

.sh-template_04 {
  /* Palette — be kids */
  --bk-cream: #FAF7EC;
  --bk-cream-deep: #F3EED9;
  --bk-sage: #A8B894;
  --bk-sage-deep: #6B8662;
  --bk-sage-light: #D6E0BA;
  --bk-sun: #F2DC9C;
  --bk-peach: #F0CFB8;
  --bk-sky: #CBD9E4;
  --bk-ink: #3D4A3A;
  --bk-ink-soft: #6B7A67;

  --bk-radius-lg: 32px;
  --bk-radius: 24px;
  --bk-radius-sm: 16px;
  --bk-radius-pill: 999px;

  --bk-shadow-soft: 0 14px 30px rgba(61, 74, 58, 0.08);
  --bk-shadow-card: 0 18px 40px rgba(61, 74, 58, 0.10), 0 1px 3px rgba(61, 74, 58, 0.04);

  --bk-serif: "DM Serif Display", "Playfair Display", Georgia, serif;
  --bk-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Page-layout section tokens (consumed by static_homes/layouts.css) */
  --sh-section-accordion-summary-bg: var(--bk-cream);
  --sh-section-accordion-summary-color: var(--bk-ink);
  --sh-section-accordion-body-bg: #ffffff;
  --sh-section-accordion-border: var(--bk-cream-deep);
  --sh-section-accordion-radius: var(--bk-radius-sm);

  /* Table section — sage header, cream-deep borders/stripe (SHI-200) */
  --sh-section-table-header-bg: var(--bk-sage-deep);
  --sh-section-table-header-color: #ffffff;
  --sh-section-table-border: var(--bk-cream-deep);
  --sh-section-table-stripe-bg: var(--bk-cream-deep);
  --sh-section-table-radius: var(--bk-radius-sm);

  background: var(--bk-cream);
  color: var(--bk-ink);
  font-family: var(--bk-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sh-template_04 * { box-sizing: border-box; }
.sh-template_04 a { color: inherit; text-decoration: none; }
.sh-template_04 img, .sh-template_04 svg { display: block; max-width: 100%; }
.sh-template_04 ol, .sh-template_04 ul { list-style: none; padding: 0; margin: 0; }
.sh-template_04 blockquote { margin: 0; }
.sh-template_04 dl, .sh-template_04 dd { margin: 0; padding: 0; }

body.static-home-template_04 { background: var(--bk-cream); }

/* Serif for every major heading — lowercase brand voice */
.sh-template_04 .sh-hero-title,
.sh-template_04 .sh-section-title {
  font-family: var(--bk-serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--bk-sage-deep);
  text-transform: lowercase;
}

.sh-template_04 .sh-section-kicker {
  font-family: var(--bk-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bk-sage-deep);
  margin: 0 0 12px 0;
}

/* ---------- Skip link ---------- */
.sh-template_04 .sh-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bk-sage-deep);
  color: var(--bk-cream);
  padding: 12px 16px;
  z-index: 100;
  border-radius: var(--bk-radius-sm);
}
.sh-template_04 .sh-skip-link:focus { left: 16px; top: 16px; }

/* ---------- Nav ---------- */
.sh-template_04 .sh-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bk-cream);
  border-bottom: 1px solid rgba(168, 184, 148, 0.25);
}
.sh-template_04 .sh-nav-inner {
  padding: 18px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 24px;
}
.sh-template_04 .sh-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bk-sage-deep);
}
.sh-template_04 .sh-nav-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.sh-template_04 .sh-nav-brandname {
  font-family: var(--bk-serif);
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--bk-sage-deep);
}

.sh-template_04 .sh-nav-menu-btn {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(107, 134, 98, 0.35);
  border-radius: var(--bk-radius-pill);
  color: var(--bk-sage-deep);
  padding: 8px;
  display: none;
  cursor: pointer;
}
.sh-template_04 .sh-nav-menu-icon {
  width: 22px;
  height: 22px;
}

.sh-template_04 .sh-nav-drawer {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.sh-template_04 .sh-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.sh-template_04 .sh-nav-link,
.sh-template_04 .sh-nav-dropdown-btn {
  font-family: var(--bk-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--bk-ink);
  background: transparent;
  border: 0;
  padding: 6px 2px;
  cursor: pointer;
  text-transform: lowercase;
}
.sh-template_04 .sh-nav-link:hover,
.sh-template_04 .sh-nav-dropdown-btn:hover {
  color: var(--bk-sage-deep);
}

.sh-template_04 .sh-nav-dropdown {
  position: relative;
}
.sh-template_04 .sh-nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sh-template_04 .sh-nav-chevron {
  width: 10px;
  height: 6px;
}
.sh-template_04 .sh-nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bk-cream);
  border: 1px solid rgba(107, 134, 98, 0.2);
  border-radius: var(--bk-radius-sm);
  box-shadow: var(--bk-shadow-soft);
  padding: 10px 14px;
  min-width: 200px;
  z-index: 50;
}
.sh-template_04 .sh-nav-submenu .sh-nav-item {
  display: block;
  padding: 6px 0;
}

.sh-template_04 .sh-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sh-template_04 .sh-nav-compass,
.sh-template_04 .sh-nav-auth {
  font-size: 14px;
  font-weight: 500;
  color: var(--bk-sage-deep);
  padding: 8px 16px;
  border-radius: var(--bk-radius-pill);
  border: 1px solid rgba(107, 134, 98, 0.35);
  text-transform: lowercase;
}
.sh-template_04 .sh-nav-compass:hover,
.sh-template_04 .sh-nav-auth:hover {
  background: var(--bk-sage-light);
}

.sh-template_04 .sh-nav-user {
  position: relative;
}
.sh-template_04 .sh-nav-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bk-sage-light);
  border: 0;
  border-radius: var(--bk-radius-pill);
  padding: 6px 14px 6px 6px;
  cursor: pointer;
  color: var(--bk-sage-deep);
  font-weight: 500;
}
.sh-template_04 .sh-nav-user-avatar {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bk-cream);
  color: var(--bk-sage-deep);
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.sh-template_04 .sh-nav-user-avatar svg { width: 18px; height: 18px; }
.sh-template_04 .sh-nav-user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-template_04 .sh-nav-user-greeting { font-size: 14px; }
.sh-template_04 .sh-nav-user-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--bk-cream);
  border: 1px solid rgba(107, 134, 98, 0.2);
  border-radius: var(--bk-radius-sm);
  box-shadow: var(--bk-shadow-card);
  min-width: 260px;
  padding: 14px;
  z-index: 60;
}
.sh-template_04 .sh-nav-user-menu.hidden { display: none; }
.sh-template_04 .sh-nav-user-identity {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(107, 134, 98, 0.2);
  margin-bottom: 12px;
}
.sh-template_04 .sh-nav-user-identity-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bk-sage-light);
  color: var(--bk-sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sh-template_04 .sh-nav-user-identity-avatar svg { width: 22px; height: 22px; }
.sh-template_04 .sh-nav-user-identity-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}
.sh-template_04 .sh-nav-user-identity-name { font-weight: 600; color: var(--bk-sage-deep); }
.sh-template_04 .sh-nav-user-identity-email { color: var(--bk-ink-soft); }
.sh-template_04 .sh-nav-user-link,
.sh-template_04 .sh-nav-user-signout {
  display: block;
  padding: 8px 10px;
  border-radius: var(--bk-radius-sm);
  font-size: 14px;
  color: var(--bk-ink);
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.sh-template_04 .sh-nav-user-link:hover,
.sh-template_04 .sh-nav-user-signout:hover { background: var(--bk-sage-light); color: var(--bk-sage-deep); }
.sh-template_04 .sh-nav-user-signout-form { margin: 0; }

/* ---------- Buttons ---------- */
.sh-template_04 .sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--bk-radius-pill);
  font-family: var(--bk-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  cursor: pointer;
  transition: transform 120ms ease, background-color 120ms ease;
  border: 1px solid transparent;
}
.sh-template_04 .sh-btn:hover { transform: translateY(-1px); }
.sh-template_04 .sh-btn-primary {
  background: var(--bk-sage-deep);
  color: var(--bk-cream);
}
.sh-template_04 .sh-btn-primary:hover { background: #5B7353; }
.sh-template_04 .sh-btn-ghost {
  background: transparent;
  color: var(--bk-sage-deep);
  border-color: rgba(107, 134, 98, 0.5);
}
.sh-template_04 .sh-btn-ghost:hover {
  background: var(--bk-sage-light);
}

/* ---------- Main layout ---------- */
.sh-template_04 .sh-main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ---------- Hero ---------- */
.sh-template_04 .sh-hero {
  background: var(--bk-cream);
  padding: 64px 28px 32px;
}
.sh-template_04 .sh-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.sh-template_04 .sh-hero-copy { max-width: 480px; }
.sh-template_04 .sh-hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--bk-sage-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 18px 0;
}
.sh-template_04 .sh-hero-title {
  font-size: clamp(44px, 6.2vw, 78px);
  margin: 0 0 22px 0;
}
.sh-template_04 .sh-hero-title-accent { color: var(--bk-sage); font-style: italic; }
.sh-template_04 .sh-hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--bk-ink);
  margin: 0 0 32px 0;
  max-width: 460px;
}
.sh-template_04 .sh-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.sh-template_04 .sh-hero-art {
  color: var(--bk-sage-deep);
  display: flex;
  justify-content: center;
}
.sh-template_04 .sh-hero-illus {
  width: 100%;
  max-width: 560px;
  height: auto;
}

/* ---------- About ---------- */
.sh-template_04 .sh-about {
  padding: 72px 28px;
  background: var(--bk-cream);
  position: relative;
}
.sh-template_04 .sh-about-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
}
.sh-template_04 .sh-about-copy { max-width: 540px; }
.sh-template_04 .sh-about-copy .sh-section-title {
  font-size: clamp(34px, 4.2vw, 52px);
  margin: 0 0 20px 0;
}
.sh-template_04 .sh-about-body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--bk-ink);
  margin: 0 0 24px 0;
}
.sh-template_04 .sh-about-link {
  font-weight: 500;
  color: var(--bk-sage-deep);
  border-bottom: 1px solid rgba(107, 134, 98, 0.35);
  padding-bottom: 2px;
  display: inline-flex;
  gap: 6px;
}
.sh-template_04 .sh-about-link:hover { color: var(--bk-sage); border-bottom-color: var(--bk-sage); }

.sh-template_04 .sh-about-art {
  color: var(--bk-sage-deep);
  display: flex;
  justify-content: center;
}
.sh-template_04 .sh-about-cat {
  width: 100%;
  max-width: 260px;
  height: auto;
}

/* ---------- Values — circular pastel tiles ---------- */
.sh-template_04 .sh-values {
  background: var(--bk-cream);
  padding: 64px 28px 96px;
}
.sh-template_04 .sh-values-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.sh-template_04 .sh-values-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 680px;
}
.sh-template_04 .sh-values-header .sh-section-title {
  font-size: clamp(34px, 4.4vw, 54px);
  margin: 0;
}

.sh-template_04 .sh-values-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.sh-template_04 .sh-value-tile {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.sh-template_04 .sh-value-tile-disc {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--bk-sage-light);
  color: var(--bk-sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -4px 10px rgba(107, 134, 98, 0.08);
}
.sh-template_04 .sh-value-tile-peach .sh-value-tile-disc { background: var(--bk-peach); }
.sh-template_04 .sh-value-tile-sun   .sh-value-tile-disc { background: var(--bk-sun); }
.sh-template_04 .sh-value-tile-sage  .sh-value-tile-disc { background: var(--bk-sage-light); }
.sh-template_04 .sh-value-tile-sky   .sh-value-tile-disc { background: var(--bk-sky); }

.sh-template_04 .sh-value-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--bk-sage-deep);
}
.sh-template_04 .sh-value-tile-icon svg {
  width: 100%;
  height: 100%;
}
.sh-template_04 .sh-value-tile-title {
  font-family: var(--bk-serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--bk-sage-deep);
  margin: 0;
  text-transform: lowercase;
  letter-spacing: -0.005em;
}
.sh-template_04 .sh-value-tile-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--bk-ink-soft);
  max-width: 220px;
  margin: 0;
}

/* ---------- Reviews / testimonials — sage band with bubble cards ---------- */
.sh-template_04 .sh-testimonials {
  background: var(--bk-sage);
  padding: 84px 28px 104px;
  position: relative;
  color: var(--bk-cream);
}
.sh-template_04 .sh-testimonials-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.sh-template_04 .sh-testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.sh-template_04 .sh-testimonials-header .sh-section-kicker {
  color: var(--bk-cream);
  opacity: 0.85;
}
.sh-template_04 .sh-testimonials-header .sh-section-title {
  color: var(--bk-cream);
  font-size: clamp(38px, 5vw, 62px);
  margin: 0;
}

.sh-template_04 .sh-testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.sh-template_04 .sh-testimonial-card {
  position: relative;
  background: var(--bk-sage-deep);
  color: var(--bk-cream);
  border-radius: 28px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--bk-shadow-card);
}
/* Dialogue-bubble tail — pseudo-element pointing down from the card */
.sh-template_04 .sh-testimonial-card::after {
  content: "";
  position: absolute;
  left: 48px;
  bottom: -14px;
  width: 22px;
  height: 22px;
  background: var(--bk-sage-deep);
  border-radius: 4px;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(61, 74, 58, 0.12);
  z-index: 0;
}

.sh-template_04 .sh-testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--bk-sun);
}
.sh-template_04 .sh-testimonial-star svg {
  width: 18px;
  height: 18px;
}
.sh-template_04 .sh-testimonial-quote {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--bk-cream);
}
.sh-template_04 .sh-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.sh-template_04 .sh-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bk-cream);
  color: var(--bk-sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bk-serif);
  font-size: 20px;
  flex-shrink: 0;
}
.sh-template_04 .sh-testimonial-byline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sh-template_04 .sh-testimonial-name {
  font-weight: 600;
  font-size: 14.5px;
}
.sh-template_04 .sh-testimonial-city {
  font-size: 13px;
  opacity: 0.78;
}

/* ---------- Find us ---------- */
.sh-template_04 .sh-findus {
  background: var(--bk-cream);
  padding: 96px 28px;
}
.sh-template_04 .sh-findus-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}
.sh-template_04 .sh-findus-copy .sh-section-title {
  font-size: clamp(36px, 4.6vw, 56px);
  margin: 0 0 18px 0;
}
.sh-template_04 .sh-findus-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bk-ink);
  margin: 0 0 28px 0;
  max-width: 440px;
}
.sh-template_04 .sh-findus-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.sh-template_04 .sh-findus-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(107, 134, 98, 0.3);
}
.sh-template_04 .sh-findus-detail dt {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bk-sage-deep);
  padding-top: 2px;
}
.sh-template_04 .sh-findus-detail dd {
  font-size: 15.5px;
  color: var(--bk-ink);
}
.sh-template_04 .sh-findus-detail a:hover { color: var(--bk-sage-deep); }

.sh-template_04 .sh-findus-social {
  display: flex;
  gap: 10px;
}
.sh-template_04 .sh-findus-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bk-sage-light);
  color: var(--bk-sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 120ms ease;
}
.sh-template_04 .sh-findus-social-link svg { width: 20px; height: 20px; }
.sh-template_04 .sh-findus-social-link:hover { background: var(--bk-sage); color: var(--bk-cream); }

.sh-template_04 .sh-findus-form {
  background: var(--bk-cream-deep);
  padding: 28px;
  border-radius: var(--bk-radius-lg);
  box-shadow: var(--bk-shadow-soft);
}
.sh-template_04 .sh-findus-form turbo-frame { display: block; }

/* ---------- Footer ---------- */
.sh-template_04 .sh-footer {
  background: var(--bk-cream-deep);
  color: var(--bk-sage-deep);
  padding: 64px 28px 28px;
}
.sh-template_04 .sh-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.sh-template_04 .sh-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(107, 134, 98, 0.2);
}
.sh-template_04 .sh-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sh-template_04 .sh-footer-heading {
  font-family: var(--bk-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bk-sage-deep);
  margin: 0 0 8px 0;
}
.sh-template_04 .sh-footer-logo {
  width: 110px;
  height: auto;
  margin-bottom: 8px;
}
.sh-template_04 .sh-footer-contact {
  margin: 0;
  font-size: 14px;
  color: var(--bk-ink);
}
.sh-template_04 .sh-footer-contact a:hover { color: var(--bk-sage-deep); }

.sh-template_04 .sh-footer-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--bk-ink);
  text-transform: lowercase;
}
.sh-template_04 .sh-footer-list a:hover { color: var(--bk-sage-deep); }
.sh-template_04 .sh-footer-sunsmart { text-transform: none; }

.sh-template_04 .sh-footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sh-template_04 .sh-footer-legal {
  margin: 0;
  font-size: 13px;
  color: var(--bk-ink-soft);
}
.sh-template_04 .sh-footer-ack {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--bk-ink-soft);
  max-width: 900px;
}
.sh-template_04 .sh-footer-ack .acknowledgement-of-country { margin: 0; }
.sh-template_04 .sh-footer-ack .ack-heading {
  font-weight: 600;
  color: var(--bk-sage-deep);
  margin: 0 0 4px 0;
  font-size: 13px;
}
.sh-template_04 .sh-footer-ack .ack-body {
  margin: 0;
  font-size: 12.5px;
}

/* ========== Responsive ========== */

@media (max-width: 1024px) {
  .sh-template_04 .sh-hero-inner { gap: 40px; }
  .sh-template_04 .sh-values-tiles { gap: 22px; }
  .sh-template_04 .sh-testimonial-list { gap: 20px; }
}

@media (max-width: 900px) {
  .sh-template_04 .sh-hero-inner,
  .sh-template_04 .sh-about-inner,
  .sh-template_04 .sh-findus-inner { grid-template-columns: 1fr; }
  .sh-template_04 .sh-hero-art,
  .sh-template_04 .sh-about-art { order: -1; }
  .sh-template_04 .sh-values-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
  .sh-template_04 .sh-testimonial-list { grid-template-columns: 1fr; }
  .sh-template_04 .sh-footer-cols { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .sh-template_04 .sh-nav-menu-btn { display: inline-flex; }
  .sh-template_04 .sh-nav-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bk-cream);
    border-top: 1px solid rgba(168, 184, 148, 0.25);
    padding: 20px 28px;
    gap: 20px;
  }
  .sh-template_04 .sh-nav.sh-nav-open .sh-nav-drawer { display: flex; }
  .sh-template_04 .sh-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .sh-template_04 .sh-nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .sh-template_04 .sh-hero { padding: 40px 22px 24px; }
  .sh-template_04 .sh-about,
  .sh-template_04 .sh-values,
  .sh-template_04 .sh-testimonials,
  .sh-template_04 .sh-findus { padding-left: 22px; padding-right: 22px; }
  .sh-template_04 .sh-values-tiles { grid-template-columns: 1fr; gap: 32px; }
  .sh-template_04 .sh-findus-detail { grid-template-columns: 1fr; gap: 4px; }
  .sh-template_04 .sh-footer { padding-left: 22px; padding-right: 22px; }
}

/* ---------- App store badges (Bluedesk parent app) ---------- */
.sh-template_04 .sh-footer-apps {
  margin-top: 24px;
}
.sh-template_04 .sh-footer-apps-blurb {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 320px;
}
.sh-template_04 .sh-footer-apps-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sh-template_04 .sh-app-badge {
  display: inline-block;
  line-height: 0;
  border-radius: 6px;
  transition: transform 120ms ease;
}
.sh-template_04 .sh-app-badge svg {
  display: block;
  height: 40px;
  width: auto;
}
.sh-template_04 .sh-app-badge:hover { transform: translateY(-1px); }

/* ==========================================================================
   Inner-page chrome (be kids journal layout) — appended for /p/<slug>.
   Matches the homepage's calm Waldorf/Montessori voice: cream surfaces,
   lowercase DM Serif Display headings, sage-deep ink, tracked uppercase
   eyebrows, dashed dividers (mirroring the homepage's findus details).
   No rotation tilts, no chip paper-stack, no rotated giant numerals.
   ========================================================================== */

/* --- Hero ------------------------------------------------------------------
   Cream surface (same as the homepage hero), tracked uppercase eyebrow,
   lowercase DM Serif Display title with sage-italic last word — picks up
   the homepage's "welcome to chalcot lodge" italic-accent gesture without
   inventing a new ornament. Breadcrumb above the eyebrow as quiet metadata. */
.sh-template_04 .sh-journal-hero {
  background: var(--bk-cream);
  padding: 56px 28px 40px;
}
.sh-template_04 .sh-journal-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sh-template_04 .sh-journal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--bk-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bk-ink-soft);
  margin-bottom: 8px;
}
.sh-template_04 .sh-journal-breadcrumb a {
  color: var(--bk-ink-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  padding-bottom: 1px;
}
.sh-template_04 .sh-journal-breadcrumb a:hover {
  color: var(--bk-sage-deep);
  border-bottom-color: rgba(107, 134, 98, 0.4);
}
.sh-template_04 .sh-journal-breadcrumb-sep { opacity: 0.45; }
.sh-template_04 .sh-journal-breadcrumb [aria-current="page"] { color: var(--bk-sage-deep); }

.sh-template_04 .sh-journal-eyebrow {
  font-family: var(--bk-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bk-sage-deep);
  margin: 0;
}
.sh-template_04 .sh-journal-title {
  font-family: var(--bk-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.005em;
  color: var(--bk-sage-deep);
  text-transform: lowercase;
  margin: 0;
}
.sh-template_04 .sh-journal-title-accent {
  color: var(--bk-sage);
  font-style: italic;
}
.sh-template_04 .sh-journal-lede {
  font-family: var(--bk-sans);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--bk-ink);
  max-width: 56ch;
  margin: 6px 0 0 0;
}

@media (max-width: 720px) {
  .sh-template_04 .sh-journal-hero { padding: 32px 22px 24px; }
}

/* --- Sticky TOC ------------------------------------------------------------
   Cream chip strip pinned just below the nav. Quiet — same uppercase
   eyebrow rhythm the homepage uses for its `.sh-section-kicker`s. */
.sh-template_04 .sh-journal-toc {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(250, 247, 236);
  border-bottom: 1px solid rgba(168, 184, 148, 0.25);
  padding: 12px 28px;
}
@media (max-width: 920px) {
  .sh-template_04 .sh-journal-toc { position: static; top: auto; }
}
.sh-template_04 .sh-journal-toc-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sh-template_04 .sh-journal-toc-label {
  font-family: var(--bk-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bk-sage-deep);
  white-space: nowrap;
}
.sh-template_04 .sh-journal-toc-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sh-template_04 .sh-journal-toc-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--bk-radius-pill);
  background: var(--bk-cream-deep);
  color: var(--bk-sage-deep);
  font-family: var(--bk-sans);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(107, 134, 98, 0.18);
  transition: background 0.14s ease, color 0.14s ease, border-color 0.14s ease;
  text-transform: lowercase;
}
.sh-template_04 .sh-journal-toc-chip:hover {
  background: var(--bk-sage-deep);
  color: var(--bk-cream);
  border-color: var(--bk-sage-deep);
}

/* --- Body shell ----------------------------------------------------------- */
.sh-template_04 .sh-journal-shell {
  width: min(1180px, 100% - 2.5rem);
  margin: 0 auto;
  padding: 64px 0 80px;
}
.sh-template_04 .sh-journal-shell-with-aside {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
@media (max-width: 920px) {
  .sh-template_04 .sh-journal-shell-with-aside {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sh-template_04 .sh-journal-shell { padding: 40px 0 56px; }
}

/* --- Sibling sidebar -------------------------------------------------------
   Dashed dividers mirror the homepage's `.sh-findus-detail` rule. */
.sh-template_04 .sh-journal-aside { position: sticky; top: 80px; }
@media (max-width: 920px) { .sh-template_04 .sh-journal-aside { position: static; } }
.sh-template_04 .sh-journal-aside-eyebrow {
  display: block;
  font-family: var(--bk-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bk-sage-deep);
  margin-bottom: 6px;
}
.sh-template_04 .sh-journal-aside-parent {
  display: inline-block;
  font-family: var(--bk-serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--bk-sage-deep);
  text-transform: lowercase;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.sh-template_04 .sh-journal-aside-parent:hover { border-bottom-color: var(--bk-sage); }
.sh-template_04 .sh-journal-aside-list {
  border-top: 1px dashed rgba(107, 134, 98, 0.3);
  display: flex;
  flex-direction: column;
}
.sh-template_04 .sh-journal-aside-list li {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(107, 134, 98, 0.3);
  font-size: 14.5px;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.sh-template_04 .sh-journal-aside-num {
  font-family: var(--bk-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--bk-sage);
  flex-shrink: 0;
  min-width: 18px;
}
.sh-template_04 .sh-journal-aside-link {
  color: var(--bk-ink-soft);
  text-transform: lowercase;
  transition: color 0.12s ease;
}
.sh-template_04 .sh-journal-aside-link:hover { color: var(--bk-sage-deep); }
.sh-template_04 .sh-journal-aside-current .sh-journal-aside-link-current {
  color: var(--bk-sage-deep);
  font-weight: 600;
  text-transform: lowercase;
}
.sh-template_04 .sh-journal-aside-current .sh-journal-aside-num { color: var(--bk-sage-deep); }

/* --- Body prose ----------------------------------------------------------- */
.sh-template_04 .sh-journal-body { position: relative; }
.sh-template_04 .sh-journal-body-inner { max-width: 720px; }
.sh-template_04 .sh-journal-shell:not(.sh-journal-shell-with-aside) .sh-journal-body-inner {
  margin: 0 auto;
}

.sh-template_04 .sh-journal-intro { margin-bottom: 1.6em; }
.sh-template_04 .sh-journal-intro-prose {
  font-family: var(--bk-sans);
  font-size: 19px;
  line-height: 1.75;
  color: var(--bk-ink);
}
.sh-template_04 .sh-journal-intro-prose > *:first-child::first-letter {
  font-family: var(--bk-serif);
  font-weight: 400;
  font-size: 4.5em;
  line-height: 0.85;
  float: left;
  padding: 0.05em 0.1em 0 0;
  color: var(--bk-sage-deep);
}

.sh-template_04 .sh-journal-block {
  font-family: var(--bk-sans);
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--bk-ink);
  margin: 0 0 1.2em;
}
.sh-template_04 .sh-journal-block p { margin: 0 0 1.1em; }
.sh-template_04 .sh-journal-block p:last-child { margin-bottom: 0; }

/* Links — clean sage underline on a thin sage-tinted rule */
.sh-template_04 .sh-journal-body a,
.sh-template_04 .sh-journal-intro-prose a {
  color: var(--bk-sage-deep);
  text-decoration: underline;
  text-decoration-color: rgba(107, 134, 98, 0.35);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.14s ease, color 0.14s ease;
}
.sh-template_04 .sh-journal-body a:hover,
.sh-template_04 .sh-journal-intro-prose a:hover {
  color: var(--bk-sage);
  text-decoration-color: var(--bk-sage);
}

/* Lists — small sage disc bullet, no chip rainbow */
.sh-template_04 .sh-journal-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
}
.sh-template_04 .sh-journal-block ul > li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.5em;
}
.sh-template_04 .sh-journal-block ul > li::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bk-sage);
  opacity: 0.7;
}
.sh-template_04 .sh-journal-block ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.sh-template_04 .sh-journal-block ol > li { margin-bottom: 0.45em; }
.sh-template_04 .sh-journal-block ol > li::marker {
  color: var(--bk-sage-deep);
  font-family: var(--bk-serif);
  font-weight: 400;
}

/* Tables — soft cream cells, deep-sage header strip */
.sh-template_04 .sh-journal-block table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.6em 0;
  font-size: 15px;
  background: #fff;
  border-radius: var(--bk-radius-sm);
  overflow: hidden;
  box-shadow: var(--bk-shadow-soft);
}
.sh-template_04 .sh-journal-block table th {
  background: var(--bk-sage-deep);
  color: var(--bk-cream);
  font-family: var(--bk-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  padding: 14px 18px;
}
.sh-template_04 .sh-journal-block table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--bk-cream-deep);
}
.sh-template_04 .sh-journal-block table tr:nth-child(even) td { background: var(--bk-cream); }
.sh-template_04 .sh-journal-block table tr:last-child td { border-bottom: 0; }

.sh-template_04 .sh-journal-hr {
  border: 0;
  height: 1px;
  background: var(--bk-cream-deep);
  margin: 3em 0;
}

/* --- Section break -------------------------------------------------------- */
.sh-template_04 .sh-journal-section {
  margin: 72px 0 24px;
  scroll-margin-top: 96px;
}
.sh-template_04 .sh-journal-section-numeral {
  display: block;
  font-family: var(--bk-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bk-sage);
  margin-bottom: 12px;
}
.sh-template_04 .sh-journal-section-heading {
  font-family: var(--bk-serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--bk-sage-deep);
  margin: 0 0 0.4em;
  text-transform: lowercase;
}
.sh-template_04 .sh-journal-section-h2 .sh-journal-section-heading { font-size: clamp(28px, 3.4vw, 38px); }
.sh-template_04 .sh-journal-section-h3 .sh-journal-section-heading { font-size: 24px; }
.sh-template_04 .sh-journal-section-h4 .sh-journal-section-heading { font-size: 19px; }

/* --- Pull-quote ----------------------------------------------------------- */
.sh-template_04 .sh-journal-pull {
  margin: 56px 0;
}
.sh-template_04 .sh-journal-pull-body {
  margin: 0;
  padding: 8px 0 8px 28px;
  border-left: 3px solid var(--bk-sage);
  font-family: var(--bk-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.35;
  color: var(--bk-sage-deep);
}

/* --- Figures (single body) ----------------------------------------------- */
.sh-template_04 .sh-journal-figure {
  margin: 48px 0;
  padding: 0;
  background: transparent;
}
.sh-template_04 .sh-journal-figure-right { float: right; max-width: 320px; margin: 8px 0 24px 32px; }
.sh-template_04 .sh-journal-figure-left  { float: left;  max-width: 320px; margin: 8px 32px 24px 0; }
.sh-template_04 .sh-journal-figure-block { margin: 56px auto; max-width: 560px; }
@media (max-width: 920px) {
  .sh-template_04 .sh-journal-figure-right,
  .sh-template_04 .sh-journal-figure-left {
    float: none; margin: 36px auto; max-width: 100%;
  }
}
.sh-template_04 .sh-journal-figure-frame {
  background: var(--bk-cream);
  padding: 8px;
  border-radius: var(--bk-radius);
  box-shadow: var(--bk-shadow-soft);
}
.sh-template_04 .sh-journal-figure-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--bk-radius-sm);
  background: var(--bk-cream-deep);
}
.sh-template_04 .sh-journal-figure-caption {
  display: block;
  margin-top: 12px;
  font-family: var(--bk-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--bk-ink-soft);
  text-align: center;
}
.sh-template_04 .sh-journal-figure-caption span {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: 0;
}

/* --- Staff card grid ------------------------------------------------------ */
.sh-template_04 .sh-journal-staff {
  margin: 56px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 56px 28px;
  align-items: start;
}
.sh-template_04 .sh-journal-staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.22s ease;
}
.sh-template_04 .sh-journal-staff-card:hover { transform: translateY(-4px); }

.sh-template_04 .sh-journal-staff-portrait {
  width: clamp(140px, 60%, 168px);
  margin-bottom: 16px;
}
.sh-template_04 .sh-journal-staff-portrait .sh-journal-figure-grid {
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-template_04 .sh-journal-staff-portrait .sh-journal-figure-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--bk-cream);
  padding: 6px;
  box-shadow: var(--bk-shadow-soft);
}
.sh-template_04 .sh-journal-staff-portrait .sh-journal-figure-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: var(--bk-cream-deep);
}
.sh-template_04 .sh-journal-staff-portrait .sh-journal-figure-caption {
  font-family: var(--bk-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  color: var(--bk-sage-deep);
  text-transform: lowercase;
  margin-top: 12px;
}

.sh-template_04 .sh-journal-staff-bio {
  font-family: var(--bk-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--bk-ink);
  opacity: 0.9;
  text-align: left;
  width: 100%;
}
.sh-template_04 .sh-journal-staff-bio p { margin: 0 0 0.5em; }
.sh-template_04 .sh-journal-staff-bio p:last-child { margin-bottom: 0; }

/* --- Bare-figure portrait grid ------------------------------------------- */
.sh-template_04 .sh-journal-portraits {
  margin: 56px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 32px 20px;
  justify-items: center;
}
.sh-template_04 .sh-journal-portraits-item { display: flex; flex-direction: column; align-items: center; width: 100%; }
.sh-template_04 .sh-journal-figure-grid {
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-template_04 .sh-journal-figure-grid .sh-journal-figure-frame {
  width: clamp(120px, 100%, 140px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--bk-cream);
  padding: 5px;
  box-shadow: var(--bk-shadow-soft);
}
.sh-template_04 .sh-journal-figure-grid .sh-journal-figure-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* --- Empty fallback ------------------------------------------------------- */
.sh-template_04 .sh-journal-empty { padding: 80px 0; text-align: center; }
.sh-template_04 .sh-journal-empty-note {
  font-family: var(--bk-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bk-ink-soft);
}

/* --- "Keep exploring" panel — pastel-disc value-tile vocabulary ----------
   Each card carries a small numbered disc in one of the homepage's value
   tints (peach / sun / sky / sage). Mirrors the homepage's value-tile
   rhythm without rebuilding the giant circular tiles. */
.sh-template_04 .sh-journal-wall {
  background: var(--bk-cream);
  border-top: 1px solid var(--bk-cream-deep);
  padding: 80px 28px 88px;
}
.sh-template_04 .sh-journal-wall-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.sh-template_04 .sh-journal-wall-header {
  margin-bottom: 48px;
  text-align: center;
}
.sh-template_04 .sh-journal-wall-eyebrow {
  font-family: var(--bk-sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bk-sage-deep);
  margin: 0 0 12px 0;
}
.sh-template_04 .sh-journal-wall-heading {
  font-family: var(--bk-serif);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 48px);
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--bk-sage-deep);
  text-transform: lowercase;
  margin: 0;
}
.sh-template_04 .sh-journal-wall-sub {
  font-family: var(--bk-sans);
  font-size: 16px;
  color: var(--bk-ink-soft);
  margin: 12px auto 0;
  max-width: 56ch;
}
.sh-template_04 .sh-journal-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.sh-template_04 .sh-journal-wall-card {
  background: var(--bk-cream-deep);
  border: 1px solid rgba(107, 134, 98, 0.18);
  border-radius: var(--bk-radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.sh-template_04 .sh-journal-wall-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bk-shadow-card);
  border-color: rgba(107, 134, 98, 0.35);
}
.sh-template_04 .sh-journal-wall-card-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 28px 26px;
  color: inherit;
}
.sh-template_04 .sh-journal-wall-card-disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bk-sage-light);
  color: var(--bk-sage-deep);
  font-family: var(--bk-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.sh-template_04 .sh-journal-wall-card-peach .sh-journal-wall-card-disc { background: var(--bk-peach); }
.sh-template_04 .sh-journal-wall-card-sun   .sh-journal-wall-card-disc { background: var(--bk-sun); }
.sh-template_04 .sh-journal-wall-card-sky   .sh-journal-wall-card-disc { background: var(--bk-sky); }
.sh-template_04 .sh-journal-wall-card-sage  .sh-journal-wall-card-disc { background: var(--bk-sage-light); }

.sh-template_04 .sh-journal-wall-card-title {
  font-family: var(--bk-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--bk-sage-deep);
  text-transform: lowercase;
}
.sh-template_04 .sh-journal-wall-card-summary {
  font-family: var(--bk-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--bk-ink-soft);
}
.sh-template_04 .sh-journal-wall-card-cta {
  margin-top: 4px;
  font-family: var(--bk-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--bk-sage-deep);
  text-transform: lowercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.16s ease, color 0.14s ease;
}
.sh-template_04 .sh-journal-wall-card:hover .sh-journal-wall-card-cta {
  gap: 10px;
  color: var(--bk-sage);
}

/* --- Downloads section in inner_body — see _inner_body.slim ------------ */
.sh-template_04 .sh-journal-downloads {
  width: min(720px, 100% - 2.5rem);
  margin: 48px auto 0;
  padding: 0;
}

.sh-template_04 .sh-journal-downloads-heading {
  font-family: var(--bk-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.005em;
  color: var(--bk-sage-deep);
  text-transform: lowercase;
  margin: 0 0 20px;
}

.sh-template_04 .sh-journal-downloads-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sh-template_04 .sh-journal-downloads-item {
  background: var(--bk-cream);
  border: 1px solid var(--bk-cream-deep);
  border-radius: var(--bk-radius-sm);
  padding: 8px 4px;
  box-shadow: var(--bk-shadow-soft);
}

/* --- Sign-off rule ------------------------------------------------------- */
.sh-template_04 .sh-journal-signoff {
  text-align: center;
  padding: 40px 0 56px;
}
.sh-template_04 .sh-journal-signoff-rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--bk-cream-deep);
}

/* --- "More" overflow dropdown in nav ------------------------------------- */
.sh-template_04 .sh-nav-overflow .sh-nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: -8px;
  background: var(--bk-cream);
  border-radius: var(--bk-radius-sm);
  box-shadow: var(--bk-shadow-card);
  padding: 8px;
  min-width: 220px;
  z-index: 50;
  border: 1px solid rgba(107, 134, 98, 0.2);
}
.sh-template_04 .sh-nav-overflow .sh-nav-submenu.hidden { display: none; }

/* --- Initials avatar fallback (signed-in nav) ---------------------------- */
.sh-template_04 .sh-nav-user-avatar-initials {
  font-family: var(--bk-serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--bk-sage-deep);
  letter-spacing: 0;
}

/* --- Widgets (newsletters, announcements, events, etc.) ------------------ */
.sh-template_04 .sh-journal-widgets {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.sh-template_04 .sh-journal-widget {
  background: var(--bk-cream);
  border: 1px solid var(--bk-cream-deep);
  border-radius: var(--bk-radius);
  padding: 28px;
  box-shadow: var(--bk-shadow-soft);
}

/* --- Mobile hamburger drawer ---------------------------------------------
   Existing desktop nav becomes a vertical drawer below ~980px (matches
   template_09's tablet breakpoint). The 720px rules above already reset
   `display: none` on the drawer — we expand the breakpoint here so
   tablets get the same treatment as phones. */
@media (max-width: 980px) {
  .sh-template_04 .sh-nav-menu-btn { display: inline-flex; }
  .sh-template_04 .sh-nav-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bk-cream);
    border-top: 1px solid rgba(168, 184, 148, 0.25);
    padding: 20px 28px;
    gap: 20px;
  }
  .sh-template_04 .sh-nav.sh-nav-open .sh-nav-drawer { display: flex; }
  .sh-template_04 .sh-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .sh-template_04 .sh-nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .sh-template_04 .sh-nav-overflow .sh-nav-submenu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 4px 0 4px 12px;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .sh-template_04 .sh-journal-hero,
  .sh-template_04 .sh-journal-toc,
  .sh-template_04 .sh-journal-wall { padding-left: 22px; padding-right: 22px; }
  .sh-template_04 .sh-journal-shell { width: min(1180px, 100% - 1.5rem); }
  .sh-template_04 .sh-journal-wall-grid { grid-template-columns: 1fr; }
}
