:root {
  --paper: #fbf6ec;
  --paper-deep: #f4ebd9;
  --ink: #3b2233;
  --ink-soft: #5e4256;
  --marigold: #f2b705;
  --clay: #a8482a;
  --rose: #e8a0b4;
  --leaf: #5b7b5a;
  --line: rgba(59, 34, 51, 0.16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Karla", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 .55 0 0 0 0 .45 0 0 0 0 .4 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  position: fixed;
  z-index: 1000;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  line-height: 1.1;
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol {
  margin-block: 0;
}

.wrap {
  margin: 0 auto;
  max-width: 1180px;
  padding-inline: clamp(20px, 4vw, 48px);
}

.skip-link {
  background: var(--marigold);
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-weight: 800;
  left: 18px;
  padding: 10px 16px;
  position: fixed;
  top: 12px;
  transform: translateY(-170%);
  z-index: 2000;
}

.skip-link:focus {
  transform: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  border-radius: 5px;
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.topstrip {
  background: var(--ink);
  color: var(--paper);
  font-size: 13.5px;
}

.topstrip .wrap {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 38px;
}

.topstrip a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.topstrip .contacts {
  display: flex;
  gap: 18px;
}

.site-header {
  backdrop-filter: blur(11px);
  background: rgba(251, 246, 236, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-row {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  flex: none;
}

.brand img {
  height: 58px;
  width: auto;
}

.main-nav > ul {
  align-items: center;
  display: flex;
  gap: clamp(10px, 1.25vw, 18px);
  list-style: none;
  padding: 0;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  font-size: 15px;
  font-weight: 700;
  padding-block: 8px;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--marigold);
}

.main-nav .has-submenu > a::after {
  content: " ▾";
  font-size: 11px;
  opacity: 0.6;
}

.main-nav .submenu {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: 6px 7px 0 var(--marigold);
  display: block;
  left: -15px;
  list-style: none;
  min-width: 240px;
  opacity: 0;
  padding: 10px;
  position: absolute;
  top: calc(100% + 9px);
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  visibility: hidden;
  z-index: 120;
}

.main-nav .has-submenu::before {
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
}

.main-nav .has-submenu:hover .submenu,
.main-nav .has-submenu:focus-within .submenu {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.main-nav .submenu a {
  border: 0;
  border-radius: 10px;
  display: block;
  font-size: 14.5px;
  padding: 9px 13px;
}

.main-nav .submenu a:hover,
.main-nav .submenu a:focus-visible {
  background: var(--paper-deep);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: none;
  font-size: 29px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.button {
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  line-height: 1.2;
  padding: 12px 23px;
  text-decoration: none;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.button:hover {
  box-shadow: 4px 5px 0 var(--marigold);
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-gold {
  background: var(--marigold);
  color: var(--ink);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-small {
  font-size: 14px;
  padding: 9px 18px;
}

.crumbs {
  color: var(--ink-soft);
  font-size: 14px;
  padding-top: 22px;
}

.crumbs a {
  text-underline-offset: 3px;
}

.page-hero {
  overflow: hidden;
  padding: clamp(54px, 8vw, 105px) 0 clamp(52px, 7vw, 88px);
  position: relative;
}

.page-hero::after {
  background: radial-gradient(circle, rgba(242, 183, 5, 0.48) 0 28%, transparent 70%);
  border-radius: 50%;
  content: "";
  height: 520px;
  position: absolute;
  right: -150px;
  top: -190px;
  width: 520px;
  z-index: -1;
}

.eyebrow {
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.17em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(43px, 6.5vw, 78px);
  font-weight: 560;
  letter-spacing: -0.02em;
  max-width: 15ch;
}

.page-hero .lede {
  color: var(--ink-soft);
  font-size: clamp(18px, 2.3vw, 22px);
  margin-top: 22px;
  max-width: 66ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.section {
  padding-block: clamp(58px, 8vw, 98px);
}

.section-tight {
  padding-block: clamp(42px, 6vw, 68px);
}

.section-alt {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-dark .card {
  color: var(--ink);
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 48px);
  max-width: 740px;
}

.section-heading h2 {
  font-size: clamp(31px, 4.5vw, 52px);
  font-weight: 560;
  letter-spacing: -0.015em;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 18px;
  margin-top: 14px;
}

.section-dark .section-heading p {
  color: rgba(251, 246, 236, 0.78);
}

.grid {
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
}

.grid > *,
.card {
  min-width: 0;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: clamp(23px, 3vw, 36px);
}

.card h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.card h3 {
  font-size: clamp(22px, 2.4vw, 29px);
}

.card h3 .small {
  display: block;
  margin-top: 7px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
}

.card p {
  color: var(--ink-soft);
}

.card a {
  overflow-wrap: anywhere;
}

.profile-card {
  overflow: hidden;
  padding: 0;
}

.profile-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 13px;
  padding: clamp(23px, 3vw, 36px);
}

.profile-photo {
  aspect-ratio: 456 / 512;
  border-bottom: 2px solid var(--ink);
  object-fit: cover;
  width: 100%;
}

.story-body {
  margin-top: clamp(34px, 5vw, 58px);
  max-width: 880px;
}

.story-body > * + * {
  margin-top: 18px;
}

.story-body h3 {
  color: var(--marigold);
  font-size: clamp(25px, 3.2vw, 36px);
  margin-top: clamp(36px, 5vw, 54px);
}

.story-body p {
  color: rgba(251, 246, 236, 0.86);
  font-size: clamp(17px, 2vw, 19px);
}

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-grid {
  align-items: stretch;
}

.blog-card-media {
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
  display: block;
  overflow: hidden;
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
  width: 100%;
}

.blog-card-media:hover .blog-card-image,
.blog-card-media:focus-visible .blog-card-image {
  transform: scale(1.025);
}

.blog-image-placeholder {
  align-items: flex-end;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 181, 0, 0.96) 0 10%, transparent 10.5%),
    radial-gradient(circle at 16% 82%, rgba(213, 128, 151, 0.78) 0 17%, transparent 17.5%),
    linear-gradient(135deg, var(--ink) 0 58%, #6a3651 58% 100%);
  color: var(--paper);
  display: flex;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 650;
  padding: clamp(22px, 3vw, 34px);
}

.blog-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.5vw, 30px);
}

.blog-card-content h2 {
  font-size: clamp(22px, 2.3vw, 29px);
}

.blog-card-content h2 a,
.blog-card-content h3 a {
  color: var(--ink);
  text-decoration-thickness: 1.5px;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
}

.blog-card-content h2 a:hover,
.blog-card-content h2 a:focus-visible,
.blog-card-content h3 a:hover,
.blog-card-content h3 a:focus-visible {
  text-decoration-color: var(--clay);
}

.blog-byline {
  font-size: 15px;
  font-weight: 700;
  margin-top: auto;
}

.video-card {
  overflow: hidden;
  padding: 0;
}

.support-video {
  aspect-ratio: 16 / 9;
  background: #161016;
  border-bottom: 2px solid var(--ink);
  display: block;
  object-fit: contain;
  width: 100%;
}

.video-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.5vw, 30px);
}

.blog-meta {
  color: var(--clay);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.blog-article-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.8fr);
}

.blog-article {
  min-width: 0;
}

.blog-article-image {
  aspect-ratio: 3 / 2;
  border: 2px solid var(--ink);
  border-radius: 24px;
  display: block;
  margin-bottom: clamp(30px, 5vw, 52px);
  object-fit: cover;
  width: 100%;
}

.blog-article > .blog-image-placeholder {
  border: 2px solid var(--ink);
  border-radius: 24px;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.blog-editor-note {
  border-left: 5px solid var(--clay);
  color: var(--ink-soft);
  margin-block: 25px clamp(32px, 5vw, 52px);
  padding: 3px 0 3px 21px;
}

.blog-editor-note p {
  margin-top: 6px;
}

.blog-content-warning {
  margin-bottom: 25px;
}

.blog-prose {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.78;
  max-width: 74ch;
}

.blog-prose > * + * {
  margin-top: 1.25em;
}

.blog-prose h2 {
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.16;
  margin-top: 1.8em;
}

.blog-prose blockquote {
  border-left: 5px solid var(--marigold);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.18em;
  padding-left: 22px;
}

.blog-prose a,
.blog-article-footer a,
.blog-support-panel a {
  overflow-wrap: anywhere;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.blog-poem p {
  font-family: var(--serif);
  font-size: 1.08em;
  line-height: 1.55;
  margin-top: 0.55em;
}

.blog-support-panel {
  margin-top: clamp(36px, 6vw, 60px);
}

.blog-support-panel h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.blog-article-footer {
  border-top: 2px solid var(--line);
  color: var(--ink-soft);
  margin-top: clamp(36px, 6vw, 60px);
  padding-top: 25px;
}

.blog-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.partner-card {
  overflow: hidden;
  padding: 0;
}

.partner-logo-link {
  align-items: center;
  background: #fff;
  border-bottom: 2px solid var(--ink);
  display: flex;
  min-height: 170px;
  padding: 24px;
}

.partner-logo {
  display: block;
  height: 100px;
  margin: auto;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.partner-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.5vw, 30px);
}

.grant-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  max-width: 900px;
}

.grant-card .partner-logo-link {
  border-bottom: 0;
  border-right: 2px solid var(--ink);
}

@media (max-width: 680px) {
  .grant-card {
    grid-template-columns: 1fr;
  }

  .grant-card .partner-logo-link {
    border-bottom: 2px solid var(--ink);
    border-right: 0;
  }
}

.card ul {
  color: var(--ink-soft);
  padding-left: 20px;
}

.card li + li {
  margin-top: 6px;
}

.card .button,
.card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.card-shadow-gold {
  box-shadow: 7px 8px 0 var(--marigold);
}

.card-shadow-rose {
  box-shadow: 7px 8px 0 var(--rose);
}

.card-shadow-clay {
  box-shadow: 7px 8px 0 var(--clay);
}

.card-shadow-leaf {
  box-shadow: 7px 8px 0 var(--leaf);
}

.text-link {
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: 1.05fr 0.95fr;
}

.split-copy > * + * {
  margin-top: 17px;
}

.split-copy h2 {
  font-size: clamp(31px, 4.5vw, 52px);
}

.split-copy h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.split-copy p,
.split-copy li {
  color: var(--ink-soft);
}

.section-dark .split-copy p,
.section-dark .split-copy li {
  color: rgba(251, 246, 236, 0.86);
}

.split-copy ul {
  padding-left: 22px;
}

.split-copy li + li {
  margin-top: 7px;
}

.wide-copy {
  max-width: 900px;
}

.library-heading {
  margin-top: clamp(52px, 7vw, 84px);
}

.library-heading h3 {
  font-size: clamp(29px, 4vw, 44px);
}

.library-book .text-link {
  margin-top: auto;
}

.library-note {
  margin-top: clamp(28px, 4vw, 42px);
  max-width: 900px;
}

.shop-product-list {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.supplier-catalogue {
  border-top: 1px solid var(--line);
  margin-top: clamp(48px, 7vw, 86px);
  padding-top: clamp(44px, 6vw, 72px);
}

.supplier-catalogue-heading {
  margin-bottom: clamp(26px, 4vw, 42px);
  max-width: 850px;
}

.supplier-catalogue[hidden] {
  display: none;
}

.catalogue-message:not(:empty) {
  background: #fff2f2;
  border-left: 4px solid #9f2d2d;
  color: #6d1717;
  margin-top: 1.5rem;
  max-width: 850px;
  padding: 0.85rem 1rem;
}

.shop-product {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 7px 8px 0 var(--marigold);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.product-gallery {
  background: var(--paper-deep);
  border-bottom: 2px solid var(--ink);
}

.product-image {
  background: var(--paper);
  border: 0;
  color: var(--ink);
  display: block;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.product-image-main {
  aspect-ratio: 4 / 4.7;
}

.product-thumbnails {
  border-top: 2px solid var(--ink);
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-image-thumbnail {
  aspect-ratio: 1;
}

.product-image-thumbnail + .product-image-thumbnail {
  border-left: 1px solid var(--line);
}

.product-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.shop-product-supplier .product-image img {
  background: #fff;
  object-fit: contain;
  padding: clamp(8px, 1.4vw, 16px);
}

.product-image-zoom {
  background: rgba(59, 34, 51, 0.92);
  border-radius: 999px;
  bottom: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  position: absolute;
  right: 12px;
}

.product-image:hover .product-image-zoom,
.product-image:focus-visible .product-image-zoom {
  background: var(--clay);
}

.product-image-placeholder {
  align-items: center;
  background: linear-gradient(135deg, rgba(232, 160, 180, 0.26), rgba(242, 183, 5, 0.2));
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.product-image-placeholder span {
  font-family: var(--serif);
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 600;
}

.product-image-placeholder small {
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 17px;
  min-width: 0;
  padding: clamp(22px, 2.8vw, 30px);
}

.product-heading-row {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.product-heading-row .eyebrow {
  margin-bottom: 10px;
}

.product-heading-row h2 {
  font-size: clamp(27px, 2.6vw, 37px);
}

.stock-badge {
  border: 2px solid var(--ink);
  border-radius: 999px;
  flex: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  text-transform: uppercase;
}

.stock-badge-in-stock {
  background: var(--leaf);
  color: #fff;
}

.stock-badge-low-stock {
  background: var(--marigold);
  color: var(--ink);
}

.stock-badge-sold-out {
  background: var(--clay);
  color: var(--paper);
}

.product-price {
  color: var(--clay);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 650;
  line-height: 1.1;
}

.product-price span {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-price-pending {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
}

.product-summary {
  color: var(--ink-soft);
  font-size: 16px;
}

.product-quick-note {
  align-self: flex-start;
  background: rgba(66, 109, 87, 0.12);
  border: 1px solid var(--leaf);
  border-radius: 999px;
  color: #3f6148;
  font-size: 13px;
  font-weight: 800;
  margin-top: -7px;
  padding: 5px 10px;
}

.product-more-details {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.product-more-details summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 14px;
}

.product-more-details summary::marker {
  color: var(--clay);
}

.product-more-details-content {
  border-top: 1px solid var(--line);
  padding: 2px 15px 15px;
}

.product-more-details-content section {
  padding-top: 14px;
}

.product-more-details-content section + section {
  border-top: 1px solid var(--line);
  margin-top: 14px;
}

.product-more-details-content h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-more-details-content p,
.product-more-details-content li {
  color: var(--ink-soft);
  font-size: 14px;
}

.product-more-details-content p,
.product-more-details-content ul {
  margin-top: 7px;
}

.product-more-details-content p + p {
  margin-top: 10px;
}

.product-more-details-content ul {
  padding-left: 19px;
}

.product-specifics {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.product-specifics section {
  border-top: 1px solid var(--line);
  padding-top: 17px;
}

.product-specifics h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-specifics p,
.product-specifics li {
  color: var(--ink-soft);
  font-size: 14px;
}

.product-features ul {
  margin-top: 7px;
  padding-left: 19px;
}

.product-features li + li {
  margin-top: 4px;
}

.variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin-top: 10px;
  padding-left: 0 !important;
}

.variant-list li {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  min-width: 74px;
  padding: 7px 10px;
}

.variant-list strong {
  color: var(--ink);
  font-size: 14px;
}

.variant-list span {
  color: var(--ink-soft);
}

.product-variant-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

.product-variant {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}

.variant-heading {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: space-between;
}

.variant-heading h4 {
  font-family: var(--sans);
  font-size: 15px;
}

.variant-heading span {
  background: var(--leaf);
  border-radius: 999px;
  color: #fff;
  flex: none;
  font-size: 12px;
  font-weight: 800;
  padding: 2px 7px;
}

.variant-measurements {
  font-size: 12px !important;
  margin-top: 7px;
}

.product-notice {
  padding: 14px 16px;
}

.product-notice {
  background: rgba(232, 160, 180, 0.18);
  border-left: 5px solid var(--rose);
}

.product-notice h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-notice ul {
  margin-top: 7px;
  padding-left: 19px;
}

.product-notice li {
  color: var(--ink-soft);
  font-size: 14px;
}

.product-purchase {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: auto;
  padding-top: 3px;
  width: 100%;
}

.shop-buy-button {
  text-align: center;
  width: 100%;
}

.shop-buy-button:disabled {
  background: #6f626a;
  border-color: #6f626a;
  color: #fff;
  cursor: not-allowed;
  opacity: 1;
}

.shop-buy-button:disabled:hover {
  box-shadow: none;
  transform: none;
}

.shop-heading {
  max-width: 720px;
}

.shop-coming-soon {
  align-items: center;
  background: var(--paper);
  border: 2px dashed var(--ink-soft);
  border-radius: 18px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(20px, 3vw, 30px);
}

.shop-coming-soon h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.shop-coming-soon p:last-child {
  color: var(--ink-soft);
  margin-top: 5px;
}

.shop-shared-heading {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.shop-information-grid {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-information-grid .card {
  height: 100%;
  padding: clamp(23px, 3vw, 32px);
}

.shop-information-grid h3 {
  font-family: var(--serif);
  font-size: clamp(25px, 2.7vw, 34px);
}

.shop-information-grid p {
  color: var(--ink-soft);
  font-size: 15px;
}

.shop-purpose-layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.text-link-light {
  color: var(--paper);
}

.shop-impact-panel {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 9px 0 var(--marigold);
  color: var(--ink);
  padding: clamp(25px, 4vw, 42px);
}

.shop-impact-panel h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}

.shop-impact-panel ul {
  list-style: none;
  margin-block: 20px;
  padding: 0;
}

.shop-impact-panel li {
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  padding-block: 11px;
}

.shop-impact-panel li:last-child {
  border-bottom: 1px solid var(--line);
}

.shop-help-strip {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 9px 0 var(--leaf);
  display: flex;
  gap: clamp(28px, 5vw, 70px);
  justify-content: space-between;
  padding: clamp(26px, 4vw, 44px);
}

.shop-help-strip > div:first-child {
  max-width: 720px;
}

.shop-help-strip h2 {
  font-size: clamp(29px, 4vw, 44px);
}

.shop-help-strip p:last-child {
  color: var(--ink-soft);
}

.shop-help-actions {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 14px;
}

/* Phase 2B cart and checkout */
.product-order-form {
  align-items: end;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: minmax(12rem, 1fr) 7rem auto;
  width: 100%;
}

.shop-field {
  display: grid;
  gap: 0.35rem;
}

.shop-field label,
.shipping-options legend {
  color: var(--plum);
  font-weight: 750;
}

.shop-field select,
.shop-field input {
  background: #fff;
  border: 2px solid var(--plum);
  border-radius: 0.55rem;
  color: var(--plum);
  font: inherit;
  min-height: 3rem;
  padding: 0.55rem 0.7rem;
  width: 100%;
}

.shop-field select:focus-visible,
.shop-field input:focus-visible,
.shipping-options input:focus-visible {
  outline: 3px solid var(--marigold);
  outline-offset: 3px;
}

.product-form-help {
  color: var(--muted);
  font-size: 0.9rem;
  grid-column: 1 / -1;
  margin: -0.3rem 0 0;
}

.shop-cart-section {
  border-block: 1px solid color-mix(in srgb, var(--plum) 20%, transparent);
}

.shop-cart-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
}

.shop-cart-status {
  color: var(--muted);
}

.shop-cart-items {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 1.25rem;
}

.shop-cart-item {
  align-items: center;
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--plum) 22%, transparent);
  border-radius: 0.8rem;
  display: grid;
  gap: 0.65rem 1rem;
  grid-template-columns: minmax(0, 1fr) 6.5rem auto;
  padding: 1rem;
}

.shop-cart-item h3,
.shop-cart-item p {
  margin: 0;
}

.shop-cart-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.shop-cart-item input {
  border: 2px solid var(--plum);
  border-radius: 0.45rem;
  font: inherit;
  min-height: 2.75rem;
  padding: 0.45rem;
  width: 100%;
}

.shop-cart-remove {
  background: transparent;
  border: 0;
  color: var(--clay);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  min-height: 2.75rem;
  padding: 0.45rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.shop-cart-summary {
  align-self: start;
  background: var(--cream);
  border: 2px solid var(--plum);
  border-radius: 1rem;
  box-shadow: 8px 8px 0 var(--marigold);
  padding: clamp(1rem, 3vw, 1.5rem);
  position: sticky;
  top: 1rem;
}

.shop-total-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.shop-total-final {
  border-top: 2px solid var(--plum);
  font-size: 1.1rem;
}

.shipping-options {
  border: 0;
  border-block: 1px solid color-mix(in srgb, var(--plum) 25%, transparent);
  margin: 0;
  padding: 1rem 0;
}

.shipping-options label {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: auto 1fr auto;
  min-height: 2.9rem;
}

.shipping-options input {
  height: 1.25rem;
  width: 1.25rem;
}

.shipping-options p,
.checkout-message,
.order-result-card p {
  font-size: 0.92rem;
}

.shop-checkout-button {
  margin-top: 0.5rem;
  width: 100%;
}

.checkout-message:not(:empty) {
  background: #fff2f2;
  border-left: 4px solid #9f2d2d;
  color: #6d1717;
  padding: 0.75rem;
}

.order-result-list {
  padding-left: 1.2rem;
}

@media (max-width: 800px) {
  .product-order-form,
  .shop-cart-layout {
    grid-template-columns: 1fr;
  }

  .shop-field-quantity {
    max-width: 8rem;
  }

  .product-order-form .shop-buy-button {
    width: 100%;
  }

  .shop-cart-summary {
    position: static;
  }
}

@media (max-width: 430px) {
  .shop-cart-item {
    grid-template-columns: minmax(0, 1fr) 5.5rem;
  }

  .shop-cart-remove {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

.split-media img {
  border: 2px solid var(--ink);
  border-radius: 23px;
  box-shadow: 9px 10px 0 var(--marigold);
  width: 100%;
}

.notice {
  background: rgba(242, 183, 5, 0.13);
  border-left: 5px solid var(--marigold);
  padding: 15px 18px;
}

.notice strong {
  display: block;
}

.notice p + p {
  margin-top: 8px;
}

.notice-dark {
  background: rgba(251, 246, 236, 0.09);
  border-left-color: var(--rose);
  color: var(--paper);
}

.section-dark .notice-dark p {
  color: rgba(251, 246, 236, 0.9);
}

.notice-dark strong {
  color: var(--marigold);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  padding: 0;
}

.pill-list li {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 13px;
}

.stats {
  background: var(--line);
  border: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat {
  background: var(--paper-deep);
  padding: clamp(24px, 3vw, 38px);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(37px, 4.7vw, 56px);
  line-height: 1;
}

.stat span {
  color: var(--ink-soft);
  display: block;
  font-size: 14.5px;
  margin-top: 10px;
}

.resource-groups {
  display: grid;
  gap: 22px;
}

.resource-group {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(21px, 3vw, 31px);
}

.resource-group h2,
.resource-group h3 {
  font-size: clamp(22px, 2.7vw, 30px);
}

.resource-links {
  display: grid;
  gap: 9px 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin-top: 17px;
  padding: 0;
}

.resource-links a {
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.resource-feature {
  margin-bottom: 30px;
}

.resource-pending {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
  gap: 8px;
}

.resource-status {
  background: #f1e7df;
  border-radius: 999px;
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.045em;
  padding: 4px 8px;
  text-transform: uppercase;
}

.quote {
  border-left: 5px solid var(--marigold);
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 28px);
  font-style: italic;
  padding-left: 20px;
}

.quote cite {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  margin-top: 12px;
}

.faq {
  border-bottom: 1px solid var(--line);
  padding-block: 17px;
}

.faq:first-child {
  border-top: 1px solid var(--line);
}

.faq summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 650;
  min-height: 44px;
}

.faq p {
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 72ch;
}

.next-step {
  background: var(--marigold);
  border: 2px solid var(--ink);
  border-radius: 25px;
  box-shadow: 9px 10px 0 var(--ink);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding: clamp(29px, 5vw, 55px);
}

.next-step h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.next-step p {
  margin-top: 11px;
  max-width: 63ch;
}

.next-step .hero-actions {
  align-items: center;
  margin-top: 0;
}

.page-nav {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.page-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  padding-block: 14px;
  padding-left: 0;
}

.page-nav a {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  min-height: 44px;
  text-underline-offset: 4px;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 27px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.35fr repeat(3, 1fr);
}

.footer-brand img {
  background: var(--paper);
  border-radius: 18px;
  filter: none;
  height: 142px;
  object-fit: contain;
  object-position: left;
  padding: 10px;
  width: 142px;
}

.footer-brand p {
  color: rgba(251, 246, 236, 0.72);
  font-size: 14.5px;
  margin-top: 17px;
  max-width: 40ch;
}

.site-footer h2 {
  color: var(--marigold);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 17px;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.site-footer a {
  color: rgba(251, 246, 236, 0.82);
  font-size: 14.5px;
  text-underline-offset: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 246, 236, 0.18);
  color: rgba(251, 246, 236, 0.66);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 15px;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 21px;
}

@media (max-width: 1240px) {
  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    left: 0;
    max-height: calc(100vh - 115px);
    overflow-y: auto;
    padding: 18px 24px 25px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav > ul {
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a {
    align-items: center;
    display: flex;
    min-height: 44px;
    padding: 10px 5px;
  }

  .main-nav .has-submenu > a::after {
    content: "";
  }

  .main-nav .submenu {
    background: transparent;
    border: 0;
    box-shadow: none;
    min-width: 0;
    opacity: 1;
    padding: 0 0 6px 17px;
    position: static;
    transform: none;
    visibility: visible;
  }

  .main-nav .submenu a {
    color: var(--ink-soft);
    font-size: 14px;
    min-height: 44px;
    padding: 8px 5px;
  }

  .nav-actions .button {
    display: none;
  }

  .shop-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-information-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-information-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  .site-footer li a {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
  }

  .grid-2,
  .grid-3,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-media {
    max-width: 560px;
  }

  .next-step {
    grid-template-columns: 1fr;
  }

  .next-step .hero-actions {
    justify-content: flex-start;
  }

  .footer-grid {
    gap: 33px;
  }

  .shop-information-grid,
  .shop-purpose-layout {
    grid-template-columns: 1fr;
  }

  .shop-information-grid > :last-child {
    grid-column: auto;
  }

  .shop-help-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-help-actions {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16.5px;
  }

  .topstrip .charity-number {
    display: none;
  }

  .topstrip .contacts a:first-child {
    display: none;
  }

  .brand img {
    height: 49px;
  }

  .nav-row {
    min-height: 75px;
  }

  .page-hero h1 {
    font-size: clamp(39px, 13vw, 60px);
  }

  .stats,
  .resource-links {
    grid-template-columns: 1fr;
  }

  .button {
    padding-inline: 20px;
  }

  .shop-product-list {
    grid-template-columns: 1fr;
  }

  .product-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-variant-grid {
    grid-template-columns: 1fr;
  }

  .shop-coming-soon {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-image,
  .blog-article > .blog-image-placeholder {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
