:root {
  --ink: #151515;
  --ink-soft: #3d3a36;
  --muted: #726d66;
  --paper: #fbfaf6;
  --paper-strong: #ffffff;
  --line: #ded8cf;
  --charcoal: #101817;
  --green: #3f6f59;
  --green-deep: #214437;
  --coral: #e45d45;
  --coral-deep: #b93e2b;
  --lime: #c5e803;
  --sky: #d8edf0;
  --gold: #c89a50;
  --shadow: 0 24px 60px rgba(16, 24, 23, .16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(16, 24, 23, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 23, .022) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  animation: page-enter .24s ease-out both;
  transition: opacity .18s ease, filter .18s ease;
}

body.page-leaving {
  opacity: .08;
  filter: blur(5px);
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

@keyframes page-enter {
  from {
    opacity: 0;
    filter: blur(7px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--radius);
  background: rgba(16, 24, 23, .58);
  color: #fff;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  border-color: rgba(20, 20, 20, .1);
  box-shadow: 0 12px 36px rgba(20, 20, 20, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 26px rgba(16, 24, 23, .16);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.brand img {
  width: 128px;
  height: auto;
  mix-blend-mode: normal;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .48));
}

.site-header.is-scrolled .brand {
  border-color: rgba(16, 24, 23, .08);
  background: rgba(255, 255, 255, .76);
  box-shadow: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: var(--radius);
  color: currentColor;
  font-size: .92rem;
  opacity: .9;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .16);
  opacity: 1;
}

.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, .18);
  opacity: 1;
  font-weight: 900;
}

.site-header.is-scrolled .nav-links a:hover {
  background: rgba(63, 111, 89, .1);
}

.site-header.is-scrolled .nav-links a[aria-current="page"] {
  background: rgba(63, 111, 89, .12);
}

.header-donate,
.primary-link,
.ghost-link,
.checkout-button,
.checkout-confirm,
.icon-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.header-donate {
  min-height: 44px;
  padding: 0 16px;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
}

.header-donate:hover,
.checkout-button:hover,
.checkout-confirm:hover,
.primary-link:hover {
  background: var(--coral-deep);
}

[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 704px;
  height: calc(100svh - 18px);
  max-height: 820px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(10, 14, 13, .86), rgba(10, 14, 13, .42) 46%, rgba(10, 14, 13, .72)),
    url("assets/hero-community.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(0deg, rgba(16, 24, 23, .78), transparent 40%),
    radial-gradient(circle at 82% 26%, rgba(216, 237, 240, .22), transparent 30%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 430px);
  gap: 34px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 112px 0 42px;
}

.hero-copy {
  align-self: end;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #f4b2a5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 20px;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 5.3rem;
  line-height: .94;
  font-weight: 500;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-shop-card {
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-shop-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hero-shop-card div {
  padding: 22px;
}

.hero-shop-card h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.hero-shop-card p:not(.eyebrow) {
  color: var(--ink-soft);
}

.magazine-hero {
  align-items: center;
  min-height: 780px;
  isolation: isolate;
  background: #0b100f;
  color: var(--ink);
}

.magazine-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("assets/hero-certification-cinema.jpg") center / cover no-repeat,
    #101817;
  filter: saturate(.72) contrast(1.08) brightness(.72);
  transform: scale(1.035);
}

.magazine-hero-bg::before,
.magazine-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.magazine-hero-bg::before {
  background:
    radial-gradient(circle at 54% 38%, rgba(255, 220, 170, .18), transparent 28%),
    linear-gradient(90deg, rgba(6, 10, 9, .88), rgba(6, 10, 9, .48) 44%, rgba(6, 10, 9, .82)),
    linear-gradient(0deg, rgba(6, 10, 9, .9), rgba(6, 10, 9, .14) 48%, rgba(6, 10, 9, .68));
}

.magazine-hero-bg::after {
  background:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .18;
  mix-blend-mode: screen;
}

.magazine-hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 116px 0 42px;
}

.magazine-cover-sheet {
  min-height: 610px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 10px;
  background:
    radial-gradient(circle at 82% 20%, rgba(197, 232, 3, .18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(248, 244, 234, .89));
  box-shadow: 0 42px 120px rgba(0, 0, 0, .34);
  backdrop-filter: blur(10px);
}

.magazine-masthead,
.magazine-cover-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.magazine-masthead {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 24, 23, .14);
}

.magazine-brand {
  color: var(--gold);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.magazine-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px 0 24px;
}

.magazine-cover-copy h1 {
  max-width: 520px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 5rem;
}

.magazine-cover-copy .hero-lede {
  max-width: 600px;
  color: var(--ink-soft);
}

.magazine-illustration {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 23, .13);
  border-radius: 10px;
  background:
    radial-gradient(circle at 52% 52%, rgba(255, 255, 255, .92), rgba(246, 241, 231, .78) 48%, rgba(232, 226, 213, .7)),
    #f5f0e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
}

.magazine-illustration::before,
.magazine-illustration::after {
  content: "";
  position: absolute;
  inset: 22% 13%;
  border: 2px solid rgba(197, 232, 3, .82);
  border-radius: 999px;
  transform: rotate(-10deg);
}

.magazine-illustration::after {
  inset: 28% 20%;
  border-color: rgba(16, 24, 23, .18);
  transform: rotate(15deg);
}

.diagram-node,
.cover-photo-card,
.diagram-hub {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(16, 24, 23, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 32px rgba(16, 24, 23, .14);
}

.diagram-node {
  min-width: 86px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--ink);
  font-weight: 900;
}

.diagram-node:hover,
.diagram-node:focus-visible {
  background: var(--lime);
  outline: none;
}

.node-ip {
  top: 34px;
  left: 38px;
}

.node-story {
  top: 44px;
  right: 58px;
}

.node-project {
  right: 34px;
  bottom: 112px;
}

.node-product {
  bottom: 34px;
  left: 62px;
}

.node-donate {
  right: 210px;
  bottom: 34px;
}

.cover-photo-card {
  overflow: hidden;
}

.cover-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-photo-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .88);
  color: var(--green-deep);
  font-size: .78rem;
  font-weight: 900;
}

.cover-photo-main {
  top: 112px;
  left: 116px;
  width: 310px;
  height: 190px;
  transform: rotate(-2deg);
}

.cover-photo-team {
  top: 176px;
  right: 70px;
  width: 224px;
  height: 168px;
  transform: rotate(3deg);
}

.cover-photo-ip {
  left: 210px;
  bottom: 78px;
  width: 180px;
  height: 160px;
  transform: rotate(4deg);
}

.diagram-hub {
  left: 50%;
  top: 49%;
  display: grid;
  place-items: center;
  width: 104px;
  min-height: 64px;
  padding: 9px 14px;
  border: 1px solid rgba(197, 232, 3, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  color: #14210c;
  box-shadow: 0 14px 30px rgba(16, 24, 23, .12);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.diagram-hub span {
  font-size: 1.18rem;
  font-weight: 950;
}

.diagram-hub small {
  color: rgba(20, 33, 12, .72);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: .9rem;
}

.magazine-cover-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(16, 24, 23, .14);
}

.primary-link,
.ghost-link {
  min-height: 48px;
  padding: 0 18px;
  font-weight: 800;
}

.primary-link {
  background: var(--coral);
  color: #fff;
}

.primary-link.dark {
  background: var(--green-deep);
}

.primary-link.dark:hover {
  background: var(--charcoal);
}

.primary-link.share-link {
  background: #b6ff2d;
  color: #14210c;
}

.primary-link.share-link:hover {
  background: #94df12;
}

.ghost-link {
  border: 1px solid rgba(255, 255, 255, .34);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.ghost-link.dark {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.donation-panel,
.checkout-card,
.thanks-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.donation-panel {
  align-self: end;
  padding: 24px;
}

.direct-donation-section {
  scroll-margin-top: 84px;
}

.donation-panel-inline {
  display: grid;
  grid-template-columns: minmax(170px, .7fr) minmax(300px, 1.25fr) minmax(280px, 1fr) minmax(250px, .85fr);
  gap: 16px;
  align-items: start;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.donation-panel-inline .panel-heading,
.donation-panel-inline .field-group,
.donation-panel-inline .field-grid {
  margin-bottom: 0;
}

.donation-panel-inline .impact-preview,
.donation-panel-inline .checkout-button {
  grid-column: 4;
}

.panel-heading h2 {
  margin-bottom: 0;
  font-size: 1.55rem;
  line-height: 1.2;
}

.field-group,
.field,
.donor-form {
  display: grid;
  gap: 10px;
}

.field-group {
  margin-bottom: 18px;
}

.field-label,
.input-shell span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(63, 111, 89, .28);
  border-radius: var(--radius);
  background: rgba(63, 111, 89, .08);
  color: var(--green-deep);
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
}

.mini-action:hover {
  background: var(--green-deep);
  color: #fff;
}

.field small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.amount-chip,
.segment,
.payment-method {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.amount-chip {
  font-weight: 900;
}

.amount-chip.is-active,
.segment.is-active,
.payment-method.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.input-shell {
  display: grid;
  gap: 8px;
}

.input-shell input,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: 0;
}

.field textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

.input-shell input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(63, 111, 89, .16);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.segment {
  font-weight: 800;
}

.impact-preview {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e8e3dc;
  border-radius: var(--radius);
  background: #f4f7f1;
}

.impact-preview div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.impact-preview span {
  color: var(--muted);
  font-weight: 800;
}

.impact-preview strong {
  color: var(--green-deep);
  font-size: 1.7rem;
  line-height: 1;
}

.impact-preview p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .95rem;
}

.checkout-button {
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(calc(100% - 40px), var(--max));
  margin: -28px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 22px 54px rgba(16, 24, 23, .12);
  position: relative;
  z-index: 3;
}

.impact-strip div {
  min-height: 128px;
  padding: 24px;
  background: rgba(255, 255, 255, .96);
}

.impact-strip strong {
  display: block;
  color: var(--green-deep);
  font-size: 2.1rem;
  line-height: 1;
}

.impact-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}

.channel-entry {
  padding-top: 74px;
}

.channel-entry-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.channel-entry-card {
  position: relative;
  grid-column: span 3;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 204px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(248, 244, 234, .9));
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.channel-entry-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(197, 232, 3, .58);
  border-radius: 50%;
}

.channel-entry-card:nth-child(5),
.channel-entry-card:nth-child(6) {
  grid-column: span 6;
  min-height: 170px;
}

.channel-entry-card:nth-child(6) {
  background:
    linear-gradient(145deg, rgba(16, 24, 23, .96), rgba(33, 68, 55, .94));
  color: #fff;
}

.channel-entry-card:nth-child(6) p,
.channel-entry-card:nth-child(6) span {
  color: rgba(255, 255, 255, .84);
}

.channel-entry-card:hover {
  border-color: rgba(63, 111, 89, .46);
  box-shadow: 0 16px 38px rgba(16, 24, 23, .1);
  transform: translateY(-2px);
}

.channel-entry-card i {
  color: var(--coral);
}

.channel-entry-card span {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.channel-entry-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.ip-home-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .78fr);
  gap: 26px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(216, 237, 240, .38)),
    #fff;
  box-shadow: 0 22px 58px rgba(16, 24, 23, .1);
}

.ip-home-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.ip-home-copy h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
}

.ip-home-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.ip-home-copy .primary-link {
  justify-self: start;
}

.ip-home-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 12px;
}

.ip-home-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.ip-home-gallery .ip-home-main {
  grid-row: span 2;
  object-fit: contain;
  padding: 18px;
}

.section-pad {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 92px 0 0;
}

.section-pad[data-chapter="01"] {
  --chapter-label: "01";
}

.section-pad[data-chapter="02"] {
  --chapter-label: "02";
}

.section-pad[data-chapter="03"] {
  --chapter-label: "03";
}

.section-pad[data-chapter="04"] {
  --chapter-label: "04";
}

.section-pad[data-chapter="05"] {
  --chapter-label: "05";
}

.section-pad[data-chapter="06"] {
  --chapter-label: "06";
}

.section-pad[data-chapter="07"] {
  --chapter-label: "07";
}

.section-pad[data-chapter="08"] {
  --chapter-label: "08";
}

.section-copy {
  max-width: 760px;
}

.section-copy h2,
.section-head h2,
.transparency-copy h2 {
  margin-bottom: 14px;
  font-size: 2.7rem;
  line-height: 1.08;
}

.section-copy p,
.transparency-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.data-note {
  max-width: 700px;
  margin-top: 10px;
  color: var(--muted) !important;
  font-size: .9rem !important;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .62fr);
  gap: 26px;
  margin-top: 34px;
  align-items: stretch;
}

.feature-image,
.story-card,
.media-grid article,
.project-card,
.cart-summary,
.progress-card,
.allocation-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-image {
  min-height: 380px;
  margin: 0;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-notes {
  display: grid;
  gap: 12px;
}

.mission-notes div {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
}

.mission-notes i {
  color: var(--sky);
}

.mission-notes h3,
.project-card h3,
.story-card h3,
.media-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
}

.mission-notes p,
.project-card p,
.story-card p,
.media-grid p,
.cart-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.mission-notes p {
  color: rgba(255, 255, 255, .74);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 24, 23, .12);
}

.section-pad[data-chapter] > .section-head::before {
  content: var(--chapter-label);
  flex: 0 0 auto;
  align-self: flex-start;
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  min-height: 34px;
  margin-right: 4px;
  border: 1px solid rgba(16, 24, 23, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--green-deep);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.section-pad[data-chapter] > .section-copy {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  max-width: 940px;
}

.section-pad[data-chapter] > .section-copy::before {
  content: var(--chapter-label);
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  min-height: 34px;
  border: 1px solid rgba(16, 24, 23, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--green-deep);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.section-pad[data-chapter] > .section-copy > * {
  grid-column: 2;
}

.text-link {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--green-deep);
  font-weight: 900;
}

.text-link:hover {
  border-color: var(--green);
  background: rgba(63, 111, 89, .08);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: project;
}

.project-card {
  position: relative;
  counter-increment: project;
  min-height: 288px;
  padding: 22px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.project-card::before {
  content: "0" counter(project);
  position: absolute;
  right: 18px;
  bottom: -20px;
  color: rgba(16, 24, 23, .045);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 5.8rem;
  line-height: 1;
}

.project-card:hover,
.story-card:hover,
.media-grid article:hover {
  border-color: rgba(63, 111, 89, .42);
  box-shadow: 0 18px 40px rgba(16, 24, 23, .12);
  transform: translateY(-2px);
}

.project-card i {
  color: var(--coral);
}

.project-card span {
  display: block;
  margin-top: 18px;
  color: var(--green-deep);
  font-size: .88rem;
  font-weight: 900;
}

.section-note {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.products-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
}

.products-layout::before {
  content: "";
  position: absolute;
  inset: -22px -22px 22px;
  z-index: -1;
  border: 1px solid rgba(16, 24, 23, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .46);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  min-height: 168px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(249, 246, 238, .94));
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  border-color: rgba(63, 111, 89, .38);
  box-shadow: 0 16px 36px rgba(16, 24, 23, .1);
  transform: translateY(-2px);
}

.product-visual {
  display: grid;
  place-items: end start;
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}

.product-visual span {
  margin: 10px;
  padding: 5px 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  color: var(--green-deep);
  font-size: .75rem;
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 10px;
}

.product-body {
  grid-template-rows: auto 1fr auto auto;
  align-content: stretch;
}

.product-body h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.price-line {
  color: var(--ink);
  font-weight: 900;
}

.quantity-control {
  align-self: end;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  width: 132px;
  min-height: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quantity-control button {
  border: 0;
  background: #f7f4ef;
  cursor: pointer;
}

.quantity-control span {
  display: grid;
  place-items: center;
  font-weight: 900;
}

.cart-summary {
  align-self: start;
  overflow: hidden;
  position: sticky;
  top: 96px;
}

.cart-summary img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.cart-summary div {
  padding: 20px;
}

.cart-feedback {
  min-height: 24px;
  margin: 0 20px 14px;
  color: var(--green-deep) !important;
  font-size: .9rem;
  font-weight: 800;
}

.cart-summary span {
  color: var(--muted);
  font-weight: 800;
}

.cart-summary strong {
  display: block;
  color: var(--green-deep);
  font-size: 2rem;
}

.cart-summary .primary-link {
  width: calc(100% - 40px);
  margin: 0 20px 20px;
}

.cart-summary .primary-link.dark {
  background: #b9ff1a;
  color: #13251d;
  box-shadow: 0 0 0 1px rgba(185, 255, 26, .78), 0 14px 34px rgba(122, 210, 0, .32);
}

.cart-summary .primary-link.dark:hover {
  background: #d6ff42;
  color: #0d1a14;
}

.cart-summary .primary-link.is-disabled,
.cart-summary .primary-link:disabled {
  background: #d8d6cb;
  color: #777267;
  box-shadow: none;
  cursor: not-allowed;
}

.cart-donate-link {
  display: inline-flex;
  justify-content: center;
  width: calc(100% - 40px);
  min-height: 38px;
  margin: -6px 20px 20px;
  color: var(--green-deep);
  font-weight: 900;
}

.cart-donate-link:hover {
  color: var(--coral-deep);
}

.product-showcase {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.product-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.product-showcase-head h3 {
  margin: 0;
  font-size: 1.45rem;
}

.product-showcase-head p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 218px;
  gap: 12px;
}

.product-shot {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-shot-wide {
  grid-column: span 2;
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-shot figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 7px 9px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  color: var(--green-deep);
  font-size: .82rem;
  font-weight: 900;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-card {
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.story-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.story-card-illustration img {
  height: clamp(320px, 34vw, 430px);
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background: #fff;
}

.story-card div {
  padding: 20px;
}

.story-card span {
  color: var(--coral-deep);
  font-size: .84rem;
  font-weight: 900;
}

.transparency {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .55fr);
  gap: 28px;
  align-items: start;
}

.transparency.section-pad {
  margin-top: 92px;
  padding: 42px;
  border: 1px solid rgba(16, 24, 23, .12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 14% 20%, rgba(197, 232, 3, .18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(242, 238, 228, .92));
  box-shadow: 0 26px 68px rgba(16, 24, 23, .12);
}

.transparency.section-pad[data-chapter] .transparency-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0 16px;
}

.transparency.section-pad[data-chapter] .transparency-copy::before {
  content: var(--chapter-label);
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  min-height: 34px;
  border: 1px solid rgba(16, 24, 23, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--green-deep);
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.transparency.section-pad[data-chapter] .transparency-copy > * {
  grid-column: 2;
}

.progress-card {
  margin-top: 26px;
  padding: 20px;
}

.progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.progress-top span {
  color: var(--muted);
  font-weight: 800;
}

.progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #ece7df;
}

.progress-track span {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--coral));
}

.allocation-list {
  display: grid;
  gap: 12px;
}

.allocation-list div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 94px;
  padding: 18px;
}

.allocation-list span {
  color: var(--green-deep);
  font-size: 1.7rem;
  font-weight: 950;
}

.allocation-list p {
  margin: 0;
  color: var(--ink-soft);
}

.media-section {
  padding-bottom: 92px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.media-link {
  display: block;
  min-width: 0;
}

.media-grid article {
  height: 100%;
  overflow: hidden;
}

.media-link article {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.media-link:hover article {
  border-color: rgba(63, 111, 89, .46);
  box-shadow: 0 16px 38px rgba(16, 24, 23, .12);
  transform: translateY(-2px);
}

.media-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-grid h3 {
  padding: 0 18px 20px;
}

.quote-panel {
  display: grid;
  align-content: center;
  min-height: 310px;
  padding: 28px;
  background: var(--green-deep) !important;
  color: #fff;
}

.quote-panel p {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.35;
}

.quote-panel span {
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.channel-main {
  min-height: 100vh;
}

.channel-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 540px;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
}

.channel-hero-bg,
.channel-hero::after {
  position: absolute;
  inset: 0;
}

.channel-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
}

.channel-hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 24, 23, .92), rgba(16, 24, 23, .5) 58%, rgba(16, 24, 23, .78)),
    linear-gradient(0deg, rgba(16, 24, 23, .68), transparent 45%);
}

.channel-hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 132px 0 58px;
}

.channel-hero-copy {
  max-width: 780px;
}

.channel-hero h1 {
  margin-bottom: 18px;
  font-size: 4.1rem;
  line-height: 1.02;
}

.channel-hero p:not(.eyebrow) {
  max-width: 740px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.12rem;
}

.channel-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 86px 0 0;
}

.channel-section:last-child {
  padding-bottom: 92px;
}

.channel-two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .55fr);
  gap: 22px;
  align-items: stretch;
}

.channel-panel,
.detail-card,
.activity-card,
.timeline-item,
.support-route,
.page-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.channel-panel {
  padding: 28px;
}

.channel-panel h2,
.page-cta h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.16;
}

.channel-panel p,
.detail-card p,
.activity-card p,
.timeline-item p,
.support-route p,
.page-cta p {
  color: var(--muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.detail-card {
  overflow: hidden;
}

.detail-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.detail-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.detail-card h3,
.activity-card h3,
.timeline-item h3,
.support-route h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.detail-meta,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-meta span,
.pill-list span,
.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius);
  background: #f2eee6;
  color: var(--green-deep);
  font-size: .84rem;
  font-weight: 900;
}

.price-badge {
  background: rgba(228, 93, 69, .12);
  color: var(--coral-deep);
}

.story-timeline,
.activity-grid,
.support-route-grid {
  display: grid;
  gap: 14px;
}

.story-timeline {
  grid-template-columns: repeat(3, 1fr);
}

.timeline-item,
.activity-card,
.support-route {
  padding: 22px;
}

.timeline-item span,
.activity-card span,
.support-route span {
  color: var(--coral-deep);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.activity-grid {
  grid-template-columns: repeat(2, 1fr);
}

.activity-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.activity-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  grid-auto-rows: 240px;
  gap: 12px;
}

.activity-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
}

.activity-gallery figure:first-child {
  grid-row: span 2;
}

.activity-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 7px 9px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  color: var(--green-deep);
  font-size: .82rem;
  font-weight: 900;
}

.support-route-grid {
  grid-template-columns: repeat(3, 1fr);
}

.support-route i {
  color: var(--coral);
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px;
  background: var(--green-deep);
  color: #fff;
}

.page-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.page-cta .primary-link {
  background: #b9ff1a;
  color: #13251d;
}

.page-cta .primary-link:hover {
  background: #d6ff42;
  color: #0d1a14;
}

.ip-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 42;
  display: grid;
  grid-template-columns: 58px auto;
  gap: 10px;
  align-items: center;
  max-width: 190px;
  min-height: 70px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(63, 111, 89, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  color: var(--green-deep);
  box-shadow: 0 16px 44px rgba(16, 24, 23, .16);
  backdrop-filter: blur(14px);
  font-size: .86rem;
  font-weight: 950;
}

.ip-float img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 999px;
  background: #fff;
}

.ip-hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, .68fr);
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 118px 0 0;
}

.ip-hero-copy {
  display: grid;
  gap: 18px;
}

.ip-hero-copy h1 {
  margin: 0;
  font-size: 4.4rem;
  line-height: .98;
}

.ip-hero-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.ip-hero-art {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff8e7;
  box-shadow: var(--shadow);
}

.ip-hero-art img {
  width: 100%;
  height: min(620px, 58vw);
  object-fit: contain;
  padding: 20px;
}

.ip-hero-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.ip-hero-pair img {
  height: min(520px, 48vw);
  background: #fff;
}

.ip-use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ip-intro-combo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ip-intro-combo article {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(246, 240, 226, .72)),
    #fff;
}

.ip-intro-combo article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(226, 239, 231, .74)),
    #fff;
}

.ip-intro-combo span {
  color: var(--coral-deep);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ip-intro-combo h3 {
  margin: 12px 0 12px;
  font-size: 1.7rem;
  line-height: 1.16;
}

.ip-intro-combo p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.ip-intro-combo ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ip-intro-combo li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.ip-intro-combo li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.ip-use-grid article,
.ip-character-board,
.ip-product-band,
.ip-product-links {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.ip-use-grid article {
  min-height: 220px;
  padding: 22px;
}

.ip-use-grid i {
  color: var(--coral);
}

.ip-use-grid h3 {
  margin: 14px 0 8px;
  font-size: 1.1rem;
}

.ip-use-grid p {
  margin: 0;
  color: var(--muted);
}

.ip-character-board {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.ip-character-board h2,
.ip-product-band h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.16;
}

.ip-character-board p,
.ip-product-band p {
  color: var(--muted);
}

.ip-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ip-card-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
}

.ip-card-grid img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  padding: 14px;
}

.ip-card-grid figcaption {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.ip-card-grid span {
  color: var(--muted);
  font-size: .9rem;
}

.ip-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ip-role-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
}

.ip-role-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  padding: 14px;
  background: #fff;
}

.ip-role-card div {
  padding: 22px 22px 22px 0;
}

.ip-role-card span {
  color: var(--coral-deep);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ip-role-card h3 {
  margin: 10px 0 8px;
  font-size: 1.3rem;
}

.ip-role-card p {
  margin: 0;
  color: var(--muted);
}

.coco-story {
  display: grid;
  grid-template-columns: minmax(320px, .55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 240, 220, .7)),
    #fff;
}

.coco-story figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.coco-story img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  padding: 18px;
}

.coco-story h2 {
  margin-bottom: 12px;
  font-size: 2.2rem;
  line-height: 1.12;
}

.coco-story p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.ip-product-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: center;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(255, 247, 219, .74)),
    #fff;
}

.ip-product-band > a {
  display: block;
}

.ip-product-band img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ip-product-links {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.ip-product-links h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.16;
}

.ip-product-links p {
  color: var(--muted);
}

.product-area-action {
  display: grid;
  justify-items: stretch;
}

.product-area-action .primary-link {
  min-height: 58px;
  background: var(--green-deep);
  color: #fff;
}

.product-area-action .primary-link:hover {
  background: var(--charcoal);
}

.card-link {
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.card-link:hover {
  border-color: rgba(63, 111, 89, .48);
  box-shadow: 0 18px 42px rgba(16, 24, 23, .12);
  transform: translateY(-2px);
}

.detail-page {
  background: var(--paper);
}

.detail-hero {
  padding: 118px 0 0;
}

.detail-hero.compact {
  padding-top: 108px;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, .7fr);
  gap: 28px;
  align-items: end;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.breadcrumb {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--green-deep);
}

.detail-copy h1 {
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1.02;
}

.detail-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.detail-meta.large span {
  min-height: 36px;
}

.detail-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  object-fit: cover;
}

.product-detail-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 24px;
  align-items: start;
}

.detail-article,
.detail-aside,
.buy-box,
.process-card,
.schedule-list article,
.signup-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.detail-article,
.detail-aside {
  padding: 28px;
}

.detail-article h2 {
  margin-bottom: 16px;
  font-size: 2.1rem;
  line-height: 1.12;
}

.detail-article p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.story-detail {
  max-width: 900px;
  margin: 0 auto;
}

.article-section-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.article-section-grid section,
.process-card {
  padding: 20px;
  border-radius: var(--radius);
  background: #f8f6f1;
}

.article-section-grid h3,
.process-card h3,
.schedule-list h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.article-section-grid p,
.process-card p,
.schedule-list p {
  margin: 0;
  color: var(--muted);
}

.process-card {
  background: #fff;
}

.process-card span,
.schedule-list span {
  color: var(--coral-deep);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-aside {
  display: grid;
  gap: 16px;
  background: var(--charcoal);
  color: #fff;
}

.detail-aside h2 {
  margin: 0;
  font-size: 1.45rem;
}

.detail-aside ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, .78);
}

.detail-aside .primary-link {
  width: 100%;
  background: #b9ff1a;
  color: #13251d;
}

.buy-box {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.buy-box > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.quick-order-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.quick-order-form h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.18;
}

.quick-order-form > p:not(.form-error) {
  margin: -6px 0 0;
  color: var(--muted);
}

.qty-stepper {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.qty-stepper button {
  border: 0;
  background: #f2eee6;
  color: var(--green-deep);
  font-size: 1.2rem;
  font-weight: 950;
  cursor: pointer;
}

.qty-stepper input {
  min-width: 0;
  border: 0;
  text-align: center;
  font-weight: 950;
  outline: 0;
}

.quick-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #f4f7f1;
}

.quick-total span {
  color: var(--muted);
  font-weight: 800;
}

.quick-total strong {
  color: var(--green-deep);
  font-size: 2rem;
  line-height: 1;
}

.next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.schedule-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.schedule-list article {
  padding: 22px;
}

.signup-panel {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
}

.signup-panel h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.14;
}

.signup-panel p:not(.eyebrow) {
  color: var(--muted);
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.signup-form .field-full,
.signup-form .form-error,
.signup-form .checkout-confirm {
  grid-column: 1 / -1;
}

.form-error.is-success {
  color: var(--green-deep);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(20px, calc((100% - var(--max)) / 2));
  background: var(--charcoal);
  color: #fff;
}

.site-footer img {
  width: 132px;
  margin-bottom: 10px;
  mix-blend-mode: screen;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.checkout-modal,
.thanks-modal {
  width: min(calc(100% - 28px), 960px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.checkout-modal::backdrop,
.thanks-modal::backdrop {
  background: rgba(10, 14, 13, .68);
  backdrop-filter: blur(8px);
}

.checkout-card {
  position: relative;
  padding: 24px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
  gap: 24px;
}

.checkout-summary h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.receipt-box {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f6f1;
}

.receipt-row,
.receipt-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.receipt-row span {
  color: var(--muted);
}

.receipt-row strong {
  max-width: 62%;
  text-align: right;
  overflow-wrap: anywhere;
}

.receipt-total {
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-weight: 950;
}

.receipt-total strong {
  color: var(--green-deep);
  font-size: 1.65rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.payment-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
}

.payment-box {
  min-height: 118px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
}

.payment-box strong {
  display: block;
  margin-bottom: 8px;
}

.payment-box p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.donor-form {
  padding: 44px 0 0;
}

.check-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-weight: 700;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--green);
}

.form-error {
  min-height: 24px;
  margin: 0;
  color: var(--coral-deep);
  font-weight: 800;
}

.checkout-confirm {
  min-height: 54px;
  background: var(--coral);
  color: #fff;
  font-weight: 950;
}

.thanks-modal {
  width: min(calc(100% - 28px), 980px);
}

.thanks-card {
  position: relative;
  padding: 24px;
}

.thanks-certificate {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 237, 240, .7), rgba(255, 255, 255, .9) 36%, rgba(232, 93, 69, .12)),
    #fff;
  text-align: center;
}

.thanks-certificate[hidden] {
  display: none;
}

.thanks-certificate p {
  margin: 0;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 1.8rem;
}

.thanks-certificate h2 {
  margin: 12px 0 16px;
  font-size: 2.2rem;
  line-height: 1.12;
}

.thanks-certificate strong {
  color: var(--green-deep);
  font-size: 1.4rem;
}

.thanks-certificate span {
  margin-top: 10px;
  color: var(--ink-soft);
}

.thanks-certificate small {
  margin-top: 22px;
  color: var(--muted);
}

.original-certificate-card {
  position: relative;
  width: min(100%, 860px);
  margin: 0 auto;
  aspect-ratio: 1448 / 1086;
  border: 1px solid #d7d7d2;
  border-radius: 0;
  background: #f8f8f4;
  box-shadow: 0 24px 70px rgba(17, 74, 92, .16);
  overflow: hidden;
}

.original-certificate-card[hidden] {
  display: none;
}

#certificateTemplate {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  filter: saturate(.86) contrast(1.02);
}

.cert-signature {
  position: absolute;
  left: 55.2%;
  top: 35.8%;
  width: 18.5%;
  height: 6.4%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  pointer-events: none;
}

.cert-signature:not([src]) {
  display: none;
}

.cert-text {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  color: #191919;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .58);
}

.cert-time {
  left: 58%;
  top: 65.55%;
  width: 20%;
  font-size: clamp(13px, 1.9vw, 25px);
  font-weight: 600;
  color: #242424;
}

.cert-serial {
  left: 50.4%;
  top: 7.2%;
  width: 14%;
  font-size: clamp(11px, 1.5vw, 16px);
  font-weight: 600;
  color: #3c3c3a;
  letter-spacing: .02em;
}

.award-form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f6f1;
}

.award-form[hidden] {
  display: none;
}

.award-form-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.award-form-head h3 {
  margin: 4px 0 0;
  font-size: 1.2rem;
  line-height: 1.18;
}

.award-form-head span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: rgba(63, 111, 89, .1);
  color: var(--green-deep);
  font-size: .78rem;
  font-weight: 900;
}

.award-fields {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 12px;
}

.award-fields textarea {
  min-height: 82px;
}

.signature-field {
  display: grid;
  gap: 8px;
}

.signature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.signature-head button {
  border: 0;
  background: transparent;
  color: var(--green-deep);
  font-weight: 900;
  cursor: pointer;
}

.signature-pad {
  position: relative;
  width: min(620px, 100%);
  height: 190px;
  border: 1px solid #cfcfca;
  border-radius: 0;
  background:
    linear-gradient(transparent 58%, rgba(46, 118, 137, .38) 58%, rgba(46, 118, 137, .38) calc(58% + 1px), transparent calc(58% + 1px)),
    rgba(255, 255, 255, .56);
  box-shadow: 0 22px 44px rgba(31, 91, 105, .1);
}

.signature-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  touch-action: none;
  cursor: crosshair;
}

.signature-hint {
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  text-align: center;
  font-family: "Kaiti SC", "STKaiti", "Songti SC", serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  color: rgba(17, 17, 17, .12);
  white-space: nowrap;
  transition: opacity .2s ease;
}

.signature-hint.hidden {
  opacity: 0;
}

.award-generate {
  justify-self: end;
  min-width: 210px;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    height: auto;
    max-height: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .magazine-hero-inner {
    padding-top: 112px;
  }

  .magazine-hero-bg {
    background-position: 48% center;
  }

  .magazine-grid {
    grid-template-columns: 1fr;
  }

  .magazine-cover-copy h1 {
    max-width: none;
  }

  .magazine-illustration {
    min-height: 510px;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .donation-panel {
    max-width: 620px;
  }

  .hero-shop-card {
    max-width: 620px;
  }

  .impact-strip,
  .channel-entry-grid,
  .project-grid,
  .story-grid,
  .media-grid,
  .detail-grid,
  .article-section-grid,
  .process-grid,
  .schedule-list,
  .ip-use-grid,
  .ip-card-grid,
  .story-timeline,
  .activity-grid,
  .support-route-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .channel-entry-card,
  .channel-entry-card:nth-child(5),
  .channel-entry-card:nth-child(6) {
    grid-column: auto;
    min-height: 190px;
  }

  .mission-layout,
  .products-layout,
  .product-detail-layout,
  .article-layout,
  .ip-home-layout,
  .ip-hero,
  .ip-product-band,
  .ip-product-links,
  .coco-story,
  .donation-panel-inline,
  .transparency,
  .checkout-grid,
  .detail-hero-grid,
  .channel-two-col,
  .signup-panel,
  .page-cta {
    grid-template-columns: 1fr;
  }

  .detail-hero-grid {
    align-items: start;
  }

  .detail-media img {
    height: 380px;
  }

  .ip-home-gallery {
    grid-auto-rows: 210px;
  }

  .ip-hero-art img {
    height: 480px;
  }

  .ip-hero-pair img {
    height: 360px;
  }

  .ip-duo-grid {
    grid-template-columns: 1fr;
  }

  .ip-role-card {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .channel-hero {
    min-height: 500px;
  }

  .channel-hero h1 {
    font-size: 3.35rem;
  }

  .activity-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .activity-gallery figure:first-child {
    grid-row: auto;
  }

  .donation-panel-inline .impact-preview,
  .donation-panel-inline .checkout-button {
    grid-column: auto;
  }

  .donor-form {
    padding-top: 0;
  }

  .cart-summary {
    position: static;
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
  }

  .cart-summary .primary-link {
    grid-column: 1 / -1;
  }

  .product-showcase-head {
    display: grid;
    align-items: start;
  }

  .product-showcase-head p:not(.eyebrow) {
    max-width: none;
  }

  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .product-shot-wide {
    grid-column: auto;
  }
}

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

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 56px;
    padding: 8px 8px 8px 12px;
  }

  .brand,
  .brand img {
    width: 108px;
  }

  .brand {
    width: 128px;
    padding: 6px 9px;
  }

  .header-donate {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero-inner {
    width: min(calc(100% - 24px), var(--max));
    padding: 96px 0 30px;
  }

  .magazine-hero-inner {
    width: min(calc(100% - 24px), var(--max));
    padding: 96px 0 28px;
  }

  .magazine-hero {
    min-height: auto;
  }

  .magazine-hero-bg {
    background-position: 47% center;
    filter: saturate(.68) contrast(1.12) brightness(.54);
    transform: scale(1.08);
  }

  .magazine-hero-bg::before {
    background:
      radial-gradient(circle at 54% 36%, rgba(255, 211, 152, .14), transparent 34%),
      linear-gradient(180deg, rgba(6, 10, 9, .92), rgba(6, 10, 9, .5) 38%, rgba(6, 10, 9, .94)),
      linear-gradient(90deg, rgba(6, 10, 9, .86), rgba(6, 10, 9, .5) 50%, rgba(6, 10, 9, .86));
  }

  .magazine-cover-sheet {
    min-height: auto;
    padding: 16px;
    background:
      radial-gradient(circle at 82% 20%, rgba(197, 232, 3, .12), transparent 30%),
      linear-gradient(135deg, rgba(255, 255, 255, .93), rgba(248, 244, 234, .88));
    box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
  }

  .magazine-masthead,
  .magazine-cover-footer {
    display: grid;
    justify-content: stretch;
  }

  .magazine-brand {
    font-size: 1.35rem;
    letter-spacing: .12em;
  }

  .magazine-grid {
    gap: 20px;
    padding: 24px 0 18px;
  }

  .magazine-cover-copy h1 {
    font-size: 3rem;
  }

  .magazine-illustration {
    min-height: 420px;
  }

  .cover-photo-main {
    top: 86px;
    left: 44px;
    width: 230px;
    height: 150px;
  }

  .cover-photo-team {
    top: 188px;
    right: 22px;
    width: 170px;
    height: 128px;
  }

  .cover-photo-ip {
    left: 96px;
    bottom: 56px;
    width: 144px;
    height: 124px;
  }

  .diagram-hub {
    width: 88px;
    min-height: 54px;
    height: auto;
    padding: 8px 12px;
  }

  .diagram-node {
    min-width: 72px;
    min-height: 38px;
    padding: 0 10px;
    font-size: .9rem;
  }

  .node-ip {
    top: 22px;
    left: 20px;
  }

  .node-story {
    top: 22px;
    right: 20px;
  }

  .node-project {
    right: 18px;
    bottom: 84px;
  }

  .node-product {
    bottom: 22px;
    left: 20px;
  }

  .node-donate {
    right: 112px;
    bottom: 22px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-shop-card img {
    height: 180px;
  }

  .hero-actions,
  .thanks-actions {
    display: grid;
  }

  .award-form-head,
  .award-fields {
    display: grid;
  }

  .award-form-head span,
  .award-generate {
    justify-self: stretch;
  }

  .signature-pad {
    height: 158px;
  }

  .primary-link,
  .ghost-link {
    width: 100%;
  }

  .donation-panel {
    padding: 18px;
  }

  .field-grid,
  .amount-grid,
  .impact-strip,
  .project-grid,
  .channel-entry-grid,
  .detail-grid,
  .article-section-grid,
  .process-grid,
  .schedule-list,
  .signup-form,
  .ip-intro-combo,
  .ip-use-grid,
  .ip-card-grid,
  .story-timeline,
  .activity-grid,
  .activity-gallery,
  .support-route-grid,
  .product-list,
  .story-grid,
  .media-grid,
  .cart-summary {
    grid-template-columns: 1fr;
  }

  .story-card-illustration img {
    height: min(92vw, 380px);
    padding: 14px;
  }

  .section-pad {
    width: min(calc(100% - 24px), var(--max));
    padding-top: 64px;
  }

  .detail-hero {
    padding-top: 92px;
  }

  .ip-hero {
    width: min(calc(100% - 24px), var(--max));
    padding-top: 92px;
  }

  .ip-hero-copy h1 {
    font-size: 2.65rem;
  }

  .ip-hero-art img {
    height: 340px;
  }

  .ip-hero-pair {
    grid-template-columns: 1fr;
  }

  .ip-hero-pair img {
    height: 280px;
  }

  .ip-role-card {
    grid-template-columns: 1fr;
  }

  .ip-role-card img {
    height: 250px;
    min-height: 250px;
  }

  .ip-role-card div {
    padding: 0 18px 20px;
  }

  .coco-story {
    padding: 20px;
  }

  .coco-story img {
    height: 310px;
  }

  .ip-home-layout {
    padding: 20px;
  }

  .ip-product-links {
    padding: 20px;
  }

  .ip-home-copy h2,
  .ip-character-board h2,
  .ip-product-band h2 {
    font-size: 1.75rem;
  }

  .ip-home-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .ip-home-gallery .ip-home-main {
    grid-row: auto;
  }

  .ip-card-grid img {
    height: 260px;
  }

  .ip-float {
    right: 10px;
    bottom: 10px;
    grid-template-columns: 48px;
    max-width: 68px;
    padding: 8px;
  }

  .ip-float img {
    width: 48px;
    height: 48px;
  }

  .ip-float span {
    display: none;
  }

  .detail-hero-grid {
    width: min(calc(100% - 24px), var(--max));
  }

  .detail-copy h1 {
    font-size: 2.55rem;
  }

  .detail-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .detail-media img {
    height: 300px;
  }

  .channel-section {
    width: min(calc(100% - 24px), var(--max));
    padding-top: 64px;
  }

  .channel-hero {
    min-height: auto;
  }

  .channel-hero-inner {
    width: min(calc(100% - 24px), var(--max));
    padding: 104px 0 46px;
  }

  .channel-hero h1 {
    font-size: 2.55rem;
  }

  .channel-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .channel-panel,
  .detail-article,
  .detail-aside,
  .timeline-item,
  .activity-card,
  .support-route,
  .signup-panel,
  .page-cta {
    padding: 20px;
  }

  .detail-card img {
    height: 220px;
  }

  .activity-gallery {
    grid-auto-rows: 230px;
  }

  .section-copy h2,
  .section-head h2,
  .transparency-copy h2 {
    font-size: 2rem;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .section-pad[data-chapter] > .section-head::before {
    justify-self: start;
    margin-right: 0;
  }

  .section-pad[data-chapter] > .section-copy,
  .transparency.section-pad[data-chapter] .transparency-copy {
    grid-template-columns: 1fr;
  }

  .section-pad[data-chapter] > .section-copy::before,
  .transparency.section-pad[data-chapter] .transparency-copy::before {
    justify-self: start;
  }

  .section-pad[data-chapter] > .section-copy > *,
  .transparency.section-pad[data-chapter] .transparency-copy > * {
    grid-column: auto;
  }

  .section-note {
    max-width: none;
    text-align: left;
  }

  .impact-strip {
    width: min(calc(100% - 24px), var(--max));
    margin-top: 14px;
  }

  .impact-strip div {
    min-height: 100px;
  }

  .feature-image {
    min-height: 260px;
  }

  .products-layout::before {
    inset: -12px -12px 12px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 150px;
  }

  .cart-summary img {
    height: 190px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .transparency.section-pad {
    margin-top: 64px;
    padding: 22px;
  }

  .checkout-card,
  .thanks-card {
    padding: 18px;
  }

  .checkout-summary h2,
  .thanks-certificate h2 {
    font-size: 1.65rem;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

/* Apple-inspired homepage polish: quieter surfaces, stricter grid rhythm. */
body {
  background: #f5f5f7;
}

.site-header {
  width: min(calc(100% - 32px), 1120px);
  min-height: 54px;
  padding: 7px 10px 7px 14px;
  border-color: rgba(16, 24, 23, .1);
  background: rgba(255, 255, 255, .8);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(16, 24, 23, .1);
}

.brand {
  width: 136px;
  min-height: 32px;
  padding: 4px 8px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 122px;
  filter: none;
}

.nav-links {
  gap: 2px;
}

.nav-links a {
  padding: 7px 10px;
  font-size: .86rem;
  font-weight: 750;
  opacity: .78;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(16, 24, 23, .06);
  opacity: 1;
}

.header-donate {
  min-height: 40px;
  padding: 0 15px;
  font-weight: 850;
}

.magazine-hero {
  min-height: 760px;
  background: #111613;
}

.magazine-hero-bg {
  filter: saturate(.9) contrast(1.08) brightness(1.08);
}

.magazine-hero-bg::before {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 244, 220, .36), rgba(255, 229, 196, .14) 36%, transparent 64%),
    linear-gradient(110deg, rgba(145, 92, 45, .16), transparent 36%, rgba(30, 60, 68, .14) 72%, rgba(9, 12, 12, .32)),
    linear-gradient(90deg, rgba(7, 10, 9, .42), rgba(7, 10, 9, .08) 50%, rgba(7, 10, 9, .4)),
    linear-gradient(0deg, rgba(4, 5, 5, .48), rgba(7, 10, 9, .04) 48%, rgba(4, 5, 5, .28));
}

.magazine-hero-bg::after {
  background:
    radial-gradient(ellipse at center, transparent 58%, rgba(0, 0, 0, .34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .08), transparent 18%, transparent 78%, rgba(0, 0, 0, .12));
  opacity: 1;
  mix-blend-mode: normal;
}

.magazine-hero-inner,
.section-pad,
.impact-strip {
  width: min(calc(100% - 48px), 1120px);
}

.magazine-cover-sheet {
  min-height: 590px;
  padding: 26px 28px;
  border-color: rgba(255, 255, 255, .5);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(247, 244, 238, .92));
  box-shadow: 0 36px 90px rgba(0, 0, 0, .26);
}

.magazine-masthead,
.magazine-cover-footer {
  font-size: .72rem;
}

.magazine-brand {
  font-size: 1.78rem;
}

.magazine-grid {
  grid-template-columns: minmax(0, .9fr) minmax(360px, .86fr);
  gap: 34px;
  padding: 36px 0 28px;
}

.magazine-cover-copy h1 {
  max-width: 610px;
  margin-bottom: 20px;
  font-size: clamp(3.35rem, 6vw, 4.75rem);
  line-height: .96;
  text-wrap: balance;
}

.magazine-cover-copy .hero-lede {
  max-width: 570px;
  margin-bottom: 26px;
  font-size: 1.02rem;
}

.magazine-illustration {
  min-height: 430px;
  overflow: hidden;
  border-color: rgba(16, 24, 23, .1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(241, 238, 231, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
}

.magazine-illustration::before {
  inset: 20% 11%;
  border-color: rgba(16, 24, 23, .15);
  transform: rotate(-8deg);
}

.magazine-illustration::after {
  display: none;
}

.diagram-node,
.cover-photo-card,
.diagram-hub {
  border-color: rgba(16, 24, 23, .12);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 34px rgba(16, 24, 23, .12);
}

.diagram-node {
  min-width: 74px;
  min-height: 38px;
  padding: 0 12px;
  font-size: .88rem;
}

.diagram-hub {
  width: auto;
  min-width: 92px;
  min-height: 58px;
  border-color: rgba(16, 24, 23, .12);
  background: rgba(255, 255, 255, .9);
}

.diagram-hub span {
  font-size: 1.04rem;
}

.cover-photo-main {
  top: 104px;
  left: 58px;
  width: 300px;
  height: 188px;
  transform: rotate(-1.5deg);
}

.cover-photo-team {
  top: 166px;
  right: 42px;
  width: 230px;
  height: 166px;
  transform: rotate(2deg);
}

.cover-photo-ip {
  left: 190px;
  bottom: 52px;
  width: 172px;
  height: 154px;
  transform: rotate(3deg);
}

.node-ip {
  top: 30px;
  left: 36px;
}

.node-story {
  top: 36px;
  right: 48px;
}

.node-project {
  right: 30px;
  bottom: 84px;
}

.node-product {
  bottom: 30px;
  left: 54px;
}

.node-donate {
  right: 174px;
  bottom: 30px;
}

.impact-strip {
  gap: 12px;
  margin: 24px auto 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.impact-strip div {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
}

.impact-strip strong {
  font-size: 1.9rem;
}

.section-pad {
  padding-top: 96px;
}

.section-head {
  align-items: start;
  margin-bottom: 28px;
  padding-top: 0;
  border-top: 0;
}

.section-pad[data-chapter] > .section-head::before,
.section-pad[data-chapter] > .section-copy::before,
.transparency.section-pad[data-chapter] .transparency-copy::before {
  display: none;
}

.section-pad[data-chapter] > .section-copy,
.transparency.section-pad[data-chapter] .transparency-copy {
  display: block;
  max-width: 780px;
}

.section-pad[data-chapter] > .section-copy > *,
.transparency.section-pad[data-chapter] .transparency-copy > * {
  grid-column: auto;
}

.section-copy h2,
.section-head h2,
.transparency-copy h2 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  letter-spacing: 0;
}

.section-note {
  max-width: 310px;
  font-size: .95rem;
}

.channel-entry {
  padding-top: 88px;
}

.channel-entry-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.channel-entry-card,
.channel-entry-card:nth-child(5),
.channel-entry-card:nth-child(6) {
  grid-column: auto;
  min-height: 168px;
  padding: 18px;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
}

.channel-entry-card::after {
  display: none;
}

.channel-entry-card:nth-child(6) p,
.channel-entry-card:nth-child(6) span {
  color: inherit;
}

.channel-entry-card p {
  font-size: .88rem;
  line-height: 1.5;
}

.products-layout::before {
  display: none;
}

.products-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}

.product-list,
.project-grid,
.story-grid,
.media-grid {
  gap: 16px;
}

.product-card,
.project-card,
.story-card,
.media-grid article,
.cart-summary,
.feature-image,
.progress-card,
.allocation-list div {
  background: rgba(255, 255, 255, .9);
  box-shadow: none;
}

.product-card {
  min-height: 176px;
  padding: 16px;
}

.product-visual {
  min-height: 140px;
}

.cart-summary {
  border-color: rgba(16, 24, 23, .1);
}

.cart-summary img {
  height: 190px;
}

.product-showcase {
  margin-top: 42px;
  padding-top: 34px;
}

.product-gallery {
  gap: 14px;
}

.donation-panel-inline {
  grid-template-columns: minmax(160px, .64fr) minmax(300px, 1.2fr) minmax(260px, .94fr) minmax(240px, .84fr);
  gap: 14px;
  padding: 22px;
  box-shadow: none;
}

.mission-layout {
  gap: 22px;
}

.mission-notes div {
  display: grid;
  align-content: center;
  min-height: 150px;
  background: #111715;
}

.project-card {
  min-height: 260px;
}

.project-card::before {
  display: none;
}

.transparency.section-pad {
  margin-top: 96px;
  padding: 34px;
  background: rgba(255, 255, 255, .9);
  box-shadow: none;
}

.allocation-list div {
  min-height: 88px;
}

.media-section {
  padding-bottom: 96px;
}

.quote-panel {
  min-height: 300px;
}

@media (max-width: 980px) {
  .magazine-hero-inner,
  .section-pad,
  .impact-strip {
    width: min(calc(100% - 32px), 900px);
  }

  .magazine-cover-sheet {
    min-height: auto;
  }

  .magazine-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .magazine-cover-copy {
    text-align: center;
  }

  .magazine-cover-copy h1,
  .magazine-cover-copy .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .magazine-illustration {
    width: min(100%, 660px);
    margin: 0 auto;
  }

  .impact-strip,
  .channel-entry-grid,
  .project-grid,
  .story-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-layout,
  .mission-layout,
  .donation-panel-inline,
  .transparency {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 52px;
    grid-template-columns: auto auto;
    gap: 8px;
    padding: 7px 8px;
  }

  .brand {
    width: 116px;
    padding: 4px 6px;
  }

  .brand img {
    width: 104px;
  }

  .header-donate {
    min-height: 38px;
    padding: 0 10px;
    font-size: .88rem;
  }

  .magazine-hero {
    min-height: auto;
  }

  .magazine-hero-inner,
  .section-pad,
  .impact-strip {
    width: min(calc(100% - 24px), var(--max));
  }

  .magazine-hero-inner {
    padding-top: 90px;
  }

  .magazine-cover-sheet {
    padding: 16px;
  }

  .magazine-masthead,
  .magazine-cover-footer {
    display: grid;
    gap: 6px;
  }

  .magazine-grid {
    padding: 26px 0 18px;
  }

  .magazine-cover-copy h1 {
    font-size: clamp(2.8rem, 15vw, 3.7rem);
  }

  .hero-actions {
    display: grid;
  }

  .magazine-illustration {
    min-height: 390px;
  }

  .cover-photo-main {
    top: 82px;
    left: 26px;
    width: 228px;
    height: 146px;
  }

  .cover-photo-team {
    top: 170px;
    right: 18px;
    width: 168px;
    height: 126px;
  }

  .cover-photo-ip {
    left: 88px;
    bottom: 48px;
    width: 130px;
    height: 118px;
  }

  .node-ip {
    top: 18px;
    left: 16px;
  }

  .node-story {
    top: 18px;
    right: 16px;
  }

  .node-project {
    right: 16px;
    bottom: 68px;
  }

  .node-product {
    bottom: 16px;
    left: 16px;
  }

  .node-donate {
    right: 102px;
    bottom: 16px;
  }

  .impact-strip,
  .channel-entry-grid,
  .project-grid,
  .story-grid,
  .media-grid,
  .product-list,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .impact-strip div {
    min-height: 92px;
  }

  .section-pad {
    padding-top: 72px;
  }

  .section-head,
  .product-showcase-head {
    display: grid;
    gap: 12px;
  }

  .section-note {
    max-width: none;
    text-align: left;
  }

  .product-card {
    grid-template-columns: 112px 1fr;
  }

  .product-visual {
    min-height: 138px;
  }

  .cart-summary {
    display: block;
  }

  .donation-panel-inline {
    padding: 18px;
  }

  .transparency.section-pad {
    margin-top: 72px;
    padding: 22px;
  }
}
