/* template_06 — Asting charity-aesthetic static home for a primary school.
   Warm orange + deep navy + cream cards, watercolor-blob accents, serif
   display + handwritten kicker. Everything scoped under `.sh-template_06`. */

body.static-home-template_06 {
  overflow-x: clip;
  background: #F8F2EA;
}

.sh-template_06 {
  /* Palette — warm orange primary, deep navy text + accents, cream
     page base. Watercolor-blob tints in peach / dusty blue / sage mint
     sit behind feature icons; sun gold is the 10% accent. */
  --at-orange: #F47820;
  /* Derived shades use color-mix so backend brand overrides on
     --at-orange / --at-navy cascade into the hover + shadow + scrim
     states automatically. */
  --at-orange-deep: color-mix(in oklab, var(--at-orange) 80%, black);
  --at-orange-soft: color-mix(in oklab, var(--at-orange) 30%, white);
  --at-navy: #1F2A40;
  --at-navy-deep: color-mix(in oklab, var(--at-navy) 70%, black);
  --at-navy-soft: color-mix(in oklab, var(--at-navy) 78%, white);
  --at-cream: #F8F2EA;
  --at-cream-rgb: 248, 242, 234;
  --at-cream-deep: #EFE6D8;
  --at-peach: #F4D5C2;
  --at-blue: #C7D6DD;
  --at-mint: #C3DDC9;
  --at-sun: #F2BD3E;
  --at-ink: #1F2A40;
  --at-ink-soft: rgba(31, 42, 64, 0.72);
  --at-ink-rgb: 31, 42, 64;
  --at-surface: #FFFFFF;
  --at-rule: rgba(31, 42, 64, 0.12);

  /* Geometry */
  --at-gutter: clamp(16px, 4vw, 48px);
  --at-page-max: 1240px;
  --at-radius: 22px;
  --at-radius-sm: 14px;

  /* Type */
  --at-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --at-script: "Caveat", "Pacifico", "Brush Script MT", cursive;
  --at-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  font-family: var(--at-sans);
  color: var(--at-ink);
  background: var(--at-cream);
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sh-template_06 *,
.sh-template_06 *::before,
.sh-template_06 *::after { box-sizing: border-box; }

.sh-template_06 a { color: inherit; }

/* Skip link */
.sh-template_06 .sh-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.sh-template_06 .sh-skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 8px 14px;
  background: var(--at-orange);
  color: #fff;
  border-radius: 999px;
  z-index: 100;
}

/* ---------- Top contact strip ---------- */
.sh-template_06 .sh-topbar {
  background: var(--at-navy-deep);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}
.sh-template_06 .sh-topbar-inner {
  max-width: var(--at-page-max);
  margin: 0 auto;
  padding: 10px var(--at-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sh-template_06 .sh-topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sh-template_06 .sh-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.sh-template_06 .sh-topbar-link:hover { color: var(--at-orange); }
.sh-template_06 .sh-topbar-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: var(--at-orange);
}
.sh-template_06 .sh-topbar-icon svg { width: 100%; height: 100%; }
.sh-template_06 .sh-topbar-tag {
  font-family: var(--at-script);
  font-size: 18px;
  color: var(--at-sun);
  letter-spacing: 0.01em;
}

/* ---------- Nav ---------- */
.sh-template_06 .sh-nav {
  background: transparent;
  position: relative;
  z-index: 20;
}
.sh-template_06 .sh-nav-inner {
  margin: 18px clamp(16px, 2vw, 28px) 0;
  padding: 18px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 30px -18px rgba(var(--at-ink-rgb), 0.35);
}
.sh-template_06 .sh-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--at-navy);
  flex: 0 0 auto;
}
.sh-template_06 .sh-nav-logo {
  height: 40px;
  width: auto;
  display: block;
}
.sh-template_06 .sh-nav-brand-name {
  font-family: var(--at-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.sh-template_06 .sh-nav-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--at-cream-deep);
  border: 0;
  border-radius: 12px;
  color: var(--at-navy);
  cursor: pointer;
}
.sh-template_06 .sh-nav-menu-icon { width: 22px; height: 22px; }

.sh-template_06 .sh-nav-drawer {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.sh-template_06 .sh-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sh-template_06 .sh-nav-link {
  text-decoration: none;
  color: var(--at-navy);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.sh-template_06 .sh-nav-link:hover {
  color: var(--at-orange);
  border-bottom-color: var(--at-orange);
}
.sh-template_06 .sh-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sh-template_06 .sh-nav-cta {
  padding: 11px 22px;
  font-size: 14px;
}

.sh-template_06 .sh-nav-auth {
  text-decoration: none;
  color: var(--at-navy);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border: 2px solid var(--at-navy);
  border-radius: 999px;
}
.sh-template_06 .sh-nav-auth:hover {
  background: var(--at-navy);
  color: #fff;
}

/* Signed-in user dropdown — shared shape with other templates so the
   stimulus dropdown controller works without re-binding. */
.sh-template_06 .sh-nav-user { position: relative; }
.sh-template_06 .sh-nav-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--at-cream-deep);
  border: 0;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--at-navy);
  font-weight: 500;
  font-size: 14px;
}
.sh-template_06 .sh-nav-user-avatar,
.sh-template_06 .sh-nav-user-identity-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--at-navy);
  overflow: hidden;
}
.sh-template_06 .sh-nav-user-avatar svg { width: 60%; height: 60%; }
.sh-template_06 .sh-nav-user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-template_06 .sh-nav-chevron { width: 10px; height: 6px; }
.sh-template_06 .sh-nav-user-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--at-rule);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 18px 40px -18px rgba(var(--at-ink-rgb), 0.3);
  z-index: 30;
}
.sh-template_06 .sh-nav-user-menu.hidden { display: none; }
.sh-template_06 .sh-nav-user-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 12px;
  border-bottom: 1px solid var(--at-rule);
  margin-bottom: 8px;
}
.sh-template_06 .sh-nav-user-identity-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sh-template_06 .sh-nav-user-identity-name {
  font-weight: 600;
  color: var(--at-navy);
  font-size: 14px;
}
.sh-template_06 .sh-nav-user-identity-email {
  font-size: 12px;
  color: var(--at-ink-soft);
}
.sh-template_06 .sh-nav-user-link,
.sh-template_06 .sh-nav-user-signout {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--at-navy);
  font-size: 14px;
  cursor: pointer;
}
.sh-template_06 .sh-nav-user-link:hover,
.sh-template_06 .sh-nav-user-signout:hover {
  background: var(--at-cream);
  color: var(--at-orange);
}
.sh-template_06 .sh-nav-user-signout-form { margin: 0; }

/* ---------- Buttons ---------- */
.sh-template_06 .sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  letter-spacing: 0.01em;
}
.sh-template_06 .sh-btn-primary {
  background: var(--at-orange);
  color: #fff;
  border-color: var(--at-orange);
  box-shadow: 0 10px 28px -14px rgba(244, 120, 32, 0.85);
}
.sh-template_06 .sh-btn-primary:hover {
  background: var(--at-orange-deep);
  border-color: var(--at-orange-deep);
  transform: translateY(-1px);
}
.sh-template_06 .sh-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.sh-template_06 .sh-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ---------- Hero ---------- */
.sh-template_06 .sh-main { display: block; }

.sh-template_06 .sh-hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) var(--at-gutter) clamp(120px, 14vw, 180px);
  margin-top: 12px;
  isolation: isolate;
  color: #fff;
  text-align: center;
  overflow: hidden;
  border-radius: 0;
}
.sh-template_06 .sh-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.sh-template_06 .sh-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.sh-template_06 .sh-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(31, 42, 64, 0.32) 0%, rgba(31, 42, 64, 0.78) 80%);
}
.sh-template_06 .sh-hero-content {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.sh-template_06 .sh-hero-kicker {
  font-family: var(--at-script);
  color: var(--at-orange);
  font-size: clamp(28px, 4vw, 38px);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.sh-template_06 .sh-hero-title {
  font-family: var(--at-serif);
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.sh-template_06 .sh-hero-lede {
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 560px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.sh-template_06 .sh-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

/* ---------- Features card (overlapping) ---------- */
.sh-template_06 .sh-features {
  position: relative;
  margin-top: clamp(-90px, -10vw, -130px);
  padding: 0 var(--at-gutter);
  z-index: 5;
}
.sh-template_06 .sh-features-inner {
  max-width: var(--at-page-max);
  margin: 0 auto;
}
.sh-template_06 .sh-feature-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: var(--at-radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(var(--at-ink-rgb), 0.35);
}
.sh-template_06 .sh-feature {
  position: relative;
  padding: 36px 28px;
  text-align: left;
  border-right: 1px solid var(--at-rule);
  isolation: isolate;
}
.sh-template_06 .sh-feature:last-child { border-right: 0; }
.sh-template_06 .sh-feature-blob {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(0.5px);
  opacity: 0.85;
}
.sh-template_06 .sh-feature-peach .sh-feature-blob { background: var(--at-peach); }
.sh-template_06 .sh-feature-blue  .sh-feature-blob { background: var(--at-blue);  }
.sh-template_06 .sh-feature-mint  .sh-feature-blob { background: var(--at-mint);  }
.sh-template_06 .sh-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: var(--at-navy);
}
.sh-template_06 .sh-feature-icon svg { width: 32px; height: 32px; }
.sh-template_06 .sh-feature-title {
  font-family: var(--at-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--at-navy);
  margin: 0 0 8px;
  line-height: 1.15;
}
.sh-template_06 .sh-feature-line {
  font-size: 14px;
  line-height: 1.55;
  color: var(--at-ink-soft);
  margin: 0 0 18px;
}
.sh-template_06 .sh-feature-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--at-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sh-template_06 .sh-feature-link:hover {
  color: var(--at-orange-deep);
}
.sh-template_06 .sh-feature-arrow {
  display: inline-block;
  transition: transform 0.18s ease;
}
.sh-template_06 .sh-feature-link:hover .sh-feature-arrow { transform: translateX(3px); }

/* ---------- About / "Our goal" ---------- */
.sh-template_06 .sh-about {
  padding: clamp(72px, 10vw, 120px) var(--at-gutter);
  background: var(--at-cream);
}
.sh-template_06 .sh-about-inner {
  max-width: var(--at-page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.sh-template_06 .sh-about-figure {
  position: relative;
  margin: 0;
  border-radius: var(--at-radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -32px rgba(var(--at-ink-rgb), 0.45);
}
.sh-template_06 .sh-about-image {
  width: 100%;
  height: clamp(360px, 50vw, 560px);
  object-fit: cover;
  display: block;
}
.sh-template_06 .sh-about-figure-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--at-cream);
  color: var(--at-navy);
  font-family: var(--at-script);
  font-size: 22px;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px -14px rgba(0, 0, 0, 0.4);
}
.sh-template_06 .sh-about-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.sh-template_06 .sh-about-kicker {
  font-family: var(--at-script);
  font-size: 30px;
  color: var(--at-orange);
  margin: 0;
  line-height: 1;
  position: relative;
}
.sh-template_06 .sh-about-kicker::after {
  content: "";
  display: block;
  width: 120px;
  height: 8px;
  margin-top: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='8' viewBox='0 0 120 8'%3E%3Cpath d='M2 5 Q 30 1, 60 4 T 118 3' stroke='%23F47820' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
}
.sh-template_06 .sh-about-title {
  font-family: var(--at-serif);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.1;
  font-weight: 600;
  color: var(--at-navy);
  margin: 0;
}
.sh-template_06 .sh-about-lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--at-ink-soft);
  margin: 0;
}
.sh-template_06 .sh-about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.sh-template_06 .sh-about-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--at-navy);
}
.sh-template_06 .sh-about-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--at-orange-soft);
  color: var(--at-orange-deep);
  margin-top: 1px;
}
.sh-template_06 .sh-about-check svg { width: 16px; height: 16px; }

/* ---------- Section primitives ---------- */
.sh-template_06 .sh-section-kicker {
  font-family: var(--at-script);
  color: var(--at-orange);
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 4px;
  line-height: 1;
}
.sh-template_06 .sh-section-title {
  font-family: var(--at-serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 600;
  color: var(--at-navy);
  margin: 0;
}
.sh-template_06 .sh-section-lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--at-ink-soft);
  margin: 8px 0 0;
}

/* ---------- Values ---------- */
.sh-template_06 .sh-values {
  padding: clamp(72px, 10vw, 120px) var(--at-gutter);
  background: var(--at-cream-deep);
}
.sh-template_06 .sh-values-inner {
  max-width: var(--at-page-max);
  margin: 0 auto;
}
.sh-template_06 .sh-values-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.sh-template_06 .sh-values-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.sh-template_06 .sh-value {
  position: relative;
  background: #fff;
  border-radius: var(--at-radius-sm);
  padding: 32px 26px;
  text-align: left;
  box-shadow: 0 16px 36px -24px rgba(var(--at-ink-rgb), 0.3);
  isolation: isolate;
}
.sh-template_06 .sh-value-blob {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.85;
}
.sh-template_06 .sh-value-blue  .sh-value-blob { background: var(--at-blue); }
.sh-template_06 .sh-value-sun   .sh-value-blob { background: rgba(242, 189, 62, 0.45); }
.sh-template_06 .sh-value-coral .sh-value-blob { background: var(--at-peach); }
.sh-template_06 .sh-value-leaf  .sh-value-blob { background: var(--at-mint); }
.sh-template_06 .sh-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--at-navy);
}
.sh-template_06 .sh-value-icon svg {
  width: 28px;
  height: 28px;
}
.sh-template_06 .sh-value-title {
  font-family: var(--at-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--at-navy);
  margin: 0 0 10px;
  line-height: 1.15;
}
.sh-template_06 .sh-value-copy {
  font-size: 14px;
  line-height: 1.6;
  color: var(--at-ink-soft);
  margin: 0;
}

/* ---------- Tours ---------- */
.sh-template_06 .sh-tours {
  padding: clamp(72px, 10vw, 120px) var(--at-gutter);
  background: var(--at-cream);
}
.sh-template_06 .sh-tours-inner {
  max-width: var(--at-page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.sh-template_06 .sh-tours-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.sh-template_06 .sh-tours-list { width: 100%; }
.sh-template_06 .sh-tour-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sh-template_06 .sh-tour {
  display: flex;
  align-items: stretch;
  gap: 18px;
  background: #fff;
  border-radius: var(--at-radius-sm);
  padding: 14px 22px 14px 14px;
  box-shadow: 0 14px 32px -22px rgba(var(--at-ink-rgb), 0.32);
}
.sh-template_06 .sh-tour-chip {
  flex: 0 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: var(--at-cream-deep);
}
.sh-template_06 .sh-tour-chip-month {
  display: block;
  width: 100%;
  padding: 4px 0;
  background: var(--at-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
}
.sh-template_06 .sh-tour-chip-day {
  display: block;
  font-family: var(--at-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--at-navy);
  padding: 6px 0;
  text-align: center;
}
.sh-template_06 .sh-tour-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.sh-template_06 .sh-tour-day {
  font-family: var(--at-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--at-navy);
  line-height: 1.1;
}
.sh-template_06 .sh-tour-date-full {
  font-size: 14px;
  color: var(--at-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sh-template_06 .sh-tour-sep {
  color: var(--at-orange);
  font-weight: 700;
}
.sh-template_06 .sh-tour-feature {
  background: var(--at-navy);
  color: #fff;
  align-items: center;
  padding: 18px 22px;
}
.sh-template_06 .sh-tour-feature .sh-tour-day,
.sh-template_06 .sh-tour-feature .sh-tour-date,
.sh-template_06 .sh-tour-feature .sh-tour-time { color: #fff; }
.sh-template_06 .sh-tour-feature-mark {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
}
.sh-template_06 .sh-tour-feature-mark svg { width: 100%; height: 100%; }
.sh-template_06 .sh-tour-feature-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sh-template_06 .sh-tour-label {
  font-family: var(--at-script);
  font-size: 24px;
  color: var(--at-sun);
  line-height: 1;
}
.sh-template_06 .sh-tour-when {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
}

/* ---------- Stats band ---------- */
.sh-template_06 .sh-stats {
  background: var(--at-navy-deep);
  color: #fff;
  padding: clamp(48px, 7vw, 80px) var(--at-gutter);
  position: relative;
  overflow: hidden;
}
.sh-template_06 .sh-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 80% 30%, rgba(244, 120, 32, 0.22), transparent 70%),
    radial-gradient(50% 80% at 10% 80%, rgba(199, 214, 221, 0.08), transparent 70%);
  pointer-events: none;
}
.sh-template_06 .sh-stats-inner {
  max-width: var(--at-page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}
.sh-template_06 .sh-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 22px;
}
.sh-template_06 .sh-stat:first-child { border-left: 0; padding-left: 6px; }
.sh-template_06 .sh-stat-icon {
  width: 28px;
  height: 28px;
  color: var(--at-orange);
}
.sh-template_06 .sh-stat-icon svg { width: 100%; height: 100%; }
.sh-template_06 .sh-stat-number {
  font-family: var(--at-serif);
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 600;
  line-height: 1;
}
.sh-template_06 .sh-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Testimonials ---------- */
.sh-template_06 .sh-testimonials {
  padding: clamp(72px, 10vw, 120px) 0 clamp(72px, 10vw, 120px);
  background: var(--at-cream);
  overflow: hidden;
}
.sh-template_06 .sh-testimonials-inner {
  max-width: var(--at-page-max);
  margin: 0 auto 40px;
  padding: 0 var(--at-gutter);
}
.sh-template_06 .sh-testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.sh-template_06 .sh-testimonials-marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.sh-template_06 .sh-testimonials-track {
  display: inline-flex;
  align-items: stretch;
  gap: 20px;
  padding: 14px 0 24px;
  list-style: none;
  margin: 0;
  animation: sh-template_06-marquee 60s linear infinite;
  width: max-content;
}
.sh-template_06 .sh-testimonials-marquee[data-paused="true"] .sh-testimonials-track { animation-play-state: paused; }
@keyframes sh-template_06-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sh-template_06 .sh-testimonials-track { animation: none; }
}
.sh-template_06 .sh-testimonial-card {
  flex: 0 0 360px;
  max-width: 360px;
  background: #fff;
  border-radius: var(--at-radius-sm);
  padding: 28px 26px 24px;
  box-shadow: 0 16px 38px -24px rgba(var(--at-ink-rgb), 0.32);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-image:
    radial-gradient(rgba(31, 42, 64, 0.04) 1px, transparent 1px);
  background-size: 14px 14px;
}
.sh-template_06 .sh-testimonial-mark {
  font-family: var(--at-serif);
  font-size: 64px;
  line-height: 0.6;
  color: var(--at-orange);
  display: block;
}
.sh-template_06 .sh-testimonial-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--at-navy);
  font-family: var(--at-sans);
}
.sh-template_06 .sh-testimonial-meta {
  margin: 0;
  font-size: 13px;
  color: var(--at-ink-soft);
}
.sh-template_06 .sh-testimonial-name {
  font-weight: 700;
  color: var(--at-navy);
}
.sh-template_06 .sh-testimonial-role {
  color: var(--at-ink-soft);
}

/* ---------- Find us / contact ---------- */
.sh-template_06 .sh-findus {
  padding: clamp(72px, 10vw, 120px) var(--at-gutter);
  background: var(--at-cream-deep);
}
.sh-template_06 .sh-findus-inner {
  max-width: var(--at-page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 64px);
  align-items: start;
}
.sh-template_06 .sh-findus-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.sh-template_06 .sh-findus-intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--at-ink-soft);
  margin: 0;
}
.sh-template_06 .sh-findus-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin: 6px 0 8px;
  padding: 0;
}
.sh-template_06 .sh-findus-detail dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--at-orange);
  font-weight: 700;
  margin-bottom: 4px;
}
.sh-template_06 .sh-findus-detail dd {
  margin: 0;
  font-size: 15px;
  color: var(--at-navy);
}
.sh-template_06 .sh-findus-detail dd a {
  text-decoration: none;
  color: var(--at-navy);
}
.sh-template_06 .sh-findus-detail dd a:hover { color: var(--at-orange); }
.sh-template_06 .sh-findus-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.sh-template_06 .sh-findus-ctas .sh-btn-ghost {
  color: var(--at-navy);
  border-color: var(--at-navy);
}
.sh-template_06 .sh-findus-ctas .sh-btn-ghost:hover {
  background: var(--at-navy);
  color: #fff;
}
.sh-template_06 .sh-findus-form {
  background: #fff;
  border-radius: var(--at-radius);
  padding: 8px;
  box-shadow: 0 24px 60px -32px rgba(var(--at-ink-rgb), 0.35);
}

/* ---------- Footer ---------- */
.sh-template_06 .sh-footer {
  background: var(--at-navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(56px, 8vw, 96px) var(--at-gutter) clamp(28px, 4vw, 40px);
}
.sh-template_06 .sh-footer-inner {
  max-width: var(--at-page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.sh-template_06 .sh-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.sh-template_06 .sh-footer-logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
}
.sh-template_06 .sh-footer-blurb {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.sh-template_06 .sh-footer-legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.sh-template_06 .sh-footer-heading {
  font-family: var(--at-script);
  color: var(--at-orange);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1;
}
.sh-template_06 .sh-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sh-template_06 .sh-footer-list a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  transition: color 0.18s ease;
}
.sh-template_06 .sh-footer-list a:hover { color: var(--at-orange); }
.sh-template_06 .sh-footer .acknowledgement-of-country {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}
.sh-template_06 .sh-footer .ack-heading {
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  font-size: 14px;
}
.sh-template_06 .sh-footer .ack-body {
  margin: 0;
  font-size: 13px;
}

/* ---------- Responsive breakpoints ---------- */
@media (max-width: 960px) {
  .sh-template_06 .sh-feature-card { grid-template-columns: 1fr; }
  .sh-template_06 .sh-feature { border-right: 0; border-bottom: 1px solid var(--at-rule); }
  .sh-template_06 .sh-feature:last-child { border-bottom: 0; }
  .sh-template_06 .sh-about-inner { grid-template-columns: 1fr; }
  .sh-template_06 .sh-tours-inner { grid-template-columns: 1fr; }
  .sh-template_06 .sh-values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sh-template_06 .sh-stats-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sh-template_06 .sh-stat { border-left: 0; padding-left: 6px; }
  .sh-template_06 .sh-findus-inner { grid-template-columns: 1fr; }
  .sh-template_06 .sh-footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .sh-template_06 .sh-nav-inner { padding: 12px 18px; gap: 12px; }
  .sh-template_06 .sh-nav-menu-btn { display: inline-flex; }
  .sh-template_06 .sh-nav-drawer {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--at-gutter);
    right: var(--at-gutter);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 18px 40px -20px rgba(var(--at-ink-rgb), 0.35);
    z-index: 30;
    gap: 14px;
  }
  .sh-template_06 .sh-nav.sh-nav-open .sh-nav-drawer { display: flex; }
  .sh-template_06 .sh-nav-links { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sh-template_06 .sh-nav-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .sh-template_06 .sh-nav-cta { text-align: center; }
  .sh-template_06 .sh-values-grid { grid-template-columns: 1fr; }
  .sh-template_06 .sh-stats-inner { grid-template-columns: 1fr; }
  .sh-template_06 .sh-findus-details { grid-template-columns: 1fr; }
  .sh-template_06 .sh-tour { padding: 12px; }
  .sh-template_06 .sh-tour-feature { flex-direction: row; }
  .sh-template_06 .sh-testimonial-card { flex: 0 0 280px; max-width: 280px; }
}

@media (max-width: 480px) {
  .sh-template_06 .sh-topbar-tag { display: none; }
  .sh-template_06 .sh-hero-title { font-size: 36px; }
  .sh-template_06 .sh-hero { padding-bottom: 100px; }
  .sh-template_06 .sh-features { margin-top: -70px; }
}

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

/* ==========================================================================
   Inner pages (rendered via static_home_inner layout)
   --------------------------------------------------------------------------
   Reuses the homepage palette, type, and section vocabulary so /p/<slug>
   pages on a template_06 site read as the same brand. Selectors scoped
   under .sh-template_06 so no other template can pick them up.
   ========================================================================== */

.sh-template_06 .static-home-inner-main {
  background: var(--at-cream);
  color: var(--at-ink);
  min-height: 60vh;
}

/* --- Nav: dropdown / submenu / overflow ---------------------------------
   The homepage's existing flat link list is augmented for inner pages so
   nested pages get a hover/click dropdown, with a "More" overflow when
   there are >5 top-level pages. Visual language: white surface, soft
   shadow, deep navy text — same vocabulary as the .sh-nav-user-menu. */
.sh-template_06 .sh-nav-link-item { position: relative; list-style: none; margin: 0; padding: 0; }

.sh-template_06 .sh-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.sh-template_06 .sh-nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 8px 4px;
  color: var(--at-navy);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.sh-template_06 .sh-nav-dropdown-btn:hover,
.sh-template_06 .sh-nav-dropdown-btn[aria-expanded="true"] {
  color: var(--at-orange);
  border-bottom-color: var(--at-orange);
}
.sh-template_06 .sh-nav-dropdown-btn[aria-expanded="true"] .sh-nav-chevron {
  transform: rotate(180deg);
}
.sh-template_06 .sh-nav-chevron {
  width: 10px;
  height: 6px;
  transition: transform 0.18s ease;
}

.sh-template_06 .sh-nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--at-rule);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 40px -18px rgba(var(--at-ink-rgb), 0.3);
  list-style: none;
  margin: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sh-template_06 .sh-nav-submenu.hidden { display: none; }
.sh-template_06 .sh-nav-submenu li { list-style: none; }
.sh-template_06 .sh-nav-submenu .sh-nav-link,
.sh-template_06 .sh-nav-submenu .sh-nav-dropdown-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-align: left;
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--at-navy);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.sh-template_06 .sh-nav-submenu .sh-nav-link:hover,
.sh-template_06 .sh-nav-submenu .sh-nav-dropdown-btn:hover {
  background: var(--at-cream);
  color: var(--at-orange);
  border-bottom-color: transparent;
}
.sh-template_06 .sh-nav-dropdown-nested > .sh-nav-submenu {
  top: -8px;
  left: calc(100% + 6px);
}
.sh-template_06 .sh-nav-dropdown-nested .sh-nav-chevron {
  transform: rotate(-90deg);
}
.sh-template_06 .sh-nav-dropdown-nested .sh-nav-dropdown-btn[aria-expanded="true"] .sh-nav-chevron {
  transform: rotate(90deg);
}

/* --- Hero ---------------------------------------------------------------
   Mirrors the homepage hero shape exactly: full-bleed dark photo, navy
   radial scrim, Caveat-script orange kicker, Cormorant Garamond white
   title, lede in soft white. Breadcrumb sits above as a small tracked
   uppercase eyebrow row, matching the homepage's `.sh-findus-detail dt`
   typography. */
.sh-template_06 .sh-journal-hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) var(--at-gutter) clamp(60px, 8vw, 110px);
  margin-top: 12px;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.sh-template_06 .sh-journal-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.sh-template_06 .sh-journal-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.sh-template_06 .sh-journal-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(31, 42, 64, 0.42) 0%, rgba(31, 42, 64, 0.82) 80%);
}
.sh-template_06 .sh-journal-hero-inner {
  max-width: var(--at-page-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.sh-template_06 .sh-journal-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.sh-template_06 .sh-journal-breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.sh-template_06 .sh-journal-breadcrumb a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.sh-template_06 .sh-journal-breadcrumb-sep { opacity: 0.5; }
.sh-template_06 .sh-journal-breadcrumb [aria-current="page"] { color: #fff; }

.sh-template_06 .sh-journal-hero-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 820px;
}
.sh-template_06 .sh-journal-kicker {
  font-family: var(--at-script);
  color: var(--at-orange);
  font-size: clamp(26px, 3.6vw, 34px);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.sh-template_06 .sh-journal-title {
  font-family: var(--at-serif);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.sh-template_06 .sh-journal-lede {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
  margin: 0;
}

/* Optional title squiggle (template_06_title_with_marker). Quiet
   underline option — keyed off the same Caveat orange as the kicker. */
.sh-template_06 .ps-marker { position: relative; display: inline-block; padding: 0 0.06em; }
.sh-template_06 .ps-marker-word { position: relative; z-index: 1; color: inherit; }
.sh-template_06 .ps-marker-line {
  position: absolute; left: 0; right: 0; bottom: -0.16em; width: 100%; height: 0.32em;
  color: var(--at-orange); z-index: 0; pointer-events: none;
}

/* --- Sticky TOC --------------------------------------------------------- */
.sh-template_06 .sh-journal-toc {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 242, 234, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--at-rule);
  padding: 12px 0;
}
.sh-template_06 .sh-journal-toc-inner {
  max-width: var(--at-page-max);
  margin: 0 auto;
  padding: 0 var(--at-gutter);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sh-template_06 .sh-journal-toc-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--at-orange);
  white-space: nowrap;
}
.sh-template_06 .sh-journal-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sh-template_06 .sh-journal-toc-list li { list-style: none; }
.sh-template_06 .sh-journal-toc-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--at-navy);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--at-rule);
  transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}
.sh-template_06 .sh-journal-toc-chip:hover {
  background: var(--at-orange);
  color: #fff;
  border-color: var(--at-orange);
}

/* --- Body shell --------------------------------------------------------- */
.sh-template_06 .sh-journal-shell {
  max-width: var(--at-page-max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--at-gutter) clamp(64px, 8vw, 96px);
}
.sh-template_06 .sh-journal-shell-with-aside {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 920px) {
  .sh-template_06 .sh-journal-shell-with-aside {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sh-template_06 .sh-journal-shell { padding: 48px var(--at-gutter) 64px; }
}

/* --- Sibling sidebar ---------------------------------------------------- */
.sh-template_06 .sh-journal-aside { position: sticky; top: 80px; }
@media (max-width: 920px) { .sh-template_06 .sh-journal-aside { position: static; } }
.sh-template_06 .sh-journal-aside-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--at-orange);
  margin-bottom: 6px;
}
.sh-template_06 .sh-journal-aside-parent {
  display: inline-block;
  font-family: var(--at-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--at-navy);
  text-decoration: none;
  margin-bottom: 18px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.sh-template_06 .sh-journal-aside-parent:hover { border-bottom-color: var(--at-orange); }
.sh-template_06 .sh-journal-aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--at-rule);
}
.sh-template_06 .sh-journal-aside-list li {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid var(--at-rule);
  font-size: 14.5px;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 12px;
  list-style: none;
}
.sh-template_06 .sh-journal-aside-num {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--at-orange);
  flex-shrink: 0;
  min-width: 18px;
}
.sh-template_06 .sh-journal-aside-link {
  color: var(--at-ink-soft);
  text-decoration: none;
  transition: color 0.14s ease;
}
.sh-template_06 .sh-journal-aside-link:hover { color: var(--at-navy); }
.sh-template_06 .sh-journal-aside-current .sh-journal-aside-link-current {
  color: var(--at-navy);
  font-weight: 600;
}
.sh-template_06 .sh-journal-aside-current .sh-journal-aside-num { color: var(--at-orange-deep); }

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

.sh-template_06 .sh-journal-intro { margin-bottom: 1.6em; }
.sh-template_06 .sh-journal-intro-prose {
  font-size: 19px;
  line-height: 1.75;
  color: var(--at-ink);
}
.sh-template_06 .sh-journal-intro-prose > *:first-child::first-letter {
  font-family: var(--at-serif);
  font-weight: 600;
  font-size: 4.4em;
  line-height: 0.85;
  float: left;
  padding: 0.05em 0.12em 0 0;
  color: var(--at-orange);
}

.sh-template_06 .sh-journal-block {
  font-size: 17px;
  line-height: 1.75;
  color: var(--at-ink);
  margin: 0 0 1.2em;
}
.sh-template_06 .sh-journal-block p { margin: 0 0 1.1em; }
.sh-template_06 .sh-journal-block p:last-child { margin-bottom: 0; }

.sh-template_06 .sh-journal-body a,
.sh-template_06 .sh-journal-intro-prose a {
  color: var(--at-orange-deep);
  text-decoration: underline;
  text-decoration-color: rgba(244, 120, 32, 0.4);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.14s ease, color 0.14s ease;
}
.sh-template_06 .sh-journal-body a:hover,
.sh-template_06 .sh-journal-intro-prose a:hover {
  color: var(--at-orange);
  text-decoration-color: var(--at-orange);
}

/* Lists — discrete orange disc bullet */
.sh-template_06 .sh-journal-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
}
.sh-template_06 .sh-journal-block ul > li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.5em;
  list-style: none;
}
.sh-template_06 .sh-journal-block ul > li::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--at-orange);
  opacity: 0.85;
}
.sh-template_06 .sh-journal-block ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.sh-template_06 .sh-journal-block ol > li { margin-bottom: 0.45em; }
.sh-template_06 .sh-journal-block ol > li::marker {
  color: var(--at-orange-deep);
  font-family: var(--at-serif);
  font-weight: 600;
}

.sh-template_06 .sh-journal-block table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.6em 0;
  font-size: 15px;
  background: #fff;
  border-radius: var(--at-radius-sm);
  overflow: hidden;
  box-shadow: 0 14px 32px -22px rgba(var(--at-ink-rgb), 0.32);
}
.sh-template_06 .sh-journal-block table th {
  background: var(--at-navy-deep);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
  padding: 14px 18px;
}
.sh-template_06 .sh-journal-block table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--at-rule);
}
.sh-template_06 .sh-journal-block table tr:nth-child(even) td { background: var(--at-cream); }
.sh-template_06 .sh-journal-block table tr:last-child td { border-bottom: 0; }

.sh-template_06 .sh-journal-hr {
  border: 0;
  height: 1px;
  background: var(--at-rule);
  margin: 3em 0;
}

/* --- Section break (small "Chapter NN" tracked eyebrow, no giants) ----- */
.sh-template_06 .sh-journal-section {
  margin: 72px 0 24px;
  scroll-margin-top: 96px;
}
.sh-template_06 .sh-journal-section-numeral {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--at-orange);
  margin-bottom: 10px;
}
.sh-template_06 .sh-journal-section-heading {
  font-family: var(--at-serif);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--at-navy);
  margin: 0 0 0.4em;
}
.sh-template_06 .sh-journal-section-h2 .sh-journal-section-heading { font-size: clamp(28px, 3.4vw, 38px); }
.sh-template_06 .sh-journal-section-h3 .sh-journal-section-heading { font-size: 24px; }
.sh-template_06 .sh-journal-section-h4 .sh-journal-section-heading { font-size: 19px; }

/* --- Pull-quote --------------------------------------------------------
   Mirrors the .sh-testimonial-card vocabulary on the homepage — cream
   surface, the same orange serif quote-mark, Cormorant Garamond italic
   body. No rotation, no torn-paper edges. */
.sh-template_06 .sh-journal-pull {
  margin: 56px 0;
  background: #fff;
  border-radius: var(--at-radius-sm);
  padding: 32px 32px 28px;
  box-shadow: 0 16px 38px -24px rgba(var(--at-ink-rgb), 0.32);
  position: relative;
  background-image:
    radial-gradient(rgba(31, 42, 64, 0.04) 1px, transparent 1px);
  background-size: 14px 14px;
}
.sh-template_06 .sh-journal-pull-mark {
  font-family: var(--at-serif);
  font-size: 64px;
  line-height: 0.6;
  color: var(--at-orange);
  display: block;
  margin-bottom: 4px;
}
.sh-template_06 .sh-journal-pull-body {
  margin: 0;
  font-family: var(--at-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--at-navy);
}
.sh-template_06 .sh-journal-pull-body p { margin: 0 0 0.6em; }
.sh-template_06 .sh-journal-pull-body p:last-child { margin-bottom: 0; }

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

/* --- Staff card grid + portrait medallions ----------------------------- */
.sh-template_06 .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_06 .sh-journal-staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  list-style: none;
  transition: transform 0.22s ease;
}
.sh-template_06 .sh-journal-staff-card:hover { transform: translateY(-4px); }
.sh-template_06 .sh-journal-staff-portrait {
  width: clamp(140px, 60%, 168px);
  margin-bottom: 16px;
}
.sh-template_06 .sh-journal-staff-portrait .sh-journal-figure-grid {
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-template_06 .sh-journal-staff-portrait .sh-journal-figure-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  box-shadow: 0 18px 38px -20px rgba(var(--at-ink-rgb), 0.35);
}
.sh-template_06 .sh-journal-staff-portrait .sh-journal-figure-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: var(--at-cream-deep);
}
.sh-template_06 .sh-journal-staff-portrait .sh-journal-figure-caption {
  font-family: var(--at-serif);
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  color: var(--at-navy);
  margin-top: 12px;
}
.sh-template_06 .sh-journal-staff-bio {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--at-ink);
  opacity: 0.85;
  text-align: left;
  width: 100%;
}
.sh-template_06 .sh-journal-staff-bio p { margin: 0 0 0.5em; }
.sh-template_06 .sh-journal-staff-bio p:last-child { margin-bottom: 0; }

/* --- Bare-figure portrait grid ----------------------------------------- */
.sh-template_06 .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_06 .sh-journal-portraits-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  list-style: none;
}
.sh-template_06 .sh-journal-figure-grid {
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-template_06 .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 16px 32px -20px rgba(var(--at-ink-rgb), 0.32);
}
.sh-template_06 .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_06 .sh-journal-empty { padding: 96px 0; text-align: center; }
.sh-template_06 .sh-journal-empty-note {
  font-family: var(--at-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--at-ink-soft);
}

/* --- "Within …" sub-page wall ------------------------------------------
   Mirrors the homepage's overlapping `.sh-feature-card` vocabulary —
   white cards on cream, soft shadow, orange Caveat-style heading,
   tracked uppercase chapter eyebrow. Lift on hover same as features. */
.sh-template_06 .sh-journal-wall {
  background: var(--at-cream-deep);
  border-top: 1px solid var(--at-rule);
  padding: clamp(72px, 9vw, 110px) var(--at-gutter) clamp(72px, 9vw, 110px);
}
.sh-template_06 .sh-journal-wall-inner {
  max-width: var(--at-page-max);
  margin: 0 auto;
}
.sh-template_06 .sh-journal-wall-header {
  margin-bottom: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sh-template_06 .sh-journal-wall-eyebrow {
  display: inline-block;
  font-family: var(--at-script);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--at-orange);
  line-height: 1;
  margin: 0;
}
.sh-template_06 .sh-journal-wall-heading {
  font-family: var(--at-serif);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.005em;
  line-height: 1.12;
  color: var(--at-navy);
  margin: 0;
}
.sh-template_06 .sh-journal-wall-sub {
  font-size: 16px;
  color: var(--at-ink-soft);
  margin: 8px auto 0;
  max-width: 60ch;
  line-height: 1.6;
}
.sh-template_06 .sh-journal-wall-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.sh-template_06 .sh-journal-wall-card {
  background: #fff;
  border-radius: var(--at-radius-sm);
  list-style: none;
  box-shadow: 0 16px 36px -24px rgba(var(--at-ink-rgb), 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.sh-template_06 .sh-journal-wall-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px -28px rgba(var(--at-ink-rgb), 0.36);
}
.sh-template_06 .sh-journal-wall-card-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 26px 26px;
  color: inherit;
  text-decoration: none;
}
.sh-template_06 .sh-journal-wall-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--at-orange);
}
.sh-template_06 .sh-journal-wall-card-title {
  font-family: var(--at-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--at-navy);
}
.sh-template_06 .sh-journal-wall-card-summary {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--at-ink-soft);
}
.sh-template_06 .sh-journal-wall-card-cta {
  margin-top: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--at-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.16s ease, color 0.14s ease;
}
.sh-template_06 .sh-journal-wall-card:hover .sh-journal-wall-card-cta {
  gap: 10px;
  color: var(--at-orange-deep);
}

/* --- Sign-off rule ------------------------------------------------------ */
.sh-template_06 .sh-journal-signoff {
  text-align: center;
  padding: 48px 0 64px;
}
.sh-template_06 .sh-journal-signoff-rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--at-rule);
}

/* --- Widgets (newsletters, announcements, events, etc.) ---------------- */
.sh-template_06 .sh-journal-widgets {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.sh-template_06 .sh-journal-widget {
  background: #fff;
  border: 1px solid var(--at-rule);
  border-radius: var(--at-radius);
  padding: 28px;
  box-shadow: 0 16px 36px -24px rgba(var(--at-ink-rgb), 0.28);
}

/* --- Mobile drawer / hamburger -----------------------------------------
   The homepage already has a 720px hamburger breakpoint inline; bump
   it to 980px on inner pages so dropdown-rich navs collapse before
   they wrap. Drawer keeps the homepage's white-pill vocabulary, just
   stacked vertically. */
body.sh-nav-locked { overflow: hidden; }

@media (max-width: 980px) {
  .sh-template_06 .sh-nav-inner {
    padding: 14px 22px;
    gap: 12px;
    border-radius: 22px;
  }
  .sh-template_06 .sh-nav-menu-btn { display: inline-flex; }
  .sh-template_06 .sh-nav-drawer {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--at-gutter);
    right: var(--at-gutter);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 24px 48px -22px rgba(var(--at-ink-rgb), 0.4);
    z-index: 40;
    gap: 14px;
  }
  .sh-template_06 .sh-nav.sh-nav-open .sh-nav-drawer { display: flex; }
  .sh-template_06 .sh-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }
  .sh-template_06 .sh-nav-links .sh-nav-link {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-bottom: 0;
    border-radius: 8px;
  }
  .sh-template_06 .sh-nav-links .sh-nav-link:hover {
    background: var(--at-cream);
    border-bottom-color: transparent;
  }
  .sh-template_06 .sh-nav-dropdown { display: block; width: 100%; }
  .sh-template_06 .sh-nav-dropdown-btn {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 0;
    border-radius: 8px;
  }
  .sh-template_06 .sh-nav-submenu {
    position: static;
    box-shadow: none;
    border: 0;
    background: var(--at-cream);
    margin: 4px 0 4px 12px;
    padding: 6px;
  }
  .sh-template_06 .sh-nav-dropdown-nested > .sh-nav-submenu {
    top: auto;
    left: 0;
    margin-left: 12px;
  }
  .sh-template_06 .sh-nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .sh-template_06 .sh-nav-cta { text-align: center; }
}

@media (max-width: 720px) {
  .sh-template_06 .sh-journal-hero { padding: 56px var(--at-gutter) 64px; }
  .sh-template_06 .sh-journal-shell-with-aside { gap: 28px; }
  .sh-template_06 .sh-journal-pull { padding: 24px 20px 22px; }
  .sh-template_06 .sh-journal-section { margin: 56px 0 18px; }
}

/* ---------- Enrolment timeline ----------
   Renders Website#enrolment_timeline as a horizontal flow of six numbered
   step cards on desktop, vertical stack on narrow viewports. The numeral
   uses the script font as a connecting visual cue with .sh-section-kicker. */
.sh-template_06 .sh-enrolment {
  background: var(--at-cream);
  padding: 72px var(--at-gutter);
}
.sh-template_06 .sh-enrolment-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.sh-template_06 .sh-enrolment-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.sh-template_06 .sh-enrolment-subtitle {
  font-style: italic;
  color: var(--at-ink-soft);
  margin: 8px 0 0;
  font-size: 15px;
}
.sh-template_06 .sh-enrolment-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.sh-template_06 .sh-enrolment-step {
  background: #fff;
  border: 1px solid var(--at-cream-deep);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.sh-template_06 .sh-enrolment-step-num {
  font-family: var(--at-script);
  color: var(--at-orange);
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.sh-template_06 .sh-enrolment-step-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sh-template_06 .sh-enrolment-step-date {
  font-family: var(--at-serif);
  color: var(--at-navy);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
}
.sh-template_06 .sh-enrolment-step-label {
  color: var(--at-ink-soft);
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 720px) {
  .sh-template_06 .sh-enrolment { padding: 56px var(--at-gutter); }
  .sh-template_06 .sh-enrolment-steps { grid-template-columns: 1fr; gap: 12px; }
}

/* On /p/details the timeline sits between the journal hero and the journal
   shell. The shell reserves its own gutter padding inside the page-max box,
   so its content edge is `at-page-max - 2*at-gutter`. Match the timeline to
   that width so cards align with the chapter sidebar/body below; collapse
   the shell's top padding so the two sections read as one cream band. */
.sh-template_06 .sh-journal-hero ~ .sh-enrolment .sh-enrolment-inner {
  max-width: calc(var(--at-page-max) - 2 * var(--at-gutter));
}
.sh-template_06 .sh-enrolment + .sh-journal-shell { padding-top: 0; }
