:root {
  --sh-cream: #f5f8f2;
  --sh-green: #399910;
  --sh-green-deep: #216a00;
  --sh-coral: #f25f5c;
  --sh-coral-deep: #ab2b2e;
  --sh-ink: #1f2a2e;
  --sh-mist: #d6e4d2;
  --sh-panel: #ffffff;
  --sh-line: rgba(31, 42, 46, 0.14);
  --sh-shadow: 0 22px 50px rgba(31, 42, 46, 0.1);
  --sh-radius-lg: 2rem;
  --sh-radius-md: 1.25rem;
  --sh-radius-sm: 0.9rem;
}

html {
  scroll-behavior: smooth;
}

body.sh-body {
  font-family: "Source Sans 3", Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(214, 228, 210, 0.9), transparent 38%),
    linear-gradient(180deg, #fbfcf8 0%, var(--sh-cream) 22%, #eef4e8 100%);
  color: var(--sh-ink);
  min-height: 100vh;
}

a {
  color: var(--sh-green-deep);
  text-decoration: none;
}

a:hover {
  color: var(--sh-coral-deep);
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sh-display,
.sh-section-title,
.sh-brand__title,
.sh-footer__brand {
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  color: var(--sh-ink);
}

.sh-main {
  padding-bottom: 5rem;
}

.sh-header {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 24px rgba(31, 42, 46, 0.05);
}

.sh-header__shell {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.sh-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.sh-brand__mark {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--sh-green) 0%, var(--sh-coral) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--sh-shadow);
}

.sh-brand__eyebrow,
.sh-kicker,
.sh-section-head__eyebrow,
.sh-footer__eyebrow,
.sh-mini-card__eyebrow,
.sh-sidebar__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-green-deep);
}

.sh-brand__eyebrow {
  display: block;
  margin-bottom: 0.1rem;
}

.sh-brand__title {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.05;
}

.sh-nav-list {
  flex-wrap: wrap;
  gap: 0.35rem;
}

.sh-nav-link {
  padding: 0.65rem 0.95rem !important;
  border-radius: 999px;
  font-weight: 600;
  color: var(--sh-ink) !important;
  transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.sh-nav-link:hover,
.sh-nav-link.is-active {
  color: var(--sh-green-deep) !important;
  background: rgba(57, 153, 16, 0.12);
  transform: translateY(-1px);
}

.sh-dropdown {
  border: 1px solid rgba(31, 42, 46, 0.1);
  border-radius: 1rem;
  box-shadow: var(--sh-shadow);
  padding: 0.5rem;
}

.sh-dropdown .dropdown-item {
  border-radius: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 0.8rem;
}

.sh-dropdown .dropdown-item:hover {
  background: rgba(57, 153, 16, 0.08);
  color: var(--sh-green-deep);
}

.sh-header__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.sh-secondary-link {
  color: rgba(31, 42, 46, 0.76);
  font-size: 0.95rem;
  font-weight: 600;
}

.sh-button {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.8rem 1.4rem;
  border-width: 2px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.sh-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(57, 153, 16, 0.18);
}

.sh-button--solid {
  background: linear-gradient(135deg, var(--sh-green) 0%, var(--sh-green-deep) 100%);
  border-color: transparent;
  color: #fff;
}

.sh-button--solid:hover {
  color: #fff;
}

.sh-button--ghost {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(57, 153, 16, 0.2);
  color: var(--sh-green-deep);
}

.sh-nav-toggler {
  border: 0;
  padding: 0.5rem;
  border-radius: 0.9rem;
  background: rgba(57, 153, 16, 0.1);
}

.sh-nav-toggler .navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 1.5rem;
  height: 1.2rem;
}

.sh-nav-toggler .navbar-toggler-icon::before,
.sh-nav-toggler .navbar-toggler-icon::after,
.sh-nav-toggler .navbar-toggler-icon {
  border-top: 2px solid var(--sh-green-deep);
}

.sh-nav-toggler .navbar-toggler-icon::before,
.sh-nav-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.5rem;
}

.sh-nav-toggler .navbar-toggler-icon::before {
  top: 0.35rem;
}

.sh-nav-toggler .navbar-toggler-icon::after {
  top: 0.7rem;
}

.sh-offcanvas {
  background: linear-gradient(180deg, #fbfcf8 0%, #f1f7ea 100%);
}

.sh-mobile-group + .sh-mobile-group {
  margin-top: 1.5rem;
}

.sh-mobile-group__title {
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-green-deep);
}

.sh-mobile-child {
  padding-left: 1.8rem;
  color: rgba(31, 42, 46, 0.8);
}

.sh-mobile-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(31, 42, 46, 0.62);
}

.sh-hero {
  padding: 4.5rem 0 2rem;
}

.sh-hero--inner {
  padding-top: 3.25rem;
  padding-bottom: 1.2rem;
}

.sh-hero--compact {
  padding-bottom: 0.4rem;
}

.sh-hero--article {
  padding-top: 3.5rem;
}

.sh-display {
  font-size: clamp(2.7rem, 5.2vw, 4.6rem);
  line-height: 0.95;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}

.sh-display--sm {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
}

.sh-lead {
  font-size: 1.18rem;
  line-height: 1.75;
  max-width: 42rem;
  color: rgba(31, 42, 46, 0.86);
}

.sh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.6rem 0 1.2rem;
}

.sh-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sh-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 42, 46, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sh-ink);
}

.sh-poster-card,
.sh-photo-card,
.sh-orb-card {
  background: linear-gradient(180deg, rgba(31, 42, 46, 0.98), #163038 100%);
  border-radius: var(--sh-radius-lg);
  padding: 1.1rem;
  box-shadow: var(--sh-shadow);
  position: relative;
}

.sh-poster-card img,
.sh-photo-card img,
.sh-orb-card img {
  width: 100%;
  border-radius: calc(var(--sh-radius-lg) - 0.45rem);
}

.sh-photo-card {
  background: linear-gradient(180deg, #fff 0%, #f4f7f2 100%);
  border: 1px solid rgba(31, 42, 46, 0.08);
}

.sh-photo-card--tall img {
  min-height: 22rem;
  object-fit: cover;
}

.sh-orb-card {
  background:
    radial-gradient(circle at top left, rgba(242, 95, 92, 0.36), transparent 34%),
    linear-gradient(135deg, #15302d 0%, #112925 100%);
}

.sh-pill-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  padding: 1.3rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--sh-radius-lg);
  border: 1px solid rgba(31, 42, 46, 0.08);
  box-shadow: var(--sh-shadow);
}

.sh-page-shell {
  padding-top: 0.4rem;
}

.sh-surface {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(31, 42, 46, 0.08);
  border-radius: var(--sh-radius-lg);
  padding: 1.6rem;
  box-shadow: var(--sh-shadow);
}

.sh-surface + .sh-surface {
  margin-top: 1.25rem;
}

.sh-surface--accent {
  background: linear-gradient(135deg, rgba(57, 153, 16, 0.95), rgba(33, 106, 0, 0.94));
  color: #fff;
}

.sh-surface--accent .sh-section-head__eyebrow,
.sh-surface--accent .sh-section-title,
.sh-surface--accent a {
  color: #fff;
}

.sh-surface--story {
  padding: 1.8rem;
}

.sh-surface--wide {
  padding: 2rem;
}

.sh-section-head {
  margin-bottom: 1.2rem;
}

.sh-section-title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 800;
}

.sh-mini-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf4 100%);
  border: 1px solid rgba(31, 42, 46, 0.08);
  border-radius: var(--sh-radius-md);
  padding: 1.25rem;
  box-shadow: 0 14px 26px rgba(31, 42, 46, 0.06);
}

.sh-mini-card + .sh-mini-card {
  margin-top: 1rem;
}

.sh-mini-card h2 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.sh-mini-card p:last-child {
  margin-bottom: 0;
}

.sh-mini-card--coral {
  background: linear-gradient(135deg, rgba(242, 95, 92, 0.14), rgba(255, 255, 255, 0.96));
}

.sh-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sh-sidebar__panel {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(31, 42, 46, 0.08);
  border-radius: var(--sh-radius-md);
  padding: 1.2rem;
  box-shadow: 0 14px 26px rgba(31, 42, 46, 0.06);
}

.sh-sidebar__panel--accent {
  background: linear-gradient(135deg, #2b8600 0%, #216a00 100%);
  color: #fff;
}

.sh-sidebar__panel--accent .sh-sidebar__eyebrow,
.sh-sidebar__panel--accent h2,
.sh-sidebar__panel--accent p {
  color: #fff;
}

.sh-sidebar__panel h2 {
  font-size: 1.2rem;
  margin: 0.45rem 0 0.65rem;
}

.sh-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
}

.sh-sidebar__list li + li {
  margin-top: 0.55rem;
}

.sh-sidebar__list a {
  color: rgba(31, 42, 46, 0.9);
  font-weight: 600;
}

.sh-sidebar__panel--accent .sh-sidebar__list a {
  color: #fff;
}

.sh-breadcrumbs {
  padding: 0.4rem 0 0.9rem;
}

.sh-breadcrumbs__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: rgba(31, 42, 46, 0.64);
}

.sh-breadcrumbs__current {
  color: var(--sh-ink);
  font-weight: 700;
}

.sh-block + .sh-block,
.sh-copy + .sh-copy,
.sh-figure + .sh-copy,
.sh-copy + .sh-figure,
.sh-list + .sh-copy,
.sh-table-wrap + .sh-copy,
.sh-copy + .sh-table-wrap {
  margin-top: 1rem;
}

.sh-heading {
  margin: 1.35rem 0 0.65rem;
  font-weight: 800;
  line-height: 1.08;
}

.sh-heading--1 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.sh-heading--2 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.sh-heading--3 {
  font-size: 1.28rem;
}

.sh-copy {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(31, 42, 46, 0.88);
}

.sh-copy strong {
  color: var(--sh-green-deep);
}

.sh-copy a {
  text-decoration: underline;
  text-decoration-color: rgba(57, 153, 16, 0.35);
  text-underline-offset: 0.18em;
}

.sh-figure {
  margin: 1.2rem 0;
  padding: 0.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 245, 239, 0.86));
  border-radius: 1.4rem;
  border: 1px solid rgba(31, 42, 46, 0.08);
}

.sh-figure img {
  width: 100%;
  border-radius: 1rem;
}

.sh-figure figcaption {
  padding: 0.75rem 0.5rem 0.35rem;
  font-size: 0.92rem;
  color: rgba(31, 42, 46, 0.7);
}

.sh-list {
  margin: 1rem 0;
  padding-left: 1.15rem;
}

.sh-list li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
}

.sh-table-wrap {
  margin: 1.2rem 0;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 46, 0.08);
}

.sh-table {
  margin-bottom: 0;
  --bs-table-bg: transparent;
}

.sh-table thead th {
  background: var(--sh-green-deep);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.sh-table td,
.sh-table th {
  padding: 0.9rem 1rem;
  vertical-align: top;
}

.sh-table tbody tr:nth-child(odd) td {
  background: rgba(214, 228, 210, 0.32);
}

.sh-quote {
  margin: 1.2rem 0;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--sh-coral);
  background: rgba(242, 95, 92, 0.08);
  border-radius: 1rem;
}

.sh-quote p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.sh-embed {
  margin: 1.3rem 0;
  border-radius: 1.3rem;
  overflow: hidden;
  min-height: 18rem;
  background: #101617;
}

.sh-embed iframe,
.sh-embed video {
  width: 100%;
  min-height: 18rem;
  border: 0;
}

.sh-code {
  margin: 1.2rem 0;
  padding: 1.1rem 1.2rem;
  border-radius: 1rem;
  background: #111b1f;
  color: #eff6ec;
}

.sh-separator {
  margin: 1.6rem 0;
  border-color: rgba(31, 42, 46, 0.08);
}

.sh-fallback {
  margin: 1rem 0;
}

.sh-inline-image img {
  display: inline-block;
  max-height: 2rem;
}

.sh-link-card {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 42, 46, 0.08);
  box-shadow: 0 14px 26px rgba(31, 42, 46, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.sh-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-shadow);
  border-color: rgba(57, 153, 16, 0.24);
}

.sh-link-card--accent {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.sh-link-card--accent .sh-link-card__label,
.sh-link-card--accent .sh-link-card__arrow {
  color: #fff;
}

.sh-link-card__label {
  font-weight: 700;
  line-height: 1.45;
}

.sh-link-card__arrow {
  color: var(--sh-coral-deep);
  font-size: 1.05rem;
}

.sh-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(31, 42, 46, 0.7);
  font-size: 0.95rem;
}

.sh-article-header {
  margin-bottom: 1.4rem;
}

.sh-archive-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 46, 0.08);
  box-shadow: 0 14px 26px rgba(31, 42, 46, 0.06);
}

.sh-archive-card__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.sh-archive-card__body {
  padding: 1.2rem;
}

.sh-archive-card__body h2 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}

.sh-archive-card__body p:last-of-type {
  margin-bottom: 0.8rem;
}

.sh-archive-card--horizontal {
  display: flex;
  flex-direction: row;
}

.sh-archive-card--horizontal .sh-archive-card__media {
  flex: 0 0 40%;
}

.sh-archive-card--horizontal .sh-archive-card__media img {
  height: 100%;
}

.sh-archive-card--minimal .sh-archive-card__body {
  padding-top: 1.4rem;
}

.sh-inline-link {
  font-weight: 700;
  color: var(--sh-green-deep);
}

.sh-mini-link {
  padding: 1rem 0;
  border-top: 1px solid rgba(31, 42, 46, 0.08);
}

.sh-mini-link h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.sh-footer {
  margin-top: 4rem;
  padding: 2.8rem 0;
  background: linear-gradient(180deg, #162126 0%, #10191d 100%);
  color: rgba(245, 248, 242, 0.9);
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

.sh-footer__brand {
  font-size: 1.8rem;
  color: #fff;
  margin: 0.25rem 0 0.7rem;
}

.sh-footer__note {
  color: rgba(245, 248, 242, 0.72);
  max-width: 28rem;
}

.sh-footer__mail {
  display: inline-flex;
  margin-top: 0.35rem;
  color: #9ce67f;
  font-weight: 700;
}

.sh-footer__list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.sh-footer__list li + li {
  margin-top: 0.5rem;
}

.sh-footer__list a {
  color: rgba(245, 248, 242, 0.82);
}

.sh-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.sh-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

@media (prefers-reduced-motion: no-preference) {
  .sh-surface,
  .sh-link-card,
  .sh-mini-card,
  .sh-social {
    animation: sh-fade-up 0.55s ease both;
  }

  @keyframes sh-fade-up {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1199.98px) {
  .sh-header__actions {
    margin-top: 1rem;
  }
}

@media (max-width: 991.98px) {
  .sh-hero {
    padding-top: 3.2rem;
  }

  .sh-display {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .sh-surface,
  .sh-surface--story,
  .sh-surface--wide {
    padding: 1.3rem;
  }

  .sh-archive-card--horizontal {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .sh-brand__mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .sh-brand__title {
    font-size: 1rem;
  }

  .sh-chip-row {
    gap: 0.5rem;
  }

  .sh-chip {
    font-size: 0.8rem;
  }

  .sh-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sh-button {
    width: 100%;
  }

  .sh-footer {
    border-top-left-radius: 1.4rem;
    border-top-right-radius: 1.4rem;
  }
}
