@font-face {
  font-family: "Work Sans Local";
  src: url("../fonts/work_sans_local/WorkSans-Regular.woff2") format("woff2"),
       url("../fonts/work_sans_local/WorkSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans Local";
  src: url("../fonts/work_sans_local/WorkSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Merriweather Local";
  src: url("../fonts/merriweather_local/Merriweather-Regular.woff2") format("woff2"),
       url("../fonts/merriweather_local/Merriweather-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Merriweather Local";
  src: url("../fonts/merriweather_local/Merriweather-Bold.woff2") format("woff2"),
       url("../fonts/merriweather_local/Merriweather-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --sh-green: #702739;
  --sh-deep: #1e1e1e;
  --sh-header: #454342;
  --sh-leaf: #e5ded9;
  --sh-mint: #faf6f2;
  --sh-cream: #faf6f2;
  --sh-yellow: #ffb735;
  --sh-coral: #702739;
  --sh-ink: #1e1e1e;
  --sh-muted: #716769;
  --sh-line: #e6e6e6;
  --sh-radius: 6px;
  --sh-shadow: 0 18px 45px rgba(36, 33, 29, .12);
  --sh-page-width: 1280px;
  --sh-body-font: "Work Sans Local", "Open Sans", Arial, sans-serif;
  --sh-heading-font: "Merriweather Local", Georgia, serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--sh-ink);
  background: #151515;
  font-family: var(--sh-body-font);
  font-size: 16px;
  line-height: 1.58;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.site-main {
  overflow: hidden;
  background: var(--sh-cream);
  width: min(var(--sh-page-width), 100%);
  margin: 0 auto;
}

.header-top { display: none; }
.header-top__inner {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  padding: 8px 0;
}
.site-header {
  position: relative;
  z-index: 50;
  width: min(var(--sh-page-width), 100%);
  margin: 0 auto;
  z-index: 50;
  background: var(--sh-header);
  box-shadow: none;
}
.header-main {
  min-height: 129px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 44px auto;
  align-items: center;
  gap: 16px;
}
.site-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: start;
  font-weight: 400;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.site-brand img { width: 62px; height: 62px; object-fit: contain; }
.site-brand .brand-text {
  display: block;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1.6px;
}
.brand-mark {
  width: 68px;
  height: 68px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--sh-yellow);
  color: var(--sh-deep);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}
.primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.primary-nav a {
  font-family: var(--sh-body-font);
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  white-space: nowrap;
  color: #fff;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 6px;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  background: #d3f3e6;
  color: #000;
}
.header-donate,
.button,
.footer-cta,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 20px;
  border-radius: 6px;
  border: 0;
  font-family: var(--sh-body-font);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.header-donate,
.button-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--sh-yellow);
  color: var(--sh-deep);
}
.header-donate {
  background: var(--sh-yellow);
  color: #000;
  min-height: 53px;
  padding-inline: 27px;
  font-size: 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04);
}
.header-donate-mobile {
  display: none;
}
.header-search {
  width: 44px;
  height: 44px;
  justify-self: center;
  display: inline-grid;
  place-items: center;
  position: relative;
}
.header-search::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.header-search::after {
  content: "";
  width: 9px;
  height: 2px;
  background: #fff;
  position: absolute;
  transform: translate(10px, 10px) rotate(45deg);
}
.button-primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #eab048;
  color: var(--sh-deep);
}
.header-donate:hover,
.footer-cta:hover {
  background: #eab048;
  color: var(--sh-deep);
}
.button-light { background: #fff; color: var(--sh-deep); }
.button-dark { background: var(--sh-deep); color: #fff; }
.menu-toggle { display: none; }

.hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 242, .76);
}
.hero__inner {
  position: relative;
  max-width: 1200px;
  padding-top: 12px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--sh-green);
  font-family: var(--sh-body-font);
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}
.hero .eyebrow { color: rgba(255,255,255,.88); font-size: 28px; line-height: 1.2; }
h1, h2, h3 {
  margin: 0;
  line-height: 1.3;
  color: inherit;
  font-family: var(--sh-heading-font);
  font-weight: 400;
}
h1 { font-size: clamp(28px, 2.2vw, 30px); max-width: 820px; }
h2 { font-size: clamp(28px, 2.8vw, 36px); }
h3 { font-size: 24px; }
.hero p:not(.eyebrow) {
  max-width: 430px;
  font-size: 20px;
  font-weight: 400;
  margin: 36px 0 28px;
  color: rgba(255,255,255,.9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.mission-strip {
  background: var(--sh-green);
  padding: 0;
  color: #fff;
  display: none;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transform: translateY(-42px);
}
.feature-grid article {
  background: transparent;
  padding: 34px;
  border-radius: var(--sh-radius);
  box-shadow: none;
}
.feature-grid span {
  display: inline-block;
  color: var(--sh-yellow);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  margin-bottom: 12px;
}
.feature-grid p { margin-bottom: 0; color: rgba(255, 255, 255, .82); }

.section { padding: 96px 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split img {
  border-radius: var(--sh-radius);
  box-shadow: var(--sh-shadow);
}
.split p { color: var(--sh-muted); }
.split-section {
  background: var(--sh-green);
  color: #fff;
  text-align: center;
  position: relative;
  margin-top: 0;
  padding-top: 72px;
  padding-bottom: 52px;
}
.split-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -74px;
  height: 96px;
  background: var(--sh-green);
  clip-path: polygon(0 78%, 50% 0, 100% 78%, 100% 100%, 0 100%);
}
.split-section .split {
  grid-template-columns: 1fr;
  gap: 32px;
}
.split-section .split > div {
  max-width: 900px;
  margin: 0 auto;
}
.split-section .split p { color: rgba(255, 255, 255, .82); }
.split-section .eyebrow {
  color: #fff;
  font-family: var(--sh-body-font);
  font-size: 36px;
  font-weight: 400;
}
.split-section h2 {
  font-family: var(--sh-body-font);
  font-size: clamp(32px, 3.1vw, 38px);
  line-height: 1.32;
  font-weight: 400;
}
.split-section .split p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--sh-yellow);
  font-size: 20px;
  font-weight: 400;
}
.split-section .split img {
  width: min(1092px, 100%);
  margin: 0 auto;
  box-shadow: none;
  border-radius: 0;
}
.split-section .button {
  display: none;
}
.home-product-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 96px;
  width: min(1092px, 100%);
  margin: 0 auto;
}
.home-product-preview img {
  width: 100%;
  aspect-ratio: 1.03 / 1;
  object-fit: cover;
}
.home-product-preview a {
  display: block;
  min-width: 0;
}
.donation-band {
  color: #fff;
  background-color: var(--sh-leaf);
  color: var(--sh-ink);
  background-position: center;
  background-size: cover;
}
.donation-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.donation-card {
  background: rgba(250, 246, 242, .77);
  color: var(--sh-ink);
  border-radius: var(--sh-radius);
  padding: 36px;
  box-shadow: var(--sh-shadow);
}
.donation-form-slot {
  width: 100%;
}
.donation-form-slot form,
.donation-form-slot .give-form,
.donation-form-slot .forminator-ui {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: left;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}
.donation-form-slot input,
.donation-form-slot select,
.donation-form-slot textarea,
.forminator-ui input,
.forminator-ui select,
.forminator-ui textarea {
  border: 1px solid #e5ded9 !important;
  border-radius: 6px !important;
  min-height: 46px;
  padding: 12px 14px !important;
  box-shadow: none !important;
}
.donation-form-slot button,
.donation-form-slot input[type="submit"],
.donation-form-slot .give-btn,
.forminator-ui button,
.forminator-ui .forminator-button {
  min-height: 46px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: var(--sh-yellow) !important;
  color: var(--sh-deep) !important;
  font-weight: 800 !important;
  padding: 12px 22px !important;
}
.donation-form-slot .give-donation-level-btn,
.donation-form-slot .give-btn-level-custom {
  background: #fff !important;
  color: var(--sh-green) !important;
  border: 1px solid #e5ded9 !important;
}
.donation-form-slot .give-donation-level-btn.give-default-level {
  background: var(--sh-yellow) !important;
  color: var(--sh-deep) !important;
}
.donation-form-placeholder {
  min-height: 170px;
  display: grid;
  place-items: center;
  gap: 14px;
  border: 1px solid #e5ded9;
  border-radius: var(--sh-radius);
  background: #fff;
  padding: 28px;
}
.donation-form-placeholder.compact {
  min-height: 180px;
}
.plugin-slot-label {
  color: var(--sh-green);
  font-size: 13px;
  font-weight: 800;
}
.donation-amount-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(76px, 1fr));
  gap: 10px;
  width: min(420px, 100%);
}
.donation-amount-row a,
.donation-amount-row button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5ded9;
  border-radius: 6px;
  background: #fff;
  color: var(--sh-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
}
.donation-amount-row a:first-child,
.donation-amount-row button:first-child {
  background: var(--sh-yellow);
  color: var(--sh-deep);
}
.donation-form-placeholder .setup-note {
  max-width: 520px;
  text-align: center;
}
.donation-page-layout {
  color: var(--sh-ink);
}
.donate-reference-section {
  background: var(--sh-cream);
}
.donate-reference-card {
  max-width: 1080px;
  min-height: 360px;
  margin: 0 auto;
  padding: 86px 72px;
  text-align: center;
  border: 1px solid #e5ded9;
  border-radius: var(--sh-radius);
  background: #fff;
  box-shadow: 0 2px 0 rgba(36, 33, 29, .08);
}
.donate-reference-card h2 {
  font-size: 42px;
  margin-bottom: 20px;
}
.donate-reference-card p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 26px;
  color: var(--sh-muted);
}
.donate-impact-list {
  max-width: 760px;
  margin-inline: auto;
}
.impact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.impact-list div {
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  padding: 18px;
  background: #fff;
}
.impact-list strong {
  display: block;
  color: var(--sh-coral);
  font-size: 28px;
  line-height: 1;
}
.impact-list span {
  display: block;
  color: var(--sh-muted);
  margin-top: 8px;
  font-size: 14px;
}
.setup-note {
  margin: 18px 0 0;
  color: var(--sh-muted);
  font-size: 14px;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading p:last-child { color: var(--sh-muted); }
.about-band { background: var(--sh-leaf); }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  overflow: hidden;
}
.post-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.post-card div { padding: 24px; }
.post-card p { color: var(--sh-muted); margin-bottom: 0; }
.blog-archive-section {
  background: var(--sh-cream);
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 800px) 320px;
  gap: 58px;
  align-items: start;
  justify-content: center;
}
.blog-list {
  display: grid;
  gap: 34px;
}
.blog-list-item {
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}
.blog-list-item__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--sh-radius);
}
.blog-list-item__content h3 {
  font-size: 30px;
  line-height: 1.18;
  margin-bottom: 14px;
}
.blog-list-item__content p {
  color: var(--sh-muted);
  margin: 0 0 12px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--sh-green);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.post-meta a {
  color: inherit;
}
.blog-sidebar {
  display: grid;
  gap: 28px;
}
.sidebar-box {
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  background: #fff;
  padding: 28px;
}
.sidebar-box h2 {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 16px;
  text-align: center;
  margin-bottom: 22px;
}
.search-form {
  display: flex;
}
.searchform div {
  display: flex;
  align-items: stretch;
}
.search-form label {
  flex: 1;
}
.search-form input[type="search"],
.searchform input[type="text"],
#s {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--sh-line);
  border-right: 0;
  padding: 12px;
}
.search-form input[type="submit"],
.searchform input[type="submit"],
#searchsubmit {
  min-width: 56px;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  background: var(--sh-green);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.featured-posts {
  display: grid;
  gap: 20px;
}
.navigation.pagination {
  margin-top: 20px;
}
.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.navigation.pagination a,
.navigation.pagination span {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--sh-line);
  border-radius: 4px;
  background: #fff;
  padding: 8px 12px;
}
.navigation.pagination .current {
  background: var(--sh-yellow);
  color: var(--sh-deep);
}
.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 14px;
  align-items: center;
}
.featured-post small {
  display: block;
  color: var(--sh-green);
  font-size: 11px;
  margin-bottom: 6px;
}
.featured-post strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}
.featured-post img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}
.single-blog-layout {
  max-width: 1180px;
}
.single-entry {
  min-width: 0;
}
.single-meta {
  margin-bottom: 24px;
}
.sponsors-section {
  background: var(--sh-cream);
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
}
.sponsor-logo {
  min-height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  background: var(--sh-mint);
  padding: 22px;
}
.sponsor-logo img {
  max-height: 62px;
  object-fit: contain;
}
.feature-story-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.feature-story-card {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 48px;
  color: #fff;
  background-position: center;
  background-size: cover;
  position: relative;
}
.feature-story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(36, 33, 29, .78), rgba(36, 33, 29, .08));
}
.feature-story-card h2 {
  position: relative;
  max-width: 520px;
  font-size: clamp(28px, 3.2vw, 48px);
}
body.home .hero {
  margin-top: -129px;
  min-height: 773px;
  padding-top: 129px;
  background-position: center top;
}
body.home .hero::before {
  background: linear-gradient(90deg, rgba(30,30,30,.32), rgba(250,246,242,.18));
}
body.home .hero__inner {
  padding-top: 74px;
}
body.home .hero .eyebrow {
  font-size: 22px;
}
body.home h1 {
  font-size: 30px;
}
body.home .hero p:not(.eyebrow) {
  margin: 22px 0 20px;
  font-size: 16px;
  line-height: 1.45;
}
body.home .home-burgundy-preview {
  padding-top: 58px;
  padding-bottom: 72px;
}
body.home .home-burgundy-preview::before {
  top: -72px;
  height: 96px;
}
body.home .home-burgundy-preview .split p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 15px;
}
body.home .home-product-preview {
  gap: 72px;
  align-items: start;
  margin-top: 20px;
}
body.home .home-product-card {
  min-width: 0;
  text-align: center;
}
body.home .home-product-card__image {
  display: block;
  margin-bottom: 20px;
}
body.home .home-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
body.home .home-product-card h3 {
  min-height: 48px;
  font-family: var(--sh-body-font);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}
body.home .home-product-card p {
  min-height: 74px;
  margin: 10px auto 14px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}
body.home .home-product-card__price {
  display: none;
}
body.home .home-product-card__link {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 2px;
  background: var(--sh-yellow);
  color: var(--sh-deep);
  font-size: 11px;
  font-weight: 700;
}
body.home .home-stats-section {
  background: var(--sh-cream);
  padding: 66px 0 74px;
}
body.home .home-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
body.home .home-stat {
  text-align: center;
}
body.home .home-stat h3 {
  color: #7b868a;
  font-family: var(--sh-body-font);
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
}
body.home .home-stat h3 span {
  display: block;
  margin-bottom: 10px;
  font-size: 32px;
  filter: grayscale(1);
  opacity: .72;
}
body.home .home-stat p {
  margin: 4px 0 0;
  color: var(--sh-muted);
  font-size: 13px;
}
body.home .home-donation-band {
  position: relative;
  padding-top: 118px;
  padding-bottom: 90px;
  background-color: #e5ded9;
  background-size: 360px auto;
  background-repeat: repeat;
  text-align: center;
}
body.home .home-donation-band::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto;
  height: 96px;
  background: var(--sh-cream);
  clip-path: polygon(0 0, 50% 64%, 100% 0, 100% 0, 0 0);
}
body.home .donation-layout {
  position: relative;
  display: block;
  max-width: 930px;
  padding: 76px 78px;
  background: rgba(250,246,242,.82);
}
body.home .home-donation-copy h2 {
  font-size: 30px;
}
body.home .home-donation-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 16px auto 28px;
  color: var(--sh-ink);
  font-size: 14px;
}
body.home .home-donation-image {
  width: min(760px, 100%);
  max-height: 440px;
  margin: 0 auto 30px;
  object-fit: cover;
  box-shadow: none;
  border-radius: 0;
}
body.home .donation-card {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
body.home .home-seat-section {
  padding: 82px 0 76px;
  background: #e5ded9;
}
body.home .home-seat-section .section-heading {
  max-width: 520px;
  margin-bottom: 0;
}
body.home .home-seat-section h2 {
  font-size: 32px;
}
body.home .home-seat-section p:last-of-type {
  margin-bottom: 22px;
  color: var(--sh-ink);
}
body.home .home-about-section {
  padding: 76px 0 90px;
}
body.home .home-about-section .split {
  gap: 96px;
}
body.home .home-about-section img {
  box-shadow: none;
  border-radius: 0;
}
body.home .sponsors-section {
  padding: 84px 0 100px;
  border-top: 1px solid #e8dfd8;
}
body.home .sponsor-logo {
  min-height: 90px;
  border: 0;
  background: transparent;
}
body.home .feature-story-strip {
  display: block;
  padding: 0 0 74px;
  background: var(--sh-cream);
}
body.home .feature-story-card {
  min-height: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 0 24px;
  display: block;
  color: var(--sh-ink);
  background-image: none !important;
  text-align: center;
}
body.home .feature-story-card::before {
  display: none;
}
body.home .feature-story-card h2 {
  max-width: none;
  margin: 0 auto 10px;
  color: var(--sh-yellow);
  font-family: var(--sh-body-font);
  font-size: 15px;
  font-weight: 600;
}
body.home .feature-story-card p {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--sh-ink);
  font-size: 12px;
}
body.home .feature-story-card + .feature-story-card {
  padding-top: 12px;
}
body.home .post-grid {
  display: none;
}
body.home .section:has(.post-grid) {
  display: none;
}
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.campaign-card {
  background: transparent;
  border: 0;
  border-radius: var(--sh-radius);
  overflow: hidden;
  box-shadow: none;
  text-align: center;
}
.campaign-card img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
}
.campaign-card__body {
  padding: 24px 0 0;
}
.campaign-card h4 {
  margin: 0 0 18px;
  font-family: var(--sh-heading-font);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 400;
  color: var(--sh-deep);
}
.campaign-card h4 a:hover {
  color: var(--sh-green);
}
.campaign-progress {
  height: 30px;
  overflow: hidden;
  border-radius: 99px;
  background: #e7dfda;
  margin: 0 0 14px;
  position: relative;
}
.campaign-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--sh-coral);
}
.campaign-progress em {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
}
.campaign-amount {
  margin: 0 0 18px;
  font-family: var(--sh-heading-font);
  font-size: 25px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--sh-deep);
}
.campaign-donate-button {
  min-height: 38px;
  width: auto;
  padding: 9px 18px;
  font-size: 14px;
  text-transform: none;
}
.campaign-donate-button,
.campaign-donate-button:hover {
  color: var(--sh-deep);
}
.campaign-single {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}
.campaign-content {
  min-width: 0;
}
.campaign-donate-panel {
  position: sticky;
  top: 126px;
  padding: 30px;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  background: #fff;
  box-shadow: var(--sh-shadow);
}
.campaign-donate-panel h2 {
  font-size: 34px;
}
.campaign-stats-large {
  display: grid;
  margin-bottom: 24px;
}
.campaign-stats-large strong {
  font-size: 28px;
}

.page-hero {
  padding: 92px 0;
  color: #fff;
  background-color: var(--sh-deep);
  background-position: center;
  background-size: cover;
}
.page-hero h1 { font-size: clamp(42px, 6vw, 76px); }
.page-hero-light {
  color: var(--sh-deep);
  background: #e5ded9;
  text-align: center;
  padding: 120px 0 138px;
  position: relative;
}
.page-hero-light .breadcrumbs {
  color: var(--sh-green);
  text-transform: none;
  font-size: 14px;
}
.page-hero-light h1 {
  font-size: clamp(38px, 5vw, 56px);
}
.page-hero-wave::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background: var(--sh-cream);
  clip-path: polygon(0 100%, 50% 35%, 100% 100%);
}
.breadcrumbs {
  margin-bottom: 14px;
  color: var(--sh-yellow);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.content-layout {
  padding: 78px 0;
}
.content-layout > * { max-width: 860px; }
.content-layout .alignwide,
.content-layout .wp-block-columns { max-width: 1180px; }
.contact-card {
  padding: 36px;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  box-shadow: var(--sh-shadow);
  background: #fff;
}
.reference-map {
  margin-bottom: 52px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(36, 33, 29, .08);
}
.reference-map img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.reference-map div {
  position: relative;
  margin-top: -70px;
  padding: 16px 20px;
  background: rgba(36, 33, 29, .72);
  color: #fff;
  text-align: center;
  font-weight: 800;
}
.contact-lines p {
  display: grid;
  gap: 4px;
  margin: 18px 0;
}
.fallback-contact-form {
  display: grid;
  gap: 16px;
}
.fallback-contact-form label {
  display: grid;
  gap: 6px;
  color: var(--sh-muted);
}
.fallback-contact-form input,
.fallback-contact-form textarea,
.woocommerce input.input-text,
.woocommerce textarea {
  width: 100%;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}
.feature-grid-flat {
  transform: none;
}
.single-cover img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: var(--sh-radius);
  margin-bottom: 34px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  overflow: hidden;
  padding-bottom: 20px;
  background: #fff;
  text-align: center;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px;
  color: var(--sh-deep);
}
.woocommerce ul.products li.product .price { color: var(--sh-coral); font-weight: 800; }
.shop-main { padding-top: 70px; padding-bottom: 90px; }
.reference-listing-section {
  background: var(--sh-cream);
}
.charity-items-page {
  margin-top: -129px;
  padding-top: 11px;
}
.charity-top-spacer {
  width: min(1260px, calc(100% - 20px));
  height: 100px;
  margin: 0 auto 25px;
}
.charity-hero {
  margin: 0 auto;
  width: min(1250px, calc(100% - 28px));
  height: 400px;
  display: grid;
  place-items: center;
  color: #fff;
  background-position: center;
  background-size: cover;
  position: relative;
}
.charity-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 33, 29, .22);
}
.charity-hero .container {
  position: relative;
  text-align: center;
}
.charity-hero h1 {
  max-width: none;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
}
.charity-hero span { color: #ef3e57; }
.charity-products-section {
  background: var(--sh-cream);
}
.charity-products-section.section {
  padding-top: 0;
  padding-bottom: 0;
}
.charity-items-page .charity-home-hero {
  min-height: 650px;
  margin-top: -129px;
  padding-top: 129px;
  background-position: center;
}
.charity-items-page .charity-reference-intro {
  padding-top: 70px;
  padding-bottom: 74px;
}
.charity-items-page .charity-reference-intro::before {
  top: -74px;
  height: 96px;
}
.charity-items-page .charity-reference-intro .home-product-preview {
  margin-top: 10px;
}
.charity-items-page .charity-reference-intro .home-product-preview img {
  aspect-ratio: 1.02 / 1;
}
.product-filter-row {
  display: flex;
  justify-content: center;
  gap: 72px;
  width: min(1260px, calc(100% - 20px));
  min-height: 40px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 700;
}
.charity-products-section .woocommerce ul.products li.product,
.charity-products-section .woocommerce-page ul.products li.product {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.charity-products-section .woocommerce ul.products li.product img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}
.charity-products-section .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 500;
}
.charity-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 44px;
  width: 100%;
  max-width: 1280px;
}
.charity-product-card {
  text-align: center;
}
.charity-product-card__image {
  display: block;
  background: #fff;
}
.charity-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}
.charity-product-card h2 {
  margin: 22px auto 14px;
  max-width: 360px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
}
.charity-product-card p {
  color: var(--sh-muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 360px;
  min-height: 100px;
  margin: 0 auto 18px;
}
.charity-product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 6px;
  background: var(--sh-yellow);
  color: var(--sh-deep);
  font-weight: 700;
}
.charity-product-card__button:hover {
  background: #eab048;
  color: var(--sh-deep);
}
.contact-visual-hero {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}
.contact-visual-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 33, 29, .42);
}
.contact-visual-hero .container {
  position: relative;
}
.contact-visual-hero .breadcrumbs {
  color: var(--sh-yellow);
  text-transform: none;
}
.contact-visual-hero h1 {
  font-size: clamp(42px, 5vw, 62px);
}

.contacts-page .contact-visual-hero {
  min-height: 760px;
  padding: 0;
  background-position: center center;
}

.contacts-page .contact-visual-hero::before {
  background: rgba(28, 24, 20, .44);
}

.contacts-page .contact-visual-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  background: var(--sh-cream);
  clip-path: polygon(0 74%, 50% 0, 100% 74%, 100% 100%, 0 100%);
  z-index: 1;
}

.contacts-page .contact-visual-hero .container {
  z-index: 2;
  transform: translateY(38px);
}

.contacts-page .contact-visual-hero h1 {
  font-family: var(--sh-body-font);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 400;
}

@media (min-width: 1181px) {
  .primary-nav ul { gap: 14px; }
  .hero { min-height: 650px; }
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .container { width: min(100% - 52px, 1200px); }
  .header-main {
    grid-template-columns: 230px minmax(0, 1fr) 40px auto;
    gap: 12px;
  }
  .primary-nav ul { gap: 4px; }
  .primary-nav a {
    font-size: 14px;
    padding: 0 9px;
  }
  .header-donate {
    min-width: 98px;
    padding-inline: 20px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .container { width: min(100% - 48px, 1040px); }
  .header-main {
    grid-template-columns: 230px 1fr auto auto;
    gap: 18px;
  }
  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 8px 0 18px;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
  .primary-nav li {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .primary-nav a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
  }
  .header-donate { display: none; }
  .header-donate-mobile {
    display: inline-flex;
    padding-inline: 24px;
  }
  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    background: var(--sh-green);
    border-radius: var(--sh-radius);
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
  }
  .hero {
    min-height: 590px;
    background-position: 62% center;
  }
  h1 { font-size: 30px; }
  h2 { font-size: 48px; }
  .feature-grid,
  .post-grid,
  .campaign-grid {
    gap: 18px;
  }
  .feature-grid article { padding: 28px; }
  .split {
    gap: 44px;
  }
  .section { padding: 82px 0; }
  .sponsor-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-grid {
    grid-template-columns: 1.15fr .85fr .9fr;
    gap: 32px;
  }
  .woocommerce ul.products[class*=columns-] li.product,
  .woocommerce-page ul.products[class*=columns-] li.product {
    width: 30.75%;
  }
}

.site-footer {
  color: #fff;
  background: var(--sh-green);
  position: relative;
  width: min(var(--sh-page-width), 100%);
  margin: 0 auto;
  padding-top: 60px;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -64px;
  height: 65px;
  background: var(--sh-green);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  pointer-events: none;
}
.footer-logo-band {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 0 20px 76px;
}
.footer-logo-band img {
  width: 300px;
  max-width: min(68vw, 320px);
  height: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 30% 30% minmax(0, 1fr);
  gap: 46px;
  padding: 0 0 84px;
}
.footer-column {
  min-width: 0;
}
.footer-grid h3 {
  margin: 0 0 30px;
  color: #fff;
  font-family: var(--sh-heading-font);
  font-size: 24px;
  line-height: 1.2;
}
.footer-grid p { color: rgba(255,255,255,.74); }
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
}
.footer-grid a:hover { color: var(--sh-yellow); }
.footer-trust {
  display: grid;
  gap: 8px;
  margin-top: 54px;
  max-width: 250px;
  color: rgba(255,255,255,.88);
}
.footer-trust span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--sh-yellow);
  font-size: 28px;
}
.footer-trust strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}
.footer-trust em {
  color: var(--sh-yellow);
  font-size: 12px;
  font-style: normal;
}
.footer-subscribe-title {
  margin: 0 0 46px;
  color: #fff !important;
  font-size: 14px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.social-links a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--sh-green);
  font-weight: 700;
  text-transform: uppercase;
}
.social-links a:hover {
  background: var(--sh-yellow);
  color: var(--sh-deep);
}
.footer-cta { background: var(--sh-yellow); color: var(--sh-deep); }
.footer-subscribe {
  margin-top: 24px;
}
.footer-subscribe p {
  margin: 0 0 10px;
}
.footer-contact-form,
.footer-form-slot {
  display: grid;
  gap: 18px;
}
.footer-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.footer-contact-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: 12px;
}
.footer-contact-form input,
.footer-contact-form textarea,
.footer-form-slot input,
.footer-form-slot textarea {
  width: 100%;
  min-height: 45px;
  border: 0;
  border-radius: 2px;
  background: #fff;
  color: var(--sh-ink);
  padding: 10px 12px;
  font: inherit;
}
.footer-contact-form textarea,
.footer-form-slot textarea {
  min-height: 108px;
  resize: vertical;
}
.footer-contact-form button,
.footer-form-slot button,
.footer-form-slot input[type="submit"] {
  justify-self: start;
  min-height: 38px;
  border: 0;
  border-radius: 4px;
  background: var(--sh-yellow);
  color: var(--sh-deep);
  padding: 9px 18px;
  font-weight: 700;
  cursor: pointer;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 84px 0 76px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  text-align: center;
}
.footer-bottom p {
  margin: 0 0 10px;
}
.footer-bottom h6 {
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .container { width: min(100% - 40px, 760px); }
  .header-main { grid-template-columns: 1fr auto auto auto; min-height: 126px; gap: 16px; }
  .charity-items-page {
    margin-top: -126px;
    padding-top: 20px;
  }
  .charity-top-spacer {
    width: min(100% - 20px, 748px);
  }
  .charity-hero {
    width: min(100% - 30px, 738px);
  }
  .product-filter-row {
    min-height: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .header-donate { display: none; }
  .header-donate-mobile {
    display: inline-flex;
    min-height: 52px;
    padding: 0 24px;
  }
  .header-search {
    display: inline-grid;
  }
  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    background: var(--sh-green);
    border-radius: var(--sh-radius);
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
  }
  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 8px 0 18px;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
  .primary-nav li {
    width: 100%;
    border-top: 1px solid var(--sh-line);
  }
  .primary-nav a {
    display: block;
    padding: 13px 0;
    font-size: 13px;
  }
  .hero {
    min-height: 560px;
    background-position: 64% center;
  }
  .hero::before {
    background: linear-gradient(90deg, rgba(36, 33, 29, .82), rgba(36, 33, 29, .42));
  }
  h1 { font-size: 30px; }
  h2 { font-size: 44px; }
  .hero p:not(.eyebrow) { max-width: 500px; }
  .feature-grid,
  .split,
  .donation-layout,
  .post-grid,
  .home-product-preview,
  .blog-layout,
  .campaign-grid,
  .campaign-single,
  .sponsor-grid,
  .feature-story-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .split { gap: 34px; }
  .split-reverse img { order: 2; }
  .section { padding: 72px 0; }
  .campaign-donate-panel { position: static; }
  .blog-list-item {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
  }
  .blog-list-item__content h2 { font-size: 26px; }
  .feature-grid {
    transform: none;
    padding-top: 40px;
  }
  .mission-strip { padding-bottom: 56px; }
  .feature-story-card { min-height: 260px; padding: 34px; }
  .donate-reference-card { padding: 56px 36px; }
  .woocommerce ul.products[class*=columns-] li.product,
  .woocommerce-page ul.products[class*=columns-] li.product {
    width: 48%;
  }
  body.home .hero {
    margin-top: -126px;
    min-height: 504px;
    padding-top: 126px;
    background-position: center top;
  }
  body.home .hero__inner {
    padding-top: 22px;
  }
  body.home .home-burgundy-preview {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  body.home .home-product-preview {
    gap: 34px;
    width: min(560px, 100%);
  }
  body.home .home-product-card img {
    aspect-ratio: 1.15 / 1;
  }
  body.home .home-product-card h3,
  body.home .home-product-card p {
    min-height: 0;
  }
  body.home .home-stats-section {
    padding: 52px 0 58px;
  }
  body.home .home-stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  body.home .home-donation-band {
    padding-top: 86px;
    padding-bottom: 62px;
  }
  body.home .donation-layout {
    padding: 54px 34px;
  }
  body.home .home-donation-image {
    max-height: 300px;
  }
  body.home .home-about-section .split {
    gap: 32px;
  }
  body.home .sponsors-section {
    padding: 58px 0 70px;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-top__inner { justify-content: center; flex-direction: column; gap: 2px; text-align: center; }
  .charity-items-page {
    margin-top: -125px;
    padding-top: 18px;
  }
  .charity-top-spacer {
    width: min(100% - 20px, 370px);
  }
  .charity-hero {
    width: min(100% - 20px, 370px);
    height: 282px;
  }
  .charity-product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-brand { font-size: 20px; }
  .brand-mark { width: 42px; height: 42px; }
  .hero {
    min-height: 520px;
    align-items: flex-end;
    padding-bottom: 64px;
    background-position: 68% center;
  }
  h1 { font-size: 28px; }
  h2 { font-size: 34px; }
  h3 { font-size: 22px; }
  .hero p:not(.eyebrow) { font-size: 18px; }
  .button,
  .footer-cta,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button {
    width: 100%;
    min-height: 46px;
    padding-inline: 16px;
  }
  .hero-actions { width: 100%; }
  .feature-grid article,
  .donation-card { padding: 24px; }
  .home-product-preview { gap: 24px; }
  .impact-list { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .blog-list-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .blog-list-item__image img {
    aspect-ratio: 4 / 3;
  }
  .sidebar-box { padding: 24px; }
  .donation-layout { gap: 28px; }
  .donate-reference-card { padding: 38px 22px; }
  .donate-reference-card h2 { font-size: 32px; }
  .contact-card { padding: 24px; }
  .feature-story-card { min-height: 220px; padding: 24px; }
  .post-card div,
  .campaign-card__body { padding: 20px; }
  .page-hero { padding: 70px 0; }
  .footer-grid { padding: 56px 0; }
  .woocommerce ul.products[class*=columns-] li.product,
  .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%;
  }
  body.home .hero {
    min-height: 352px;
    align-items: center;
    padding-bottom: 0;
  }
  body.home .hero__inner {
    padding-top: 56px;
  }
  body.home .hero .eyebrow {
    font-size: 14px;
  }
  body.home h1 {
    font-size: 21px;
  }
  body.home .hero p:not(.eyebrow) {
    max-width: 270px;
    margin: 10px 0 12px;
    font-size: 12px;
  }
  body.home .hero .button {
    width: auto;
    min-height: 30px;
    padding: 8px 16px;
    font-size: 11px;
  }
  body.home .home-burgundy-preview {
    padding-top: 34px;
    padding-bottom: 36px;
  }
  body.home .home-burgundy-preview::before {
    top: -38px;
    height: 48px;
  }
  body.home .split-section .eyebrow {
    font-size: 18px;
  }
  body.home .split-section h2 {
    font-size: 18px;
  }
  body.home .home-burgundy-preview .split p:not(.eyebrow) {
    font-size: 11px;
  }
  body.home .home-product-preview {
    gap: 28px;
  }
  body.home .home-product-card {
    max-width: 300px;
    margin: 0 auto;
  }
  body.home .home-product-card__image {
    margin-bottom: 12px;
  }
  body.home .home-product-card h3 {
    font-size: 12px;
  }
  body.home .home-product-card p {
    margin: 8px auto 10px;
    font-size: 10px;
  }
  body.home .home-product-card__link {
    min-height: 24px;
    padding: 5px 10px;
    font-size: 9px;
  }
  body.home .home-stats-section {
    padding: 44px 0 48px;
  }
  body.home .home-stat h3 {
    font-size: 20px;
  }
  body.home .home-stat h3 span {
    margin-bottom: 6px;
    font-size: 26px;
  }
  body.home .home-stat p {
    font-size: 11px;
  }
  body.home .donation-layout {
    padding: 42px 18px;
  }
  body.home .home-donation-copy h2,
  body.home .home-seat-section h2 {
    font-size: 22px;
  }
  body.home .home-donation-copy p:not(.eyebrow),
  body.home .home-seat-section p:last-of-type {
    font-size: 11px;
  }
  body.home .home-seat-section {
    padding: 54px 0 48px;
  }
  body.home .home-about-section {
    padding: 54px 0 58px;
  }
  body.home .home-about-section img {
    order: 2;
  }
  body.home .feature-story-strip {
    padding-bottom: 46px;
  }
  body.home .feature-story-card h2 {
    font-size: 12px;
  }
  body.home .feature-story-card p {
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .container { width: min(100% - 22px, 1180px); }
  .header-top { font-size: 12px; }
  .site-brand { font-size: 18px; }
  .brand-text { max-width: 160px; overflow-wrap: anywhere; }
  h1 { font-size: 26px; }
  h2 { font-size: 30px; }
  .hero { min-height: 500px; }
  .hero p:not(.eyebrow) { font-size: 16px; }
  .feature-grid article,
  .donation-card,
  .contact-card,
  .campaign-donate-panel { padding: 20px; }
}

.about-page,
.contacts-page,
.philanthropic-page,
.donate-page {
  background: var(--sh-cream);
}
.about-page .section,
.contacts-page .section,
.philanthropic-page .section {
  background: var(--sh-cream);
}
.about-copy-wide {
  max-width: 1080px;
}
.about-story-intro h2,
.about-history-layout h2,
.about-our-story h2,
.contacts-info-copy h2,
.contacts-form-panel h2,
.contacts-social-heading h2,
.philanthropic-page h2 {
  color: var(--sh-deep);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
}
.about-two-copy,
.about-story-reference-grid {
  display: grid;
  grid-template-columns: minmax(260px, 392px) 1fr 1fr;
  gap: 46px;
  margin-top: 28px;
  align-items: start;
}
.about-story-reference-grid img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}
.about-two-copy p,
.about-story-reference-grid p,
.about-timeline p,
.about-value-grid p,
.about-story-cards p,
.about-mission-cta p,
.contacts-info-copy p,
.contacts-info-grid p,
.contacts-social-heading p,
.philanthropy-copy p,
.initiative-grid p {
  color: var(--sh-muted);
}
.about-history-section,
.about-our-story,
.contacts-form-section,
.philanthropic-summary-section {
  background: #fff;
}
.about-history-layout {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.about-history-layout img,
.contacts-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.about-timeline {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
.about-timeline p {
  margin: 0;
}
.about-timeline strong {
  display: block;
  color: var(--sh-green);
  margin-bottom: 4px;
}
.about-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.about-value-grid article {
  min-width: 0;
}
.about-value-grid img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 24px;
}
.about-value-grid h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.about-our-story .container {
  text-align: center;
}
.about-our-story img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  margin: 34px 0;
}
.about-story-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
}
.about-story-cards article,
.initiative-grid article {
  border: 1px solid var(--sh-line);
  background: var(--sh-cream);
  padding: 32px;
}
.about-mission-cta {
  text-align: center;
  background: var(--sh-leaf) !important;
}
.about-mission-cta .container {
  max-width: 820px;
}
.about-mission-cta h4 {
  margin: 0 0 18px;
  font-family: var(--sh-heading-font);
  color: var(--sh-green);
  font-size: 32px;
  font-weight: 400;
}

.contacts-info-layout,
.contacts-reference-panel {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
  gap: 0;
  align-items: start;
}
.contacts-info-section {
  padding-top: 82px;
  padding-bottom: 76px;
}
.contacts-reference-panel {
  background: #d8d0c9;
  overflow: hidden;
}
.contacts-map-visual {
  min-height: 408px;
  position: relative;
  background: url("../images/google-map-placeholder.webp") center / cover no-repeat;
}
.contacts-map-visual::before,
.contacts-map-visual::after {
  display: none;
}
.map-label {
  display: none;
}
.map-pin {
  display: none;
}
.contacts-reference-panel .contacts-info-copy {
  padding: 68px 76px 54px;
}
.contacts-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 44px;
  margin-top: 64px;
}
.contacts-info-grid article {
  border-top: 1px solid rgba(112,103,105,.2);
  padding-top: 22px;
}
.contacts-info-grid h5 {
  margin: 0 0 14px;
  color: var(--sh-green);
  font-family: var(--sh-heading-font);
  font-size: 22px;
  font-weight: 400;
}
.contacts-form-layout {
  display: grid;
  grid-template-columns: minmax(320px, 48%) minmax(0, 1fr);
  gap: 62px;
  align-items: stretch;
}
.contacts-form-panel {
  align-self: center;
}
.contact-form-slot,
.contacts-form-panel .fallback-contact-form {
  margin-top: 28px;
}
.contact-form-slot .forminator-ui {
  margin: 0 !important;
}
.contacts-social-section {
  text-align: center;
}
.contacts-social-heading {
  max-width: 760px;
}
.contacts-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.contacts-instagram-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.philanthropic-title-section {
  padding-top: 76px;
  padding-bottom: 20px;
}
.philanthropic-title-section h2 {
  text-align: center;
}
.philanthropy-copy {
  max-width: 1120px;
  column-count: 3;
  column-gap: 42px;
}
.philanthropy-copy h6 {
  break-after: avoid;
  margin: 0 0 14px;
  color: var(--sh-green);
  font-family: var(--sh-body-font);
  font-size: 18px;
  line-height: 1.55;
}
.philanthropy-copy p {
  break-inside: avoid;
  margin: 0 0 18px;
}
.philanthropic-actions-section h2,
.philanthropic-initiatives-section h2 {
  text-align: center;
  margin-bottom: 36px;
}
.philanthropic-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.philanthropic-image-grid img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}
.initiative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.initiative-grid h2 {
  margin: 0 0 16px;
  text-align: left;
  font-size: clamp(24px, 2.4vw, 34px);
}

.single-post .page-hero {
  text-align: center;
}
.single-post .page-hero .post-meta {
  justify-content: center;
  margin-top: 20px;
}
.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) 280px;
  gap: 64px;
  align-items: start;
  justify-content: center;
}
.single-entry-content {
  background: #fff;
  padding: 42px;
  border: 1px solid var(--sh-line);
}
.single-entry-content p,
.single-entry-content li {
  color: var(--sh-muted);
}
.single-entry-content h2,
.single-entry-content h3,
.single-entry-content h4 {
  margin: 30px 0 12px;
}
.single-share-panel {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--sh-line);
  background: #fff;
  padding: 26px;
}
.single-share-panel h3 {
  font-size: 22px;
}
.single-share-panel a {
  color: var(--sh-green);
  font-weight: 700;
}
.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.single-tags a {
  border: 1px solid var(--sh-line);
  padding: 8px 12px;
  color: var(--sh-green);
}
.single-author-box,
.single-related {
  margin-top: 40px;
  border: 1px solid var(--sh-line);
  background: #fff;
  padding: 28px;
}
.single-author-box {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
}
.single-author-box img {
  border-radius: 50%;
}
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.single-post-nav a {
  border: 1px solid var(--sh-line);
  background: #fff;
  padding: 18px;
}
.single-post-nav span {
  display: block;
  color: var(--sh-green);
  font-size: 12px;
  font-weight: 700;
}
.related-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.related-post-grid article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 12px;
}
.related-post-grid h4 {
  margin: 0;
  font-family: var(--sh-heading-font);
  font-size: 18px;
  line-height: 1.25;
}

.donate-page .page-hero-light,
.campaigns-page .page-hero-light,
.woocommerce-page .page-hero-light {
  min-height: 427px;
  display: grid;
  place-items: center;
}
.donate-reference-section.section {
  padding-top: 54px;
  padding-bottom: 76px;
}
.donate-reference-card {
  border: 0;
  box-shadow: none;
  background: transparent;
  min-height: 0;
  padding: 0;
}
.donate-reference-card h2 {
  font-size: clamp(32px, 3vw, 44px);
}
.donate-reference-card .donation-form-slot {
  width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.donate-reference-card iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
}

@media (max-width: 900px) {
  .about-two-copy,
  .about-story-reference-grid,
  .about-history-layout,
  .about-story-cards,
  .contacts-info-layout,
  .contacts-form-layout,
  .philanthropic-image-grid,
  .initiative-grid,
  .single-layout {
    grid-template-columns: 1fr;
  }
  .about-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contacts-instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .philanthropy-copy {
    column-count: 2;
  }
  .single-share-panel {
    position: static;
  }
  .related-post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about-value-grid,
  .contacts-info-grid,
  .single-post-nav {
    grid-template-columns: 1fr;
  }
  .philanthropy-copy {
    column-count: 1;
  }
  .single-entry-content,
  .single-author-box,
  .single-related {
    padding: 22px;
  }
  .single-author-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Sprint interaction and responsive hardening. */
html {
  scroll-behavior: smooth;
}

.site-header {
  transition: box-shadow .25s ease, transform .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.primary-nav a,
.button,
.header-donate,
.campaign-donate-button,
.charity-product-card__button,
.home-product-card__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.footer-contact-form button {
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}

.primary-nav a:focus-visible,
.button:focus-visible,
.header-donate:focus-visible,
.campaign-donate-button:focus-visible,
.charity-product-card__button:focus-visible,
.home-product-card__link:focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible,
.menu-toggle:focus-visible,
.header-search:focus-visible {
  outline: 3px solid rgba(255, 183, 53, .72);
  outline-offset: 3px;
}

.button:hover,
.header-donate:hover,
.campaign-donate-button:hover,
.charity-product-card__button:hover,
.home-product-card__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.footer-contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 26px rgba(30, 30, 30, .16);
}

.post-card,
.campaign-card,
.charity-product-card,
.home-product-card,
.about-value-grid article,
.about-story-cards article,
.contacts-info-grid article,
.initiative-grid article,
.woocommerce ul.products li.product {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.post-card:hover,
.campaign-card:hover,
.charity-product-card:hover,
.home-product-card:hover,
.about-value-grid article:hover,
.about-story-cards article:hover,
.contacts-info-grid article:hover,
.initiative-grid article:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(36, 33, 29, .14);
  border-color: rgba(112, 39, 57, .22);
}

.post-card img,
.campaign-card img,
.charity-product-card img,
.home-product-card img,
.about-value-grid img,
.contacts-instagram-grid img,
.philanthropic-image-grid img,
.woocommerce ul.products li.product img {
  transition: transform .45s ease, filter .45s ease;
}

.post-card:hover img,
.campaign-card:hover img,
.charity-product-card:hover img,
.home-product-card:hover img,
.contacts-instagram-grid img:hover,
.philanthropic-image-grid img:hover,
.woocommerce ul.products li.product:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.post-card > a,
.campaign-card > a,
.charity-product-card__image,
.home-product-card__image,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
  overflow: hidden;
}

.sh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .68s ease var(--sh-reveal-delay, 0ms), transform .68s ease var(--sh-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.sh-reveal.is-visible,
.is-visible {
  opacity: 1;
  transform: none;
}

.sh-back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--sh-yellow);
  color: #141414;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .22s ease, transform .22s ease;
}

.sh-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.search-form input[type="submit"],
.search-form button,
.search-submit {
  min-height: 48px;
  min-width: 64px;
  padding: 12px 16px;
  cursor: pointer;
}

body.home .home-product-card__link {
  min-height: 40px;
  padding: 10px 18px;
}

.footer-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.social-links a {
  min-height: 40px;
}

.strayhelp-product-breadcrumbs a,
.strayhelp-single-product-category a,
.product_meta a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.quantity {
  display: inline-grid;
  grid-template-columns: 38px minmax(54px, 70px) 38px;
  align-items: stretch;
  border: 1px solid var(--sh-line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.quantity input.qty {
  width: 100% !important;
  min-height: 42px;
  border: 0 !important;
  border-inline: 1px solid var(--sh-line) !important;
  text-align: center;
  font-weight: 700;
}

.qty-step {
  border: 0;
  background: #faf6f2;
  color: var(--sh-green);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.qty-step:hover {
  background: var(--sh-yellow);
  color: #111;
}

.donation-form-slot,
.contact-form-slot,
.footer-form-slot {
  min-width: 0;
}

.donation-form-slot--home,
.donation-form-slot--campaign {
  width: 100%;
  display: grid;
  place-items: center;
}

.donation-form-slot--home .give-embed-form-wrapper.is-hide,
.donation-form-slot--campaign .give-embed-form-wrapper.is-hide {
  display: none !important;
}

.donation-form-slot--home .js-give-embed-form-modal-launcher-wrap,
.donation-form-slot--campaign .js-give-embed-form-modal-launcher-wrap {
  width: 100%;
  display: grid;
  place-items: center;
}

.donation-form-slot--home .givewp-donation-form-modal__open,
.donation-form-slot--home button,
.donation-form-slot--campaign .givewp-donation-form-modal__open,
.donation-form-slot--campaign button {
  width: min(236px, 100%) !important;
  min-height: 52px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: var(--sh-yellow) !important;
  color: #111 !important;
  box-shadow: 0 4px 5px rgba(36, 33, 29, .18) !important;
  font-family: var(--sh-body-font) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  cursor: pointer;
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.donation-form-slot--home .givewp-donation-form-modal__open:hover,
.donation-form-slot--home .givewp-donation-form-modal__open:focus-visible,
.donation-form-slot--campaign .givewp-donation-form-modal__open:hover,
.donation-form-slot--campaign .givewp-donation-form-modal__open:focus-visible {
  background: #eab048 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(36, 33, 29, .18) !important;
}

.campaign-donate-panel .donation-form-slot--campaign + .campaign-donate-link {
  display: none;
}

.donation-form-slot.is-empty,
.contact-form-slot.is-empty,
.footer-form-slot.is-empty {
  min-height: 140px;
  border: 1px dashed rgba(112, 39, 57, .32);
  background: rgba(255,255,255,.62);
}

.forminator-ui,
.give-form-wrap,
.givewp-form,
.woocommerce form {
  max-width: 100%;
}

.forminator-ui input,
.forminator-ui textarea,
.give-form-wrap input,
.give-form-wrap textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  max-width: 100%;
}

.menu-toggle {
  position: relative;
}

.menu-toggle span {
  transition: transform .22s ease, opacity .22s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.is-menu-open {
  overflow-x: hidden;
}

.page-hero,
.hero,
.charity-hero,
.contact-visual-hero {
  background-size: cover;
  background-position: center;
}

.about-page .page-hero {
  background-image: linear-gradient(rgba(0,0,0,.24), rgba(0,0,0,.36)), url("../images/about-1.jpg");
  background-position: center 42%;
}

.about-reference-title {
  text-align: center;
  font-family: var(--sh-body-font) !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  margin: 0 0 28px !important;
}

.campaign-card img,
.post-card img,
.charity-product-card img,
.home-product-card img,
.woocommerce ul.products li.product img {
  background: #eee6df;
}

.contacts-reference-panel,
.contacts-form-layout,
.about-history-layout,
.about-story-reference-grid,
.philanthropic-image-grid,
.initiative-grid,
.single-layout {
  min-width: 0;
}

.contacts-reference-panel > *,
.contacts-form-layout > *,
.about-history-layout > *,
.about-story-reference-grid > *,
.initiative-grid > *,
.single-layout > * {
  min-width: 0;
}

@media (max-width: 1180px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .primary-nav {
    border-top: 1px solid rgba(255,255,255,.14);
    animation: shMenuDrop .22s ease;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav a {
    width: 100%;
    min-height: 48px;
  }
}

@keyframes shMenuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 760px);
  }

  .header-main {
    grid-template-columns: 1fr auto auto;
  }

  .header-search {
    justify-self: end;
  }

  .header-donate-mobile {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2px;
  }

  .primary-nav {
    grid-column: 1 / -1;
  }

  .hero,
  body.home .hero {
    min-height: clamp(520px, 78vh, 680px);
  }

  .hero__inner,
  body.home .hero__inner {
    max-width: 620px;
    padding-top: 70px;
    padding-bottom: 74px;
  }

  .mission-strip {
    margin-top: 0;
  }

  .feature-grid,
  .post-grid,
  .campaign-grid,
  .home-product-preview,
  .charity-product-grid,
  .sponsor-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contacts-reference-panel {
    grid-template-columns: 1fr !important;
  }

  .feature-grid article,
  .post-card,
  .campaign-card,
  .charity-product-card,
  .woocommerce ul.products li.product {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .about-story-reference-grid,
  .about-history-layout,
  .contacts-reference-panel,
  .contacts-form-layout,
  .initiative-grid,
  .single-layout {
    gap: 30px;
  }

  .contacts-reference-panel {
    background: transparent;
  }

  .contacts-reference-panel .contacts-info-copy {
    padding: 34px 26px;
    background: #d8d0c9;
  }

  .contacts-map-visual {
    min-height: 330px;
  }

  .contacts-photo img,
  .about-history-layout img {
    min-height: 360px;
  }

  .contacts-form-panel {
    padding-inline: 0;
  }

  .philanthropy-copy {
    column-gap: 28px;
  }

  .single-entry-content {
    padding: 30px;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    float: none !important;
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1,
  .hero h1,
  .page-hero h1,
  .charity-hero h1 {
    overflow-wrap: anywhere;
  }

  .section {
    padding: 50px 0;
  }

  .page-hero,
  .donate-page .page-hero-light,
  .campaigns-page .page-hero-light,
  .woocommerce-page .page-hero-light {
    min-height: 300px;
    padding: 58px 0;
  }

  .page-hero h1 {
    font-size: clamp(34px, 14vw, 50px);
  }

  .hero .eyebrow,
  body.home .hero .eyebrow {
    font-size: clamp(18px, 5vw, 24px);
  }

  .hero p:not(.eyebrow),
  body.home .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .button,
  .header-donate,
  .campaign-donate-button,
  .charity-product-card__button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button {
    width: 100%;
    min-height: 46px;
  }

  .hero-actions {
    width: 100%;
  }

  .contacts-info-grid,
  .about-value-grid,
  .about-story-cards,
  .related-post-grid,
  .single-post-nav {
    grid-template-columns: 1fr;
  }

  .contacts-reference-panel .contacts-info-copy,
  .about-story-cards article,
  .initiative-grid article,
  .single-entry-content,
  .single-author-box,
  .single-related,
  .campaign-donate-panel {
    padding: 22px;
  }

  .contacts-map-visual {
    min-height: 260px;
  }

  .map-label {
    left: 18px;
    right: 18px;
    max-width: none;
  }

  .contacts-instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .about-value-grid img {
    width: 142px;
    height: 142px;
  }

  .footer-form-row {
    grid-template-columns: 1fr;
  }

  .sh-back-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    font-size: 21px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-main {
    gap: 10px;
    min-height: 108px;
  }

  .site-brand img {
    width: 52px;
    height: 52px;
  }

  .site-brand .brand-text {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .header-search,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .primary-nav a {
    white-space: normal;
  }

  .hero,
  body.home .hero {
    min-height: 500px;
  }

  .feature-grid article,
  .post-card div,
  .campaign-card__body,
  .charity-product-card,
  .contact-card {
    padding: 18px;
  }

  .contacts-photo img,
  .about-history-layout img {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Visual polish pass: align the most visible first screens with the reference. */
body.home .hero__inner {
  padding-top: 20px;
}

body.home .hero .eyebrow,
body.home h1 {
  font-family: var(--sh-body-font);
  font-weight: 600;
}

body.home .hero .eyebrow {
  font-size: 28px;
  line-height: 1.2;
}

body.home h1 {
  font-size: 30px;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .header-main {
    min-height: 120px;
    grid-template-columns: minmax(0, 1fr) 52px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-brand {
    align-items: flex-start;
  }

  .header-search,
  .header-donate,
  .header-donate-mobile {
    display: none !important;
  }

  .menu-toggle {
    grid-column: 2;
    justify-self: end;
    width: 52px !important;
    height: 52px !important;
    gap: 6px;
    border-radius: 6px;
    background: var(--sh-yellow) !important;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
    background: #111 !important;
  }

  .primary-nav {
    grid-column: 1 / -1;
  }

  body.home .hero {
    min-height: 352px !important;
    margin-top: -120px;
    padding-top: 120px;
    align-items: center;
    padding-bottom: 0;
    background-position: center top;
  }

  body.home .hero__inner {
    padding-top: 0;
    padding-bottom: 26px;
  }

  body.home .hero .eyebrow {
    max-width: 330px;
    font-size: 20px;
    line-height: 1.22;
  }

  body.home h1 {
    font-size: 22px;
  }

  body.home .hero p:not(.eyebrow) {
    max-width: 320px;
    margin: 16px 0 22px;
    font-size: 16px;
    line-height: 1.45;
  }

  body.home .hero .button {
    width: auto;
    min-height: 40px;
    padding: 10px 24px;
    font-size: 15px;
  }

  body.home .home-burgundy-preview {
    padding-top: 42px;
  }

  body.home .split-section .eyebrow {
    font-size: 21px;
    line-height: 1.2;
  }

  body.home .split-section h2 {
    font-size: 24px;
    line-height: 1.22;
  }

  body.home .home-burgundy-preview .split p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.35;
  }

  .contacts-page .contact-visual-hero {
    min-height: 288px;
    margin-top: -120px;
    padding-top: 120px;
    background-position: center top;
  }

  .contacts-page .contact-visual-hero::after {
    height: 54px;
  }

  .contacts-page .contact-visual-hero .container {
    transform: translateY(10px);
  }

  .contacts-page .contacts-info-section {
    padding-top: 60px;
  }

  .contacts-page .contacts-map-visual {
    display: none;
  }

  .contacts-page .contacts-reference-panel {
    width: min(100% - 40px, 760px);
    background: #d8d0c9;
  }

  .contacts-page .contacts-reference-panel .contacts-info-copy {
    padding: 48px 20px;
  }

  .contacts-page .contacts-info-copy h2 {
    font-family: var(--sh-body-font);
    font-size: 24px;
    font-weight: 400;
  }

  .contacts-page .contacts-info-grid {
    gap: 26px;
    margin-top: 48px;
  }

  .contacts-page .contacts-info-grid article {
    border-top: 0;
    padding-top: 0;
  }

  .contacts-page .contacts-info-grid h5 {
    font-family: var(--sh-body-font);
    font-size: 16px;
    font-weight: 400;
  }
}

.about-page .page-hero {
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 0;
  text-align: center;
}

.about-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 20, .42);
}

.about-page .page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  background: var(--sh-cream);
  clip-path: polygon(0 74%, 50% 0, 100% 74%, 100% 100%, 0 100%);
  z-index: 1;
}

.about-page .page-hero .container {
  position: relative;
  z-index: 2;
  transform: translateY(36px);
}

.about-page .page-hero .breadcrumbs {
  color: var(--sh-yellow);
  text-transform: none;
}

.about-page .page-hero h1 {
  font-family: var(--sh-body-font);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 400;
}

@media (max-width: 640px) {
  .about-page .page-hero {
    min-height: 288px;
    margin-top: -120px;
    padding-top: 120px;
  }

  .about-page .page-hero::after {
    height: 54px;
  }

  .about-page .page-hero .container {
    transform: translateY(10px);
  }

  .about-reference-title {
    font-size: 24px !important;
    margin-bottom: 22px !important;
  }
}

@media (min-width: 901px) {
  .about-page .page-hero,
  .contacts-page .contact-visual-hero {
    margin-top: -129px;
    padding-top: 129px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .about-page .page-hero,
  .contacts-page .contact-visual-hero {
    margin-top: -126px;
    padding-top: 126px;
  }
}

/* Codex Hostinger live fixes: Elementor header/footer and cache-safe overrides. */
header.elementor-location-header {
  width: min(var(--sh-page-width, 1280px), 100%) !important;
  min-height: 129px !important;
  margin: 0 auto !important;
  background: #454342 !important;
  color: #fff !important;
  z-index: 80 !important;
}

header.elementor-location-header > .e-con,
header.elementor-location-header .e-con.e-parent {
  min-height: 129px !important;
  background: #454342 !important;
}

header.elementor-location-header .elementor-widget-theme-site-logo img,
header.elementor-location-header img.custom-logo,
header.elementor-location-header .elementor-widget-image img {
  width: 62px !important;
  max-width: 62px !important;
  height: 62px !important;
  max-height: 62px !important;
  object-fit: contain !important;
}

header.elementor-location-header .elementor-widget-heading h1,
header.elementor-location-header .elementor-widget-heading h2,
header.elementor-location-header .elementor-widget-heading h3,
header.elementor-location-header .elementor-widget-heading h4,
header.elementor-location-header .elementor-widget-heading h5,
header.elementor-location-header .elementor-widget-heading h6,
header.elementor-location-header .elementor-heading-title {
  color: #fff !important;
  font-family: var(--sh-body-font, "Work Sans", Arial, sans-serif) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
}

header.elementor-location-header .elementor-nav-menu a,
header.elementor-location-header .elementor-item {
  color: #fff !important;
  font-family: var(--sh-body-font, "Work Sans", Arial, sans-serif) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  min-height: 44px !important;
  border-radius: 6px !important;
}

header.elementor-location-header .elementor-nav-menu a:hover,
header.elementor-location-header .elementor-item-active {
  background: #d3f3e6 !important;
  color: #000 !important;
}

body .button-primary,
body .header-donate,
body.home .hero .button,
body.home .hero .button-primary,
body .elementor-button,
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input.button {
  background: #ffb735 !important;
  color: #111 !important;
  border-color: #ffb735 !important;
}

body .button-primary:hover,
body.home .hero .button:hover,
body .elementor-button:hover,
body .woocommerce a.button:hover,
body .woocommerce button.button:hover,
body .woocommerce input.button:hover {
  background: #eab048 !important;
  color: #111 !important;
}

footer.elementor-location-footer {
  width: min(var(--sh-page-width, 1280px), 100%) !important;
  margin: 0 auto !important;
  background: #1e1e1e !important;
}

@media (max-width: 640px) {
  header.elementor-location-header,
  header.elementor-location-header > .e-con,
  header.elementor-location-header .e-con.e-parent {
    min-height: 124px !important;
  }

  header.elementor-location-header .elementor-widget-theme-site-logo img,
  header.elementor-location-header img.custom-logo,
  header.elementor-location-header .elementor-widget-image img {
    width: 62px !important;
    max-width: 62px !important;
    height: 62px !important;
    max-height: 62px !important;
  }

  header.elementor-location-header .elementor-heading-title {
    font-size: 13px !important;
    letter-spacing: 1.4px !important;
  }

  header.elementor-location-header .elementor-menu-toggle {
    width: 52px !important;
    height: 52px !important;
    border-radius: 6px !important;
    background: #ffb735 !important;
    color: #111 !important;
  }

  body.home .hero .button,
  body.home .hero .button-primary {
    background: #ffb735 !important;
    color: #111 !important;
  }
}

/* Codex remote pass: restore native header grid and About reference hero after Elementor removal. */
@media (min-width: 1181px) {
  .site-header .header-main {
    grid-template-columns: 230px minmax(0, 1fr) 44px 118px !important;
    min-height: 129px !important;
    gap: 16px !important;
    align-items: center !important;
  }

  .site-header .site-brand {
    grid-column: 1 !important;
    justify-self: center !important;
    align-items: center !important;
  }

  .site-header .primary-nav {
    grid-column: 2 !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  .site-header .primary-nav ul {
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }

  .site-header .primary-nav a {
    padding-inline: 10px !important;
    font-size: 15px !important;
  }

  .site-header .header-search {
    grid-column: 3 !important;
  }

  .site-header .header-donate:not(.header-donate-mobile) {
    grid-column: 4 !important;
    justify-self: end !important;
    width: auto !important;
    min-width: 98px !important;
    margin: 0 !important;
  }
}

body.about-reference-page .about-page .page-hero,
body.page-template-page-about-us .about-page .page-hero,
body.page-id-164 .about-page .page-hero,
body.page-id-455 .about-page .page-hero,
.about-page .page-hero {
  background-image: linear-gradient(rgba(20, 18, 17, .52), rgba(20, 18, 17, .52)), url("../images/about-1.jpg") !important;
  background-color: #2a2522 !important;
  background-size: cover !important;
  background-position: center 42% !important;
}
