:root {
  --paper: #f4f1e9;
  --paper-2: #ebe5da;
  --ink: #11110f;
  --muted: #625e56;
  --earth: #9b5b31;
  --green: #596b54;
  --line: rgba(17, 17, 15, 0.17);
  --white: #fffdf8;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-wrap: break-word;
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
img {
  display: block;
  max-width: 100%;
}
figure {
  margin: 0;
}
p {
  margin: 0 0 20px;
}
h1,
h2,
h3,
h4 {
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 0 0 22px;
  text-wrap: balance;
}
h1 {
  font-size: clamp(3rem, 6.7vw, 6.3rem);
  line-height: 0.98;
}
h1 em {
  font-style: normal;
  color: var(--earth);
}
h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
}
h3 {
  font-size: 1.7rem;
}
h4 {
  font-size: 1.25rem;
  line-height: 1.25;
}
.shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}
.section {
  padding: 90px 0;
}
.eyebrow,
.number {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  margin: 0 0 20px;
}
.number {
  display: block;
}
.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.65;
  color: #393832;
}
.small,
.caption,
figcaption {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
}
figcaption,
.caption {
  margin-top: 12px;
}
.section-heading {
  max-width: 810px;
  margin-bottom: 42px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s;
}
.primary {
  background: var(--ink);
  color: white;
}
.primary:hover {
  background: #383b30;
}
.outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.outline:hover {
  background: var(--paper-2);
}
.light {
  background: var(--paper);
  color: var(--ink);
}
.full {
  width: 100%;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  padding: 4px 0;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 600;
}
.skip {
  position: fixed;
  top: -100px;
  left: 10px;
  z-index: 100;
  background: white;
  padding: 16px;
}
.skip:focus {
  top: 10px;
}
:is(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #875121;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.preview-banner {
  padding: 7px 16px;
  text-align: center;
  background: var(--paper-2);
  font-size: 0.72rem;
  color: #555248;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 241, 233, 0.97);
  border-bottom: 1px solid var(--line);
  min-height: 78px;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.brand img {
  width: 32px;
  height: 32px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
}
.cart-toggle {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 100px;
}
.cart-toggle span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  margin-left: 5px;
  font-size: 0.75rem;
}
.hero-section {
  padding-top: 48px;
  padding-bottom: 70px;
}
.hero-heading {
  max-width: 990px;
  margin-bottom: 34px;
}
.hero-heading .lead {
  max-width: 710px;
  margin: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: start;
}
.video-panel {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: #16120e;
}
.video-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62);
}
.video-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 24px;
  background: linear-gradient(0deg, #08070566, transparent);
}
.video-invitation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  padding: 12px;
}
.video-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  background: #ffffff18;
  border: 1px solid #ffffffb3;
  border-radius: 50%;
  font-size: 1.4rem;
  letter-spacing: 0;
}
.video-invitation:hover .video-mark {
  background: white;
  color: var(--ink);
}
.video-pending {
  font-size: 0.8rem;
  color: #f5f0e5;
}
.video-cover > p {
  margin-bottom: 8px;
}
.video-panel iframe,
.video-panel video {
  width: 100%;
  height: 100%;
  border: 0;
}
.funding-card {
  padding: 30px;
  background: var(--paper-2);
}
.amount strong {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.045em;
  display: block;
}
.amount > span {
  font-size: 1rem;
  display: block;
  margin-top: 5px;
}
.progress-bar {
  height: 12px;
  border-radius: 100px;
  overflow: hidden;
  background: #d4d0c4;
  margin: 22px 0 14px;
  display: flex;
}
.progress-bar > span {
  height: 100%;
}
.remaining {
  display: flex;
  gap: 6px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.remaining strong {
  font-weight: 600;
}
.funding-card > p:not(.eyebrow):not(.small) {
  font-size: 0.96rem;
}
.funding-footnote {
  margin: 14px 0 0 !important;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}
.story-photo {
  width: 100%;
  height: 590px;
  object-fit: cover;
}
.feature-lines {
  margin: 28px 0;
}
.feature-lines p {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  margin: 0;
}
.feature-lines strong {
  font-size: 1rem;
  font-weight: 600;
  display: block;
}
.feature-lines span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}
.proof-section {
  background: #161712;
  color: white;
  padding: 68px 0;
}
.proof-section h2 {
  max-width: 800px;
}
.proof-grid,
.next-grid,
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.proof-grid {
  margin-top: 40px;
}
.proof-grid article {
  border-top: 1px solid #ffffff40;
  padding-top: 20px;
}
.proof-grid article > span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: #b9bcb0;
}
.proof-grid h3 {
  font-size: 1.5rem;
  margin-top: 20px;
}
.proof-grid p {
  color: #d7d8d0;
  font-size: 0.96rem;
  margin-bottom: 0;
}
.step-number {
  display: block;
  color: var(--earth);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.next-grid article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.next-grid p {
  color: var(--muted);
  font-size: 0.96rem;
}
.funding-details {
  margin-top: 18px;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  font-weight: 600;
  cursor: pointer;
  min-height: 28px;
}
details > p {
  max-width: 840px;
  margin-top: 18px;
}
details > p:last-child {
  margin-bottom: 0;
}
.land-section {
  padding: 85px 0;
  background: var(--paper-2);
}
.vision-map {
  margin: 40px 0;
}
.vision-map img {
  width: 100%;
  height: auto;
}
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 6vw;
}
.hub-grid h3 {
  font-size: 1.6rem;
}
.hub-grid p {
  color: #555248;
}
.hub-grid article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.network-grid {
  gap: 14px;
}
.network-grid article {
  padding: 28px;
  background: #e9ecdf;
}
.network-grid .eyebrow {
  font-size: 0.65rem;
}
.network-grid h3 {
  font-size: 1.6rem;
}
.network-grid p:last-child {
  color: #4e5646;
  font-size: 0.94rem;
  margin: 0;
}
.technology-path {
  margin-top: 35px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 900px;
}
.technology-path h3 {
  font-size: 1.8rem;
}
.founders-section {
  padding: 75px 0;
  background: #d8c0a8;
}
.founders-section .lead {
  color: #332a23;
}
.founders-section p {
  color: #493f36;
}
.founders-section .story-photo {
  height: 550px;
}
.primary-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.primary-choices > a {
  padding: 24px;
  border: 1px solid var(--ink);
  display: block;
}
.primary-choices strong {
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.03em;
}
.primary-choices > a > span {
  font-size: 0.92rem;
  display: block;
  margin-top: 8px;
}
.primary-choices [aria-current="true"] {
  background: var(--ink);
  color: white;
}
.contribution-content {
  max-width: 100%;
}
.contribution-pane {
  scroll-margin-top: 105px;
}
.gift-panel,
.partner-panel,
.contact-pane {
  padding: 32px;
  max-width: 820px;
  background: var(--paper-2);
}
.gift-panel {
  background: var(--green);
  color: white;
}
.gift-panel .small {
  color: #f0f2e8;
  margin: 20px 0 0;
}
.gift-panel :is(button, input):focus-visible {
  outline-color: white;
}
.gift-panel > p {
  max-width: 620px;
}
.gift-panel h3,
.partner-panel h3,
.contact-pane h3 {
  font-size: 2rem;
}
.gift-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}
.gift-presets button {
  min-height: 44px;
  border: 1px solid #ffffff80;
  color: white;
  background: transparent;
  border-radius: 4px;
  padding: 8px 20px;
}
.gift-presets button:hover {
  background: #ffffff22;
}
.gift-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 20px;
}
.gift-line input {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px;
  min-height: 44px;
  min-width: 0;
}
#giftAmount {
  width: 150px;
}
#giftQty {
  width: 70px;
}
.reward-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.filter-button {
  min-height: 44px;
  border-radius: 100px;
  background: none;
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--ink);
}
.filter-button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.reward-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.reward-product {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--earth);
  font-weight: 700;
  margin-bottom: 12px;
}
.reward-product h4 {
  font-size: 1.4rem;
  max-width: 420px;
}
.product-price {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  margin-top: auto;
  margin-bottom: 18px;
}
.product-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.product-actions label {
  font-size: 0.85rem;
}
.product-actions input {
  width: 62px;
  min-height: 44px;
  padding: 8px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}
.product-actions button {
  margin-left: auto;
  font-size: 0.85rem;
}
.partner-goal {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 20px 0 12px;
}
.partner-goal strong {
  font-size: 2rem;
  font-weight: 500;
}
.partner-goal span {
  font-size: 0.85rem;
}
.partner-progress {
  height: 12px;
  background: #d0d5c4;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 12px;
}
.partner-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--green);
}
.partner-progress.awaiting-total {
  background: repeating-linear-gradient(
    135deg,
    #d0d5c4,
    #d0d5c4 8px,
    #e0e3d8 8px,
    #e0e3d8 16px
  );
}
#zeffyButton {
  margin-bottom: 20px;
}
.other-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 35px;
}
.other-choices a {
  position: relative;
  display: block;
  border-top: 1px solid var(--line);
  padding: 20px 24px 15px 0;
  min-height: 100px;
}
.other-choices strong {
  font-weight: 600;
  display: block;
  font-size: 0.95rem;
}
.other-choices span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}
.other-choices b {
  position: absolute;
  right: 0;
  top: 18px;
}
.finance-switch {
  display: flex;
  gap: 18px;
  margin: 0 0 25px;
}
.finance-switch a {
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
}
.finance-switch [aria-current] {
  border-color: var(--ink);
}
.loan-actions,
.document-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.contact-pane > .small {
  margin: 20px 0 0;
}
.document-links {
  margin-top: 24px;
}
.updates-section {
  padding: 65px 0;
  background: var(--paper-2);
}
.share-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.share-row h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}
.share-row > div:last-child {
  flex: none;
}
.update {
  max-width: 820px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.update time {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}
.update h3 {
  font-size: 1.5rem;
}
.faq {
  max-width: 950px;
}
footer {
  padding: 45px 0;
  background: var(--ink);
  color: white;
}
footer > .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
footer p {
  font-size: 0.85rem;
  color: #d1d0c8;
  margin: 0;
}
dialog {
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 28px;
  width: min(600px, calc(100% - 28px));
  max-height: 90svh;
  overflow: auto;
}
dialog::backdrop {
  background: #141810b8;
}
.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.cart-head h2 {
  font-size: 2.4rem;
}
.close {
  border: 0;
  background: none;
  font-size: 2rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  padding: 6px;
  color: var(--ink);
}
.cart-item {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.cart-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.cart-item .small {
  margin: 0;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.cart-item-controls input {
  width: 64px;
  min-height: 44px;
  padding: 8px;
  border: 1px solid var(--line);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.45rem;
  margin: 20px 0;
}
.cart-bottom {
  border-top: 1px solid var(--line);
}
.cart-bottom > .button {
  width: 100%;
  margin: 18px 0 12px;
}
.consent {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 0.875rem;
}
.consent input {
  width: 20px;
  height: 20px;
  flex: none;
}
.consent .text-link {
  display: inline;
  text-align: left;
  font-size: inherit;
}
.cart-toast {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--ink);
  color: white;
  max-width: 90%;
  border-radius: 6px;
  padding: 14px 22px;
  text-align: center;
  font-size: 0.9rem;
}
.cart-toast.show {
  display: block;
}
#infoDialog .close {
  float: right;
}
#infoDialog h2 {
  font-size: 1.8rem;
  margin-top: 18px;
}
.editor {
  max-width: 850px;
  margin: auto;
  padding: 35px;
}
.editor label {
  display: block;
  margin-top: 20px;
}
.editor input,
.editor textarea {
  width: 100%;
  padding: 12px;
  font: inherit;
}
.editor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
}
.editor .button {
  margin-top: 25px;
}
.editor #editorPreview {
  font-size: 2rem;
  margin-top: 30px;
}
.editor textarea {
  min-height: 85px;
}
@media (max-width: 950px) {
  .shell {
    width: calc(100% - 40px);
  }
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
  }
  .funding-card {
    padding: 24px;
  }
  .hero-heading {
    margin-bottom: 28px;
  }
  .split {
    gap: 35px;
  }
  .story-photo {
    height: 480px;
  }
  .network-grid {
    grid-template-columns: 1fr;
  }
  .network-grid article {
    padding: 25px;
  }
  .network-grid h3 br {
    display: none;
  }
  .proof-grid,
  .next-grid {
    gap: 22px;
  }
  .other-choices {
    gap: 20px;
  }
  .site-header {
    padding: 12px 20px;
  }
  .site-header nav {
    gap: 16px;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 85px;
  }
  .shell {
    width: calc(100% - 32px);
  }
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
    gap: 10px;
  }
  .brand {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    gap: 8px;
  }
  .brand img {
    width: 26px;
    height: 26px;
  }
  .site-header .nav-story {
    display: none;
  }
  .site-header nav {
    gap: 8px;
  }
  .header-contribute {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.8rem;
  }
  .cart-toggle {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  .cart-toggle span {
    min-width: 21px;
    height: 21px;
  }
  .hero-section {
    padding-top: 32px;
    padding-bottom: 45px;
  }
  .hero-heading h1 {
    font-size: clamp(2.7rem, 9vw, 4.4rem);
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .video-panel {
    aspect-ratio: 4/3;
  }
  .funding-card {
    padding: 25px;
  }
  .amount strong {
    font-size: 2.8rem;
  }
  .section {
    padding: 55px 0;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .story-photo,
  .founders-section .story-photo {
    height: auto;
    max-height: 550px;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  .proof-section,
  .land-section,
  .founders-section {
    padding: 55px 0;
  }
  .proof-grid,
  .next-grid,
  .hub-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .proof-grid h3 {
    margin-top: 14px;
  }
  .next-grid h3 {
    margin-bottom: 12px;
  }
  .step-number {
    margin-bottom: 16px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .vision-map {
    margin: 28px 0;
  }
  .hub-grid h3 {
    margin-bottom: 14px;
  }
  .primary-choices a {
    padding: 18px;
  }
  .primary-choices strong {
    font-size: 1.15rem;
  }
  .primary-choices > a > span {
    font-size: 0.85rem;
  }
  .gift-panel,
  .partner-panel,
  .contact-pane {
    padding: 24px;
  }
  .reward-catalog {
    grid-template-columns: 1fr;
  }
  .reward-product {
    padding: 22px;
  }
  .other-choices {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .other-choices a {
    min-height: 80px;
  }
  .share-row {
    display: block;
  }
  .share-row > div:last-child {
    margin: 24px 0;
  }
  .updates-section {
    padding: 45px 0;
  }
  .loan-actions {
    flex-direction: column;
    align-items: stretch;
  }
  footer > .shell {
    align-items: start;
    flex-direction: column;
  }
  .editor {
    padding: 22px;
  }
  .editor-grid {
    grid-template-columns: 1fr;
  }
  .contribution-pane {
    scroll-margin-top: 85px;
  }
}
@media (max-width: 390px) {
  .brand img {
    display: none;
  }
  .brand {
    font-size: 0.66rem;
  }
  .site-header nav {
    gap: 6px;
  }
  .header-contribute {
    padding: 10px 12px;
  }
  .primary-choices {
    grid-template-columns: 1fr;
  }
  .gift-line {
    gap: 8px;
  }
  #giftAmount {
    width: 115px;
  }
  #giftQty {
    width: 58px;
  }
  .product-actions {
    gap: 7px;
  }
  .product-actions button {
    padding: 10px 14px;
  }
  .gift-presets button {
    padding: 8px 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}

.hero-section {
  padding-top: 28px;
  padding-bottom: 34px;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 1fr);
  gap: 32px;
}
.hero-heading {
  margin: 28px 0 0;
  max-width: 760px;
}
.hero-heading h1 {
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
  line-height: 1.02;
  margin-bottom: 16px;
}
.hero-heading .lead {
  font-size: 1.08rem;
  max-width: 600px;
}
.funding-card {
  padding: 27px;
}
.funding-card > p:not(.eyebrow):not(.small) {
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.hero-giving {
  display: grid;
  gap: 10px;
}
.hero-other {
  display: grid;
  gap: 0;
  margin-top: 18px;
}
.hero-other a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  min-height: 44px;
  font-size: 0.83rem;
  padding: 9px 0;
}
.hero-other a:hover {
  text-decoration: underline;
}
.funding-footnote {
  font-size: 0.76rem;
}
.hero-grid .video-panel {
  aspect-ratio: 16/10;
}
.story-nav {
  position: sticky;
  top: 77px;
  z-index: 25;
  background: rgba(244, 241, 233, 0.98);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-nav > .shell {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.story-nav a {
  flex: none;
  display: flex;
  align-items: center;
  min-height: 56px;
  font-size: 0.84rem;
  border-bottom: 3px solid transparent;
  padding: 13px 0;
  white-space: nowrap;
}
.story-nav a[aria-current="location"] {
  border-color: var(--earth);
  color: var(--earth);
}
html {
  scroll-padding-top: 155px;
}
.contribution-pane {
  scroll-margin-top: 155px;
}
.section {
  padding: 70px 0;
}
.section-heading {
  margin-bottom: 34px;
}
.story-photo.farm-interior {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
}
.proof-section {
  padding: 50px 0;
}
.proof-section h2 {
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
}
.land-section,
.founders-section {
  padding: 65px 0;
}
.network-options {
  margin-top: 22px;
}
.network-options summary {
  min-height: 44px;
  display: list-item;
  padding: 8px 0;
}
.network-options .network-grid {
  margin-top: 24px;
}
.technology-path {
  margin-top: 22px;
  padding-top: 24px;
}
.hub-grid {
  gap: 20px 5vw;
}
.next-grid h3 {
  font-size: 1.5rem;
}
.next-grid p {
  font-size: 0.92rem;
}
.primary-choices strong {
  font-size: 1.35rem;
}
@media (max-width: 950px) {
  .hero-grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 24px;
  }
  .funding-card {
    padding: 22px;
  }
  .hero-heading h1 {
    font-size: 3rem;
  }
  .story-nav > .shell {
    gap: 24px;
  }
}
@media (max-width: 720px) {
  .hero-section {
    padding-top: 18px;
    padding-bottom: 26px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hero-heading {
    margin-top: 22px;
  }
  .hero-heading h1 {
    font-size: clamp(2.6rem, 9vw, 3.7rem);
  }
  .funding-card {
    padding: 25px;
  }
  .hero-grid .video-panel {
    aspect-ratio: 4/3;
  }
  .story-nav {
    top: 68px;
  }
  .story-nav > .shell {
    gap: 22px;
  }
  .story-nav a {
    min-height: 48px;
    font-size: 0.8rem;
    padding: 11px 0;
  }
  html {
    scroll-padding-top: 135px;
  }
  .contribution-pane {
    scroll-margin-top: 135px;
  }
  .section {
    padding: 48px 0;
  }
  .land-section,
  .founders-section {
    padding: 48px 0;
  }
  .proof-section {
    padding: 42px 0;
  }
  .primary-choices strong {
    font-size: 1.08rem;
  }
  .story-photo.farm-interior {
    height: auto;
    max-height: none;
    aspect-ratio: auto;
  }
}

.primary-choices strong {
  font-size: 1.4rem;
}
.contribution-pane {
  scroll-margin-top: 0;
}
@media (max-width: 720px) {
  .primary-choices strong {
    font-size: 1.15rem;
  }
  .contribution-pane {
    scroll-margin-top: 0;
  }
}

/* Keep contribution choices together above the active content. */
.primary-choices {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.primary-choices > button {
  padding: 18px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.primary-choices > button > span {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.45;
}
.primary-choices > button strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}
.primary-choices > button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.primary-choices > button:hover {
  box-shadow: inset 0 0 0 1px currentColor;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
html {
  scroll-padding-top: calc(var(--header-height, 90px) + 20px);
}
section[id],
article[id],
main[id] {
  scroll-margin-top: 0;
}
@media (max-width: 700px) {
  .primary-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .primary-choices > button {
    padding: 14px;
  }
}
@media (max-width: 360px) {
  .primary-choices {
    grid-template-columns: 1fr;
  }
}

/* Campaign live-state additions */
.milestone-message {
  margin: 14px 0 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  background: rgba(89, 107, 84, 0.08);
  font-size: 0.9rem;
}
.funding-breakdown {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.funding-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
}
.funding-breakdown-row strong {
  white-space: nowrap;
}
.reward-availability {
  margin: 10px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--green);
}
.reward-availability.low {
  color: var(--earth);
}
.reward-availability.sold-out {
  color: var(--muted);
}
.recognition-choice {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
}
.recognition-choice legend {
  padding: 0 6px;
  font-weight: 700;
  font-size: 0.92rem;
}
.recognition-choice > label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.recognition-choice input[type="radio"] {
  margin-top: 5px;
}
#recognitionNameWrap {
  margin-top: 4px;
}
#recognitionNameWrap > label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
#recognitionName {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.supporter-section {
  margin: 34px 0 28px;
  padding: 24px 0 4px;
  border-top: 1px solid var(--line);
}
.supporter-section h3 {
  margin-bottom: 14px;
}
.supporter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.supporter-name {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
}
@media (max-width: 720px) {
  .funding-breakdown-row {
    align-items: baseline;
  }
  .recognition-choice {
    padding: 14px;
  }
  .reward-product .product-actions {
    gap: 8px;
  }
  .reward-product .product-actions .button {
    min-width: 0;
  }
}
.admin-card {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}
.admin-card form,
.admin-card {
  display: grid;
  gap: 12px;
}
.admin-card input,
.admin-card select,
.admin-card textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}
.admin-card textarea { min-height: 150px; resize: vertical; }

/* Legal / campaign terms pages */
.legal-page { background: var(--paper); }
.legal-shell { width: min(860px, calc(100% - 40px)); margin: 0 auto; padding: 54px 0 80px; }
.legal-shell h1 { font-size: clamp(2.6rem, 7vw, 4.8rem); margin-top: 28px; }
.legal-shell h2 { font-size: clamp(1.45rem, 3vw, 2rem); margin-top: 40px; margin-bottom: 14px; letter-spacing: -0.025em; }
.legal-shell p { max-width: 78ch; }
.legal-updated { color: var(--muted); margin-top: -8px; }
.legal-back { text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.legal-shell a:not(.legal-back) { text-decoration: underline; text-underline-offset: 3px; }
.legal-callout { margin: 28px 0 36px; padding: 20px 22px; border: 1px solid var(--line); border-left: 5px solid var(--earth); background: var(--white); border-radius: 8px; }
.legal-note { margin-top: 44px; }


/* Littlest Big Farm reservation interests */
.lbf-preferences {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.6);
}
.lbf-preferences legend { font-weight: 800; padding: 0 6px; }
.lbf-preferences legend span { font-weight: 500; color: var(--muted); font-size: .9em; }
.lbf-preferences > label { display: flex; gap: 10px; align-items: flex-start; margin: 10px 0; line-height: 1.4; }
.lbf-preferences input[type="checkbox"] { margin-top: .22em; flex: 0 0 auto; }


.reward-fulfillment{margin:10px 0 16px;font-size:.78rem;line-height:1.45;color:var(--muted)}
.reward-product.just-for-fun{background:#fffaf0;border-style:dashed}
.wild-rewards{margin-top:24px;padding-top:20px;border-top:1px solid var(--line)}
.wild-rewards ul{padding-left:20px}.wild-rewards li{margin:8px 0}
.button.reserve{background:var(--earth);color:white;border-color:var(--earth)}
.lbf-reserve-section{padding:clamp(72px,9vw,120px) 0;background:#172018;color:white}
.lbf-reserve-grid{display:grid;grid-template-columns:1.2fr .65fr;gap:7vw;align-items:center}
.lbf-reserve-grid h2{max-width:760px}.lbf-reserve-grid .lead{max-width:720px;color:rgba(255,255,255,.9)}.lbf-reserve-grid>div>p:not(.eyebrow):not(.lead){max-width:760px;color:rgba(255,255,255,.72)}
.reservation-points{padding-left:20px;color:rgba(255,255,255,.78);max-width:760px}.reservation-points li{margin:10px 0}
.lbf-reserve-grid .text-link{color:white}.lbf-reserve-card{background:var(--paper);color:var(--ink);padding:34px;border-radius:12px;display:flex;flex-direction:column;gap:14px}.lbf-reserve-card .reservation-price{font-size:clamp(3rem,5vw,5rem);line-height:.95;letter-spacing:-.05em}.lbf-reserve-card>strong{font-size:1.15rem}.reservation-count{font-weight:800;color:var(--green)}
@media(max-width:820px){.lbf-reserve-grid{grid-template-columns:1fr;gap:36px}.lbf-reserve-card{max-width:560px}}

.funding-breakdown-separate{margin-top:8px;padding-top:10px;border-top:1px dashed var(--line);color:var(--muted)}


.reward-shipping{margin:-8px 0 16px;font-size:.78rem;line-height:1.45;font-weight:700;color:var(--earth)}
.shipping-summary{margin:18px 0;padding:16px 18px;border:1px solid var(--line);border-radius:10px;background:rgba(255,255,255,.55)}
.shipping-summary-row{display:flex;justify-content:space-between;gap:18px;align-items:baseline;font-size:1rem}
.shipping-summary-row strong{text-align:right}
.shipping-summary .small{margin:8px 0 0}

.thank-you-page{min-height:100vh;background:var(--paper)}
.thank-you-header{width:min(1360px,calc(100% - 72px));margin:0 auto;min-height:96px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line)}
.thank-you-header>a:first-child{font-size:.78rem;font-weight:800;letter-spacing:.24em}
.thank-you-shell{width:min(1360px,calc(100% - 72px));margin:0 auto;padding:70px 0 90px}
.thank-you-hero{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(330px,.75fr);gap:7vw;align-items:start;padding-bottom:72px}
.thank-you-copy h1{font-size:clamp(3.4rem,6.5vw,7rem);max-width:900px}.thank-you-copy h1 em{color:var(--earth)}
.thank-you-copy .lead{max-width:760px}.thank-you-actions{display:flex;flex-wrap:wrap;gap:12px;margin:30px 0 14px}
.thank-you-order{background:var(--white);border:1px solid var(--line);border-radius:18px;padding:30px;box-shadow:0 18px 50px rgba(17,17,15,.07)}
.thank-you-order h2{font-size:2rem}.thank-you-items{list-style:none;padding:0;margin:4px 0 22px}.thank-you-items li,.thank-you-totals>div{display:flex;justify-content:space-between;gap:18px;padding:11px 0;border-bottom:1px solid var(--line)}
.thank-you-items span,.thank-you-totals span{padding-right:10px}.thank-you-totals .small{margin:16px 0 0}
.thank-you-next{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line);margin-bottom:88px}
.thank-you-next article{background:var(--paper);padding:34px}.thank-you-next h3{font-size:1.45rem}.thank-you-next p{color:var(--muted);margin:0}
.thank-you-share{display:grid;grid-template-columns:1.05fr .75fr;gap:7vw;align-items:center;padding-top:18px}.thank-you-share>div{max-width:720px}.thank-you-share h2{font-size:clamp(2.6rem,4.5vw,4.8rem)}
.thank-you-photo{border-radius:18px;overflow:hidden;background:var(--paper-2)}.thank-you-photo img{width:100%;aspect-ratio:4/3;object-fit:cover}.thank-you-photo figcaption{padding:14px 18px 18px;margin:0}
@media(max-width:860px){.thank-you-header,.thank-you-shell{width:min(100% - 36px,760px)}.thank-you-header{min-height:78px}.thank-you-shell{padding-top:46px}.thank-you-hero,.thank-you-share{grid-template-columns:1fr;gap:38px}.thank-you-next{grid-template-columns:1fr}.thank-you-copy h1{font-size:clamp(3rem,13vw,5.4rem)}.thank-you-order{padding:24px}.thank-you-share{padding-top:0}}
@media(max-width:520px){.thank-you-header,.thank-you-shell{width:calc(100% - 28px)}.thank-you-actions .button{width:100%}.shipping-summary-row{align-items:flex-start;flex-direction:column;gap:2px}.shipping-summary-row strong{text-align:left}}

.share-dialog{width:min(720px,calc(100% - 28px));padding:30px;border-radius:18px}
.share-dialog-head{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;margin-bottom:24px}
.share-dialog-head h2{font-size:clamp(2rem,5vw,3.2rem);margin-bottom:10px}
.share-dialog-head .small{max-width:540px;margin-bottom:0}
.share-options{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:10px 0 28px}
.share-option{appearance:none;border:1px solid var(--line);background:var(--white);color:var(--ink);border-radius:12px;min-height:92px;padding:14px 10px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;font:inherit;font-weight:700;text-align:center;cursor:pointer;transition:transform .15s ease,background .15s ease,border-color .15s ease}
.share-option:hover,.share-option:focus-visible{background:var(--paper-2);border-color:rgba(17,17,15,.4);transform:translateY(-1px)}
.share-option-mark{width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:var(--ink);color:#fff;font-size:.9rem;font-weight:800;letter-spacing:-.03em}
.share-copy-box{border-top:1px solid var(--line);padding-top:22px}
.share-copy-box label{display:block;font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.13em;margin-bottom:10px}
.share-copy-row{display:grid;grid-template-columns:1fr auto;gap:10px}
.share-copy-row input{min-width:0;width:100%;min-height:48px;border:1px solid var(--line);border-radius:8px;background:var(--white);padding:10px 12px;color:var(--muted)}
.share-dialog-status{min-height:1.4em;margin:10px 0 0}
@media(max-width:620px){.share-dialog{padding:22px}.share-options{grid-template-columns:repeat(2,minmax(0,1fr))}.share-copy-row{grid-template-columns:1fr}.share-copy-row .button{width:100%}}


.hope-section{padding:22px 0 86px}.hope-panel{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:7vw;padding:42px 46px;border:1px solid var(--line);border-radius:18px;background:var(--white)}.hope-panel h2{font-size:clamp(2.5rem,4.8vw,5.2rem);margin-bottom:0}.hope-copy{align-self:end}.hope-copy p{font-size:1.08rem;line-height:1.75;color:var(--muted)}.hope-copy p strong{color:var(--ink)}.hope-copy .text-link{margin-top:10px}.hope-copy .small{font-size:.9rem;min-height:1.3em}
.share-message-picker{border:0;padding:0;margin:0 0 20px}.share-message-picker legend,.share-message-preview label{display:block;font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.13em;margin-bottom:10px}.share-preset-options{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.share-preset{border:1px solid var(--line);border-radius:12px;padding:14px;display:flex;gap:10px;cursor:pointer;background:var(--white)}.share-preset:has(input:checked){border-color:var(--earth);box-shadow:inset 0 0 0 1px var(--earth);background:var(--paper-2)}.share-preset input{margin-top:3px}.share-preset span{display:flex;flex-direction:column;gap:4px}.share-preset strong{font-size:.92rem}.share-preset span span{font-size:.78rem;font-weight:400;color:var(--muted);line-height:1.35}.share-message-preview{margin:0 0 22px}.share-message-preview textarea{width:100%;resize:vertical;min-height:120px;border:1px solid var(--line);border-radius:10px;background:var(--white);color:var(--ink);font:inherit;line-height:1.5;padding:12px}.share-message-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-top:10px}.share-platform-note{margin:-12px 0 24px;color:var(--muted)}.recognition-confirmation{margin:18px 0 0;padding:14px 16px;background:var(--paper-2);border-radius:10px}.supporter-section #supporterNote{margin-top:12px}
@media(max-width:760px){.hope-panel{grid-template-columns:1fr;padding:30px 26px;gap:28px}.share-preset-options{grid-template-columns:1fr}}
