:root {
  --cream: #fff9e6;
  --paper: #fffdf1;
  --paper-soft: rgba(255, 253, 241, 0.88);
  --yellow: #ffc61c;
  --yellow-soft: #ffe96d;
  --gold: #cc8208;
  --green-deep: #12351f;
  --green: #627f39;
  --green-soft: #edf3df;
  --ink: #15261c;
  --muted: #506158;
  --line: rgba(31, 74, 41, 0.12);
  --shadow: 0 22px 48px rgba(84, 65, 8, 0.12);
  --hand: "Comic Sans MS", "Trebuchet MS", cursive;
  --round: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 224, 87, 0.26), transparent 26%),
    linear-gradient(245deg, rgba(122, 149, 65, 0.12), transparent 27%),
    var(--cream);
  font-family: var(--round);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.13;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(rgba(31, 74, 41, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 74, 41, 0.10) 1px, transparent 1px);
  background-size: 18px 18px;
}

body.night {
  --cream: #182219;
  --paper: #263022;
  --paper-soft: rgba(38, 48, 34, 0.92);
  --green-deep: #f5fad7;
  --green: #b6c86d;
  --ink: #f2f7dc;
  --muted: #d2dcbc;
  --line: rgba(245, 250, 215, 0.16);
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

body.night {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 199, 37, 0.11), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(145, 177, 83, 0.16), transparent 28%),
    linear-gradient(115deg, rgba(58, 83, 42, 0.24), transparent 30%),
    #101b14;
}

body.night::before {
  opacity: 0.07;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(rgba(245, 250, 215, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 250, 215, 0.08) 1px, transparent 1px);
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  fill: currentColor;
}

.site-canvas {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.section-frame,
.site-header {
  width: min(1320px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 8px;
  background: #ffe47a;
  box-shadow: inset 0 0 0 1px rgba(92, 63, 0, 0.18), 0 10px 22px rgba(255, 198, 28, 0.2);
  transform: rotate(-8deg);
  overflow: hidden;
}

.brand-mark img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.brand-name {
  color: var(--green-deep);
  font-family: var(--hand);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #293b31;
  font-size: 0.92rem;
  font-weight: 900;
}

body.night .nav {
  color: var(--ink);
}

.nav-link {
  position: relative;
  padding: 12px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-buy,
.button {
  min-height: 47px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green-deep);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.top-buy {
  padding: 0 28px;
  background: var(--yellow);
  box-shadow: 0 12px 24px rgba(255, 184, 15, 0.24);
}

.social-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-deep);
  background: rgba(234, 242, 220, 0.9);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.social-button svg {
  width: 20px;
  height: 20px;
}

.theme-toggle {
  color: #f6c64a;
  background: #17231c;
}

.top-buy:hover,
.button:hover,
.social-button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--green-deep);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 590px;
  padding: 22px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(520px, 1.09fr);
  gap: 30px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.title-lockup {
  position: relative;
  display: inline-block;
}

.word-crown {
  position: absolute;
  right: 4%;
  top: -7%;
  width: 70px;
  height: auto;
  color: #ffb524;
  fill: none;
  stroke: currentColor;
  stroke-width: 8;
  stroke-linejoin: round;
  transform: rotate(7deg);
}

.hero h1,
.panel-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--hand);
  font-weight: 900;
  color: var(--green-deep);
}

.hero h1 {
  font-size: 7.2rem;
  line-height: 0.76;
  text-shadow: 0 4px 0 rgba(255, 255, 255, 0.54);
}

.hero h1 span {
  display: inline-block;
  color: var(--green);
  margin-left: 20px;
}

.brush-banner {
  position: relative;
  display: inline-block;
  margin: 26px 0 20px;
  padding: 13px 24px 14px;
  color: var(--green-deep);
  font-family: var(--hand);
  font-size: 2rem;
  line-height: 0.97;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.brush-banner::before {
  content: "";
  position: absolute;
  inset: -6px -18px -7px -12px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 230, 101, 0.92), rgba(255, 212, 39, 0.94));
  clip-path: polygon(1% 22%, 9% 12%, 33% 7%, 57% 12%, 79% 5%, 99% 14%, 94% 86%, 71% 91%, 47% 84%, 23% 93%, 0 80%);
}

.brush-banner i {
  position: absolute;
  right: 18px;
  bottom: 9px;
  width: 146px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  transform: rotate(-4deg);
}

.lede {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.button {
  min-width: 148px;
  padding: 0 22px;
  background: rgba(238, 244, 227, 0.92);
}

.hero .button {
  min-width: 126px;
  padding-inline: 15px;
  font-size: 0.82rem;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.button-buy {
  min-width: 132px;
  background: var(--yellow);
  border-color: rgba(255, 198, 28, 0.2);
  box-shadow: 0 13px 27px rgba(255, 184, 15, 0.24);
}

.button:hover {
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(31, 74, 41, 0.11);
}

.button-buy:hover {
  background: #ffd84b;
}

body.night .top-buy,
body.night .button-buy {
  color: #132b1b;
  background: #ffc61c;
  border-color: rgba(255, 198, 28, 0.38);
  box-shadow: 0 13px 27px rgba(255, 184, 15, 0.18);
}

body.night .button:not(.button-buy) {
  color: #edf5cf;
  background: rgba(31, 48, 34, 0.82);
  border-color: rgba(231, 239, 192, 0.24);
  box-shadow: inset 0 0 0 1px rgba(8, 18, 12, 0.18);
}

body.night .button:not(.button-buy):hover {
  background: rgba(43, 61, 39, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

body.night .social-button:not(.theme-toggle) {
  color: #edf5cf;
  background: rgba(32, 49, 35, 0.86);
  border-color: rgba(231, 239, 192, 0.24);
}

body.night .theme-toggle {
  color: #132b1b;
  background: #ffc61c;
}

body.night .brush-banner {
  color: #12351f;
}

.microcopy {
  margin: 18px 0 0;
  color: #819063;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-wash {
  position: absolute;
  inset: 4% 4% 2% 8%;
  z-index: -2;
  background:
    linear-gradient(140deg, rgba(255, 240, 132, 0.7), rgba(255, 214, 49, 0.22) 42%, transparent 43%),
    linear-gradient(28deg, transparent 0 14%, rgba(255, 223, 70, 0.4) 15% 55%, transparent 56%),
    linear-gradient(315deg, transparent 0 20%, rgba(255, 238, 105, 0.46) 21% 64%, transparent 65%);
  clip-path: polygon(18% 11%, 68% 3%, 98% 29%, 83% 79%, 49% 96%, 5% 72%, 2% 31%);
  filter: blur(1px);
}

.hero-banana {
  width: auto;
  height: 535px;
  max-width: 72%;
  max-height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 34px 27px rgba(101, 79, 5, 0.26));
  animation: banana-float 5.5s ease-in-out infinite;
}

@keyframes banana-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.hero-crown {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 116px;
  color: #c98208;
  fill: none;
  stroke: currentColor;
  stroke-width: 8;
  stroke-linejoin: round;
  transform: translateX(-36%) rotate(7deg);
}

.ray {
  position: absolute;
  width: 72px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
}

.ray-left-top {
  left: 7%;
  top: 24%;
  transform: rotate(43deg);
}

.ray-left-mid {
  left: 6%;
  top: 38%;
}

.ray-left-low {
  left: 9%;
  top: 47%;
  transform: rotate(-35deg);
}

.ray-right {
  right: 0;
  top: 33%;
  width: 92px;
  transform: rotate(-37deg);
}

.hero-note,
.photo-note,
.side-note {
  margin: 0;
  font-family: var(--hand);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  z-index: 3;
  font-size: 1.45rem;
}

.note-good {
  right: 0;
  top: 39%;
  color: #6d4b08;
  transform: rotate(-5deg);
}

.note-good span,
.photo-note span,
.side-note span {
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 10px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(45deg) skew(8deg, 8deg);
}

.note-roots {
  right: 8%;
  bottom: 12%;
  color: var(--green);
  transform: rotate(-4deg);
}

.note-arrow {
  position: absolute;
  right: 28%;
  bottom: 13%;
  width: 100px;
  color: #8aa75b;
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(4deg);
}

.story-band {
  width: min(1368px, calc(100% - 36px));
  margin: 0 auto 18px;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

body.night .split-panel {
  background: rgba(29, 42, 31, 0.86);
  border-color: rgba(245, 250, 215, 0.23);
}

.photo-wrap {
  position: relative;
  height: 386px;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eee2c1;
}

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

.photo-wrap .photo-pons-overlay {
  position: absolute;
  left: 46%;
  bottom: 2%;
  z-index: 1;
  width: auto;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(85, 58, 4, 0.2));
  transform: translateX(-50%) rotate(-1deg);
}

.photo-note {
  position: absolute;
  z-index: 2;
  color: var(--green-deep);
  font-size: 1.15rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.note-normal {
  left: 30px;
  top: 34px;
  transform: rotate(-11deg);
}

.arrow-normal {
  position: absolute;
  top: 87px;
  left: 104px;
  width: 62px;
  color: var(--green-deep);
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-8deg);
}

.note-kind {
  left: 30px;
  bottom: 34px;
  transform: rotate(-6deg);
}

.note-kind span {
  width: 18px;
  height: 18px;
  margin-top: 7px;
}

.note-grow {
  left: 42px;
  top: 42px;
  color: #fffef0;
  font-size: 1.32rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  transform: rotate(-7deg);
}

.note-grow span {
  width: 20px;
  height: 20px;
}

.panel-copy {
  min-width: 0;
  padding: 38px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-copy h2 {
  margin-bottom: 16px;
  font-size: 4.35rem;
  line-height: 0.88;
}

.panel-copy h2 span {
  color: var(--green);
}

#mission-title span {
  display: block;
  white-space: nowrap;
}

.panel-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 0 10px;
  color: var(--muted);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.03rem;
  line-height: 1.38;
}

.mini-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.mini-values-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.value-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 253, 241, 0.96);
  border: 1px solid rgba(98, 127, 57, 0.28);
}

.value-icon svg {
  width: 25px;
  height: 25px;
}

.value-icon.value-sun {
  color: var(--yellow);
}

.value-item span:last-child {
  color: var(--green-deep);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.13;
  text-transform: uppercase;
}

body.night .value-icon {
  color: #b8cf72;
  background: rgba(244, 248, 220, 0.92);
  border-color: rgba(245, 250, 215, 0.28);
}

body.night .value-item span:last-child {
  color: #f4fad6;
}

.final-cta {
  position: relative;
  z-index: 1;
  width: 100vw;
  max-width: none;
  min-height: 310px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 30px;
  margin-bottom: 0;
  padding: 48px max(150px, calc((100vw - 1320px) / 2 + 150px)) 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 249, 230, 0.84), rgba(255, 224, 98, 0.36)),
    var(--paper);
  border-radius: 8px 8px 0 0;
}

body.night .final-cta {
  background:
    radial-gradient(ellipse at 50% 16%, rgba(255, 207, 42, 0.13), transparent 48%),
    linear-gradient(180deg, rgba(19, 31, 22, 0.96), rgba(42, 57, 33, 0.94) 52%, rgba(80, 93, 43, 0.86) 100%),
    #14231a;
  box-shadow: inset 0 1px 0 rgba(245, 250, 215, 0.16), 0 -12px 38px rgba(0, 0, 0, 0.14);
}

.final-cta::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -1px;
  height: 132px;
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 0 16%, rgba(205, 178, 83, 0.2) 17% 42%, transparent 43%),
    linear-gradient(45deg, transparent 0 23%, rgba(111, 132, 61, 0.16) 24% 46%, transparent 47%),
    linear-gradient(180deg, rgba(255, 203, 39, 0.24), rgba(116, 142, 65, 0.26));
  clip-path: polygon(0 52%, 11% 36%, 20% 58%, 34% 28%, 48% 58%, 62% 34%, 72% 56%, 84% 31%, 100% 50%, 100% 100%, 0 100%);
}

body.night .final-cta::before {
  background:
    linear-gradient(135deg, transparent 0 16%, rgba(255, 231, 92, 0.15) 17% 42%, transparent 43%),
    linear-gradient(45deg, transparent 0 23%, rgba(153, 178, 86, 0.15) 24% 46%, transparent 47%),
    linear-gradient(180deg, rgba(255, 203, 39, 0.13), rgba(90, 114, 58, 0.32));
}

.final-cta h2 {
  position: relative;
  max-width: 1040px;
  font-size: 3rem;
  line-height: 1;
}

body.night .final-cta h2 {
  color: #f7f4c8;
  text-shadow: 0 4px 0 rgba(5, 16, 10, 0.34);
}

.final-cta h2::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: -12px;
  width: 300px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  transform: rotate(2deg);
}

.final-cta > p:not(.side-note) {
  margin: 26px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1rem;
}

body.night .final-cta > p:not(.side-note) {
  color: #dae5bd;
}

.actions-centered {
  justify-content: center;
  margin-top: 24px;
}

.side-note {
  position: absolute;
  z-index: 2;
  color: #725101;
  font-size: 1rem;
}

.left-note {
  left: 92px;
  top: 73px;
  transform: rotate(-13deg);
}

.right-note {
  right: 76px;
  top: 74px;
  transform: rotate(9deg);
}

body.night .side-note {
  color: #ddb545;
  text-shadow: 0 2px 0 rgba(5, 16, 10, 0.36);
}

.leaf-fan {
  position: absolute;
  z-index: 0;
  width: 340px;
  aspect-ratio: 1;
  pointer-events: none;
}

.leaf-fan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(19, 64, 35, 0.16));
}

body.night .leaf-fan img {
  filter: saturate(0.82) brightness(0.72) drop-shadow(0 16px 22px rgba(0, 0, 0, 0.34));
}

.leaf-fan-top-left {
  left: -74px;
  top: -128px;
  transform: scaleX(-1) rotate(-24deg);
}

.leaf-fan-top-right {
  right: -74px;
  top: -132px;
  transform: rotate(-14deg);
}

.leaf-fan-bottom-left {
  left: -18px;
  bottom: -94px;
  transform: scaleX(-1) rotate(23deg);
}

.leaf-fan-bottom-right {
  right: -14px;
  bottom: -98px;
  transform: rotate(13deg);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 40;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  background: #142f1e;
  box-shadow: 0 16px 34px rgba(20, 47, 30, 0.28);
  font-size: 0.85rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 24px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: transform 180ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .site-header {
    gap: 16px;
  }

  .nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
  }

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

  .panel-copy {
    padding: 32px;
  }

  .panel-copy h2 {
    font-size: 3.9rem;
  }

  .mini-values,
  .mini-values-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .section-frame,
  .site-header {
    width: min(100% - 32px, 1320px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
  }

  .header-actions {
    justify-self: end;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    padding: 13px 16px;
  }

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 span {
    margin-left: 0;
  }

  .lede {
    max-width: 650px;
  }

  .actions {
    justify-content: center;
  }

  .hero-art {
    min-height: 460px;
    width: 100%;
  }

  .story-band {
    width: min(100% - 26px, 1368px);
  }

  .split-panel {
    grid-template-columns: 1fr;
  }

  .photo-wrap {
    height: 390px;
  }

  .panel-copy {
    text-align: left;
  }

  .final-cta {
    padding: 58px max(110px, calc((100vw - 1320px) / 2 + 110px)) 70px;
  }

  .left-note,
  .right-note {
    display: none;
  }
}

@media (max-width: 660px) {
  .section-frame,
  .site-header {
    width: calc(100% - 20px);
  }

  .brand-name {
    font-size: 1.46rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-mark img {
    width: 30px;
    height: 30px;
  }

  .top-buy,
  .header-actions .social-button {
    display: none;
  }

  .hero {
    padding-bottom: 28px;
    overflow: hidden;
  }

  .hero-copy {
    width: min(100%, 350px);
    max-width: calc(100vw - 20px);
    min-width: 0;
  }

  .title-lockup {
    max-width: 100%;
    min-width: 0;
  }

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

  .word-crown {
    width: 50px;
  }

  .brush-banner {
    width: min(100%, 330px);
    font-size: 1.45rem;
  }

  .brush-banner i {
    width: 118px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 260px;
    margin-inline: auto;
  }

  .button,
  .hero .button {
    min-width: 0;
    width: 100%;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .lede {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-art {
    min-height: 320px;
  }

  .hero-banana {
    width: auto;
    height: 315px;
    max-width: 72%;
  }

  .hero-crown {
    width: 82px;
    top: 5px;
  }

  .hero-note {
    font-size: 0.92rem;
  }

  .note-good {
    right: 0;
    top: 34%;
  }

  .note-roots {
    right: 0;
    bottom: 6%;
  }

  .note-arrow {
    width: 72px;
    right: 25%;
    bottom: 8%;
  }

  .ray {
    width: 44px;
    height: 7px;
  }

  .story-band {
    width: calc(100% - 12px);
    margin-bottom: 12px;
  }

  .split-panel {
    padding: 8px;
  }

  .photo-wrap {
    height: 300px;
  }

  .photo-note {
    font-size: 0.92rem;
  }

  .note-grow {
    left: 24px;
    top: 24px;
    font-size: 1rem;
  }

  .photo-wrap .photo-pons-overlay {
    height: 72%;
  }

  .panel-copy {
    padding: 30px 18px 26px;
  }

  .panel-copy h2 {
    font-size: 3.35rem;
  }

  .mini-values,
  .mini-values-wide {
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
  }

  .value-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .value-item span:last-child {
    font-size: 0.6rem;
  }

  .final-cta {
    min-height: 360px;
    padding: 54px 16px 88px;
  }

  .final-cta h2 {
    font-size: 2.55rem;
  }

  .final-cta h2::after {
    right: 7%;
    width: 190px;
  }

  .leaf-fan {
    width: 240px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 4rem;
  }

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

  .button {
    min-height: 45px;
  }

  .mini-values,
  .mini-values-wide {
    grid-template-columns: 1fr;
  }

  #mission-title span {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-banana,
  .top-buy,
  .button,
  .social-button {
    animation: none;
    transition: none;
  }
}
