/* =========================================================================
   template_03 — EduCodex (kindergarten-coded) static home
   -------------------------------------------------------------------------
   All custom selectors are scoped under `.sh-template_03`. Tailwind utility
   classes inline in markup are fine — every rule in this file is namespaced
   to the template wrapper so nothing here leaks into other templates.
   ========================================================================= */

.sh-template_03 {
  --ec-teal:        #3F7A6E;
  --ec-teal-deep:   #2E5D55;
  --ec-teal-soft:   #5A9A8D;
  --ec-mustard:     #F0C44C;
  --ec-mustard-deep:#D9A82B;
  --ec-cream:       #FAF6EE;
  --ec-ink:         #1E2B28;
  --ec-ink-soft:    #45524F;

  --ec-lavender:    #D6CFE8;
  --ec-yellow-soft: #F8E68A;
  --ec-mint:        #C6E0CB;
  --ec-coral:       #E97A5C;

  background: var(--ec-cream);
  color: var(--ec-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;

  /* Table section — teal header, cream borders/stripe (SHI-200) */
  --sh-section-table-header-bg: var(--ec-teal);
  --sh-section-table-header-color: #ffffff;
  --sh-section-table-border: var(--ec-cream);
  --sh-section-table-stripe-bg: var(--ec-cream);
  --sh-section-table-radius: 14px;
}

.sh-template_03 * { box-sizing: border-box; }

.sh-template_03 h1,
.sh-template_03 h2,
.sh-template_03 h3,
.sh-template_03 h4,
.sh-template_03 .sh-display {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ec-ink);
  margin: 0;
}

.sh-template_03 p { margin: 0; }

.sh-template_03 a { color: inherit; text-decoration: none; }
.sh-template_03 a:focus-visible,
.sh-template_03 button:focus-visible {
  outline: 3px solid var(--ec-mustard);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip link — accessible shortcut past the nav */
.sh-template_03 .sh-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ec-ink);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 8px;
  z-index: 999;
}
.sh-template_03 .sh-skip-link:focus { left: 1rem; top: 1rem; }

/* Shared buttons ---------------------------------------------------------- */
.sh-template_03 .sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  cursor: pointer;
  border: 0;
}

.sh-template_03 .sh-btn-primary {
  background: var(--ec-mustard);
  color: var(--ec-ink);
  box-shadow: 0 6px 0 var(--ec-mustard-deep);
}
.sh-template_03 .sh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--ec-mustard-deep);
}

.sh-template_03 .sh-btn-dark {
  background: var(--ec-ink);
  color: #fff;
  box-shadow: 0 6px 0 #0c1412;
}
.sh-template_03 .sh-btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #0c1412;
}

.sh-template_03 .sh-btn-teal {
  background: var(--ec-teal);
  color: #fff;
  box-shadow: 0 6px 0 var(--ec-teal-deep);
}
.sh-template_03 .sh-btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--ec-teal-deep);
}

.sh-template_03 .sh-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.sh-template_03 .sh-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}

/* Section spine ----------------------------------------------------------- */
.sh-template_03 .sh-section-kicker {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--ec-teal);
}

.sh-template_03 .sh-section-title {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.1;
  margin-top: .5rem;
}

/* Page container width rhythm ------------------------------------------- */
.sh-template_03 .sh-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.25rem);
}

/* =========================================================================
   Header / brandmark / nav
   ========================================================================= */
.sh-template_03 .sh-brandbar {
  position: relative;
  z-index: 10;
  padding: 1.25rem 0 .5rem;
}

.sh-template_03 .sh-brandbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sh-template_03 .sh-brand-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.sh-template_03 .sh-brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  padding: 4px;
  object-fit: contain;
}

.sh-template_03 .sh-top-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sh-template_03 .sh-top-nav a,
.sh-template_03 .sh-top-nav button {
  color: #fff;
  opacity: .9;
  font-weight: 500;
  font-size: .95rem;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.sh-template_03 .sh-top-nav a:hover { opacity: 1; }

.sh-template_03 .sh-top-nav-cta {
  padding: .55rem 1.1rem;
  border-radius: 999px;
  background: var(--ec-mustard);
  color: var(--ec-ink) !important;
  font-weight: 600;
  opacity: 1 !important;
}
.sh-template_03 .sh-top-nav-cta:hover {
  background: #fff;
}

/* =========================================================================
   Hero — full-bleed teal with playful scribbles
   ========================================================================= */
.sh-template_03 .sh-hero {
  position: relative;
  background: var(--ec-teal);
  color: #fff;
  padding: 0 0 4.5rem;
  overflow: hidden;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
}

.sh-template_03 .sh-hero::before,
.sh-template_03 .sh-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
}
.sh-template_03 .sh-hero::before {
  width: 380px; height: 380px;
  background: var(--ec-teal-soft);
  top: -140px; left: -120px;
}
.sh-template_03 .sh-hero::after {
  width: 420px; height: 420px;
  background: var(--ec-mustard);
  top: 30%; right: -180px;
  opacity: .22;
}

.sh-template_03 .sh-hero-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.sh-template_03 .sh-hero-deco svg {
  position: absolute;
  color: rgba(255,255,255,0.85);
}

/* A set of fixed anchor points so the squiggles feel placed rather than random */
.sh-template_03 .sh-deco-squiggle-a { top: 18%; left: 6%; width: 120px; transform: rotate(-14deg); }
.sh-template_03 .sh-deco-squiggle-b { top: 62%; right: 9%;  width: 140px; transform: rotate(18deg); color: var(--ec-mustard); }
.sh-template_03 .sh-deco-squiggle-c { top: 78%; left: 36%; width: 110px; transform: rotate(-7deg); color: rgba(255,255,255,0.55); }
.sh-template_03 .sh-deco-rocket     { top: 22%; right: 12%; width: 70px; color: var(--ec-mustard); }
.sh-template_03 .sh-deco-pencil     { top: 68%; left: 10%; width: 72px; transform: rotate(-20deg); color: var(--ec-mustard); }
.sh-template_03 .sh-deco-cloud-a    { top: 12%; right: 22%; width: 96px; color: rgba(255,255,255,0.78); }
.sh-template_03 .sh-deco-cloud-b    { top: 55%; left: 3%;  width: 82px; color: rgba(255,255,255,0.55); }
.sh-template_03 .sh-deco-star       { top: 8%;  left: 50%; width: 32px; color: var(--ec-mustard); }

.sh-template_03 .sh-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.sh-template_03 .sh-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}

.sh-template_03 .sh-hero-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ec-mustard);
}

.sh-template_03 .sh-hero-title {
  font-size: clamp(2.25rem, 5.8vw, 4.25rem);
  line-height: 1.05;
  color: #fff;
  max-width: 18ch;
}
.sh-template_03 .sh-hero-title .sh-hero-underline {
  background-image: linear-gradient(transparent 72%, var(--ec-mustard) 72%, var(--ec-mustard) 92%, transparent 92%);
  background-repeat: no-repeat;
  padding: 0 .1em;
}

.sh-template_03 .sh-hero-lede {
  max-width: 52ch;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
}

.sh-template_03 .sh-hero-ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: .5rem;
  justify-content: center;
}

/* Arch-framed portraits trio ------------------------------------------- */
.sh-template_03 .sh-hero-portraits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: 3rem;
  width: 100%;
  max-width: 920px;
}

.sh-template_03 .sh-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 30% 30% / 50% 50% 12% 12%;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transition: transform .25s ease;
}
.sh-template_03 .sh-portrait:hover { transform: translateY(-4px) rotate(-1deg); }

.sh-template_03 .sh-portrait-bg-lavender { background: var(--ec-lavender); }
.sh-template_03 .sh-portrait-bg-yellow   { background: var(--ec-yellow-soft); }
.sh-template_03 .sh-portrait-bg-mint     { background: var(--ec-mint); }

.sh-template_03 .sh-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.sh-template_03 .sh-portrait-sparkle {
  position: absolute;
  top: 8%; right: 10%;
  width: 28px; height: 28px;
  color: var(--ec-mustard);
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.12));
}

/* =========================================================================
   CARE values grid
   ========================================================================= */
.sh-template_03 .sh-values {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
}

.sh-template_03 .sh-values-header {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 640px;
}

.sh-template_03 .sh-values-header .sh-values-lede {
  margin-top: 1rem;
  color: var(--ec-ink-soft);
}

.sh-template_03 .sh-values-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.sh-template_03 .sh-value {
  background: #fff;
  border-radius: 28px;
  padding: 2rem 1.5rem 1.75rem;
  box-shadow: 0 8px 24px rgba(32,48,60,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  text-align: left;
  border: 1px solid rgba(32,48,60,0.04);
}
.sh-template_03 .sh-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(32,48,60,0.08);
}

.sh-template_03 .sh-value-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ec-teal);
}

.sh-template_03 .sh-value-badge svg {
  width: 32px;
  height: 32px;
}

/* Photo variant: when a background_image is attached to the value-card
   slide, render the photo as the badge instead of the SVG icon. The photo
   fills the circular badge frame; the per-accent pastel background is
   suppressed because the photo covers it edge-to-edge. */
.sh-template_03 .sh-value-badge-photo {
  background: transparent !important;
  overflow: hidden;
}
.sh-template_03 .sh-value-badge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sh-template_03 .sh-value-title {
  font-size: 1.4rem;
  color: var(--ec-mustard-deep);
}

.sh-template_03 .sh-value-copy {
  color: var(--ec-ink-soft);
  font-size: .95rem;
  line-height: 1.55;
}

.sh-template_03 .sh-value-more {
  margin-top: auto;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 500;
  color: var(--ec-teal);
  font-size: .95rem;
}
.sh-template_03 .sh-value-more:hover { color: var(--ec-teal-deep); text-decoration: underline; }

/* Pastel-tinted badge backgrounds per accent */
.sh-template_03 .sh-value-blue   .sh-value-badge { background: var(--ec-lavender); }
.sh-template_03 .sh-value-sun    .sh-value-badge { background: var(--ec-yellow-soft); }
.sh-template_03 .sh-value-coral  .sh-value-badge { background: #FBD6C9; color: var(--ec-coral); }
.sh-template_03 .sh-value-leaf   .sh-value-badge { background: var(--ec-mint); }

/* =========================================================================
   About / Our promise
   ========================================================================= */
.sh-template_03 .sh-promise {
  background: var(--ec-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.sh-template_03 .sh-promise-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.sh-template_03 .sh-promise-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 240px 24px 240px 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(32,48,60,0.12);
  background: var(--ec-mint);
}
.sh-template_03 .sh-promise-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sh-template_03 .sh-promise-media::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--ec-mustard);
  z-index: -1;
}

.sh-template_03 .sh-promise-media-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: .9rem 1.25rem;
  background: #fff;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 8px 20px rgba(32,48,60,0.12);
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
}

.sh-template_03 .sh-promise-media-badge .sh-promise-media-badge-num {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ec-teal);
  display: block;
  line-height: 1;
}
.sh-template_03 .sh-promise-media-badge .sh-promise-media-badge-label {
  font-size: .78rem;
  color: var(--ec-ink-soft);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sh-template_03 .sh-promise-body .sh-section-title { max-width: 14ch; }

.sh-template_03 .sh-promise-lede {
  margin-top: 1.25rem;
  color: var(--ec-ink-soft);
  max-width: 52ch;
}

.sh-template_03 .sh-promise-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.sh-template_03 .sh-promise-feature {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(32,48,60,0.06);
  font-weight: 500;
  font-size: .92rem;
  color: var(--ec-ink);
}

.sh-template_03 .sh-promise-feature::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ec-mustard);
  flex: 0 0 auto;
}

/* =========================================================================
   School tours — calendar chips
   ========================================================================= */
.sh-template_03 .sh-tours {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.sh-template_03 .sh-tours-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.sh-template_03 .sh-tours-copy .sh-tours-lede {
  margin: 1.25rem 0 1.75rem;
  color: var(--ec-ink-soft);
  max-width: 44ch;
}

.sh-template_03 .sh-tours-card {
  background: #fff;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(32,48,60,0.08);
}

.sh-template_03 .sh-tours-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed rgba(63,122,110,0.18);
}

.sh-template_03 .sh-tours-card-head-label {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  color: var(--ec-teal);
  font-size: 1.1rem;
}

.sh-template_03 .sh-tours-card-head-year {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 500;
  color: var(--ec-mustard-deep);
  letter-spacing: .1em;
}

.sh-template_03 .sh-tour-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.sh-template_03 .sh-tour {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border-radius: 18px;
  background: var(--ec-cream);
  border: 1px solid rgba(32,48,60,0.05);
}

.sh-template_03 .sh-tour-chip {
  width: 64px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(32,48,60,0.08);
  text-align: center;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
}

.sh-template_03 .sh-tour-chip-month {
  display: block;
  background: var(--ec-mustard);
  color: var(--ec-ink);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  padding: .3rem 0;
}

.sh-template_03 .sh-tour-chip-day {
  display: block;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ec-teal);
  padding: .35rem 0 .5rem;
  line-height: 1;
}

.sh-template_03 .sh-tour-body {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.sh-template_03 .sh-tour-day {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  color: var(--ec-ink);
}

.sh-template_03 .sh-tour-date-full {
  color: var(--ec-ink-soft);
  font-size: .92rem;
}

.sh-template_03 .sh-tour-sep { padding: 0 .35rem; opacity: .5; }

.sh-template_03 .sh-tour-cta {
  padding: .55rem 1rem;
  border-radius: 999px;
  background: var(--ec-teal);
  color: #fff;
  font-weight: 500;
  font-size: .85rem;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
}
.sh-template_03 .sh-tour-cta:hover { background: var(--ec-teal-deep); }

/* =========================================================================
   Testimonials marquee
   ========================================================================= */
.sh-template_03 .sh-testimonials {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, transparent, rgba(63,122,110,0.06) 40%, transparent);
}

.sh-template_03 .sh-testimonials-header {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 640px;
}

.sh-template_03 .sh-testimonials-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.sh-template_03 .sh-testimonials-track {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: sh-ec-marquee 48s linear infinite;
}

.sh-template_03 .sh-testimonials-marquee[data-paused="true"] .sh-testimonials-track {
  animation-play-state: paused;
}

@keyframes sh-ec-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.sh-template_03 .sh-testimonial-card {
  flex: 0 0 auto;
  width: clamp(280px, 80vw, 360px);
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 10px 26px rgba(32,48,60,0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.sh-template_03 .sh-testimonial-mark {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 4rem;
  line-height: .6;
  color: var(--ec-mustard);
  font-weight: 700;
}

.sh-template_03 .sh-testimonial-quote {
  font-size: .98rem;
  line-height: 1.55;
  color: var(--ec-ink);
  margin: 0;
}

.sh-template_03 .sh-testimonial-meta {
  font-size: .88rem;
  color: var(--ec-ink-soft);
  margin-top: auto;
  padding-top: .5rem;
  border-top: 1px dashed rgba(32,48,60,0.12);
}

.sh-template_03 .sh-testimonial-name {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  color: var(--ec-teal);
}
.sh-template_03 .sh-testimonial-dash { padding: 0 .35rem; opacity: .6; }

/* =========================================================================
   Find us / contact
   ========================================================================= */
.sh-template_03 .sh-findus {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.sh-template_03 .sh-findus-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.sh-template_03 .sh-findus-copy .sh-findus-intro {
  margin: 1.25rem 0 1.5rem;
  color: var(--ec-ink-soft);
  max-width: 44ch;
}

.sh-template_03 .sh-findus-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin: 0;
}

.sh-template_03 .sh-findus-detail dt {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  color: var(--ec-teal);
  margin-bottom: .35rem;
}

.sh-template_03 .sh-findus-detail dd {
  margin: 0;
  color: var(--ec-ink);
  font-weight: 500;
}

.sh-template_03 .sh-findus-detail a { color: var(--ec-ink); text-decoration: underline; text-decoration-thickness: 2px; text-decoration-color: var(--ec-mustard); }

.sh-template_03 .sh-findus-form {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(32,48,60,0.08);
  padding: 1.25rem;
}

.sh-template_03 .sh-findus-form :where(.sh-findus-form-inner) > * {
  /* Keep the form partial's own styling — this wrapper just provides the outer shell. */
}

/* =========================================================================
   Footer
   ========================================================================= */
.sh-template_03 .sh-footer {
  background: var(--ec-teal);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  margin-top: 3rem;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  position: relative;
}

.sh-template_03 .sh-footer-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.sh-template_03 .sh-footer-heading {
  font-size: 1.05rem;
  color: var(--ec-mustard);
  margin-bottom: 1rem;
  letter-spacing: .02em;
}

.sh-template_03 .sh-footer-contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  color: rgba(255,255,255,0.88);
}

.sh-template_03 .sh-footer-contact a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(240,196,76,0.6);
}

.sh-template_03 .sh-footer-contact a:hover {
  text-decoration-color: var(--ec-mustard);
}

.sh-template_03 .sh-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
}

.sh-template_03 .sh-footer-nav a {
  color: rgba(255,255,255,0.88);
}
.sh-template_03 .sh-footer-nav a:hover { color: #fff; }

.sh-template_03 .sh-footer-ack {
  color: rgba(255,255,255,0.92);
  font-size: .9rem;
  line-height: 1.55;
}
.sh-template_03 .sh-footer-ack .ack-heading {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  color: var(--ec-mustard);
  margin-bottom: .35rem;
}

.sh-template_03 .sh-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: .88rem;
  color: rgba(255,255,255,0.76);
}

.sh-template_03 .sh-footer-bottom-links {
  display: inline-flex;
  gap: 1.25rem;
}
.sh-template_03 .sh-footer-bottom-links a { color: inherit; }
.sh-template_03 .sh-footer-bottom-links a:hover { color: #fff; }

/* =========================================================================
   Responsive tuning — collapse the multi-column grids on narrow screens
   ========================================================================= */
@media (max-width: 960px) {
  .sh-template_03 .sh-values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sh-template_03 .sh-promise-inner { grid-template-columns: 1fr; }
  .sh-template_03 .sh-tours-inner { grid-template-columns: 1fr; }
  .sh-template_03 .sh-findus-inner { grid-template-columns: 1fr; }
  .sh-template_03 .sh-footer-cols { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .sh-template_03 .sh-top-nav { gap: .75rem; }
  .sh-template_03 .sh-top-nav a:not(.sh-top-nav-cta) { display: none; }
  .sh-template_03 .sh-hero-portraits { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
  .sh-template_03 .sh-deco-squiggle-a,
  .sh-template_03 .sh-deco-squiggle-b,
  .sh-template_03 .sh-deco-squiggle-c,
  .sh-template_03 .sh-deco-rocket,
  .sh-template_03 .sh-deco-pencil,
  .sh-template_03 .sh-deco-cloud-a,
  .sh-template_03 .sh-deco-cloud-b { opacity: .6; transform: scale(.75); }
  .sh-template_03 .sh-values-grid { grid-template-columns: 1fr; }
  .sh-template_03 .sh-promise-features { grid-template-columns: 1fr; }
  .sh-template_03 .sh-findus-details { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .sh-template_03 .sh-testimonials-track { animation: none; }
  .sh-template_03 .sh-portrait,
  .sh-template_03 .sh-value,
  .sh-template_03 .sh-btn-primary,
  .sh-template_03 .sh-btn-dark,
  .sh-template_03 .sh-btn-teal {
    transition: none;
  }
}

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

/* ==========================================================================
   Inner pages (rendered via static_home_inner layout)
   --------------------------------------------------------------------------
   Shares the homepage palette + Fredoka/Inter typography so /p/:slug pages
   on a template_03 site read as the same brand. The homepage's strongest
   gestures translated to inner pages:
     - Full-bleed teal hero with rounded bottom corners (mirrors .sh-hero).
     - Mustard underline on the title's last word (same as .sh-hero-underline).
     - Cream prose surface with rounded white cards.
     - Tracked uppercase eyebrows (same as .sh-section-kicker).
     - Soft scribble + cloud + star decor in the hero, but a calmer subset
       than the homepage (no rocket / pencil — the inner page is reading,
       not selling).
     - GSAP fade-and-rise entrance, no overshoot, no scale-from-0.
   Everything below is scoped under .sh-template_03.
   ========================================================================== */

.sh-template_03 .static-home-inner-main {
  background: var(--ec-cream);
  color: var(--ec-ink);
  position: relative;
  min-height: 60vh;
}

/* --- Inner-page nav ------------------------------------------------------ */
/* Cream bar with the school brand left, links right, mustard underline on
   hover. Lives only on inner pages — the homepage's nav is welded inside
   the teal hero. */
.sh-template_03 .sh-inner-nav {
  background: #fff;
  border-bottom: 1px solid rgba(32, 48, 60, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.sh-template_03 .sh-inner-nav-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}
.sh-template_03 .sh-inner-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ec-ink);
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  flex-shrink: 0;
}
.sh-template_03 .sh-inner-nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ec-teal);
  padding: 4px;
  object-fit: contain;
}

.sh-template_03 .sh-inner-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
}

.sh-template_03 .sh-inner-nav-link,
.sh-template_03 .sh-inner-nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ec-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
  text-decoration: none;
}
.sh-template_03 .sh-inner-nav-link:hover,
.sh-template_03 .sh-inner-nav-dropdown-btn:hover,
.sh-template_03 .sh-inner-nav-dropdown[aria-expanded="true"] > .sh-inner-nav-dropdown-btn {
  background: var(--ec-cream);
  color: var(--ec-teal-deep);
}

.sh-template_03 .sh-inner-nav-chevron {
  width: 10px;
  height: 6px;
  transition: transform 150ms ease;
}
.sh-template_03 .sh-inner-nav-dropdown-btn[aria-expanded="true"] .sh-inner-nav-chevron {
  transform: rotate(180deg);
}

.sh-template_03 .sh-inner-nav-dropdown { position: relative; }

.sh-template_03 .sh-inner-nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(32, 48, 60, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(32, 48, 60, 0.12);
  padding: 8px;
  list-style: none;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sh-template_03 .sh-inner-nav-submenu.hidden { display: none; }

.sh-template_03 .sh-inner-nav-submenu .sh-inner-nav-link,
.sh-template_03 .sh-inner-nav-submenu .sh-inner-nav-dropdown-btn {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
}

/* Nested submenus flyout to the side */
.sh-template_03 .sh-inner-nav-dropdown-nested > .sh-inner-nav-submenu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 4px;
}
.sh-template_03 .sh-inner-nav-dropdown-nested .sh-inner-nav-chevron {
  transform: rotate(-90deg);
}
.sh-template_03 .sh-inner-nav-dropdown-nested .sh-inner-nav-dropdown-btn[aria-expanded="true"] .sh-inner-nav-chevron {
  transform: rotate(-90deg);
}

/* "More" overflow dropdown — same surface as page submenus, anchored right */
.sh-template_03 .sh-inner-nav-overflow .sh-inner-nav-submenu {
  left: auto;
  right: 0;
}

.sh-template_03 .sh-inner-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sh-template_03 .sh-inner-nav-auth {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ec-mustard);
  color: var(--ec-ink);
  border: 0;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 3px 0 var(--ec-mustard-deep);
}
.sh-template_03 .sh-inner-nav-auth:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 var(--ec-mustard-deep);
}

/* Signed-in user pill + dropdown */
.sh-template_03 .sh-inner-nav-user { position: relative; }
.sh-template_03 .sh-inner-nav-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  border: 1px solid rgba(32, 48, 60, 0.1);
  background: #fff;
  color: var(--ec-ink);
  font: inherit;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.sh-template_03 .sh-inner-nav-user-btn:hover {
  border-color: var(--ec-teal);
  box-shadow: 0 2px 10px rgba(32, 48, 60, 0.08);
}
.sh-template_03 .sh-inner-nav-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--ec-mint);
  color: var(--ec-teal-deep);
  flex-shrink: 0;
  overflow: hidden;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.sh-template_03 .sh-inner-nav-user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.sh-template_03 .sh-inner-nav-user-avatar-initials { line-height: 1; }
.sh-template_03 .sh-inner-nav-user-btn .sh-inner-nav-chevron {
  width: 10px;
  height: 6px;
  color: var(--ec-ink-soft);
}
.sh-template_03 .sh-inner-nav-user-btn[aria-expanded="true"] .sh-inner-nav-chevron {
  transform: rotate(180deg);
}

.sh-template_03 .sh-inner-nav-user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(32, 48, 60, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(32, 48, 60, 0.12);
  padding: 8px;
  z-index: 60;
}
.sh-template_03 .sh-inner-nav-user-menu.hidden { display: none; }
.sh-template_03 .sh-inner-nav-user-identity {
  padding: 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(32, 48, 60, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sh-template_03 .sh-inner-nav-user-identity-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ec-mint);
  color: var(--ec-teal-deep);
  flex-shrink: 0;
  overflow: hidden;
  font-weight: 700;
  font-size: 0.95rem;
}
.sh-template_03 .sh-inner-nav-user-identity-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sh-template_03 .sh-inner-nav-user-identity-name {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ec-teal-deep);
}
.sh-template_03 .sh-inner-nav-user-identity-email {
  font-size: 0.82rem;
  color: var(--ec-ink-soft);
  word-break: break-all;
}
.sh-template_03 .sh-inner-nav-user-link,
.sh-template_03 .sh-inner-nav-user-signout {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--ec-ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  text-align: left;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease;
  text-decoration: none;
}
.sh-template_03 .sh-inner-nav-user-link:hover,
.sh-template_03 .sh-inner-nav-user-signout:hover {
  background: var(--ec-cream);
  color: var(--ec-teal-deep);
}
.sh-template_03 .sh-inner-nav-user-signout-form { margin: 0; }

/* Hamburger toggle — hidden on desktop, surfaces below 980px */
.sh-template_03 .sh-inner-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(32, 48, 60, 0.12);
  border-radius: 10px;
  padding: 8px;
  color: var(--ec-ink);
  cursor: pointer;
  margin-left: auto;
}
.sh-template_03 .sh-inner-nav-toggle svg { width: 22px; height: 22px; display: block; }
.sh-template_03 .sh-inner-nav-toggle:hover { background: var(--ec-cream); }

.sh-template_03 .sh-inner-nav-mobile {
  display: none;
  border-top: 1px solid rgba(32, 48, 60, 0.06);
  background: #fff;
  padding: 14px 0 18px;
}
.sh-template_03 .sh-inner-nav-mobile-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sh-template_03 .sh-inner-nav-mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ec-ink);
  text-decoration: none;
}
.sh-template_03 .sh-inner-nav-mobile-link:hover { background: var(--ec-cream); }
.sh-template_03 .sh-inner-nav-mobile-divider {
  margin: 8px 0;
  border-top: 1px dashed rgba(32, 48, 60, 0.12);
}
.sh-template_03 .sh-inner-nav-mobile-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 12px;
}
.sh-template_03 .sh-inner-nav-mobile-identity-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ec-mint);
  color: var(--ec-teal-deep);
  flex-shrink: 0;
  overflow: hidden;
  font-weight: 700;
}
.sh-template_03 .sh-inner-nav-mobile-identity-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sh-template_03 .sh-inner-nav-mobile-identity-name {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 700;
  color: var(--ec-teal-deep);
}
.sh-template_03 .sh-inner-nav-mobile-identity-email {
  font-size: 0.82rem;
  color: var(--ec-ink-soft);
  word-break: break-all;
}
.sh-template_03 .sh-inner-nav-mobile-signout {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: transparent;
  border: 0;
  font: inherit;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ec-ink);
  text-align: left;
  cursor: pointer;
}
.sh-template_03 .sh-inner-nav-mobile-signout:hover { background: var(--ec-cream); }
.sh-template_03 .sh-inner-nav-mobile-signout-form { margin: 0; }

/* Hero variant — embedded inside the homepage hero so the teal slab
   continues edge-to-edge. Re-themes brand + links + hamburger to white
   on transparent; submenus and mobile drawer keep their cream surface so
   they pop off the teal. */
.sh-template_03 .sh-inner-nav-hero {
  background: transparent;
  border-bottom: 0;
  position: static;
  z-index: auto;
}
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-brand { color: #fff; }
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-link,
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-dropdown-btn {
  color: #fff;
}
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-link:hover,
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-dropdown-btn:hover,
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-dropdown[aria-expanded="true"] > .sh-inner-nav-dropdown-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-toggle {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}
/* Submenu items live on a white panel — restore ink text + cream-hover */
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-submenu .sh-inner-nav-link,
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-submenu .sh-inner-nav-dropdown-btn {
  color: var(--ec-ink);
}
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-submenu .sh-inner-nav-link:hover,
.sh-template_03 .sh-inner-nav-hero .sh-inner-nav-submenu .sh-inner-nav-dropdown-btn:hover {
  background: var(--ec-cream);
  color: var(--ec-teal-deep);
}

/* --- Hero --------------------------------------------------------------- */
/* Mirrors the homepage hero: full-bleed teal slab with rounded bottom
   corners + a soft scribble cluster. The hero is scoped to .sh-journal-*
   so it doesn't collide with the homepage's .sh-hero. */
.sh-template_03 .sh-journal-hero {
  position: relative;
  background: var(--ec-teal);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
}
.sh-template_03 .sh-journal-hero::before,
.sh-template_03 .sh-journal-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
  pointer-events: none;
}
.sh-template_03 .sh-journal-hero::before {
  width: 320px; height: 320px;
  background: var(--ec-teal-soft);
  top: -120px; left: -100px;
}
.sh-template_03 .sh-journal-hero::after {
  width: 360px; height: 360px;
  background: var(--ec-mustard);
  top: 30%; right: -160px;
  opacity: 0.18;
}

.sh-template_03 .sh-journal-hero-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.sh-template_03 .sh-journal-hero-deco svg {
  position: absolute;
  color: rgba(255, 255, 255, 0.78);
}
.sh-template_03 .sh-journal-hero-deco .sh-deco-squiggle-a {
  top: 20%; left: 6%; width: 110px; transform: rotate(-12deg);
}
.sh-template_03 .sh-journal-hero-deco .sh-deco-squiggle-b {
  bottom: 18%; right: 8%; width: 130px; transform: rotate(14deg);
  color: var(--ec-mustard);
}
.sh-template_03 .sh-journal-hero-deco .sh-deco-cloud-a {
  top: 12%; right: 18%; width: 80px;
  color: rgba(255, 255, 255, 0.6);
}
.sh-template_03 .sh-journal-hero-deco .sh-deco-star {
  top: 14%; left: 32%; width: 24px;
  color: var(--ec-mustard);
}

.sh-template_03 .sh-journal-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.sh-template_03 .sh-journal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}
.sh-template_03 .sh-journal-breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
  padding-bottom: 1px;
}
.sh-template_03 .sh-journal-breadcrumb a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}
.sh-template_03 .sh-journal-breadcrumb-sep { opacity: 0.5; }
.sh-template_03 .sh-journal-breadcrumb [aria-current="page"] { color: #fff; font-weight: 600; }

.sh-template_03 .sh-journal-eyebrow {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ec-mustard);
  margin-top: 0.25rem;
}

.sh-template_03 .sh-journal-title {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(2.25rem, 5.4vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
  max-width: 22ch;
}
.sh-template_03 .sh-journal-title .sh-hero-underline {
  background-image: linear-gradient(transparent 72%, var(--ec-mustard) 72%, var(--ec-mustard) 92%, transparent 92%);
  background-repeat: no-repeat;
  padding: 0 0.1em;
}

.sh-template_03 .sh-journal-lede {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 56ch;
  margin: 0;
}

@media (max-width: 720px) {
  .sh-template_03 .sh-journal-hero {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }
}

/* --- Sticky TOC chip strip ---------------------------------------------- */
.sh-template_03 .sh-journal-toc {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(250, 246, 238);
  border-bottom: 1px solid rgba(32, 48, 60, 0.06);
  padding: 14px 0;
}
@media (max-width: 920px) {
  .sh-template_03 .sh-journal-toc { position: static; top: auto; }
}
.sh-template_03 .sh-journal-toc-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sh-template_03 .sh-journal-toc-label {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ec-teal);
  white-space: nowrap;
}
.sh-template_03 .sh-journal-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sh-template_03 .sh-journal-toc-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--ec-teal-deep);
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(63, 122, 110, 0.16);
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}
.sh-template_03 .sh-journal-toc-chip:hover {
  background: var(--ec-teal);
  color: #fff;
  border-color: var(--ec-teal);
  transform: translateY(-1px);
}

/* --- Body shell --------------------------------------------------------- */
.sh-template_03 .sh-journal-shell {
  width: min(1200px, 100% - 2.5rem);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.sh-template_03 .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_03 .sh-journal-shell-with-aside {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- Sibling sidebar ---------------------------------------------------- */
.sh-template_03 .sh-journal-aside { position: sticky; top: 92px; }
@media (max-width: 920px) {
  .sh-template_03 .sh-journal-aside { position: static; }
}
.sh-template_03 .sh-journal-aside-eyebrow {
  display: block;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ec-teal);
  margin-bottom: 6px;
}
.sh-template_03 .sh-journal-aside-parent {
  display: inline-block;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.005em;
  color: var(--ec-ink);
  text-decoration: none;
  margin-bottom: 22px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.sh-template_03 .sh-journal-aside-parent:hover { border-bottom-color: var(--ec-mustard); }
.sh-template_03 .sh-journal-aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(32, 48, 60, 0.08);
  display: flex;
  flex-direction: column;
}
.sh-template_03 .sh-journal-aside-list li {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid rgba(32, 48, 60, 0.08);
  font-size: 0.92rem;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.sh-template_03 .sh-journal-aside-num {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--ec-teal);
  flex-shrink: 0;
  min-width: 18px;
}
.sh-template_03 .sh-journal-aside-link {
  color: var(--ec-ink-soft);
  text-decoration: none;
  transition: color 120ms ease;
}
.sh-template_03 .sh-journal-aside-link:hover { color: var(--ec-teal-deep); }
.sh-template_03 .sh-journal-aside-current .sh-journal-aside-link-current {
  color: var(--ec-teal-deep);
  font-weight: 600;
}
.sh-template_03 .sh-journal-aside-current .sh-journal-aside-num { color: var(--ec-mustard-deep); }

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

.sh-template_03 .sh-journal-intro { margin-bottom: 1.6em; }
.sh-template_03 .sh-journal-intro-prose {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.18rem;
  line-height: 1.72;
  color: var(--ec-ink);
}
.sh-template_03 .sh-journal-intro-prose > *:first-child::first-letter {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: 4em;
  line-height: 0.85;
  float: left;
  padding: 0.05em 0.12em 0 0;
  color: var(--ec-teal-deep);
}

.sh-template_03 .sh-journal-block {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--ec-ink);
  margin: 0 0 1.2em;
}
.sh-template_03 .sh-journal-block p { margin: 0 0 1.1em; }
.sh-template_03 .sh-journal-block p:last-child { margin-bottom: 0; }

.sh-template_03 .sh-journal-body a,
.sh-template_03 .sh-journal-intro-prose a {
  color: var(--ec-teal-deep);
  text-decoration: underline;
  text-decoration-color: var(--ec-mustard);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.14s ease, color 0.14s ease;
}
.sh-template_03 .sh-journal-body a:hover,
.sh-template_03 .sh-journal-intro-prose a:hover {
  color: var(--ec-teal);
  text-decoration-color: var(--ec-mustard-deep);
}

/* Lists — mustard disc bullet, no chip rainbow */
.sh-template_03 .sh-journal-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
}
.sh-template_03 .sh-journal-block ul > li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.5em;
}
.sh-template_03 .sh-journal-block ul > li::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ec-mustard);
}
.sh-template_03 .sh-journal-block ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.sh-template_03 .sh-journal-block ol > li { margin-bottom: 0.45em; }
.sh-template_03 .sh-journal-block ol > li::marker {
  color: var(--ec-teal-deep);
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
}

.sh-template_03 .sh-journal-block table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.6em 0;
  font-size: 0.95rem;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(32, 48, 60, 0.06);
}
.sh-template_03 .sh-journal-block table th {
  background: var(--ec-teal);
  color: #fff;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  padding: 14px 18px;
}
.sh-template_03 .sh-journal-block table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(32, 48, 60, 0.08);
}
.sh-template_03 .sh-journal-block table tr:nth-child(even) td { background: var(--ec-cream); }
.sh-template_03 .sh-journal-block table tr:last-child td { border-bottom: 0; }

.sh-template_03 .sh-journal-hr {
  border: 0;
  height: 2px;
  background: rgba(63, 122, 110, 0.18);
  border-radius: 2px;
  margin: 3em 0;
}

/* --- Section break ------------------------------------------------------ */
/* Tracked uppercase "Chapter NN" eyebrow, no rotated giant numerals. */
.sh-template_03 .sh-journal-section {
  margin: 80px 0 24px;
  scroll-margin-top: 96px;
}
.sh-template_03 .sh-journal-section-numeral {
  display: block;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ec-teal);
  margin-bottom: 12px;
}
.sh-template_03 .sh-journal-section-heading {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ec-ink);
  margin: 0 0 0.4em;
}
.sh-template_03 .sh-journal-section-h2 .sh-journal-section-heading { font-size: clamp(1.65rem, 3.4vw, 2.25rem); }
.sh-template_03 .sh-journal-section-h3 .sh-journal-section-heading { font-size: 1.4rem; }
.sh-template_03 .sh-journal-section-h4 .sh-journal-section-heading { font-size: 1.15rem; }

/* --- Pull-quote --------------------------------------------------------- */
/* Rounded white card, soft shadow, mustard "“" mark on the top-left
   echoing the homepage testimonial cards. No corner brackets, no rotation. */
.sh-template_03 .sh-journal-pull {
  position: relative;
  margin: 56px 0;
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 26px rgba(32, 48, 60, 0.08);
}
.sh-template_03 .sh-journal-pull-mark {
  display: block;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--ec-mustard);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.sh-template_03 .sh-journal-pull-body {
  margin: 0;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.4;
  color: var(--ec-teal-deep);
}
.sh-template_03 .sh-journal-pull-body p { margin: 0 0 0.5em; }
.sh-template_03 .sh-journal-pull-body p:last-child { margin-bottom: 0; }

/* --- Single body figures ------------------------------------------------ */
/* Rounded white frame with soft pastel halo behind it — mirrors the
   homepage's promise media (rounded image with mustard dot offset). */
.sh-template_03 .sh-journal-figure {
  margin: 48px 0;
  padding: 0;
  background: transparent;
}
.sh-template_03 .sh-journal-figure-right { float: right; max-width: 320px; margin: 8px 0 24px 32px; }
.sh-template_03 .sh-journal-figure-left  { float: left;  max-width: 320px; margin: 8px 32px 24px 0;  }
.sh-template_03 .sh-journal-figure-block { margin: 56px auto; max-width: 560px; }
@media (max-width: 920px) {
  .sh-template_03 .sh-journal-figure-right,
  .sh-template_03 .sh-journal-figure-left {
    float: none; margin: 36px auto; max-width: 100%;
  }
}
.sh-template_03 .sh-journal-figure-frame {
  position: relative;
  background: #fff;
  padding: 8px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(32, 48, 60, 0.1);
}
.sh-template_03 .sh-journal-figure-frame::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ec-mustard);
  z-index: -1;
  opacity: 0.85;
}
.sh-template_03 .sh-journal-figure-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: var(--ec-cream);
}
.sh-template_03 .sh-journal-figure-caption {
  display: block;
  margin-top: 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ec-ink-soft);
  text-align: center;
}
.sh-template_03 .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_03 .sh-journal-staff {
  list-style: none;
  margin: 56px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 56px 28px;
  align-items: start;
}
.sh-template_03 .sh-journal-staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.22s ease;
}
.sh-template_03 .sh-journal-staff-card:hover { transform: translateY(-4px); }

.sh-template_03 .sh-journal-staff-portrait {
  width: clamp(140px, 60%, 168px);
  margin-bottom: 16px;
}
.sh-template_03 .sh-journal-staff-portrait .sh-journal-figure-grid {
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-template_03 .sh-journal-staff-portrait .sh-journal-figure-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  box-shadow: 0 8px 18px rgba(32, 48, 60, 0.12);
}
.sh-template_03 .sh-journal-staff-portrait .sh-journal-figure-frame::before { content: none; }
.sh-template_03 .sh-journal-staff-portrait .sh-journal-figure-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: var(--ec-cream);
}
.sh-template_03 .sh-journal-staff-portrait .sh-journal-figure-caption {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ec-ink);
  margin-top: 12px;
}
.sh-template_03 .sh-journal-staff-bio {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ec-ink-soft);
  text-align: left;
  width: 100%;
}
.sh-template_03 .sh-journal-staff-bio p { margin: 0 0 0.5em; }
.sh-template_03 .sh-journal-staff-bio p:last-child { margin-bottom: 0; }

/* --- Bare-figure portrait grid ----------------------------------------- */
.sh-template_03 .sh-journal-portraits {
  list-style: none;
  margin: 56px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 32px 20px;
  justify-items: center;
}
.sh-template_03 .sh-journal-portraits-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sh-template_03 .sh-journal-figure-grid {
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-template_03 .sh-journal-figure-grid .sh-journal-figure-frame {
  width: clamp(120px, 100%, 140px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  box-shadow: 0 8px 18px rgba(32, 48, 60, 0.12);
}
.sh-template_03 .sh-journal-figure-grid .sh-journal-figure-frame::before { content: none; }
.sh-template_03 .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_03 .sh-journal-empty { padding: 96px 0; text-align: center; }
.sh-template_03 .sh-journal-empty-note {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ec-ink-soft);
}

/* --- "Continue reading" panel (sub-pages) ----------------------------- */
.sh-template_03 .sh-journal-wall {
  background: #fff;
  border-top: 1px solid rgba(32, 48, 60, 0.06);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
}
.sh-template_03 .sh-journal-wall-header {
  margin-bottom: 3rem;
  text-align: center;
}
.sh-template_03 .sh-journal-wall-eyebrow {
  display: inline-block;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ec-teal);
  margin-bottom: 12px;
}
.sh-template_03 .sh-journal-wall-heading {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ec-ink);
  margin: 0;
}
.sh-template_03 .sh-journal-wall-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  color: var(--ec-ink-soft);
  margin: 12px auto 0;
  max-width: 56ch;
}
.sh-template_03 .sh-journal-wall-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.sh-template_03 .sh-journal-wall-card {
  background: var(--ec-cream);
  border: 1px solid rgba(32, 48, 60, 0.05);
  border-radius: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.sh-template_03 .sh-journal-wall-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(32, 48, 60, 0.08);
  border-color: var(--ec-mustard);
}
.sh-template_03 .sh-journal-wall-card-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1.75rem 1.75rem 1.5rem;
  color: inherit;
  text-decoration: none;
}
.sh-template_03 .sh-journal-wall-card-eyebrow {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ec-teal);
}
.sh-template_03 .sh-journal-wall-card-title {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ec-ink);
}
.sh-template_03 .sh-journal-wall-card-summary {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ec-ink-soft);
}
.sh-template_03 .sh-journal-wall-card-cta {
  margin-top: 8px;
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ec-teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.16s ease, color 0.14s ease;
}
.sh-template_03 .sh-journal-wall-card:hover .sh-journal-wall-card-cta {
  gap: 10px;
  color: var(--ec-teal);
}

/* --- Downloads section in inner_body — see _inner_body.slim ------------ */
.sh-template_03 .sh-journal-downloads {
  margin: 48px auto 0;
  max-width: 1200px;
  padding: 0 clamp(1rem, 3vw, 2.25rem);
}

.sh-template_03 .sh-journal-downloads-heading {
  font-family: "Fredoka", system-ui, sans-serif;
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ec-ink);
  margin: 0 0 20px;
}

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

.sh-template_03 .sh-journal-downloads-item {
  background: #fff;
  border: 1px solid rgba(32, 48, 60, 0.05);
  border-radius: 24px;
  padding: 8px 4px;
  box-shadow: 0 10px 26px rgba(32, 48, 60, 0.06);
}

/* --- Sign-off rule ------------------------------------------------------ */
.sh-template_03 .sh-journal-signoff {
  text-align: center;
  padding: 48px 0 64px;
  background: var(--ec-cream);
}
.sh-template_03 .sh-journal-signoff-rule {
  display: inline-block;
  width: 56px;
  height: 2px;
  background: var(--ec-mustard);
  border-radius: 2px;
}

/* --- Widgets (newsletters, announcements, events, etc.) ---------------- */
.sh-template_03 .sh-journal-widgets {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.sh-template_03 .sh-journal-widget {
  background: #fff;
  border: 1px solid rgba(32, 48, 60, 0.05);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 10px 26px rgba(32, 48, 60, 0.06);
}

/* --- Mobile breakpoint -------------------------------------------------- */
@media (max-width: 980px) {
  .sh-template_03 .sh-inner-nav-toggle { display: inline-flex; }
  .sh-template_03 .sh-inner-nav-links,
  .sh-template_03 .sh-inner-nav-actions { display: none; }
  .sh-template_03 .sh-inner-nav-open .sh-inner-nav-mobile { display: block; }
}
@media (max-width: 720px) {
  .sh-template_03 .sh-journal-hero-deco svg { opacity: 0.5; }
  .sh-template_03 .sh-journal-pull { padding: 1.5rem 1.5rem; }
  .sh-template_03 .sh-journal-figure-frame::before { width: 44px; height: 44px; top: -10px; right: -10px; }
}

/* === Page-layout theme tokens (consumed by static_homes/layouts.css)
   Stats: subtle ink-tint tile with ink number; mustard accent on the
   first tile's number — template_03's loudest accent gesture, used
   sparingly like the homepage hero underline. Testimonials: matching
   ink-tint card, mustard quote mark. Figures: ink-tint card with 4:3
   aspect for the photo_story rectangular grid. */
.sh-template_03 {
  --sh-section-stat-gap: 16px;
  --sh-section-stat-tile-bg: rgba(30, 43, 40, 0.06);
  --sh-section-stat-tile-radius: 16px;
  --sh-section-stat-tile-padding: 24px;
  --sh-section-stat-number-color: var(--ec-ink);
  --sh-section-stat-number-font: "Fredoka", "Nunito", system-ui, sans-serif;
  --sh-section-stat-number-size: clamp(32px, 5vw, 48px);
  --sh-section-stat-label-color: var(--ec-ink-soft);

  --sh-section-testimonial-gap: 16px;
  --sh-section-testimonial-card-bg: rgba(30, 43, 40, 0.06);
  --sh-section-testimonial-card-radius: 16px;
  --sh-section-testimonial-card-padding: 24px;
  --sh-section-testimonial-mark-color: var(--ec-mustard);
  --sh-section-testimonial-quote-color: var(--ec-ink);
  --sh-section-testimonial-meta-color: var(--ec-ink-soft);

  --sh-section-figure-gap: 16px;
  --sh-section-figure-card-bg: rgba(30, 43, 40, 0.06);
  --sh-section-figure-card-radius: 16px;
  --sh-section-figure-card-padding: 12px;
  --sh-section-figure-img-aspect: 4 / 3;
  --sh-section-figure-caption-color: var(--ec-ink-soft);

  --sh-section-accordion-summary-bg: var(--ec-cream);
  --sh-section-accordion-summary-color: var(--ec-ink);
  --sh-section-accordion-body-bg: #ffffff;
}

/* Mustard accent on the FIRST stat tile only — mirrors template_03's
   homepage hero underline (mustard on the title's last word). Scoped
   to the grid so other templates with their own first-tile rule
   aren't affected. */
.sh-template_03 .sh-section-stat-grid > li.sh-section-stat:first-child .sh-section-stat-number {
  color: var(--ec-mustard);
}
