:root {
  --ink: #123e1d;
  --leaf: #174a25;
  --moss: #6f8561;
  --mist: #e8f0ed;
  --cream: #fffaf0;
  --paper: #fbf8ec;
  --sky: #dbe8ef;
  --blue: #b9d9e9;
  --pink: #ed9fca;
  --gold: #ffd85a;
  --shadow: 0 22px 70px rgba(29, 69, 40, 0.17);
  --radius: 8px;
  --brand-font: "TAN Nimbus", "TAN NIMBUS", "Tan Nimbus", "Cooper Black", "Cooper Std Black", "Bookman Old Style", Fraunces, Georgia, serif;
  --peek-footer-h: clamp(132px, 22vw, 168px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--leaf);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  position: relative;
  z-index: 1;
  margin-bottom: var(--peek-footer-h);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(18, 62, 29, 0.18);
}

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

.site-header {
  position: fixed;
  inset: 18px 22px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  pointer-events: none;
}

.brand,
.nav-links {
  pointer-events: auto;
  border: 1px solid rgba(18, 62, 29, 0.16);
  background: rgba(255, 250, 240, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(29, 69, 40, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 5px 14px 5px 6px;
  border-radius: 999px;
  font-family: var(--brand-font);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
}

.brand-mark img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  padding: 5px;
  border-radius: 999px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a:hover {
  background: rgba(23, 74, 37, 0.1);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 118px clamp(24px, 6vw, 104px) 86px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24vh;
  background: linear-gradient(180deg, rgba(251, 248, 236, 0), var(--paper));
  z-index: -1;
}

.hero-landscape {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 30%, rgba(255, 250, 240, 0.52), transparent 22%),
    linear-gradient(180deg, #dfedf4 0 31%, #d5e0d1 32% 100%);
}

.hero-landscape img {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  opacity: 0.08;
  filter: blur(16px) saturate(0.8) brightness(1.15);
  transform: scale(1.04);
}

.hero-landscape::before,
.hero-landscape::after {
  content: "";
  position: absolute;
  left: -8%;
  width: 118%;
  border-radius: 50%;
  transform: rotate(-2deg);
  z-index: 1;
}

.hero-landscape::before {
  top: 30%;
  height: 46%;
  background:
    linear-gradient(180deg, rgba(177, 192, 153, 0.68), rgba(220, 230, 199, 0.34)),
    radial-gradient(ellipse at 25% 0, rgba(90, 114, 72, 0.28), transparent 38%);
  filter: blur(1px);
}

.hero-landscape::after {
  top: 52%;
  height: 60%;
  background:
    linear-gradient(180deg, rgba(224, 232, 203, 0.36), rgba(247, 244, 223, 0.88)),
    repeating-linear-gradient(168deg, rgba(83, 109, 70, 0.08) 0 2px, transparent 2px 9px);
  filter: blur(0.4px);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  margin-left: clamp(0px, 8vw, 190px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--leaf);
  font-family: var(--brand-font);
  font-size: clamp(5.1rem, 12.7vw, 11rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 38px 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.48rem);
  font-weight: 600;
  line-height: 1.45;
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(18, 62, 29, 0.2);
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(29, 69, 40, 0.1);
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(29, 69, 40, 0.16);
}

.button:active {
  transform: translateY(0);
}

.button.primary {
  color: var(--cream);
  background: var(--leaf);
}

.button.primary:hover {
  background: #14351f;
}

.button.secondary {
  color: var(--leaf);
  background: rgba(255, 250, 240, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.button.secondary:hover {
  background: rgba(255, 250, 240, 0.95);
  border-color: rgba(18, 62, 29, 0.28);
}

.sky-birds {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.sky-birds-section {
  z-index: 0;
}

.bird {
  position: absolute;
  left: -8%;
  display: block;
  width: 34px;
  height: 16px;
  opacity: 0.85;
  will-change: transform;
  animation: birdFly 20s linear infinite;
}

.bird svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 1px 0 rgba(255, 250, 240, 0.35));
}

.bird .wing path {
  stroke: rgba(23, 74, 37, 0.78);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.bird .wing {
  transform-origin: 24px 12px;
  animation: wingFlapL 0.36s ease-in-out infinite;
}

.bird .wing-r {
  animation-name: wingFlapR;
}

.bird-a {
  top: 14%;
  width: 52px;
  animation-duration: 20s;
  animation-delay: -7s;
}

.bird-b {
  top: 22%;
  width: 34px;
  opacity: 0.62;
  animation-duration: 26s;
  animation-delay: -14s;
}

.bird-c {
  top: 11%;
  width: 28px;
  opacity: 0.52;
  animation-duration: 30s;
  animation-delay: -22s;
}

.bird-d {
  top: 19%;
  width: 44px;
  opacity: 0.74;
  animation-duration: 18s;
  animation-delay: -5s;
  animation-name: birdFlyArc;
}

.bird-e {
  top: 27%;
  width: 24px;
  opacity: 0.46;
  animation-duration: 34s;
  animation-delay: -28s;
}

.bird-f {
  top: 18%;
  width: 36px;
  opacity: 0.58;
  animation-duration: 22s;
  animation-delay: -9s;
  animation-name: birdFlyReverse;
}

.bird-g {
  top: 32%;
  width: 28px;
  opacity: 0.42;
  animation-duration: 28s;
  animation-delay: -18s;
  animation-name: birdFlyReverse;
}

.bird-h {
  top: 16%;
  width: 46px;
  opacity: 0.64;
  animation-duration: 24s;
  animation-delay: -11s;
}

.bird-i {
  top: 28%;
  width: 30px;
  opacity: 0.5;
  animation-duration: 27s;
  animation-delay: -19s;
  animation-name: birdFlyArc;
}

.bird-j {
  top: 12%;
  width: 26px;
  opacity: 0.42;
  animation-duration: 32s;
  animation-delay: -25s;
}

@keyframes wingFlapL {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(28deg);
  }
}

@keyframes wingFlapR {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-28deg);
  }
}

@keyframes birdFly {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(118vw, -18px, 0);
  }
}

@keyframes birdFlyArc {
  0% {
    transform: translate3d(0, 0, 0);
  }

  35% {
    transform: translate3d(42vw, -28px, 0);
  }

  70% {
    transform: translate3d(84vw, 10px, 0);
  }

  100% {
    transform: translate3d(118vw, -8px, 0);
  }
}

@keyframes birdFlyReverse {
  0% {
    transform: translate3d(118vw, 0, 0) scaleX(-1);
  }

  100% {
    transform: translate3d(-12vw, -22px, 0) scaleX(-1);
  }
}

.hero-doodle {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 9;
  filter: drop-shadow(0 5px 8px rgba(23, 74, 37, 0.04));
}

.hero-object-cluster {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.hero-object {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: auto;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 20px 24px rgba(48, 78, 61, 0.14));
  transform: var(--rest-transform);
  transform-origin: 50% 70%;
  transition: transform 240ms ease, filter 240ms ease;
  animation: objectFloat 4.8s ease-in-out infinite;
  z-index: 1;
}

.hero-object:hover {
  filter: drop-shadow(0 26px 28px rgba(48, 78, 61, 0.18));
  transform: var(--hover-transform);
  animation: none;
}

.hero-object:active,
.hero-object.is-dragging {
  animation: none;
  cursor: grabbing;
  transition: none;
  z-index: 10;
  filter: drop-shadow(0 28px 32px rgba(48, 78, 61, 0.22));
}

.hero-object.is-dragging {
  transform: scale(1.06) rotate(-2deg);
}

.hero-object.is-dragging:hover {
  transform: scale(1.06) rotate(-2deg);
}

.object-cellphone {
  --rest-transform: rotate(-10deg);
  --hover-transform: translateY(-16px) rotate(-18deg) scale(1.08);
  --active-transform: translateY(-8px) rotate(-13deg) scale(1.02);
  top: 29%;
  right: 27%;
  width: clamp(92px, 11vw, 150px);
}

.object-camera {
  --rest-transform: rotate(2deg);
  --hover-transform: translateY(-14px) rotate(9deg) scale(1.08);
  --active-transform: translateY(-7px) rotate(4deg) scale(1.02);
  top: 29%;
  right: 8%;
  width: clamp(126px, 15vw, 190px);
  animation-delay: -1.4s;
}

.object-laptop {
  --rest-transform: rotate(4deg);
  --hover-transform: translateY(-18px) rotate(-5deg) scale(1.08);
  --active-transform: translateY(-9px) rotate(0deg) scale(1.02);
  right: 23%;
  bottom: 17%;
  width: clamp(120px, 15vw, 205px);
  animation-delay: -2.6s;
}

.object-sun {
  --rest-transform: rotate(-4deg);
  --hover-transform: translateY(-18px) rotate(18deg) scale(1.12);
  --active-transform: translateY(-8px) rotate(8deg) scale(1.04);
  right: 9%;
  bottom: 21%;
  width: clamp(78px, 9vw, 118px);
  animation-delay: -3.2s;
}

@keyframes objectFloat {
  0%,
  100% {
    transform: var(--rest-transform) translateY(0);
  }

  50% {
    transform: var(--rest-transform) translateY(-8px);
  }
}

.hero-doodle path + path {
  stroke: rgba(255, 255, 255, 0.56);
  stroke-width: 5;
}

.spiral {
  top: 28%;
  left: 13%;
  width: 94px;
  height: 94px;
  transform: rotate(-10deg);
}

.star {
  top: 40%;
  left: 34%;
  width: 214px;
  height: 184px;
  stroke-width: 12;
  transform: rotate(8deg);
}

.cloud {
  bottom: 7%;
  left: 33%;
  width: 150px;
  height: 82px;
  transform: rotate(2deg);
}

.burst {
  top: 29%;
  right: 39%;
  width: 88px;
  height: 70px;
  stroke-width: 7;
  transform: rotate(-7deg);
}

.section {
  padding: 92px clamp(24px, 6vw, 104px);
}

.intro-grid,
.section-heading,
.stats-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: start;
}

.intro-section h2,
.section-heading h2,
.stats-panel h2,
.join-content h2 {
  margin: 0;
  color: var(--leaf);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 5.7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.intro-copy p,
.section-heading p,
.stats-panel p,
.join-content p {
  margin: 0;
  color: rgba(18, 62, 29, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 550;
  line-height: 1.72;
}

.intro-copy p + p {
  margin-top: 20px;
}

.text-link {
  color: var(--leaf);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(23, 74, 37, 0.35);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  transition: text-decoration-color 160ms ease, color 160ms ease;
}

.text-link:hover {
  color: var(--ink);
  text-decoration-color: var(--leaf);
}

.room-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(185, 217, 233, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 45% at 85% 70%, rgba(237, 159, 202, 0.18), transparent 50%),
    linear-gradient(180deg, var(--paper), #edf3e7);
  overflow: hidden;
}

.room-section .section-kicker {
  margin-bottom: 0;
}

.room-doodle {
  margin: 0 0 4px;
  color: var(--leaf);
  font-family: Caveat, "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-1.8deg);
}

.polaroid-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
  margin-top: clamp(12px, 2vw, 24px);
  min-height: clamp(420px, 52vw, 560px);
  padding: clamp(8px, 2vw, 24px) 0 clamp(20px, 3vw, 40px);
  width: 100%;
}

.polaroid {
  position: relative;
  margin: 0;
  width: 100%;
  z-index: 1;
  transition: transform 0.35s ease, z-index 0s;
}

.polaroid:hover,
.polaroid:focus-within {
  z-index: 4;
  transform: rotate(0deg) translateY(-6px) scale(1.04);
}

.polaroid-frame {
  padding: 12px 12px 0;
  border: 1px solid rgba(18, 62, 29, 0.1);
  border-radius: 3px;
  background: #fffdf8;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 40px rgba(29, 69, 40, 0.12);
}

.polaroid-caption {
  margin: 0;
  padding: 10px 6px 12px;
  color: var(--leaf);
  font-family: Caveat, "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.polaroid-caption a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.polaroid-caption a:hover {
  opacity: 0.75;
}

.polaroid-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e6ebe4;
}

.polaroid-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-photo.is-placeholder {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.35), transparent 40%),
    repeating-linear-gradient(
      -45deg,
      #e8efe6,
      #e8efe6 10px,
      #dde8db 10px,
      #dde8db 20px
    );
}

.polaroid-a {
  grid-column: 1 / span 3;
  grid-row: 1;
  align-self: end;
  transform: rotate(-7deg);
  animation: polaroidSettle 0.9s ease both;
}

.polaroid-b {
  grid-column: 3 / span 3;
  grid-row: 1;
  margin-top: 12%;
  transform: rotate(5deg);
  animation: polaroidSettle 0.9s ease 0.08s both;
}

.polaroid-c {
  grid-column: 5 / span 4;
  grid-row: 1;
  z-index: 2;
  width: 92%;
  justify-self: center;
  transform: rotate(-2deg);
  animation: polaroidSettle 0.9s ease 0.16s both;
}

.polaroid-d {
  grid-column: 8 / span 3;
  grid-row: 1;
  margin-top: 18%;
  transform: rotate(8deg);
  animation: polaroidSettle 0.9s ease 0.24s both;
}

.polaroid-e {
  grid-column: 10 / span 3;
  grid-row: 1;
  align-self: start;
  margin-top: 4%;
  transform: rotate(-5deg);
  animation: polaroidSettle 0.9s ease 0.32s both;
}

@keyframes polaroidSettle {
  from {
    opacity: 0;
    translate: 0 28px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.event-slide {
  border: 1px solid rgba(18, 62, 29, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 15px 42px rgba(29, 69, 40, 0.08);
}

h3 {
  margin: 22px 0 10px;
  color: var(--leaf);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.event-slide-copy p {
  margin: 0;
  color: rgba(18, 62, 29, 0.72);
  font-weight: 550;
  line-height: 1.58;
}

.event-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding-block: clamp(56px, 6vh, 80px);
  background: #f4f3e4;
  overflow: hidden;
}

.event-section .section-heading {
  grid-template-columns: 1fr;
  max-width: 40rem;
  gap: 0;
  align-items: start;
}

.event-section .section-kicker {
  margin-bottom: 8px;
}

.event-section .section-heading h2 {
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1.05;
}

.event-section .section-heading p {
  margin-top: 12px;
  max-width: none;
  justify-self: start;
  text-align: left;
}

.event-carousel {
  --marquee-duration: 48s;
  margin-top: clamp(18px, 3vh, 28px);
  min-height: 0;
  width: 100%;
  container-type: inline-size;
  container-name: events;
}

.event-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 2%,
    #000 98%,
    transparent
  );
}

.event-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: eventMarquee var(--marquee-duration) linear infinite;
  will-change: transform;
}

.event-marquee-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.event-carousel:hover .event-marquee-track,
.event-carousel:focus-within .event-marquee-track {
  animation-play-state: paused;
}

.event-slide {
  flex: 0 0 clamp(200px, 28cqi, 250px);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.event-slide-media {
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  overflow: hidden;
  background: #e8ebe0;
  max-height: clamp(120px, 18vh, 160px);
}

.event-slide-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  box-sizing: border-box;
}

.event-slide-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding: 10px 12px 12px;
}

.event-slide-copy h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
}

.event-slide-copy p {
  font-size: 0.84rem;
  line-height: 1.45;
}

.event-meta {
  color: var(--moss);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.event-slide-link {
  margin-top: auto;
  padding-top: 6px;
  color: var(--leaf);
  font-size: 0.8rem;
  font-weight: 800;
}

.event-slide-link:hover {
  text-decoration: underline;
}

@keyframes eventMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-carousel.is-static .event-marquee,
  .event-carousel.is-static .event-marquee-track {
    overflow-x: auto;
  }

  .event-carousel.is-static .event-marquee-track {
    animation: none;
    width: max-content;
  }

  .event-carousel.is-static .event-marquee {
    mask-image: none;
  }
}

.stats-section {
  background: var(--leaf);
  color: var(--cream);
}

.stats-panel .section-kicker,
.stats-panel h2,
.stats-panel p {
  color: var(--cream);
}

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

.stat-grid div {
  min-height: 158px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.08);
}

.stat-grid strong {
  display: block;
  color: var(--cream);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.stat-grid span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 250, 240, 0.78);
  font-weight: 750;
}

.projects-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  box-sizing: border-box;
  padding-block: clamp(48px, 5.5vh, 72px);
  overflow: hidden;
  background: #dce9ee;
}

.projects-content {
  position: relative;
  z-index: 2;
}

.projects-content::before {
  content: "";
  position: absolute;
  inset: -10% -6% -8%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 65% at 28% 38%,
    rgba(220, 233, 238, 0.96) 0%,
    rgba(220, 233, 238, 0.72) 42%,
    rgba(220, 233, 238, 0) 72%
  );
}

.projects-section .section-heading {
  grid-template-columns: 1fr;
  max-width: 32rem;
}

.projects-section .section-kicker {
  margin-bottom: 6px;
}

.projects-section .section-heading h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.75rem);
  line-height: 1;
}

.project-garden {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sunflower {
  position: absolute;
  display: block;
  width: var(--sf-size, 240px);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.08) rotate(-12deg);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  filter: drop-shadow(0 10px 24px rgba(29, 69, 40, 0.1));
}

.sunflower img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.projects-section.is-blooming .sunflower {
  visibility: visible;
  animation:
    sunflowerExpand 1.25s cubic-bezier(0.22, 1.4, 0.36, 1) forwards,
    sunflowerDrift 8s ease-in-out 1.25s infinite;
}

.sunflower-a {
  --sf-size: clamp(180px, 22vw, 280px);
  left: -8%;
  bottom: -4%;
  top: auto;
  animation-delay: 0.05s, 1.3s !important;
}

.sunflower-b {
  --sf-size: clamp(140px, 18vw, 220px);
  right: -7%;
  top: -2%;
  animation-delay: 0.28s, 1.53s !important;
}

.sunflower-c {
  --sf-size: clamp(110px, 14vw, 170px);
  right: -3%;
  bottom: -6%;
  animation-delay: 0.48s, 1.73s !important;
}

@keyframes sunflowerExpand {
  0% {
    opacity: 0;
    transform: scale(0.08) rotate(-12deg);
  }

  55% {
    opacity: 0.5;
  }

  78% {
    transform: scale(1.1) rotate(3deg);
  }

  100% {
    opacity: 0.48;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes sunflowerDrift {
  0%,
  100% {
    transform: scale(1) rotate(-2deg);
  }

  50% {
    transform: scale(1.03) rotate(3deg);
  }
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.4vh, 14px) clamp(10px, 1.2vw, 14px);
  margin-top: clamp(14px, 2.2vh, 22px);
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  color: inherit;
  transition: transform 160ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-2px);
}

.project-card:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 4px;
}

.project-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(18, 62, 29, 0.12);
  background: rgba(255, 250, 240, 0.72);
}

.project-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.project-card-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-inline: 1px;
}

.project-card h3 {
  margin: 0;
  color: var(--leaf);
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  font-weight: 800;
  line-height: 1.2;
}

.project-maker {
  color: rgba(18, 62, 29, 0.58);
  font-size: 0.72rem;
  font-weight: 550;
}

@media (max-width: 1100px) {
  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.partner-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  box-sizing: border-box;
  padding-block: clamp(56px, 7vh, 88px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper), #edf3e7);
}

.partner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vh, 36px);
  max-width: min(640px, 58%);
}

.partner-header h2 {
  margin: 0;
  color: var(--leaf);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 0.95;
}

.partner-copy p {
  margin: 0;
  color: rgba(18, 62, 29, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 550;
  line-height: 1.72;
}

.partner-copy p + p {
  margin-top: 18px;
}

.partner-signals {
  display: grid;
  gap: 16px;
}

.partner-signal {
  margin: 0;
  color: rgba(18, 62, 29, 0.78);
  font-size: 0.95rem;
  font-weight: 550;
  line-height: 1.55;
}

.partner-signal-label {
  display: block;
  margin-bottom: 6px;
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-friends {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 22px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.partner-friend-logo {
  display: block;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.partner-friend-air {
  height: 28px;
}

.partner-friend-bcv {
  height: 26px;
}

.partner-friend-notion {
  height: 24px;
}

.partner-friend-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .partner-friend-logo,
  .partner-friend-logo:hover {
    transition: none;
    transform: none;
  }
}

.partner-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.partner-vines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.partner-vine {
  position: absolute;
  overflow: visible;
  opacity: 0.55;
  transform-origin: 50% 80%;
  animation: vineFloat 7s ease-in-out infinite;
}

.vine-a {
  right: clamp(1%, 4vw, 8%);
  top: 6%;
  width: clamp(140px, 18vw, 220px);
  height: auto;
}

.vine-b {
  right: clamp(14%, 18vw, 26%);
  bottom: -2%;
  width: clamp(110px, 14vw, 170px);
  height: auto;
  opacity: 0.42;
  animation-delay: -2.2s;
  animation-duration: 8.2s;
}

.partner-vine .vine-line {
  fill: none;
  stroke: #3d6b42;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.partner-vine .vine-leaf {
  fill: #5a8758;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
}

.partner-section.is-growing .partner-vine .vine-line {
  animation: vineGrow 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.partner-section.is-growing .vine-b .vine-line {
  animation-delay: 0.18s;
}

.partner-section.is-growing .partner-vine .vine-leaf {
  animation: leafPop 0.5s cubic-bezier(0.22, 1.35, 0.36, 1) forwards;
}

/* Leaves wait until stems finish drawing */
.partner-section.is-growing .leaf-1 { animation-delay: 1.65s; }
.partner-section.is-growing .leaf-2 { animation-delay: 1.85s; }
.partner-section.is-growing .leaf-3 { animation-delay: 2.05s; }
.partner-section.is-growing .leaf-4 { animation-delay: 2.2s; }

.partner-section.is-growing .vine-b .leaf-1 { animation-delay: 1.85s; }
.partner-section.is-growing .vine-b .leaf-2 { animation-delay: 2.05s; }
.partner-section.is-growing .vine-b .leaf-3 { animation-delay: 2.2s; }

@keyframes vineGrow {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes leafPop {
  from {
    opacity: 0;
    transform: scale(0.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes vineFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.join-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100svh;
  box-sizing: border-box;
  padding: clamp(72px, 10vh, 120px) clamp(24px, 6vw, 104px);
  overflow: hidden;
  text-align: left;
  background:
    radial-gradient(ellipse 55% 50% at 50% 42%, rgba(255, 250, 240, 0.55), transparent 70%),
    radial-gradient(ellipse 40% 35% at 78% 28%, rgba(237, 159, 202, 0.22), transparent 55%),
    radial-gradient(ellipse 45% 40% at 22% 70%, rgba(185, 217, 233, 0.45), transparent 60%),
    radial-gradient(ellipse 35% 30% at 68% 72%, rgba(255, 216, 90, 0.2), transparent 50%),
    linear-gradient(180deg, #e4f0f4 0%, #e8efe3 48%, #f3efe0 100%);
}

.join-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.join-content .section-kicker {
  margin-bottom: 10px;
}

.join-content h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  text-wrap: balance;
}

.join-content p {
  margin-top: clamp(16px, 2.4vh, 24px);
  max-width: 38rem;
  text-wrap: pretty;
}

.join-section .join-actions {
  justify-content: flex-start;
  margin-top: clamp(22px, 3vh, 32px);
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  height: var(--peek-footer-h);
  padding: 22px clamp(24px, 6vw, 104px);
  color: rgba(255, 250, 240, 0.82);
  background:
    repeating-linear-gradient(
      -18deg,
      #1a4f2a 0 22px,
      #1d552e 22px 44px
    );
  overflow: hidden;
  pointer-events: none;
}

.site-footer a {
  pointer-events: auto;
}

.footer-credits,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.footer-credits p {
  margin: 0;
}

.footer-divider {
  opacity: 0.7;
  line-height: 1;
  user-select: none;
}

.footer-credits a,
.footer-links a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.footer-credits a:hover,
.footer-credits a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cream);
}

.footer-credits a:focus-visible,
.footer-links a:focus-visible {
  outline: 1px solid rgba(255, 250, 240, 0.7);
  outline-offset: 3px;
  border-radius: 2px;
}

.interest-modal {
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(18, 62, 29, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(185, 217, 233, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(237, 159, 202, 0.18), transparent 50%),
    var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: auto;
}

.interest-modal::backdrop {
  background: rgba(18, 62, 29, 0.42);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.interest-modal[open] {
  animation: interestModalIn 220ms ease;
}

.interest-modal[open]::backdrop {
  animation: interestBackdropIn 220ms ease;
}

@keyframes interestModalIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes interestBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.interest-modal-panel {
  position: relative;
  padding: 36px 32px 32px;
}

.interest-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--leaf);
  background: transparent;
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.interest-modal-close:hover {
  background: rgba(18, 62, 29, 0.06);
}

.interest-modal-copy .eyebrow {
  margin: 0 0 10px;
}

.interest-modal-copy h2 {
  margin: 0;
  color: var(--leaf);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.interest-modal-copy p:last-child {
  margin: 14px 0 0;
  max-width: 36ch;
  color: rgba(18, 62, 29, 0.78);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.interest-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.interest-form[hidden],
.interest-modal-copy[hidden],
.interest-success[hidden],
.interest-modal-panel.is-success .interest-modal-copy,
.interest-modal-panel.is-success .interest-form {
  display: none !important;
}

.interest-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.interest-turnstile:not([hidden]) {
  margin-top: 4px;
}

.interest-form label {
  display: grid;
  gap: 7px;
}

.interest-form label span {
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.interest-form label em {
  font-style: normal;
  font-weight: 500;
  color: rgba(18, 62, 29, 0.55);
}

.interest-form .req {
  margin-left: 2px;
  color: #b42318;
  font-weight: 800;
  text-decoration: none;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(18, 62, 29, 0.18);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.interest-form textarea {
  min-height: 96px;
  resize: vertical;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  border-color: rgba(23, 74, 37, 0.45);
  box-shadow: 0 0 0 3px rgba(185, 217, 233, 0.55);
}

.interest-form input::placeholder,
.interest-form textarea::placeholder {
  color: rgba(18, 62, 29, 0.38);
}

.interest-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--leaf) 50%),
    linear-gradient(135deg, var(--leaf) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.interest-goals {
  margin: 0;
  padding: 0;
  border: 0;
}

.interest-goals legend {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.interest-goal-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interest-goal {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  cursor: pointer;
}

.interest-goal input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.interest-goal span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(18, 62, 29, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.7);
  color: rgba(18, 62, 29, 0.82);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.25;
  transition:
    background 140ms ease,
    border-color 140ms ease,
    color 140ms ease;
}

.interest-goal input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(185, 217, 233, 0.55);
}

.interest-goal input:checked + span {
  border-color: rgba(23, 74, 37, 0.35);
  background: rgba(23, 74, 37, 0.1);
  color: var(--leaf);
}

.interest-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 6px;
}

.interest-form-status {
  margin: 0;
  color: rgba(18, 62, 29, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
}

.interest-form-status.is-error {
  color: #8a2f2f;
}

.interest-success {
  margin-top: 8px;
}

.interest-modal-panel.is-success .interest-success {
  display: block;
}

.interest-success h3 {
  margin: 0;
  color: var(--leaf);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.05;
}

.interest-success p {
  margin: 12px 0 24px;
  color: rgba(18, 62, 29, 0.78);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .interest-modal[open],
  .interest-modal[open]::backdrop {
    animation: none;
  }
}

@media (max-width: 1040px) {
  .partner-content {
    max-width: min(640px, 72%);
  }

  .vine-b {
    opacity: 0.38;
  }

  .hero-content {
    margin-left: 0;
  }

  .object-cellphone {
    right: 24%;
  }

  .object-camera {
    right: 5%;
  }

  .object-laptop {
    right: 21%;
  }

  .polaroid-wall {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .polaroid-a,
  .polaroid-b,
  .polaroid-c,
  .polaroid-d,
  .polaroid-e {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin-top: 0;
    justify-self: stretch;
    align-self: start;
  }

  .polaroid-c {
    grid-column: 1 / -1;
    width: min(280px, 70%);
    justify-self: center;
  }

  .polaroid-e {
    display: none;
  }

}

@media (max-width: 760px) {
  .site-header {
    inset: 12px 12px auto;
  }

  .brand {
    min-height: 40px;
    padding-right: 12px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 104px 20px 64px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 21vw, 7rem);
  }

  .hero-copy {
    margin-top: 26px;
  }

  .hero-object {
    opacity: 0.64;
    filter: drop-shadow(0 14px 18px rgba(48, 78, 61, 0.12));
  }

  .object-cellphone {
    top: 31%;
    right: -10px;
    width: 92px;
  }

  .object-camera {
    display: none;
  }

  .object-laptop {
    right: 20px;
    bottom: 10%;
    width: 116px;
  }

  .object-sun {
    right: -18px;
    bottom: 25%;
    width: 72px;
  }

  .spiral {
    left: 5%;
    top: 23%;
  }

  .star {
    left: 48%;
    top: 45%;
    width: 120px;
    height: 100px;
  }

  .cloud {
    left: 16%;
    bottom: 5%;
  }

  .section,
  .join-section {
    padding: 68px 20px;
  }

  .join-section {
    min-height: auto;
    padding-block: 80px;
  }

  .interest-modal-panel {
    padding: 30px 22px 24px;
  }

  .intro-grid,
  .section-heading,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .partner-section {
    min-height: auto;
    overflow: hidden;
    padding-block: 68px;
  }

  .partner-content {
    max-width: 100%;
    gap: 22px;
  }

  .partner-vines {
    opacity: 0.55;
  }

  .vine-a {
    right: -48px;
    width: 180px;
  }

  .vine-b {
    display: none;
  }

  .polaroid-wall {
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
    padding-block: 4px 12px;
  }

  .polaroid-c {
    width: min(240px, 78%);
  }

  .event-section {
    min-height: auto;
    padding-block: 68px;
    overflow: visible;
  }

  .event-slide {
    flex-basis: min(240px, 78cqi);
  }

  .event-slide-media {
    max-height: none;
  }

  .bird-c,
  .bird-e,
  .bird-g,
  .bird-j {
    display: none;
  }

  .bird {
    opacity: 0.55;
  }

  .projects-section {
    min-height: auto;
    padding-block: 68px;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }

  .project-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: min(100%, 280px);
  }

  .sunflower-c {
    display: none;
  }

  .sunflower-a {
    --sf-size: 120px;
    left: -12%;
    bottom: -2%;
  }

  .sunflower-b {
    --sf-size: 96px;
    right: -10%;
    top: 4%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bird,
  .bird .wing,
  .hero-object,
  .polaroid,
  .partner-vine,
  .partner-vine .vine-line,
  .partner-vine .vine-leaf {
    animation: none !important;
  }

  .bird {
    display: none;
  }

  .sunflower,
  .projects-section.is-blooming .sunflower {
    animation: none !important;
    opacity: 0.48;
    visibility: visible;
    transform: none;
  }

  .partner-section .partner-vine .vine-line,
  .partner-section.is-growing .partner-vine .vine-line {
    stroke-dashoffset: 0;
  }

  .partner-section .partner-vine .vine-leaf,
  .partner-section.is-growing .partner-vine .vine-leaf {
    opacity: 1;
  }

  .polaroid:hover,
  .polaroid:focus-within {
    transform: none;
  }
}
