:root {
  --background: #ffffff;
  --surface: #f9f8f6;
  --surface-strong: #eeeeee;
  --ink: #221f20;
  --muted: #5f5759;
  --line: rgba(34, 31, 32, 0.14);
  --accent: #e27a27;
  --accent-dark: #964900;
  --max: 1120px;
  --gutter: 32px;
  --header-open-height: 126px;
  --header-scrolled-height: 72px;
  color: var(--ink);
  background: var(--background);
  font-family: Lato, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: Forum, Georgia, serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

h1 { font-size: clamp(2rem, 4.35vw, 3.5rem); line-height: 1.12; letter-spacing: 0.045em; text-wrap: balance; }
h2 { font-size: clamp(1.85rem, 3vw, 2.35rem); line-height: 1.2; text-wrap: balance; }
h3 { font-size: clamp(1.5rem, 2vw, 1.72rem); line-height: 1.28; text-wrap: balance; }
p { color: var(--muted); font-size: 1.05rem; line-height: 1.72; margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 48px;
  min-height: var(--header-open-height);
  padding: 28px clamp(24px, 14.6vw, 260px) 8px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease;
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand {
  grid-column: 2;
  justify-self: center;
  position: relative;
  display: block;
  width: 154.8px;
  height: 69.3px;
  overflow: visible;
  transform: translateY(-3px);
  transition: transform 180ms ease;
}
.brand-wordmark,
.brand-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transition: opacity 180ms ease, transform 180ms ease;
}
.brand-wordmark {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.brand-icon {
  display: block;
  width: 34px;
  height: 36px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  background: url("/assets/gosses-icon-orange.svg?v=20260706-mobile-wordmark-restore") center / contain no-repeat;
}
.site-header.is-scrolled .brand {
  width: 34px;
  height: 36px;
  transform: none;
}
.site-header.is-scrolled {
  min-height: var(--header-scrolled-height);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom-color: var(--line);
}
.site-header.is-scrolled .brand-wordmark {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  pointer-events: none;
}
.site-header.is-scrolled .brand-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.footer-brand {
  font-family: Forum, Georgia, serif;
  font-size: 1.5rem;
  color: var(--muted);
}
.site-nav { display: flex; align-items: center; gap: clamp(34px, 4.2vw, 76px); }
.site-nav--left { grid-column: 1; justify-self: start; }
.site-nav--right { grid-column: 3; justify-self: end; }
.site-nav--mobile { display: none; }
.site-nav a, .site-footer nav a, .nav-toggle, .button, .text-link, .section-label, .weight, .small {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.site-nav a, .site-footer nav a { color: var(--muted); text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a.active, .site-footer nav a:hover { color: var(--accent-dark); border-bottom-color: var(--accent); }
.site-nav a.support-link {
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  min-height: 48px;
  min-width: 158px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px 14px;
}
.site-header:not(.is-scrolled) .site-nav a.support-link {
  min-height: 58px;
  min-width: 176px;
  padding-left: 34px;
  padding-right: 34px;
}
.site-nav a.support-link:hover,
.site-nav a.support-link.active {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  overflow: hidden;
  background: transparent;
  border: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--ink);
}

main > section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) clamp(24px, 5vw, 72px);
}

.hero, .page-hero, .split-section, .narrative-section, .collection-section, .requirements-section, .contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.hero, .page-hero { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(64px, 8vw, 104px); }
.hero__copy, .page-hero > div:first-child { display: grid; gap: 22px; }
.hero__copy p, .page-hero p { max-width: 620px; font-size: clamp(1rem, 1.15vw, 1.16rem); }
.hero h1, .page-hero h1 {
  max-width: 14ch;
}
.hero-home {
  max-width: none;
  min-height: calc(100svh - var(--header-open-height));
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(44px, 3vw, 52px);
  padding: 0 clamp(48px, 6.5vw, 116px) 0 clamp(64px, 9.3vw, 168px);
}
.hero-home .hero__copy {
  align-self: center;
  gap: 0;
}
.hero-home .hero__copy::after {
  content: "";
  display: block;
  width: 104px;
  height: 3px;
  margin-top: 36px;
  background: var(--accent);
}
.hero-home h1 {
  max-width: 820px;
  font-size: clamp(3rem, 3.6vw, 3.75rem);
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: none;
}
.stitch-hero-art {
  margin: 0;
  justify-self: end;
  width: min(100%, 650px);
  aspect-ratio: 1200 / 1284;
  display: grid;
  place-items: center;
  background: transparent;
}
.stitch-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.organic-frame {
  aspect-ratio: 1 / 1.08;
  margin: 0;
  width: min(100%, 390px);
  justify-self: center;
  overflow: hidden;
  background: var(--surface);
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="black" d="M44.7,-76.4C58.9,-69.2,71.8,-59.1,79.6,-45.8C87.4,-32.5,90.1,-16.3,89.1,-0.6C88.1,15.1,83.4,30.2,74.7,42.5C66,54.8,53.3,64.3,39.6,71.5C25.9,78.7,11.2,83.6,-3.4,89.5C-18,95.4,-32.6,102.3,-44.6,96.3C-56.6,90.3,-66.1,71.4,-74.6,54.1C-83.1,36.8,-90.6,21.1,-93.8,4.2C-97,-12.7,-95.9,-30.8,-87.6,-45.3C-79.3,-59.8,-63.8,-70.7,-48.5,-77.3C-33.2,-83.9,-18.1,-86.2,-1.6,-83.4C14.9,-80.6,29.8,-72.7,44.7,-76.4Z" transform="translate(100 100)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="black" d="M44.7,-76.4C58.9,-69.2,71.8,-59.1,79.6,-45.8C87.4,-32.5,90.1,-16.3,89.1,-0.6C88.1,15.1,83.4,30.2,74.7,42.5C66,54.8,53.3,64.3,39.6,71.5C25.9,78.7,11.2,83.6,-3.4,89.5C-18,95.4,-32.6,102.3,-44.6,96.3C-56.6,90.3,-66.1,71.4,-74.6,54.1C-83.1,36.8,-90.6,21.1,-93.8,4.2C-97,-12.7,-95.9,-30.8,-87.6,-45.3C-79.3,-59.8,-63.8,-70.7,-48.5,-77.3C-33.2,-83.9,-18.1,-86.2,-1.6,-83.4C14.9,-80.6,29.8,-72.7,44.7,-76.4Z" transform="translate(100 100)"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.organic-frame img, .offset-frame img, .work-grid img { width: 100%; height: 100%; object-fit: cover; }
.legacy-frame {
  width: min(100%, 540px);
  aspect-ratio: 2164 / 2000;
  padding: 0;
  background: var(--background);
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
  position: relative;
}
.legacy-frame img {
  object-fit: contain;
  object-position: center;
  filter: saturate(1.02) contrast(1.08) brightness(0.96);
}
.offset-frame { position: relative; isolation: isolate; margin: 0; aspect-ratio: 0.9 / 1; width: min(100%, 430px); justify-self: center; }
.offset-frame::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 28px;
  background: var(--accent);
  z-index: -1;
}
.offset-frame img { filter: grayscale(1); transition: filter 300ms ease, transform 600ms ease; }
.offset-frame:hover img { filter: grayscale(0); transform: translate(-4px, -4px); }

.about-hero {
  max-width: none;
  min-height: calc(100svh - var(--header-open-height));
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  grid-template-areas:
    "copy image"
    "body image";
  column-gap: clamp(40px, 6vw, 92px);
  row-gap: 24px;
  padding: clamp(64px, 7vw, 104px) clamp(48px, 8vw, 144px);
}
.about-hero__copy {
  grid-area: copy;
  align-self: end;
  display: grid;
  gap: 22px;
}
.about-hero h1 {
  max-width: 13ch;
}
.about-hero__body {
  grid-area: body;
  align-self: start;
  max-width: 620px;
}
.about-hero-frame {
  grid-area: image;
  position: relative;
  isolation: isolate;
  margin: 0;
  justify-self: end;
  width: min(100%, 720px);
  aspect-ratio: 3 / 2;
}
.about-hero-frame::before {
  content: "";
  position: absolute;
  inset: 34px -18px -26px 46px;
  background: var(--accent);
  z-index: -1;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="black" d="M44.7,-76.4C58.9,-69.2,71.8,-59.1,79.6,-45.8C87.4,-32.5,90.1,-16.3,89.1,-0.6C88.1,15.1,83.4,30.2,74.7,42.5C66,54.8,53.3,64.3,39.6,71.5C25.9,78.7,11.2,83.6,-3.4,89.5C-18,95.4,-32.6,102.3,-44.6,96.3C-56.6,90.3,-66.1,71.4,-74.6,54.1C-83.1,36.8,-90.6,21.1,-93.8,4.2C-97,-12.7,-95.9,-30.8,-87.6,-45.3C-79.3,-59.8,-63.8,-70.7,-48.5,-77.3C-33.2,-83.9,-18.1,-86.2,-1.6,-83.4C14.9,-80.6,29.8,-72.7,44.7,-76.4Z" transform="translate(100 100)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="black" d="M44.7,-76.4C58.9,-69.2,71.8,-59.1,79.6,-45.8C87.4,-32.5,90.1,-16.3,89.1,-0.6C88.1,15.1,83.4,30.2,74.7,42.5C66,54.8,53.3,64.3,39.6,71.5C25.9,78.7,11.2,83.6,-3.4,89.5C-18,95.4,-32.6,102.3,-44.6,96.3C-56.6,90.3,-66.1,71.4,-74.6,54.1C-83.1,36.8,-90.6,21.1,-93.8,4.2C-97,-12.7,-95.9,-30.8,-87.6,-45.3C-79.3,-59.8,-63.8,-70.7,-48.5,-77.3C-33.2,-83.9,-18.1,-86.2,-1.6,-83.4C14.9,-80.6,29.8,-72.7,44.7,-76.4Z" transform="translate(100 100)"/></svg>');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.about-hero-frame::after {
  content: "";
  position: absolute;
  left: -42px;
  bottom: 34px;
  width: 110px;
  height: 3px;
  background: var(--accent);
}
.about-hero-frame__photo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(10px, 1.1vw, 18px);
  overflow: hidden;
  background: var(--background);
}
.about-hero-frame__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.96) contrast(1.04);
}

.button-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.funding-cta-row {
  justify-content: flex-end;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  text-decoration: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.button:hover, .button--dark { background: var(--ink); color: white; }
.button--dark:hover { background: transparent; color: var(--ink); }
.button--accent { border-color: var(--accent); }
.button--light { border-color: white; color: white; }
.button--light:hover { background: white; color: var(--ink); }
.button.hero-mobile-cta {
  display: none;
}
.text-link { color: var(--accent-dark); text-decoration: none; border-bottom: 1px solid rgba(226, 122, 39, 0.5); padding-bottom: 4px; width: fit-content; }
.section-label, .weight { color: var(--accent-dark); margin-bottom: 18px; }

.split-section .section-label { margin-bottom: 0; }
.split-section > div, .collection-section > div:first-child, .requirements-section > div { display: grid; gap: 24px; }
.section-heading { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: 42px; }
.section-heading h2 { max-width: 820px; }
.section-heading--stitch {
  grid-template-columns: 1fr auto;
  align-items: end;
}
.section-heading--stitch .section-label {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}
.section-heading--stitch h2 {
  max-width: 620px;
  text-transform: none;
}

.grant-grid, .criteria-grid, .donation-grid, .work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.grant-card, .criteria-grid article, .donation-card {
  background: var(--background);
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  gap: 14px;
  min-height: 230px;
}
.grant-card span, .criteria-grid span, .donation-card span {
  font-family: Forum, Georgia, serif;
  font-size: 2.55rem;
  color: rgba(34, 31, 32, 0.18);
}
.grant-card p, .criteria-grid p, .donation-card p { font-size: 0.98rem; }
.funding-area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.funding-area-list article {
  display: grid;
  align-content: start;
  gap: 14px;
}
.funding-area-list h3 {
  text-transform: none;
  letter-spacing: 0.01em;
}
.funding-area-list p {
  max-width: 520px;
  font-size: 0.95rem;
}

.callout, .priority-band {
  background: var(--surface);
  max-width: none;
  padding-left: max(clamp(24px, 5vw, 80px), calc((100vw - var(--max)) / 2 + 80px));
  padding-right: max(clamp(24px, 5vw, 80px), calc((100vw - var(--max)) / 2 + 80px));
}
.callout { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.callout h2 { max-width: 640px; }
.callout--stitch {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--surface);
}
.callout--stitch h2 {
  text-transform: none;
  max-width: 640px;
}

.narrative-section { grid-template-columns: 80px minmax(0, 0.9fr) minmax(320px, 0.95fr); }
.rotated-label {
  transform: rotate(-90deg);
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.narrative-copy { display: grid; gap: 24px; }
blockquote {
  border-left: 2px solid var(--accent);
  margin: 12px 0 0;
  padding: 12px 0 12px 24px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
}

@media (min-width: 901px) {
  .about-hero {
    min-height: min(calc(100svh - var(--header-open-height)), 820px);
    grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
    padding-top: clamp(56px, 5.2vw, 86px);
    padding-bottom: clamp(54px, 5vw, 82px);
  }
  .about-hero h1 {
    max-width: 12.5ch;
  }
  .about-hero-frame {
    width: min(100%, 690px);
  }
  .narrative-section {
    grid-template-columns: 72px minmax(390px, 0.92fr) minmax(360px, 0.88fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
    padding-top: clamp(78px, 7vw, 116px);
    padding-bottom: clamp(78px, 7vw, 116px);
  }
  .legacy-frame {
    width: min(100%, 460px);
    aspect-ratio: 0.78 / 1;
    padding: clamp(14px, 1.4vw, 20px);
    isolation: isolate;
    background:
      linear-gradient(var(--background), var(--background)) padding-box,
      linear-gradient(145deg, rgba(226, 122, 39, 0.58), rgba(34, 31, 32, 0.18)) border-box;
    border: 1px solid transparent;
    justify-self: center;
  }
  .legacy-frame::before {
    content: "";
    position: absolute;
    inset: auto -24px 2% 38%;
    height: 20%;
    background: var(--accent);
    z-index: 0;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 90" xmlns="http://www.w3.org/2000/svg"><path fill="black" d="M8,48C22,12,62,-7,99,3c37,10,71,29,88,57c-33,23,-75,31,-113,23C36,75,-4,84,8,48Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 90" xmlns="http://www.w3.org/2000/svg"><path fill="black" d="M8,48C22,12,62,-7,99,3c37,10,71,29,88,57c-33,23,-75,31,-113,23C36,75,-4,84,8,48Z"/></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
  .legacy-frame::after {
    content: "";
    position: absolute;
    left: -38px;
    top: 18%;
    width: 76px;
    height: 2px;
    background: var(--accent);
  }
  .legacy-frame img {
    position: relative;
    z-index: 1;
    background: var(--background);
  }
}
.collection-section, .donation-section { background: var(--surface); max-width: none; padding-left: max(clamp(24px, 5vw, 72px), calc((100vw - var(--max)) / 2 + 72px)); padding-right: max(clamp(24px, 5vw, 72px), calc((100vw - var(--max)) / 2 + 72px)); }
.work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); background: transparent; border: 0; gap: 32px; }
.work-grid article { display: grid; gap: 12px; }
.work-grid img { aspect-ratio: 1.1 / 1; filter: grayscale(1); transition: filter 300ms ease; }
.work-grid article:hover img { filter: grayscale(0); }
.work-grid p { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

.criteria-section h2, .donation-section h2 { margin-bottom: 40px; }
.requirements-section { align-items: start; border-top: 1px solid var(--line); }
.requirement-list {
  list-style: none;
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.requirement-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.requirement-list strong {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.requirement-list span { color: var(--muted); line-height: 1.65; }

.support-mark {
  width: min(330px, 46vw);
  aspect-ratio: 1;
  justify-self: center;
  border: 2px solid var(--ink);
  border-radius: 52% 48% 44% 56% / 44% 58% 42% 56%;
  display: grid;
  place-items: center;
}
.support-mark span {
  width: 68%;
  aspect-ratio: 1;
  border: 22px solid var(--accent);
  border-radius: 48% 52% 58% 42% / 56% 44% 52% 48%;
}
.dark-callout {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--ink);
  color: white;
  padding-left: max(clamp(24px, 5vw, 72px), calc((100vw - var(--max)) / 2 + 72px));
  padding-right: max(clamp(24px, 5vw, 72px), calc((100vw - var(--max)) / 2 + 72px));
}
.dark-callout p { color: rgba(255, 255, 255, 0.72); max-width: 600px; }

.contact-section { align-items: start; }
.contact-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}
.contact-hero h1 {
  font-size: clamp(2rem, 4.35vw, 3.5rem);
  max-width: 15ch;
}
form { display: grid; gap: 26px; }
.form-note {
  color: var(--accent-dark);
  font-size: 0.95rem;
}
label { display: grid; gap: 10px; }
label span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
input, textarea, select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 0;
  font: inherit;
  background: transparent;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus { outline: 0; border-bottom: 2px solid var(--accent); }
.contact-section aside { background: var(--surface); padding: clamp(30px, 5vw, 58px); display: grid; gap: 22px; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  padding: clamp(54px, 8vw, 84px) clamp(24px, 5vw, 72px);
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
}
.site-footer p { max-width: 430px; margin-top: 18px; }
.site-footer nav { display: grid; grid-template-columns: repeat(2, max-content); gap: 16px 42px; align-content: start; }
.small { color: var(--muted); opacity: 0.8; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-header,
  .brand,
  .brand-wordmark,
  .brand-icon { transition: none; }
}

@media (min-width: 901px) and (max-width: 1320px) {
  :root {
    --header-open-height: 96px;
    --header-scrolled-height: 68px;
  }
  .site-header {
    min-height: var(--header-open-height);
    padding: 18px clamp(28px, 4vw, 56px) 8px;
    column-gap: clamp(24px, 3vw, 36px);
  }
  .site-header.is-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .brand {
    width: 136.8px;
    height: 61.2px;
    transform: translateY(-2px);
  }
  .site-header.is-scrolled .brand {
    width: 30px;
    height: 32px;
    transform: none;
  }
  .site-header.is-scrolled .brand-icon {
    width: 30px;
    height: 32px;
  }
  .site-nav {
    gap: clamp(22px, 2.6vw, 38px);
  }
  .site-nav a,
  .site-footer nav a,
  .nav-toggle,
  .button,
  .text-link,
  .section-label,
  .weight,
  .small {
    font-size: 0.68rem;
  }
  .site-nav a.support-link {
    min-width: 138px;
    min-height: 44px;
    padding: 13px 22px 12px;
  }
  .site-header:not(.is-scrolled) .site-nav a.support-link {
    min-width: 150px;
    min-height: 50px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .about-hero {
    min-height: auto;
    grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
    column-gap: clamp(30px, 4.8vw, 54px);
    row-gap: 14px;
    padding: clamp(34px, 4vw, 52px) clamp(52px, 8vw, 82px) clamp(34px, 4.4vw, 50px);
  }
  .about-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 3.45vw, 2.38rem);
    line-height: 1.1;
  }
  .about-hero__copy {
    gap: 18px;
  }
  .about-hero__body {
    max-width: 390px;
    font-size: 0.94rem;
    line-height: 1.5;
  }
  .about-hero-frame {
    width: min(100%, 450px);
  }
}

@media (max-width: 900px) {
  :root {
    --header-open-height: 112px;
    --header-scrolled-height: 64px;
  }
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: var(--header-open-height);
    padding: 24px 24px 20px;
    column-gap: 16px;
  }
  .site-header.is-scrolled {
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .brand { width: 144px; height: 64px; transform: none; }
  .site-header.is-scrolled .brand { width: 28px; height: 30px; }
  .site-header.is-scrolled .brand-icon { width: 28px; height: 30px; }
  .site-nav--desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }
  .site-nav--mobile {
    position: absolute;
    left: 24px;
    right: 24px;
    top: var(--header-open-height);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: var(--background);
    border: 1px solid var(--line);
  }
  .site-nav--mobile.is-open { display: flex; }
  .site-nav--mobile a.support-link {
    min-height: 48px;
    min-width: 158px;
    padding: 15px 24px 14px;
  }
  .site-nav--mobile a:not(.support-link),
  .site-footer nav a,
  .footer-brand,
  .text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .site-header:not(.is-scrolled) .site-nav--mobile a.support-link {
    min-height: 48px;
    min-width: 158px;
    padding: 15px 24px 14px;
  }
  .hero-home {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: clamp(54px, 6vw, 82px) clamp(32px, 8vw, 88px) clamp(64px, 8vw, 96px);
    gap: clamp(34px, 5vw, 48px);
  }
  .hero-home .hero__copy {
    width: min(100%, 760px);
    justify-self: center;
  }
  .hero-home h1 {
    max-width: 760px;
    font-size: clamp(3.25rem, 6.4vw, 4.5rem);
    line-height: 1.12;
  }
  .hero-home .hero__copy::after {
    width: 92px;
    height: 3px;
    margin-top: 32px;
  }
  .stitch-hero-art {
    justify-self: center;
    width: min(100%, clamp(500px, 76vw, 700px));
  }
  .button.hero-mobile-cta {
    display: inline-flex;
    min-width: min(100%, 288px);
    min-height: 64px;
    border-color: var(--accent);
    color: var(--accent-dark);
    font-size: 0.95rem;
  }
}

@media (max-width: 900px) {
  main > section {
    padding-top: 48px;
    padding-bottom: 56px;
  }
  .hero, .page-hero {
    padding-top: 46px;
    padding-bottom: 58px;
    gap: 28px;
  }
  .hero-home {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 36px clamp(24px, 7vw, 72px) 42px;
    gap: 28px;
  }
  .hero-home h1 {
    font-size: clamp(1.76rem, 7.2vw, 2.84rem);
    line-height: 1.14;
    max-width: 760px;
  }
  .hero-home .hero__copy::after {
    width: 72px;
    height: 2px;
    margin-top: 22px;
  }
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); line-height: 1.14; letter-spacing: 0.035em; }
  h2 { font-size: clamp(1.65rem, 6.5vw, 2rem); }
  h3 { font-size: clamp(1.35rem, 5.7vw, 1.65rem); }
  p { font-size: 0.98rem; line-height: 1.62; }
  .hero__copy, .page-hero > div:first-child { gap: 18px; }
  .hero__copy p, .page-hero p { font-size: 1rem; line-height: 1.6; }
  .stitch-hero-art { width: min(100%, clamp(298px, 82vw, 420px)); justify-self: center; }
  .button.hero-mobile-cta {
    min-width: min(100%, 288px);
    min-height: 62px;
    margin-top: 2px;
  }
  .organic-frame { width: min(100%, 286px); }
  .legacy-frame { width: min(100%, 360px); }
  .offset-frame { width: min(100%, 318px); }
  .about-hero {
    min-height: auto;
    grid-template-areas:
      "copy"
      "image"
      "body";
    row-gap: 28px;
    padding-top: 48px;
    padding-bottom: 68px;
  }
  .about-hero__copy {
    gap: 18px;
  }
  .about-hero h1 {
    max-width: 100%;
  }
  .about-hero__body {
    max-width: 100%;
  }
  .about-hero-frame {
    justify-self: center;
    width: min(100%, 520px);
    aspect-ratio: 1.3 / 1;
  }
  .about-hero-frame::before {
    inset: 24px -12px -18px 28px;
  }
  .about-hero-frame::after {
    left: 20px;
    bottom: -18px;
    width: 78px;
    height: 2px;
  }
  .support-mark { width: min(100%, 260px); }
  .support-mark span { border-width: 18px; }
  .hero, .page-hero, .split-section, .narrative-section, .collection-section, .requirements-section, .contact-section, .site-footer {
    grid-template-columns: 1fr;
  }
  .hero h1, .page-hero h1 {
    max-width: 100%;
  }
  .hero-home h1 {
    max-width: 760px;
  }
  .offset-frame {
    width: calc(100% - 18px);
  }
  .rotated-label { transform: none; }
  .section-heading, .callout, .dark-callout { grid-template-columns: 1fr; display: grid; }
  .section-heading { margin-bottom: 28px; gap: 18px; }
  .funding-cta-row { justify-content: flex-start; }
  .grant-grid, .criteria-grid, .donation-grid, .work-grid { grid-template-columns: 1fr; }
  .grant-card, .criteria-grid article, .donation-card {
    min-height: 0;
    padding: 24px;
  }
  .grant-card span, .criteria-grid span, .donation-card span { font-size: 2.1rem; }
  .funding-area-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .funding-area-list article {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
  }
  .funding-area-list article:last-child { border-bottom: 0; }
  .section-heading--stitch { grid-template-columns: 1fr; }
  .section-heading--stitch .section-label { margin-bottom: 0; }
  .requirement-list li { grid-template-columns: 1fr; gap: 8px; }
  .site-footer nav { grid-template-columns: 1fr; }
  .site-footer { gap: 32px; }
}

@media (max-width: 360px) {
  .hero-home {
    padding-top: 30px;
    gap: 24px;
  }
  .hero-home h1 {
    font-size: 1.64rem;
  }
  .stitch-hero-art {
    width: min(100%, 276px);
  }
  .button.hero-mobile-cta {
    min-width: min(100%, 256px);
  }
}

@media (max-width: 380px) and (max-height: 700px) {
  :root {
    --header-open-height: 88px;
  }
  .site-header {
    min-height: var(--header-open-height);
    padding: 13px 20px 11px;
  }
  .brand {
    width: 124px;
    height: 55px;
  }
  .nav-toggle {
    width: 44px;
    height: 44px;
    gap: 6px;
  }
  .nav-toggle span {
    width: 30px;
  }
  .hero-home {
    padding: 14px 20px 26px;
    gap: 14px;
  }
  .hero-home h1 {
    font-size: 1.38rem;
    line-height: 1.08;
  }
  .hero-home .hero__copy::after {
    width: 58px;
    margin-top: 14px;
  }
  .stitch-hero-art {
    width: min(100%, 194px);
  }
  .button.hero-mobile-cta {
    min-width: min(100%, 220px);
    min-height: 50px;
    font-size: 0.82rem;
  }
}

@media (min-width: 861px) and (max-width: 900px) and (max-height: 850px) {
  .hero-home {
    padding: 30px clamp(48px, 8vw, 82px) 44px;
    gap: 20px;
  }
  .hero-home h1 {
    font-size: clamp(2.8rem, 4.7vw, 3rem);
    line-height: 1.1;
  }
  .hero-home .hero__copy::after {
    width: 72px;
    margin-top: 20px;
  }
  .stitch-hero-art {
    width: min(100%, 300px);
  }
  .button.hero-mobile-cta {
    min-height: 60px;
  }
}
