@font-face {
  font-family: "Alexandria";
  src: url("../fonts/Alexandria-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --brand-red: #d22229;
  --brand-burgundy: #6e0d16;
  --brand-yellow: #ffd529;
  --brand-orange: #f7962c;
  --brand-purple: #93509f;
  --bg-primary: #ffffff;
  --bg-warm: #fff9f7;
  --bg-soft: #fff3f0;
  --text-primary: #6e0d16;
  --text-secondary: rgba(110, 13, 22, 0.72);
  --border-soft: rgba(110, 13, 22, 0.1);
  --border-medium: rgba(110, 13, 22, 0.16);
  --white-muted: rgba(255, 255, 255, 0.76);
  --white-soft: rgba(255, 255, 255, 0.14);
  --footer-burgundy: #4f0710;
  --shadow-soft: 0 18px 46px rgba(110, 13, 22, 0.09);
  --shadow-card: 0 24px 56px rgba(110, 13, 22, 0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --section-space: clamp(100px, 9vw, 140px);
  --shb-primary: var(--brand-red);
  --shb-burgundy: var(--brand-burgundy);
  --shb-yellow: var(--brand-yellow);
  --shb-orange: var(--brand-orange);
  --shb-violet: var(--brand-purple);
  --shb-black: #000000;
  --shb-white: var(--bg-primary);
  --shb-light: var(--bg-warm);
  --shb-ink: var(--text-primary);
  --shb-forest: var(--brand-red);
  --shb-forest-dark: var(--brand-burgundy);
  --shb-cream: var(--bg-warm);
  --shb-paper: var(--bg-primary);
  --shb-line: var(--border-soft);
  --shb-red: var(--brand-red);
  --shb-sky: var(--brand-yellow);
  --shb-radius: 18px;
  --shb-shadow: var(--shadow-soft);
  --shb-shell: min(1280px, calc(100vw - 64px));
  --shb-display: clamp(3.5rem, 6vw, 6rem);
  --shb-h1: clamp(3.1rem, 6vw, 6rem);
  --shb-h2: clamp(2.2rem, 3.8vw, 4.25rem);
  --shb-h3: clamp(1.35rem, 2vw, 2rem);
}

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

html { scroll-behavior: smooth; }

body.shb-site {
  margin: 0;
  color: var(--shb-ink);
  background: var(--shb-cream);
  font-family: "Alexandria", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.shb-rtl {
  font-family: "Alexandria", Arial, sans-serif;
}

body.shb-site img { display: block; max-width: 100%; height: auto; }
body.shb-site a { text-decoration: none; }
body.shb-site button,
body.shb-site input,
body.shb-site textarea { font: inherit; }
body.shb-site address { font-style: normal; }

.shb-shell { width: var(--shb-shell); margin-inline: auto; }
.shb-section { padding: clamp(86px, 11vw, 152px) 0; }

.shb-skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 9999;
  padding: 12px 16px;
  color: #fff;
  background: var(--shb-ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.shb-skip-link:focus { transform: translateY(0); }

.shb-utility {
  color: #fff;
  background: var(--shb-ink);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.shb-utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.shb-utility-meta,
.shb-utility-contact { display: flex; align-items: center; gap: 16px; }
.shb-utility-contact a { color: inherit; opacity: 0.86; transition: opacity 160ms ease; }
.shb-utility-contact a:hover { opacity: 1; }
.shb-utility-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--shb-orange); }

.shb-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 1000;
  border-block-end: 1px solid var(--shb-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}
.admin-bar .shb-header { inset-block-start: 32px; }
.shb-header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.shb-brand { width: 78px; flex: 0 0 auto; }
.shb-brand img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.shb-navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.shb-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 0.88rem;
  font-weight: 700;
}
.shb-nav-list a { position: relative; padding-block: 12px; color: var(--shb-ink); }
.shb-nav-list a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 5px;
  height: 2px;
  background: var(--shb-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.shb-rtl .shb-nav-list a::after { transform-origin: right; }
.shb-nav-list a:hover::after,
.shb-nav-list a[aria-current="page"]::after { transform: scaleX(1); }
.shb-nav-actions { display: flex; align-items: center; gap: 16px; }
.shb-language {
  min-width: 64px;
  padding: 8px 0;
  color: var(--shb-red);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}
.shb-menu-toggle { display: none; }

.shb-button {
  min-height: 50px;
  padding: 14px 23px;
  border: 1px solid var(--shb-red);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: var(--shb-red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}
.shb-rtl .shb-button { letter-spacing: 0; }
.shb-button:hover { color: var(--shb-red); background: transparent; transform: translateY(-2px); }
.shb-button-small { min-height: 42px; padding: 10px 18px; font-size: 0.7rem; }
.shb-button-dark { color: #fff; border-color: var(--shb-red); background: var(--shb-red); }
.shb-button-dark:hover { color: var(--shb-red); background: transparent; }
.shb-button-light { color: var(--shb-forest-dark); border-color: var(--shb-paper); background: var(--shb-paper); }
.shb-button-light:hover { color: var(--shb-paper); background: transparent; }
.shb-button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.shb-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  border-block-end: 1px solid currentColor;
  color: var(--shb-red);
  font-size: 0.88rem;
  font-weight: 800;
}
.shb-text-link span { transition: transform 180ms ease; }
.shb-text-link:hover span { transform: translate(3px, -3px); }
.shb-rtl .shb-text-link:hover span { transform: translate(-3px, -3px); }
.shb-text-link-light { color: #fff; }

.shb-eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--shb-red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.shb-eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.shb-eyebrow-light { color: #fff; }
.shb-lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.72; }

.shb-hero {
  position: relative;
  overflow: hidden;
  background: var(--shb-paper);
}
.shb-hero::before {
  content: "";
  position: absolute;
  inset-block-start: -220px;
  inset-inline-start: -190px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(210, 34, 41, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(210, 34, 41, 0.03), 0 0 0 140px rgba(110, 13, 22, 0.025);
}
.shb-hero-grid {
  min-height: min(810px, calc(100vh - 130px));
  padding-block: clamp(72px, 9vw, 126px) 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}
.shb-hero-copy { position: relative; z-index: 2; }
.shb-hero h1 {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: var(--shb-display);
  line-height: 0.91;
  letter-spacing: -0.065em;
  text-wrap: balance;
}
.shb-rtl .shb-hero h1 { letter-spacing: -0.035em; line-height: 1.08; }
.shb-hero-intro { max-width: 630px; margin: 0 0 34px; font-size: clamp(1.08rem, 1.55vw, 1.34rem); line-height: 1.7; }
.shb-hero-note { max-width: 440px; margin: 54px 0 0; padding-inline-start: 18px; border-inline-start: 3px solid var(--shb-orange); color: rgba(110,13,22,.72); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.shb-rtl .shb-hero-note { letter-spacing: 0; }
.shb-hero-visual { position: relative; }
.shb-window-frame {
  position: relative;
  aspect-ratio: 0.94;
  max-height: 620px;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 48% 48% 22px 22px;
  background: var(--shb-forest);
  box-shadow: var(--shb-shadow);
}
.shb-window-frame::before,
.shb-window-frame::after { content: ""; position: absolute; z-index: 3; background: var(--shb-cream); }
.shb-window-frame::before { inset-block: 0; inset-inline-start: 49.3%; width: 8px; transform: translateX(-50%); }
.shb-window-frame::after { inset-inline: 0; inset-block-start: 48%; height: 8px; transform: translateY(-50%); }
.shb-window-image { width: 100%; height: 100%; overflow: hidden; border-radius: 47% 47% 10px 10px; }
.shb-window-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.03); }
.shb-window-logo {
  position: absolute;
  z-index: 5;
  inset-inline-start: 50%;
  inset-block-start: 49%;
  width: 58%;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 18px 32px rgba(110,13,22,.25));
  transform: translate(-50%, -50%) rotate(-2deg);
}
.shb-rtl .shb-window-logo { transform: translate(50%, -50%) rotate(2deg); }
.shb-shutter { position: absolute; z-index: -1; width: 22%; height: 58%; inset-block-start: 19%; border: 7px solid var(--shb-ink); background: repeating-linear-gradient(to bottom, var(--shb-orange) 0 12px, var(--shb-ink) 12px 17px); }
.shb-shutter-one { inset-inline-start: -13%; transform: rotate(-7deg); }
.shb-shutter-two { inset-inline-end: -13%; background: repeating-linear-gradient(to bottom, var(--shb-violet) 0 12px, var(--shb-ink) 12px 17px); transform: rotate(7deg); }
.shb-hero-index { position: absolute; inset-inline-end: -24px; inset-block-end: -35px; display: grid; color: var(--shb-red); font-size: 2.8rem; font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.shb-hero-ticker { min-height: 58px; padding: 16px 24px; display: flex; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 70px); color: #fff; background: var(--shb-red); font-size: .72rem; font-weight: 900; letter-spacing: .17em; white-space: nowrap; }
.shb-hero-ticker i { width: 7px; height: 7px; border-radius: 50%; background: var(--shb-orange); }

.shb-intro-section { background: var(--shb-cream); }
.shb-intro-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(54px, 9vw, 140px); align-items: start; }
.shb-intro-grid h2,
.shb-section-heading h2,
.shb-approach-copy h2,
.shb-vision-grid h2,
.shb-partner-copy h2,
.shb-involved-grid h2,
.shb-page-cta h2 { margin: 0; font-size: var(--shb-h2); line-height: 1.02; letter-spacing: -.045em; text-wrap: balance; }
.shb-rtl .shb-intro-grid h2,
.shb-rtl .shb-section-heading h2,
.shb-rtl .shb-approach-copy h2,
.shb-rtl .shb-vision-grid h2,
.shb-rtl .shb-partner-copy h2,
.shb-rtl .shb-involved-grid h2,
.shb-rtl .shb-page-cta h2 { letter-spacing: -.025em; line-height: 1.22; }
.shb-intro-grid .shb-lead { margin: 0 0 32px; }

.shb-areas-section { background: var(--shb-paper); }
.shb-section-heading { margin-block-end: 56px; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: 54px; align-items: end; }
.shb-section-heading > p { margin: 0 0 5px; color: rgba(110,13,22,.72); font-size: 1.05rem; }
.shb-section-heading-end { align-items: end; }
.shb-section-heading-end > .shb-text-link { justify-self: end; }
.shb-areas-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.shb-area-card {
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--shb-line);
  border-radius: var(--shb-radius);
  background: var(--shb-cream);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.shb-area-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(110,13,22,.11); }
.shb-area-number { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--accent, var(--shb-forest)); font-size: .74rem; font-weight: 900; }
.shb-area-card h3,
.shb-area-card h2 { margin: 0 0 14px; font-size: clamp(1.45rem, 2.3vw, 2.2rem); line-height: 1.08; letter-spacing: -.035em; }
.shb-rtl .shb-area-card h3,
.shb-rtl .shb-area-card h2 { line-height: 1.3; letter-spacing: -.015em; }
.shb-area-card p { margin: 0; color: rgba(110,13,22,.72); }
.shb-area-forest { --accent: var(--shb-forest); }
.shb-area-red { --accent: var(--shb-red); }
.shb-area-sky { --accent: var(--shb-sky); }
.shb-area-sky .shb-area-number { color: var(--shb-burgundy); }
.shb-area-violet { --accent: var(--shb-violet); }
.shb-area-orange { --accent: var(--shb-orange); }

.shb-approach-section { overflow: hidden; }
.shb-approach-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr); gap: clamp(60px, 9vw, 140px); align-items: center; }
.shb-approach-media { position: relative; min-height: 620px; }
.shb-photo-frame { position: absolute; inset-block-start: 0; inset-inline-start: 0; width: 78%; aspect-ratio: .92; padding: 18px; border-radius: 48% 48% 22px 22px; background: var(--shb-violet); transform: rotate(-3deg); }
.shb-rtl .shb-photo-frame { transform: rotate(3deg); }
.shb-photo-frame img { width: 100%; height: 100%; border-radius: 48% 48% 12px 12px; object-fit: cover; }
.shb-approach-mini { position: absolute; inset-inline-end: 0; inset-block-end: 0; width: 46%; aspect-ratio: 1; padding: 10px; border-radius: 20px; background: var(--shb-orange); box-shadow: var(--shb-shadow); transform: rotate(4deg); }
.shb-rtl .shb-approach-mini { transform: rotate(-4deg); }
.shb-approach-mini img { width: 100%; height: 100%; border-radius: 13px; object-fit: cover; }
.shb-approach-copy h2 { margin-block-end: 28px; }
.shb-approach-copy blockquote,
.shb-founder-copy blockquote { margin: 34px 0; padding: 24px 0 24px 26px; border: 0; border-inline-start: 4px solid var(--shb-red); color: var(--shb-burgundy); font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 800; line-height: 1.45; }
.shb-rtl .shb-approach-copy blockquote,
.shb-rtl .shb-founder-copy blockquote { padding: 24px 26px 24px 0; }

.shb-impact-band { padding: clamp(80px, 10vw, 132px) 0; color: #fff; background: var(--shb-forest-dark); }
.shb-impact-band::selection { color: var(--shb-ink); background: var(--shb-orange); }
.shb-impact-heading { margin-block-end: 56px; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(260px,.8fr); gap: 50px; align-items: end; }
.shb-impact-heading h2 { max-width: 720px; margin: 0; font-size: var(--shb-h2); line-height: 1; letter-spacing: -.05em; }
.shb-rtl .shb-impact-heading h2 { line-height: 1.2; }
.shb-impact-heading > p { margin: 0 0 4px; color: rgba(255,255,255,.66); }
.shb-stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-block-start: 1px solid rgba(255,255,255,.22); border-inline-start: 1px solid rgba(255,255,255,.22); }
.shb-stat { min-height: 210px; padding: 30px; border-inline-end: 1px solid rgba(255,255,255,.22); border-block-end: 1px solid rgba(255,255,255,.22); display: flex; flex-direction: column; justify-content: space-between; }
.shb-stat strong { color: var(--shb-orange); font-size: clamp(2.5rem, 5.5vw, 5rem); line-height: .95; letter-spacing: -.06em; }
.shb-stat span { max-width: 210px; color: rgba(255,255,255,.78); font-size: .85rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.shb-rtl .shb-stat span { letter-spacing: 0; }

.shb-featured-section { background: var(--shb-cream); }
.shb-initiative-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.shb-initiative-grid-featured .shb-initiative-card:nth-child(2),
.shb-initiative-grid-featured .shb-initiative-card:nth-child(5) { transform: translateY(38px); }
.shb-initiative-card { overflow: hidden; border: 1px solid var(--shb-line); border-radius: var(--shb-radius); background: var(--shb-paper); }
.shb-initiative-image { position: relative; aspect-ratio: 1; overflow: hidden; background: #ddd; }
.shb-initiative-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.shb-initiative-card:hover .shb-initiative-image img { transform: scale(1.045); }
.shb-initiative-image > span { position: absolute; inset-block-start: 16px; inset-inline-end: 16px; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: rgba(110,13,22,.9); font-size: .72rem; font-weight: 900; backdrop-filter: blur(8px); }
.shb-initiative-body { padding: 27px; }
.shb-card-label { margin: 0 0 12px; color: var(--shb-red) !important; font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.shb-rtl .shb-card-label { letter-spacing: 0; }
.shb-initiative-body h3,
.shb-initiative-body h2 { margin: 0 0 12px; font-size: var(--shb-h3); line-height: 1.14; letter-spacing: -.035em; }
.shb-initiative-body p { margin: 0; color: rgba(110,13,22,.7); }

.shb-partner-panel { padding: clamp(90px, 11vw, 150px) 0; color: #fff; background: var(--shb-red); }
.shb-partner-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); gap: clamp(54px, 8vw, 120px); align-items: center; }
.shb-partner-photo { position: relative; }
.shb-partner-photo::before { content: ""; position: absolute; inset: -20px 24px 24px -20px; border: 3px solid var(--shb-yellow); border-radius: 24px; transform: rotate(-3deg); }
.shb-rtl .shb-partner-photo::before { inset: -20px -20px 24px 24px; transform: rotate(3deg); }
.shb-partner-photo img { position: relative; width: 100%; border-radius: 20px; }
.shb-partner-copy h2 { margin-block-end: 24px; }
.shb-partner-copy > p:not(.shb-eyebrow) { max-width: 670px; margin: 0 0 32px; color: rgba(255,255,255,.8); font-size: 1.1rem; }

.shb-vision-section { background: var(--shb-paper); }
.shb-vision-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(54px, 10vw, 150px); }
.shb-vision-grid .shb-lead { max-width: 520px; }
.shb-vision-list { list-style: none; margin: 0; padding: 0; border-block-start: 1px solid var(--shb-line); }
.shb-vision-list li { min-height: 76px; padding: 18px 0; border-block-end: 1px solid var(--shb-line); display: grid; grid-template-columns: 58px 1fr; align-items: center; font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 800; }
.shb-vision-list span { color: var(--shb-red); font-size: .72rem; }

.shb-involved-panel { padding: clamp(90px, 11vw, 150px) 0; overflow: hidden; color: #fff; background: var(--shb-red); }
.shb-involved-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(340px,.9fr); gap: clamp(56px, 9vw, 140px); align-items: center; }
.shb-involved-grid h2 { margin-block-end: 24px; }
.shb-involved-grid > div:first-child > p:not(.shb-eyebrow) { max-width: 660px; margin: 0 0 34px; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.shb-involved-photo { position: relative; transform: rotate(4deg); }
.shb-rtl .shb-involved-photo { transform: rotate(-4deg); }
.shb-involved-photo::before { content: ""; position: absolute; inset: -14px; border: 3px solid var(--shb-ink); border-radius: 26px; }
.shb-involved-photo img { position: relative; border-radius: 18px; }

.shb-page-hero { position: relative; padding: clamp(92px, 12vw, 160px) 0 clamp(82px, 10vw, 130px); overflow: hidden; background: var(--shb-paper); }
.shb-page-hero-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr); gap: clamp(48px, 9vw, 130px); align-items: end; }
.shb-page-hero h1 { max-width: 860px; margin: 0; font-size: var(--shb-h1); line-height: .95; letter-spacing: -.06em; text-wrap: balance; }
.shb-rtl .shb-page-hero h1 { line-height: 1.15; letter-spacing: -.035em; }
.shb-page-intro { margin: 0 0 6px; color: rgba(110,13,22,.72); font-size: clamp(1.12rem, 1.9vw, 1.5rem); line-height: 1.7; }
.shb-page-marker { position: absolute; inset-inline-end: 5vw; inset-block-start: 34px; display: flex; gap: 8px; transform: rotate(-5deg); }
.shb-rtl .shb-page-marker { transform: rotate(5deg); }
.shb-page-marker span { width: 42px; height: 72px; border: 4px solid var(--shb-ink); background: var(--shb-red); }
.shb-page-marker span:nth-child(2) { background: var(--shb-orange); }
.shb-page-marker span:nth-child(3) { background: var(--shb-violet); }
.shb-page-hero-compact { min-height: 60vh; }
.shb-page-hero-compact .shb-shell { max-width: 900px; }
.shb-page-hero-compact p:not(.shb-eyebrow) { margin: 24px 0 32px; font-size: 1.2rem; }

.shb-founder-grid { display: grid; grid-template-columns: minmax(320px,.78fr) minmax(0,1.22fr); gap: clamp(58px, 9vw, 140px); align-items: center; }
.shb-founder-photo { position: relative; padding: 24px; border-radius: 48% 48% 22px 22px; background: var(--shb-sky); }
.shb-founder-photo > img { width: 100%; aspect-ratio: .95; border-radius: 48% 48% 12px 12px; object-fit: cover; object-position: center top; }
.shb-founder-caption { position: absolute; inset-inline-end: -28px; inset-block-end: 40px; max-width: 250px; padding: 18px 22px; display: grid; color: #fff; background: var(--shb-red); box-shadow: var(--shb-shadow); }
.shb-founder-caption strong { font-size: 1.05rem; }
.shb-founder-caption span { font-size: .72rem; opacity: .76; }
.shb-founder-copy h2 { margin: 0 0 28px; font-size: var(--shb-h2); line-height: 1; letter-spacing: -.05em; }
.shb-rtl .shb-founder-copy h2 { line-height: 1.22; }

.shb-beliefs-section { background: var(--shb-paper); }
.shb-beliefs-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-block-start: 1px solid var(--shb-line); border-inline-start: 1px solid var(--shb-line); }
.shb-belief { min-height: 230px; padding: 28px; border-inline-end: 1px solid var(--shb-line); border-block-end: 1px solid var(--shb-line); display: flex; flex-direction: column; justify-content: space-between; }
.shb-belief span { color: var(--shb-red); font-size: .72rem; font-weight: 900; }
.shb-belief p { margin: 24px 0 0; font-size: 1.22rem; font-weight: 800; line-height: 1.4; }
.shb-journey-section { background: var(--shb-cream); }
.shb-timeline { margin-block-start: 44px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-block-start: 2px solid var(--shb-ink); }
.shb-timeline article { position: relative; padding: 32px 26px 0 0; }
.shb-rtl .shb-timeline article { padding: 32px 0 0 26px; }
.shb-timeline article::before { content: ""; position: absolute; inset-block-start: -8px; inset-inline-start: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--shb-red); }
.shb-timeline strong { color: var(--shb-forest); font-size: 1.7rem; }
.shb-timeline p { color: rgba(110,13,22,.72); }

.shb-areas-page { padding-block-start: 96px; }
.shb-areas-page .shb-area-card { min-height: 380px; }
.shb-method-section { color: #fff; background: var(--shb-burgundy); }
.shb-method-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(54px, 9vw, 130px); }
.shb-method-grid h2 { margin: 0; font-size: var(--shb-h2); line-height: 1; letter-spacing: -.05em; }
.shb-rtl .shb-method-grid h2 { line-height: 1.2; }
.shb-method-steps { border-block-start: 1px solid rgba(255,255,255,.25); }
.shb-method-steps > div { min-height: 78px; padding: 18px 0; border-block-end: 1px solid rgba(255,255,255,.25); display: grid; grid-template-columns: 62px 1fr; align-items: center; }
.shb-method-steps span { color: var(--shb-orange); font-size: .72rem; font-weight: 900; }

.shb-impact-page-band { padding-block: 96px; }
.shb-data-note { margin: 28px 0 0; color: rgba(255,255,255,.62); font-size: .82rem; }
.shb-reach-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.shb-reach-copy h2 { margin: 0 0 24px; font-size: var(--shb-h2); line-height: 1; letter-spacing: -.05em; }
.shb-rtl .shb-reach-copy h2 { line-height: 1.22; }
.shb-reach-copy > p:last-child { color: rgba(110,13,22,.72); font-size: 1.08rem; }
.shb-region-list { display: grid; gap: 18px; }
.shb-region-list > div { display: grid; grid-template-columns: 126px 1fr 48px; gap: 16px; align-items: center; }
.shb-region-list span { font-size: .82rem; font-weight: 800; }
.shb-region-list strong { color: var(--shb-red); font-size: .84rem; }
.shb-region-bar { height: 12px; overflow: hidden; border-radius: 999px; background: rgba(110,13,22,.09); }
.shb-region-bar i { display: block; height: 100%; min-width: 8px; border-radius: inherit; background: var(--shb-forest); }
.shb-gallery-section { background: var(--shb-paper); }
.shb-gallery-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.shb-gallery-grid figure { margin: 0; overflow: hidden; border-radius: 16px; }
.shb-gallery-grid figure:nth-child(1), .shb-gallery-grid figure:nth-child(6) { grid-column: span 2; }
.shb-gallery-grid img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 450ms ease; }
.shb-gallery-grid figure:nth-child(1) img, .shb-gallery-grid figure:nth-child(6) img { aspect-ratio: 2.05; }
.shb-gallery-grid figure:hover img { transform: scale(1.035); }

.shb-partner-types { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-block-start: 1px solid var(--shb-line); border-inline-start: 1px solid var(--shb-line); }
.shb-partner-types article { min-height: 300px; padding: 26px; border-inline-end: 1px solid var(--shb-line); border-block-end: 1px solid var(--shb-line); display: flex; flex-direction: column; }
.shb-partner-types article > span { color: var(--shb-red); font-size: .72rem; font-weight: 900; }
.shb-partner-types h3 { margin: auto 0 12px; font-size: 1.35rem; line-height: 1.15; }
.shb-partner-types p { margin: 0; color: rgba(110,13,22,.7); font-size: .9rem; }
.shb-model-section { color: #fff; background: var(--shb-burgundy); }
.shb-model-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(58px, 9vw, 140px); align-items: center; }
.shb-model-grid img { margin-block-start: 36px; width: 100%; max-height: 430px; border-radius: 18px; object-fit: cover; }
.shb-model-grid ol { list-style: none; margin: 0; padding: 0; border-block-start: 1px solid rgba(255,255,255,.28); }
.shb-model-grid li { min-height: 78px; padding: 18px 0; border-block-end: 1px solid rgba(255,255,255,.28); display: grid; grid-template-columns: 62px 1fr; align-items: center; font-size: 1.05rem; font-weight: 800; }
.shb-model-grid li span { color: var(--shb-orange); font-size: .72rem; }

.shb-involvement-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.shb-involvement-cards article { min-height: 410px; padding: 32px; border-radius: var(--shb-radius); display: flex; flex-direction: column; background: var(--shb-paper); border: 1px solid var(--shb-line); }
.shb-involvement-cards article:nth-child(2) { color: #fff; background: var(--shb-violet); border-color: var(--shb-violet); }
.shb-involvement-cards article:nth-child(3) { color: #fff; background: var(--shb-forest); border-color: var(--shb-forest); }
.shb-involvement-cards article > span { color: var(--shb-red); font-size: .75rem; font-weight: 900; }
.shb-involvement-cards article:nth-child(n+2) > span { color: #fff; }
.shb-involvement-cards h2 { margin: auto 0 18px; font-size: 2.3rem; line-height: 1; letter-spacing: -.04em; }
.shb-involvement-cards p { margin: 0 0 28px; color: rgba(110,13,22,.7); }
.shb-involvement-cards article:nth-child(n+2) p { color: rgba(255,255,255,.76); }
.shb-involvement-cards article:nth-child(n+2) .shb-text-link { color: #fff; }
.shb-form-section { padding: clamp(90px,11vw,150px) 0; color: #fff; background: var(--shb-forest-dark); }
.shb-form-section-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(60px,10vw,150px); align-items: start; }
.shb-form-section h2 { margin: 0 0 36px; font-size: var(--shb-h2); line-height: 1; letter-spacing: -.05em; }
.shb-rtl .shb-form-section h2 { line-height: 1.22; }
.shb-form-section img { width: 100%; min-height: 220px; border-radius: 18px; object-fit: cover; }

.shb-form { display: grid; gap: 20px; }
.shb-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.shb-form label { display: grid; gap: 8px; color: inherit; font-size: .78rem; font-weight: 800; }
.shb-form-wide { grid-column: 1 / -1; }
.shb-form input:not([type="checkbox"]), .shb-form textarea { width: 100%; border: 1px solid rgba(110,13,22,.24); border-radius: 12px; padding: 13px 15px; color: var(--shb-ink); background: var(--shb-paper); outline: none; }
.shb-form input:focus, .shb-form textarea:focus { border-color: var(--shb-red); box-shadow: 0 0 0 3px rgba(210,34,41,.18); }
.shb-consent { grid-template-columns: 18px 1fr !important; gap: 10px !important; align-items: start; font-weight: 500 !important; color: rgba(255,255,255,.72) !important; }
.shb-contact-form .shb-consent { color: rgba(110,13,22,.68) !important; }
.shb-consent input { margin-block-start: 4px; }
.shb-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.shb-notice { margin-block-end: 20px; padding: 14px 16px; border-radius: 10px; font-size: .9rem; }
.shb-notice-success { color: #0c472c; background: #d9f5e8; }
.shb-notice-error { color: #7b1421; background: #fde1e5; }

.shb-support-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.shb-support-grid article { min-height: 310px; padding: 30px; border: 1px solid var(--shb-line); border-radius: var(--shb-radius); background: var(--shb-paper); display: flex; flex-direction: column; }
.shb-support-grid article > span { color: var(--shb-red); font-size: .72rem; font-weight: 900; }
.shb-support-grid h3 { margin: auto 0 14px; font-size: 1.65rem; line-height: 1.1; }
.shb-support-grid p { margin: 0; color: rgba(110,13,22,.7); }
.shb-donation-contact { padding: clamp(90px,11vw,150px) 0; color: #fff; background: var(--shb-red); }
.shb-donation-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.7fr); gap: clamp(54px,8vw,110px); align-items: center; }
.shb-donation-grid h2 { margin: 0 0 34px; font-size: clamp(1.6rem,3.1vw,3.1rem); line-height: 1.25; }
.shb-donation-image { overflow: hidden; border-radius: 22px; transform: rotate(3deg); }
.shb-rtl .shb-donation-image { transform: rotate(-3deg); }
.shb-donation-image img { width: 100%; min-height: 320px; object-fit: cover; }
.shb-trust-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(50px,9vw,130px); }
.shb-trust-grid h2 { margin: 0; font-size: var(--shb-h2); line-height: 1; letter-spacing: -.05em; }
.shb-trust-grid ul { list-style: none; margin: 0; padding: 0; border-block-start: 1px solid var(--shb-line); }
.shb-trust-grid li { padding: 20px 0; border-block-end: 1px solid var(--shb-line); font-size: 1.08rem; font-weight: 800; }
.shb-trust-grid li::before { content: "✓"; display: inline-grid; place-items: center; width: 26px; height: 26px; margin-inline-end: 12px; border-radius: 50%; color: #fff; background: var(--shb-forest); font-size: .75rem; }

.shb-contact-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(60px,10vw,150px); }
.shb-contact-details { display: grid; gap: 28px; }
.shb-contact-details > div { padding-block-end: 24px; border-block-end: 1px solid var(--shb-line); }
.shb-contact-details span { display: block; margin-block-end: 8px; color: var(--shb-red); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.shb-rtl .shb-contact-details span { letter-spacing: 0; }
.shb-contact-details p, .shb-contact-details a { margin: 0; font-size: 1.13rem; font-weight: 750; }
.shb-contact-details img { margin-block-start: 10px; border-radius: 18px; }
.shb-contact-form { padding: clamp(28px,4vw,50px); border-radius: var(--shb-radius); background: var(--shb-paper); box-shadow: var(--shb-shadow); }
.shb-contact-form h2 { margin: 0 0 30px; font-size: 2.2rem; line-height: 1.1; }

.shb-editor-content { max-width: 800px; }
.shb-page-cta { padding: clamp(80px,10vw,130px) 0; color: #fff; background: var(--shb-forest-dark); }
.shb-page-cta-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr); gap: clamp(50px,9vw,130px); align-items: end; }
.shb-page-cta-grid > div:last-child > p { margin: 0 0 28px; color: rgba(255,255,255,.72); font-size: 1.08rem; }

.shb-footer { position: relative; padding: 100px 0 30px; overflow: hidden; color: #fff; background: var(--shb-ink); }
.shb-footer-window { position: absolute; inset-inline-end: -80px; inset-block-start: 40px; width: 360px; height: 330px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; opacity: .17; transform: rotate(7deg); }
.shb-rtl .shb-footer-window { transform: rotate(-7deg); }
.shb-footer-window span { border: 7px solid #fff; background: var(--shb-red); }
.shb-footer-window span:nth-child(2) { background: var(--shb-orange); }
.shb-footer-window span:nth-child(3) { background: var(--shb-violet); }
.shb-footer-window span:nth-child(4) { background: var(--shb-sky); }
.shb-footer-grid { position: relative; display: grid; grid-template-columns: 1.35fr .75fr .9fr; gap: clamp(50px,8vw,110px); }
.shb-footer-brand img { width: 138px; margin-block-end: 22px; }
.shb-footer-brand p { max-width: 480px; margin: 0; font-size: clamp(1.5rem,2.8vw,2.6rem); font-weight: 850; line-height: 1.2; letter-spacing: -.03em; }
.shb-footer h2 { margin: 0 0 22px; color: var(--shb-orange); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; }
.shb-rtl .shb-footer h2 { letter-spacing: 0; }
.shb-footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.shb-footer-nav a, .shb-footer-contact a { color: rgba(255,255,255,.76); }
.shb-footer-nav a:hover, .shb-footer-contact a:hover { color: #fff; }
.shb-footer-contact { display: grid; align-content: start; gap: 10px; }
.shb-footer-contact h2 { margin-block-end: 12px; }
.shb-footer-contact address { max-width: 260px; margin-block-end: 10px; color: rgba(255,255,255,.76); }
.shb-footer-handle { margin-block-start: 8px; color: var(--shb-yellow); font-weight: 800; }
.shb-footer-bottom { position: relative; margin-block-start: 80px; padding-block-start: 24px; border-block-start: 1px solid rgba(255,255,255,.2); display: flex; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.5); font-size: .72rem; }
.shb-footer-bottom p { margin: 0; }

body.shb-site :focus-visible { outline: 3px solid var(--shb-violet); outline-offset: 4px; }

@media (max-width: 1100px) {
  :root { --shb-shell: min(100% - 40px, 1000px); }
  .shb-header-inner { min-height: 82px; }
  .shb-menu-toggle { margin-inline-start: auto; border: 0; padding: 10px 0; display: flex; align-items: center; gap: 12px; color: var(--shb-ink); background: transparent; font-size: .76rem; font-weight: 900; text-transform: uppercase; }
  .shb-menu-toggle-lines { width: 30px; display: grid; gap: 7px; }
  .shb-menu-toggle-lines i { display: block; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .shb-menu-toggle[aria-expanded="true"] .shb-menu-toggle-lines i:first-child { transform: translateY(4.5px) rotate(45deg); }
  .shb-menu-toggle[aria-expanded="true"] .shb-menu-toggle-lines i:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .shb-navigation { position: absolute; inset-inline: 20px; inset-block-start: calc(100% + 1px); padding: 28px; border: 1px solid var(--shb-line); border-radius: 0 0 18px 18px; display: none; align-items: stretch; background: var(--shb-paper); box-shadow: var(--shb-shadow); }
  .shb-navigation.is-open { display: grid; }
  .shb-nav-list { display: grid; gap: 4px; font-size: 1.05rem; }
  .shb-nav-list a { display: block; padding: 10px 0; }
  .shb-nav-actions { margin-block-start: 20px; padding-block-start: 20px; border-block-start: 1px solid var(--shb-line); justify-content: space-between; }
  .shb-hero-grid { grid-template-columns: minmax(0,1fr) minmax(360px,.8fr); gap: 54px; }
  .shb-hero h1 { font-size: clamp(3.6rem,7vw,6rem); }
  .shb-shutter { display: none; }
  .shb-areas-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .shb-initiative-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .shb-initiative-grid-featured .shb-initiative-card:nth-child(2), .shb-initiative-grid-featured .shb-initiative-card:nth-child(5) { transform: none; }
  .shb-partner-types { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .shb-partner-types article { min-height: 250px; }
}

@media (min-width: 821px) {
  .shb-stats-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .shb-stat { grid-column: span 2; }
  .shb-stat:nth-last-child(-n + 2) { grid-column: span 3; }
}

@media (max-width: 820px) {
  :root { --shb-shell: min(100% - 32px, 720px); }
  .admin-bar .shb-header { inset-block-start: 46px; }
  .shb-utility-contact a:first-child, .shb-utility-meta span:last-child, .shb-utility-dot { display: none; }
  .shb-utility-inner { min-height: 34px; }
  .shb-header-inner { min-height: 76px; }
  .shb-brand { width: 68px; }
  .shb-hero-grid, .shb-intro-grid, .shb-approach-grid, .shb-partner-grid, .shb-vision-grid, .shb-involved-grid, .shb-page-hero-grid, .shb-founder-grid, .shb-method-grid, .shb-reach-grid, .shb-model-grid, .shb-form-section-grid, .shb-donation-grid, .shb-trust-grid, .shb-contact-grid, .shb-page-cta-grid { grid-template-columns: 1fr; }
  .shb-hero-grid { padding-block: 78px; }
  .shb-hero-copy { max-width: 680px; }
  .shb-hero-visual { width: min(100%, 570px); margin-inline: auto; }
  .shb-hero-note { margin-block-start: 36px; }
  .shb-hero-ticker { justify-content: flex-start; overflow: hidden; }
  .shb-section-heading, .shb-impact-heading { grid-template-columns: 1fr; gap: 24px; }
  .shb-section-heading-end > .shb-text-link { justify-self: start; }
  .shb-stats-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .shb-approach-media { min-height: 570px; }
  .shb-partner-photo { width: min(100%,560px); }
  .shb-page-marker { opacity: .5; }
  .shb-founder-photo { width: min(100%,520px); margin-inline: auto; }
  .shb-beliefs-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .shb-timeline { grid-template-columns: repeat(2,minmax(0,1fr)); row-gap: 38px; border-block-start: 0; }
  .shb-timeline article { border-block-start: 2px solid var(--shb-ink); }
  .shb-partner-types { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .shb-involvement-cards, .shb-support-grid { grid-template-columns: 1fr; }
  .shb-involvement-cards article, .shb-support-grid article { min-height: 300px; }
  .shb-form-section-grid > div:first-child { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
  .shb-form-section-grid > div:first-child .shb-eyebrow { grid-column: 1 / -1; margin-block-end: -8px; }
  .shb-form-section-grid > div:first-child h2 { grid-column: 1 / 2; }
  .shb-form-section-grid > div:first-child img { grid-column: 2 / 3; }
  .shb-gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .shb-footer-grid { grid-template-columns: 1.2fr .8fr; }
  .shb-footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --shb-shell: min(100% - 24px, 520px); --shb-h2: clamp(2.15rem,10.5vw,3.25rem); --shb-h1: clamp(3rem,14vw,4.6rem); }
  .shb-section { padding-block: 82px; }
  .shb-utility { letter-spacing: .03em; }
  .shb-utility-contact { display: none; }
  .shb-utility-meta { width: 100%; justify-content: center; }
  .shb-navigation { inset-inline: 12px; padding: 22px; }
  .shb-nav-actions { align-items: stretch; flex-direction: column; }
  .shb-language { text-align: start; }
  .shb-hero-grid { min-height: auto; padding-block: 66px 72px; gap: 58px; }
  .shb-hero h1 { font-size: clamp(3.2rem,15vw,5rem); }
  .shb-rtl .shb-hero h1 { font-size: clamp(3.1rem,14vw,4.5rem); }
  .shb-hero-intro { font-size: 1.05rem; }
  .shb-window-frame { border-radius: 46% 46% 18px 18px; padding: 16px; }
  .shb-window-frame::before { width: 6px; }
  .shb-window-frame::after { height: 6px; }
  .shb-hero-index { inset-inline-end: 0; font-size: 2rem; }
  .shb-hero-ticker { font-size: .64rem; gap: 22px; }
  .shb-intro-grid { gap: 38px; }
  .shb-section-heading { margin-block-end: 38px; }
  .shb-areas-grid, .shb-initiative-grid, .shb-stats-grid, .shb-beliefs-grid, .shb-partner-types { grid-template-columns: 1fr; }
  .shb-area-card { min-height: 280px; }
  .shb-approach-media { min-height: 430px; }
  .shb-photo-frame { width: 84%; padding: 12px; }
  .shb-approach-mini { width: 44%; }
  .shb-stat { min-height: 170px; }
  .shb-initiative-body { padding: 22px; }
  .shb-partner-panel, .shb-involved-panel { padding-block: 90px; }
  .shb-page-hero { padding-block: 86px 72px; }
  .shb-page-marker { inset-inline-end: -20px; inset-block-start: 24px; }
  .shb-page-marker span { width: 30px; height: 52px; border-width: 3px; }
  .shb-founder-caption { inset-inline-end: 10px; inset-block-end: 20px; }
  .shb-belief { min-height: 185px; }
  .shb-timeline { grid-template-columns: 1fr; }
  .shb-partner-types article { min-height: 230px; }
  .shb-region-list > div { grid-template-columns: 96px 1fr 40px; gap: 10px; }
  .shb-gallery-grid { gap: 8px; }
  .shb-gallery-grid figure:nth-child(1), .shb-gallery-grid figure:nth-child(6) { grid-column: span 2; }
  .shb-form-section-grid > div:first-child { display: block; }
  .shb-form-section-grid > div:first-child img { margin-block-start: 28px; }
  .shb-form-grid { grid-template-columns: 1fr; }
  .shb-donation-image img { min-height: 240px; }
  .shb-footer { padding-block-start: 80px; }
  .shb-footer-grid { grid-template-columns: 1fr; gap: 46px; }
  .shb-footer-contact { grid-column: auto; }
  .shb-footer-bottom { margin-block-start: 56px; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Editorial refinement: shared system and complete homepage composition. */
html { overflow-x: clip; scroll-padding-block-start: 96px; }

body.shb-site {
  overflow-x: clip;
  background: var(--bg-warm);
  line-height: 1.75;
}

body.shb-rtl { line-height: 1.88; }
.shb-shell { width: var(--shb-shell); }
.shb-section { padding-block: var(--section-space); }

.shb-utility {
  background: var(--brand-burgundy);
  letter-spacing: .055em;
}

.shb-utility-inner { min-height: 34px; }

.shb-header {
  border-block-end: 1px solid transparent;
  background: rgba(255, 249, 247, .86);
  box-shadow: 0 0 0 rgba(110, 13, 22, 0);
  backdrop-filter: blur(14px);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.shb-header.is-scrolled {
  border-block-end-color: var(--border-soft);
  background: rgba(255, 249, 247, .98);
  box-shadow: 0 10px 32px rgba(110, 13, 22, .07);
}

.shb-header-inner {
  position: relative;
  min-height: 86px;
  transition: min-height 240ms ease;
}

.shb-header.is-scrolled .shb-header-inner { min-height: 72px; }
.shb-brand { width: 72px; transition: width 240ms ease, transform 240ms ease; }
.shb-header.is-scrolled .shb-brand { width: 61px; }
.shb-brand:hover { transform: rotate(-2deg) scale(1.02); }
.shb-rtl .shb-brand:hover { transform: rotate(2deg) scale(1.02); }
.shb-navigation { gap: clamp(18px, 2vw, 32px); }
.shb-nav-list { margin-inline: auto; gap: clamp(16px, 2vw, 30px); }
.shb-nav-list a { min-height: 44px; display: inline-flex; align-items: center; }
.shb-nav-list a::after {
  inset-inline: auto;
  inset-inline-start: 50%;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}
.shb-nav-list a:hover::after,
.shb-nav-list a[aria-current="page"]::after { transform: translateX(-50%) scaleX(1); }

.shb-button {
  min-height: 50px;
  padding: 13px 24px;
  border-color: var(--brand-red);
  background: var(--brand-red);
  box-shadow: 0 0 0 rgba(110, 13, 22, 0);
  transition: color 250ms ease, background-color 250ms ease, border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.shb-button:hover,
.shb-button-dark:hover {
  color: #fff;
  border-color: var(--brand-burgundy);
  background: var(--brand-burgundy);
  box-shadow: 0 12px 26px rgba(110, 13, 22, .16);
  transform: translateY(-2px);
}

.shb-button-light {
  color: var(--brand-burgundy);
  border-color: #fff;
  background: #fff;
}

.shb-button-light:hover {
  color: var(--brand-burgundy);
  border-color: var(--brand-yellow);
  background: var(--brand-yellow);
}

.shb-button-accent {
  color: var(--brand-burgundy);
  border-color: var(--brand-yellow);
  background: var(--brand-yellow);
}

.shb-button-accent:hover {
  color: var(--brand-burgundy);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
  transform: translateY(-2px) scale(1.01);
}

.shb-text-link {
  position: relative;
  min-height: 44px;
  border-block-end: 0;
  padding-block: 8px 11px;
}

.shb-text-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(.36);
  transform-origin: left;
  transition: transform 250ms ease;
}

.shb-text-link:hover::after { transform: scaleX(1); }
.shb-rtl .shb-text-link::after { transform-origin: right; }
.shb-eyebrow { margin-block-end: 16px; letter-spacing: .11em; }
.shb-rtl .shb-eyebrow { letter-spacing: 0; }
.shb-lead { color: var(--text-secondary); line-height: 1.82; }

.shb-hero {
  isolation: isolate;
  background: var(--bg-warm);
}

.shb-hero::before {
  inset-block-start: -260px;
  inset-inline-start: -210px;
  width: 590px;
  height: 590px;
  border-color: rgba(210, 34, 41, .1);
  box-shadow: 0 0 0 76px rgba(210, 34, 41, .03), 0 0 0 152px rgba(110, 13, 22, .025);
}

.shb-hero-grid {
  min-height: min(790px, calc(100vh - 120px));
  padding-block: clamp(76px, 8vw, 112px) clamp(90px, 9vw, 126px);
  grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
  gap: clamp(64px, 8vw, 118px);
}

.shb-hero-copy { max-width: 680px; }
.shb-hero h1 {
  margin-block-end: 30px;
  font-size: var(--shb-display);
  line-height: .97;
  letter-spacing: -.055em;
}

.shb-hero h1 span { display: block; width: fit-content; }
.shb-rtl .shb-hero h1 { line-height: 1.07; letter-spacing: -.035em; }
.shb-hero-title-accent { color: var(--brand-red); }
.shb-hero-intro { max-width: 610px; margin-block-end: 32px; color: var(--text-secondary); line-height: 1.82; }
.shb-hero-note { margin-block-start: 44px; border-inline-start-color: var(--brand-orange); color: var(--text-secondary); }

.shb-hero-visual {
  isolation: isolate;
  width: min(100%, 620px);
  justify-self: center;
}

.shb-hero-orbit {
  position: absolute;
  z-index: -2;
  inset-inline-end: -8%;
  inset-block-start: 13%;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: var(--brand-purple);
  opacity: .92;
  transform: rotate(10deg);
  animation: shb-float-shape 7s ease-in-out infinite alternate;
}

.shb-hero-dots,
.shb-collage-dots {
  position: absolute;
  z-index: -1;
  width: 116px;
  height: 116px;
  background-image: radial-gradient(circle, var(--brand-red) 2px, transparent 2.6px);
  background-size: 16px 16px;
  opacity: .34;
}

.shb-hero-dots {
  inset-inline-start: -7%;
  inset-block-end: 5%;
  animation: shb-float-dots 8s ease-in-out infinite alternate;
}

.shb-window-frame {
  aspect-ratio: .92;
  max-height: 620px;
  padding: 13px;
  border-radius: 49% 49% 26px 26px;
  background: var(--brand-red);
  box-shadow: var(--shadow-card);
}

.shb-window-frame::before {
  z-index: -1;
  inset: -18px 18px 18px -18px;
  width: auto;
  border: 3px solid var(--brand-yellow);
  border-radius: 49% 49% 28px 28px;
  background: transparent;
  transform: rotate(-2deg);
}

.shb-rtl .shb-window-frame::before {
  inset: -18px -18px 18px 18px;
  transform: rotate(2deg);
}

.shb-window-frame::after { display: none; }
.shb-window-image { position: relative; border-radius: 48% 48% 16px 16px; }
.shb-window-image::before,
.shb-window-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  background: var(--bg-warm);
}
.shb-window-image::before { inset-block: 0; inset-inline-start: 50%; width: 6px; transform: translateX(-50%); }
.shb-window-image::after { inset-inline: 0; inset-block-start: 48%; height: 6px; transform: translateY(-50%); }
.shb-window-image img { filter: saturate(.9) contrast(1.02); transition: transform 700ms var(--ease-out); }
.shb-hero-visual:hover .shb-window-image img { transform: scale(1.025); }
.shb-window-logo {
  inset-block-start: auto;
  inset-block-end: 8%;
  width: 43%;
  padding: 8px 14px;
  border: 1px solid rgba(110, 13, 22, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 14px 32px rgba(110, 13, 22, .18);
  filter: none;
  transform: translateX(-50%) rotate(-2deg);
}
.shb-rtl .shb-window-logo { transform: translateX(50%) rotate(2deg); }
.shb-shutter { display: none; }
.shb-hero-index {
  inset-inline-end: -18px;
  inset-block-end: -24px;
  min-width: 64px;
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--brand-burgundy);
  background: var(--brand-yellow);
  box-shadow: var(--shadow-soft);
  font-size: 1.3rem;
  line-height: .78;
  text-align: center;
  transform: rotate(3deg);
}
.shb-rtl .shb-hero-index { transform: rotate(-3deg); }
.shb-hero-ticker {
  min-height: 50px;
  border-block: 1px solid var(--border-soft);
  color: var(--brand-burgundy);
  background: var(--bg-soft);
  letter-spacing: .13em;
}
.shb-hero-ticker i { background: var(--brand-orange); }

.shb-intro-section { background: var(--bg-soft); }
.shb-intro-grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: center; }
.shb-intro-grid h2 { max-width: 760px; line-height: 1.12; }
.shb-title-highlight { color: var(--brand-red); }
.shb-intro-copy {
  padding-inline-start: clamp(30px, 4vw, 64px);
  border-inline-start: 2px solid var(--brand-red);
}
.shb-intro-copy .shb-lead { max-width: 610px; }

.shb-areas-section { background: var(--bg-primary); }
.shb-section-heading { margin-block-end: clamp(48px, 5vw, 68px); }
.shb-section-heading > p { color: var(--text-secondary); line-height: 1.8; }
.shb-areas-grid { gap: 20px; }
.shb-area-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-color: var(--border-soft);
  border-radius: 18px;
  background: #fffdfc;
  box-shadow: 0 0 0 rgba(110, 13, 22, 0);
  transition: transform 300ms var(--ease-out), border-color 300ms ease, box-shadow 300ms ease;
}
.shb-area-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform 300ms var(--ease-out);
}
.shb-area-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}
.shb-area-card:hover::before { transform: scaleX(1); }
.shb-rtl .shb-area-card::before { transform-origin: right; }
.shb-area-card:nth-child(1) { --accent: var(--brand-red); }
.shb-area-card:nth-child(2) { --accent: var(--brand-burgundy); }
.shb-area-card:nth-child(3) { --accent: var(--brand-yellow); }
.shb-area-card:nth-child(4) { --accent: var(--brand-purple); }
.shb-area-card:nth-child(5) { --accent: var(--brand-red); }
.shb-area-card:nth-child(6) { --accent: var(--brand-orange); }
.shb-area-number { color: #fff; background: var(--accent); }
.shb-area-card:nth-child(3) .shb-area-number { color: var(--brand-burgundy); }
.shb-area-accent { width: 44px; height: 5px; border-radius: 999px; background: var(--accent); opacity: .85; }
.shb-area-card h3,
.shb-area-card h2 { font-size: clamp(1.35rem, 1.8vw, 1.72rem); line-height: 1.28; }
.shb-area-card p { max-width: 37ch; color: var(--text-secondary); line-height: 1.75; }

.shb-approach-section { background: var(--bg-warm); }
.shb-approach-media { isolation: isolate; min-height: 600px; }
.shb-approach-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-inline-start: 8%;
  inset-block-start: 11%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 28px;
  background: var(--brand-purple);
  opacity: .94;
  transform: rotate(-7deg);
}
.shb-rtl .shb-approach-media::before { transform: rotate(7deg); }
.shb-collage-dots { inset-inline-end: 2%; inset-block-start: 4%; }
.shb-photo-frame {
  width: 80%;
  padding: 11px;
  border: 2px solid var(--brand-red);
  border-radius: 48% 48% 20px 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.shb-photo-frame img { border-radius: 47% 47% 12px 12px; }
.shb-approach-mini {
  width: 43%;
  padding: 8px;
  border: 2px solid var(--brand-orange);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.shb-approach-copy { max-width: 620px; }
.shb-approach-copy blockquote {
  margin-block: 30px;
  border-inline-start-width: 3px;
  color: var(--brand-burgundy);
  line-height: 1.6;
}

.shb-impact-band {
  padding-block: var(--section-space);
  background: var(--brand-burgundy);
}
.shb-impact-heading > p { color: var(--white-muted); line-height: 1.75; }
.shb-stats-grid { border-color: var(--white-soft); }
.shb-stat { min-height: 196px; border-color: var(--white-soft); }
.shb-stat strong {
  color: var(--brand-yellow);
  font-size: clamp(2.7rem, 5vw, 4.75rem);
  font-variant-numeric: tabular-nums;
  transition: opacity 500ms ease, transform 500ms var(--ease-out);
}
.shb-stat strong[data-stat-year]:not(.is-counted) { opacity: .25; transform: scale(.94); }
.shb-stat strong.is-counted { opacity: 1; transform: scale(1); }
.shb-stat span { color: var(--white-muted); line-height: 1.65; }

.shb-featured-section { background: var(--bg-primary); }
.shb-initiative-grid-featured { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; align-items: start; }
.shb-initiative-grid-featured .shb-initiative-card { grid-column: span 4; transform: none; }
.shb-initiative-grid-featured .shb-initiative-card:nth-child(1) { grid-column: span 7; }
.shb-initiative-grid-featured .shb-initiative-card:nth-child(2) { grid-column: span 5; }
.shb-initiative-grid-featured .shb-initiative-card:nth-child(6) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
}
.shb-initiative-card {
  border-color: var(--border-soft);
  border-radius: 18px;
  box-shadow: 0 0 0 rgba(110, 13, 22, 0);
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease, border-color 300ms ease;
}
.shb-initiative-card:hover { border-color: var(--border-medium); box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.shb-initiative-image { aspect-ratio: 1.28; background: var(--bg-soft); }
.shb-initiative-grid-featured .shb-initiative-card:nth-child(1) .shb-initiative-image { aspect-ratio: 1.55; }
.shb-initiative-grid-featured .shb-initiative-card:nth-child(2) .shb-initiative-image { aspect-ratio: 1.08; }
.shb-initiative-grid-featured .shb-initiative-card:nth-child(6) .shb-initiative-image { aspect-ratio: 1.8; }
.shb-initiative-image .shb-card-label {
  position: absolute;
  z-index: 2;
  inset-inline-start: 16px;
  inset-block-start: 16px;
  max-width: calc(100% - 82px);
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--brand-burgundy);
  letter-spacing: .05em;
}
.shb-initiative-card:nth-child(2) .shb-initiative-image .shb-card-label,
.shb-initiative-card:nth-child(5) .shb-initiative-image .shb-card-label { color: var(--brand-burgundy) !important; background: var(--brand-yellow); }
.shb-initiative-card:nth-child(3) .shb-initiative-image .shb-card-label { background: var(--brand-purple); }
.shb-initiative-card:nth-child(4) .shb-initiative-image .shb-card-label { color: var(--brand-burgundy) !important; background: var(--brand-orange); }
.shb-initiative-image > .shb-initiative-index { color: #fff; background: rgba(110, 13, 22, .9); }
.shb-initiative-body { padding: clamp(24px, 2.5vw, 32px); }
.shb-initiative-body h3,
.shb-initiative-body h2 { line-height: 1.3; }
.shb-initiative-body p { color: var(--text-secondary); line-height: 1.75; }

.shb-partner-panel {
  background: linear-gradient(120deg, var(--brand-red) 0%, var(--brand-red) 58%, var(--brand-burgundy) 132%);
}
.shb-partner-photo::before { border-color: var(--brand-yellow); border-radius: 22px; }
.shb-partner-photo::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 30px -26px -26px 30px;
  border: 2px solid var(--brand-orange);
  border-radius: 22px;
}
.shb-rtl .shb-partner-photo::after { inset: 30px 30px -26px -26px; }
.shb-partner-photo img { z-index: 1; box-shadow: 0 28px 60px rgba(79, 7, 16, .24); }
.shb-partner-copy > p:not(.shb-eyebrow) { color: rgba(255, 255, 255, .84); line-height: 1.8; }
.shb-partner-copy h2::after { content: ""; display: block; width: 64px; height: 5px; margin-block-start: 22px; border-radius: 999px; background: var(--brand-yellow); }

.shb-vision-section { background: var(--bg-warm); }
.shb-vision-grid { align-items: start; }
.shb-vision-list {
  position: relative;
  border-block-start: 0;
}
.shb-vision-list::before {
  content: "";
  position: absolute;
  inset-inline-start: 25px;
  inset-block: 22px;
  width: 2px;
  background: rgba(110, 13, 22, .14);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 900ms var(--ease-out);
}
.shb-vision-list.is-visible::before { transform: scaleY(1); }
.shb-vision-list li {
  position: relative;
  min-height: 84px;
  padding: 14px 0;
  border-block-end: 0;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms var(--ease-out);
  transition-delay: calc(var(--roadmap-order) * 70ms + 160ms);
}
.shb-vision-list.is-visible li { opacity: 1; transform: translateY(0); }
.shb-vision-list li span {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 6px solid var(--bg-warm);
  border-radius: 50%;
  color: #fff;
  background: var(--brand-red);
  font-size: .66rem;
}
.shb-vision-list li:nth-child(2) span { background: var(--brand-purple); }
.shb-vision-list li:nth-child(3) span { color: var(--brand-burgundy); background: var(--brand-orange); }
.shb-vision-list li:nth-child(4) span { color: var(--brand-burgundy); background: var(--brand-yellow); }
.shb-vision-list li:nth-child(5) span { background: var(--brand-burgundy); }
.shb-vision-list li:nth-child(6) span { background: var(--brand-red); }
.shb-vision-list li:nth-child(7) span { background: var(--brand-purple); }
.shb-vision-list li strong { font-size: clamp(1rem, 1.4vw, 1.22rem); line-height: 1.55; }

.shb-involved-panel { background: var(--brand-burgundy); }
.shb-involved-grid > div:first-child > p:not(.shb-eyebrow) { color: var(--white-muted); line-height: 1.8; }
.shb-involved-photo { transform: rotate(2deg); }
.shb-rtl .shb-involved-photo { transform: rotate(-2deg); }
.shb-involved-photo::before { inset: -16px 18px 18px -16px; border-color: var(--brand-orange); border-width: 2px; }
.shb-rtl .shb-involved-photo::before { inset: -16px -16px 18px 18px; }
.shb-involved-photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px -22px -22px 22px;
  border: 3px solid var(--brand-yellow);
  border-radius: 22px;
}
.shb-rtl .shb-involved-photo::after { inset: 22px 22px -22px -22px; }
.shb-involved-photo img { box-shadow: 0 28px 64px rgba(0, 0, 0, .2); }

.shb-page-hero {
  padding-block: clamp(100px, 10vw, 148px) clamp(86px, 9vw, 124px);
  background: var(--bg-warm);
}
.shb-page-hero::before {
  content: "";
  position: absolute;
  inset-inline-end: -180px;
  inset-block-start: -260px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(210, 34, 41, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(210, 34, 41, .025), 0 0 0 144px rgba(110, 13, 22, .02);
}
.shb-page-hero-grid { position: relative; z-index: 1; }
.shb-page-hero h1 { line-height: 1.02; }
.shb-rtl .shb-page-hero h1 { line-height: 1.18; }
.shb-page-intro { color: var(--text-secondary); }
.shb-page-marker span { border-color: var(--brand-red); background: var(--bg-warm); }
.shb-page-marker span:nth-child(2) { background: var(--brand-orange); }
.shb-page-marker span:nth-child(3) { background: var(--brand-purple); }

.shb-founder-photo {
  padding: 14px;
  border: 2px solid var(--brand-red);
  background: var(--bg-primary);
  box-shadow: var(--shadow-soft);
}
.shb-founder-caption { border-radius: 14px; background: var(--brand-burgundy); }
.shb-beliefs-section { background: var(--bg-primary); }
.shb-beliefs-grid { gap: 16px; border: 0; }
.shb-belief {
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: #fffdfc;
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease;
}
.shb-belief:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.shb-journey-section { background: var(--bg-soft); }

.shb-partner-types { border-color: var(--border-soft); }
.shb-partner-types article { border-color: var(--border-soft); transition: background-color 240ms ease; }
.shb-partner-types article:hover { background: var(--bg-soft); }

.shb-involvement-cards article {
  --card-accent: var(--brand-red);
  position: relative;
  overflow: hidden;
  color: var(--brand-burgundy);
  border-color: var(--border-soft);
  background: #fffdfc;
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease, border-color 280ms ease;
}
.shb-involvement-cards article:nth-child(2) { --card-accent: var(--brand-purple); color: var(--brand-burgundy); border-color: var(--border-soft); background: #fffdfc; }
.shb-involvement-cards article:nth-child(3) { --card-accent: var(--brand-orange); color: var(--brand-burgundy); border-color: var(--border-soft); background: #fffdfc; }
.shb-involvement-cards article::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  height: 4px;
  background: var(--card-accent);
}
.shb-involvement-cards article:hover { border-color: var(--card-accent); box-shadow: var(--shadow-soft); transform: translateY(-5px); }
.shb-involvement-cards article > span,
.shb-involvement-cards article:nth-child(n+2) > span { color: var(--card-accent); }
.shb-involvement-cards article:nth-child(n+2) p { color: var(--text-secondary); }
.shb-involvement-cards article:nth-child(n+2) .shb-text-link { color: var(--brand-red); }
.shb-involvement-cards h2 { line-height: 1.2; }

.shb-support-grid article {
  border-color: var(--border-soft);
  background: #fffdfc;
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease;
}
.shb-support-grid article:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.shb-support-grid p { color: var(--text-secondary); }
.shb-form-section { background: var(--brand-burgundy); }
.shb-donation-contact { background: linear-gradient(120deg, var(--brand-red), var(--brand-burgundy) 150%); }
.shb-contact-form { box-shadow: var(--shadow-soft); }
.shb-contact-details a { min-height: 44px; display: inline-flex; align-items: center; color: var(--brand-burgundy); transition: color 200ms ease; }
.shb-contact-details a:hover { color: var(--brand-red); }
.shb-page-cta { background: var(--brand-burgundy); }
.shb-page-cta-grid > div:last-child > p { color: var(--white-muted); line-height: 1.8; }

.shb-footer {
  isolation: isolate;
  padding: 88px 0 28px;
  background: var(--footer-burgundy);
}
.shb-footer-window {
  z-index: -1;
  inset-inline-start: -82px;
  inset-inline-end: auto;
  inset-block-start: 42px;
  width: 280px;
  height: 250px;
  opacity: .075;
  pointer-events: none;
  transform: translate3d(var(--mouse-x, 0), var(--mouse-y, 0), 0) rotate(7deg);
}
.shb-rtl .shb-footer-window { transform: translate3d(var(--mouse-x, 0), var(--mouse-y, 0), 0) rotate(-7deg); }
.shb-footer-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .9fr) minmax(270px, .8fr);
  gap: 32px clamp(36px, 5vw, 76px);
  align-items: start;
}
.shb-footer-brand { padding-inline-end: clamp(0px, 2vw, 30px); }
.shb-footer-brand img { width: 122px; margin-block-end: 20px; }
.shb-footer-brand p { max-width: 480px; font-size: clamp(1.35rem, 2.2vw, 2.1rem); line-height: 1.38; }
.shb-footer h2 { margin-block-end: 16px; color: var(--brand-yellow); font-size: .78rem; }
.shb-footer-nav ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; }
.shb-footer-nav a { width: 100%; padding-block: 5px; }
.shb-footer-contact {
  gap: 3px;
  padding: 25px 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .045);
}
.shb-footer-contact h2 { margin-block-end: 7px; }
.shb-footer-contact address { max-width: 300px; margin-block-end: 7px; line-height: 1.75; }
.shb-footer-nav a,
.shb-footer-contact a,
.shb-footer-contact address { color: rgba(255, 255, 255, .68); transition: color 200ms ease; }
.shb-footer-nav a,
.shb-footer-contact a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; }
.shb-footer-nav a:hover,
.shb-footer-contact a:hover { color: var(--brand-orange); }
.shb-footer-handle { margin-block-start: 5px; }
.shb-footer-bottom {
  margin-block-start: 52px;
  padding-block-start: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.35fr);
  gap: 24px 48px;
  align-items: start;
  font-size: .75rem;
  line-height: 1.75;
}
.shb-footer-bottom p:last-child { max-width: 620px; justify-self: end; }

[data-mouse-layer] { --mouse-x: 0px; --mouse-y: 0px; }
@media (hover: hover) and (pointer: fine) {
  [data-mouse-layer] { will-change: transform; }
}
.shb-window-logo[data-mouse-layer] { transform: translate3d(var(--mouse-x), var(--mouse-y), 0) translateX(-50%) rotate(-2deg); }
.shb-rtl .shb-window-logo[data-mouse-layer] { transform: translate3d(var(--mouse-x), var(--mouse-y), 0) translateX(50%) rotate(2deg); }
.shb-hero-index[data-mouse-layer] { transform: translate3d(var(--mouse-x), var(--mouse-y), 0) rotate(3deg); }
.shb-rtl .shb-hero-index[data-mouse-layer] { transform: translate3d(var(--mouse-x), var(--mouse-y), 0) rotate(-3deg); }

body.shb-site :focus-visible { outline-color: var(--brand-purple); outline-offset: 4px; }

@keyframes shb-float-shape {
  from { transform: translateY(0) rotate(10deg); }
  to { transform: translateY(-9px) rotate(12deg); }
}

@keyframes shb-float-dots {
  from { transform: translateY(0); }
  to { transform: translateY(7px); }
}

@media (prefers-reduced-motion: no-preference) {
  .shb-enhanced [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 680ms ease, transform 680ms var(--ease-out);
    transition-delay: calc(var(--reveal-order, 0) * 80ms);
  }

  .shb-enhanced [data-reveal="image"],
  .shb-enhanced [data-reveal="hero-visual"] { transform: translateY(16px) scale(.97); }
  .shb-enhanced [data-reveal].is-visible { opacity: 1; transform: translateY(0) scale(1); }

  .shb-enhanced [data-reveal="hero-copy"] { opacity: 1; transform: none; }
  .shb-enhanced [data-reveal="hero-copy"] > * { opacity: 0; transform: translateY(18px); transition: opacity 620ms ease, transform 620ms var(--ease-out); }
  .shb-enhanced [data-reveal="hero-copy"].is-visible > * { opacity: 1; transform: translateY(0); }
  .shb-enhanced [data-reveal="hero-copy"].is-visible > *:nth-child(1) { transition-delay: 80ms; }
  .shb-enhanced [data-reveal="hero-copy"].is-visible > *:nth-child(2) { transition-delay: 150ms; }
  .shb-enhanced [data-reveal="hero-copy"].is-visible > *:nth-child(3) { transition-delay: 230ms; }
  .shb-enhanced [data-reveal="hero-copy"].is-visible > *:nth-child(4) { transition-delay: 310ms; }
  .shb-enhanced [data-reveal="hero-copy"].is-visible > *:nth-child(5) { transition-delay: 380ms; }

  .shb-enhanced [data-reveal="collage"] [data-collage-item] { opacity: 0; transform: translateY(24px) rotate(-3deg); transition: opacity 650ms ease, transform 650ms var(--ease-out); }
  .shb-enhanced [data-reveal="collage"].is-visible [data-collage-item] { opacity: 1; transform: translateY(0) rotate(-3deg); }
  .shb-enhanced .shb-rtl [data-reveal="collage"].is-visible [data-collage-item="large"] { transform: translateY(0) rotate(3deg); }
  .shb-enhanced [data-reveal="collage"] [data-collage-item="small"] { transition-delay: 140ms; transform: translateY(34px) rotate(4deg); }
  .shb-enhanced [data-reveal="collage"].is-visible [data-collage-item="small"] { transform: translateY(0) rotate(4deg); }
  .shb-enhanced .shb-rtl [data-reveal="collage"].is-visible [data-collage-item="small"] { transform: translateY(0) rotate(-4deg); }
}

@media (max-width: 1100px) {
  :root { --shb-shell: min(100% - 48px, 1000px); --section-space: clamp(86px, 9vw, 108px); }
  .shb-header-inner { min-height: 78px; }
  .shb-header.is-scrolled .shb-header-inner { min-height: 68px; }
  .shb-brand { width: 65px; }
  .shb-header.is-scrolled .shb-brand { width: 58px; }
  .shb-menu-toggle { min-height: 44px; min-width: 44px; }
  .shb-navigation {
    display: grid;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms var(--ease-out), visibility 220ms ease;
  }
  .shb-navigation.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .shb-nav-list a { min-height: 46px; }
  .shb-initiative-grid-featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shb-initiative-grid-featured .shb-initiative-card,
  .shb-initiative-grid-featured .shb-initiative-card:nth-child(n) { grid-column: auto; display: block; }
  .shb-initiative-grid-featured .shb-initiative-card .shb-initiative-image { aspect-ratio: 1.3; }
  .shb-initiative-grid-featured .shb-initiative-card:nth-child(1) .shb-initiative-image { aspect-ratio: 1.45; }
  .shb-initiative-grid-featured .shb-initiative-card:nth-child(4) .shb-initiative-image { aspect-ratio: 1.45; }
  .shb-footer-grid { grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); }
  .shb-footer-contact {
    grid-column: 1 / -1;
    grid-template-columns: minmax(220px, 1.15fr) minmax(170px, .8fr) minmax(190px, .9fr);
    gap: 3px 28px;
  }
  .shb-footer-contact h2 { grid-column: 1 / -1; }
  .shb-footer-contact address { grid-column: 1; grid-row: 2 / span 2; margin: 0; }
  .shb-footer-contact a:first-of-type { grid-column: 2; grid-row: 2; }
  .shb-footer-contact a:nth-of-type(2) { grid-column: 3; grid-row: 2; }
  .shb-footer-contact .shb-footer-handle { grid-column: 2; grid-row: 3; }
}

@media (max-width: 820px) {
  :root { --shb-shell: min(100% - 40px, 720px); --section-space: 88px; }
  .shb-hero-grid { min-height: auto; padding-block: 74px 96px; grid-template-columns: 1fr; gap: 72px; }
  .shb-hero-copy { max-width: 700px; }
  .shb-hero-visual { width: min(92%, 560px); }
  .shb-intro-grid { gap: 42px; }
  .shb-intro-copy { padding-inline-start: 0; padding-block-start: 32px; border-inline-start: 0; border-block-start: 2px solid var(--brand-red); }
  .shb-approach-grid,
  .shb-partner-grid,
  .shb-involved-grid { gap: 64px; }
  .shb-approach-media { width: min(100%, 600px); margin-inline: auto; }
  .shb-partner-photo,
  .shb-involved-photo { width: min(92%, 560px); margin-inline: auto; }
  .shb-vision-grid { gap: 56px; }
  .shb-footer-grid { grid-template-columns: 1fr 1fr; }
  .shb-footer-bottom { grid-template-columns: 1fr; gap: 10px; }
  .shb-footer-bottom p:last-child { justify-self: start; }
}

@media (max-width: 560px) {
  :root {
    --shb-shell: min(100% - 40px, 520px);
    --section-space: 72px;
    --shb-h2: clamp(2rem, 9.6vw, 3rem);
  }
  .shb-section { padding-block: var(--section-space); }
  .shb-header-inner { min-height: 70px; }
  .shb-header.is-scrolled .shb-header-inner { min-height: 64px; }
  .shb-brand { width: 60px; }
  .shb-header.is-scrolled .shb-brand { width: 55px; }
  .shb-navigation { inset-inline: 0; border-radius: 0 0 18px 18px; }
  .shb-hero-grid { padding-block: 58px 82px; gap: 60px; }
  .shb-hero h1 { font-size: clamp(3rem, 14.5vw, 4.5rem); line-height: 1; }
  .shb-rtl .shb-hero h1 { font-size: clamp(2.9rem, 13.4vw, 4.2rem); line-height: 1.08; }
  .shb-hero-intro { font-size: 1rem; }
  .shb-hero-note { margin-block-start: 34px; }
  .shb-hero-visual { width: calc(100% - 16px); }
  .shb-hero-orbit { inset-inline-end: -4%; }
  .shb-hero-dots { inset-inline-start: -3%; }
  .shb-window-frame { padding: 10px; border-radius: 47% 47% 20px 20px; }
  .shb-window-logo { width: 46%; padding: 6px 10px; border-radius: 13px; }
  .shb-hero-index { inset-inline-end: -9px; inset-block-end: -18px; min-width: 54px; font-size: 1.05rem; }
  .shb-hero-ticker { min-height: 46px; }
  .shb-areas-grid,
  .shb-initiative-grid,
  .shb-initiative-grid-featured { grid-template-columns: 1fr; }
  .shb-area-card { min-height: 260px; padding: 24px; }
  .shb-approach-media { min-height: 430px; }
  .shb-photo-frame { width: 82%; }
  .shb-approach-mini { width: 42%; }
  .shb-impact-heading { margin-block-end: 40px; }
  .shb-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shb-stat { min-height: 158px; padding: 20px 16px; }
  .shb-stat strong { font-size: clamp(2rem, 10vw, 3rem); }
  .shb-stat span { font-size: .72rem; }
  .shb-initiative-grid-featured .shb-initiative-card:nth-child(n) .shb-initiative-image { aspect-ratio: 1.35; }
  .shb-partner-photo::after,
  .shb-involved-photo::after { inset-block-end: -14px; }
  .shb-vision-list li { gap: 16px; }
  .shb-footer { padding-block-start: 72px; }
  .shb-footer-window { display: none; }
  .shb-footer-grid { grid-template-columns: 1fr; }
  .shb-footer-contact { grid-template-columns: 1fr; padding: 23px 22px; }
  .shb-footer-contact h2,
  .shb-footer-contact address,
  .shb-footer-contact a:first-of-type,
  .shb-footer-contact a:nth-of-type(2),
  .shb-footer-contact .shb-footer-handle { grid-column: 1; grid-row: auto; }
  .shb-footer-bottom { margin-block-start: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .shb-hero-orbit,
  .shb-hero-dots { animation: none !important; }
  [data-mouse-layer] { --mouse-x: 0px !important; --mouse-y: 0px !important; will-change: auto; }
  .shb-enhanced [data-reveal],
  .shb-enhanced [data-reveal] > *,
  .shb-vision-list li { opacity: 1 !important; transform: none !important; }
  .shb-vision-list::before { transform: scaleY(1) !important; }
}
