:root {
  --ink: #6b1646;
  --ink-deep: #3f0c2a;
  --paper: #fff1f7;
  --paper-bright: #fffafd;
  --coral: #f74791;
  --peach: #ffafd0;
  --sage: #e5c8f3;
  --sun: #ffd5e6;
  --line: rgba(107, 22, 70, 0.18);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--sun);
  color: var(--ink-deep);
}

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

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 1rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-110%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 4.5vw;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease;
}

.site-header.scrolled {
  background: rgba(246, 241, 232, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  font-size: 0.85rem;
  font-weight: 600;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 99px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(8rem, 14vw, 11rem) 4.5vw 0;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -12rem;
  right: -10rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(230, 104, 74, 0.22);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 7rem;
  right: 5rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgba(230, 104, 74, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-kicker,
.section-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker-line {
  width: 2.5rem;
  height: 1px;
  background: var(--coral);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.55fr);
  gap: 7vw;
  align-items: end;
  max-width: 1450px;
  margin-top: clamp(2rem, 6vh, 4.5rem);
}

.hero h1,
.section h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 950px;
  font-size: clamp(4rem, 8.5vw, 9rem);
}

h1 em,
h2 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-intro {
  max-width: 590px;
  margin: 2.3rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  margin-top: 2.3rem;
}

.button {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--coral);
}

.text-link {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.field-note {
  position: relative;
  margin-bottom: 0.6rem;
  padding: 1.4rem;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  box-shadow: 12px 12px 0 rgba(24, 58, 55, 0.07);
  transform: rotate(1.5deg);
}

.field-note::before {
  position: absolute;
  top: -12px;
  left: 35%;
  width: 75px;
  height: 24px;
  background: rgba(230, 196, 92, 0.5);
  content: "";
  transform: rotate(-3deg);
}

.note-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--coral);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sparkle {
  font-size: 1.35rem;
}

.field-note > p {
  margin: 1.8rem 0 2.8rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
}

.note-bottom {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
}

.note-bottom span {
  color: rgba(24, 58, 55, 0.55);
  text-transform: uppercase;
}

.note-bottom strong {
  font-size: 0.8rem;
}

.hero-marquee {
  width: calc(100% + 9vw);
  margin: clamp(5rem, 10vh, 9rem) -4.5vw 0;
  padding: 0.55rem 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  white-space: nowrap;
  transform: rotate(-1deg);
}

.hero-marquee div {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  min-width: 200%;
  animation: marquee 28s linear infinite;
}

.hero-marquee span {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.4rem);
}

.hero-marquee b {
  color: var(--peach);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(6rem, 10vw, 10rem) 4.5vw;
}

.section-label {
  display: grid;
  grid-template-columns: 3rem 1fr;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.section-label span {
  color: var(--coral);
}

.section-label p {
  margin: 0;
}

.about-content,
.journal-heading,
.projects-intro,
.resources-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  margin-top: clamp(3rem, 7vw, 6rem);
}

.section h2 {
  font-size: clamp(3.2rem, 6vw, 6.7rem);
}

.about-body {
  max-width: 580px;
}

.about-body p {
  color: rgba(24, 58, 55, 0.76);
}

.about-body .lead {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.35;
}

.about-body .text-link {
  margin-top: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(4rem, 8vw, 8rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.value-card {
  min-height: 270px;
  padding: 2rem;
  background: var(--paper);
}

.value-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--coral);
}

.value-card h3 {
  margin: 3rem 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.value-card p {
  max-width: 330px;
  margin: 0;
  color: rgba(24, 58, 55, 0.65);
  font-size: 0.9rem;
}

.journal,
.resources {
  background: var(--paper-bright);
}

.journal-heading {
  align-items: end;
}

.journal-heading p {
  max-width: 420px;
  margin: 0 0 0.6rem;
  color: rgba(24, 58, 55, 0.66);
}

.filter-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 4rem 0 2rem;
}

.filter {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  min-height: 96px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.filter strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.filter span {
  color: rgba(24, 58, 55, 0.62);
  font-size: 0.7rem;
  line-height: 1.4;
}

.filter-all {
  grid-column: 1 / -1;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  min-height: 0;
  width: fit-content;
  padding: 0.55rem 1rem;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
}

.filter:hover,
.filter.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.filter:hover span,
.filter.active span {
  color: rgba(255, 255, 255, 0.78);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.article-card:hover {
  box-shadow: 8px 8px 0 var(--sage);
  transform: translate(-4px, -4px);
}

.article-card.hidden {
  display: none;
}

.article-featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 1fr 1fr;
}

.article-art {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.art-one {
  background: var(--coral);
}

.art-courage {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55), transparent 18%),
    linear-gradient(150deg, #f74791, #ffb4d3);
}

.courage-path {
  position: absolute;
  bottom: -18%;
  left: 50%;
  width: 58%;
  height: 105%;
  border: 2px solid rgba(107, 22, 70, 0.65);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%) perspective(200px) rotateX(18deg);
}

.courage-star {
  position: absolute;
  color: var(--paper);
  filter: drop-shadow(4px 5px 0 rgba(107, 22, 70, 0.12));
}

.courage-star.star-one {
  top: 20%;
  left: 20%;
  font-size: 2rem;
}

.courage-star.star-two {
  top: 28%;
  right: 18%;
  font-size: 3.2rem;
}

.courage-star.star-three {
  bottom: 18%;
  left: 43%;
  font-size: 4.2rem;
}

.art-relationship {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(145deg, var(--peach), #ff8fbe);
}

.heart-outline {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(7rem, 15vw, 12rem);
  line-height: 1;
  filter: drop-shadow(7px 8px 0 rgba(107, 22, 70, 0.15));
}

.relationship-flower,
.relationship-spark {
  position: absolute;
  color: var(--ink-deep);
}

.relationship-flower {
  top: 17%;
  right: 18%;
  font-size: 2.6rem;
  transform: rotate(12deg);
}

.relationship-spark {
  bottom: 17%;
  left: 18%;
  font-size: 2rem;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(246, 241, 232, 0.8);
  border-radius: 50%;
}

.orbit-one {
  inset: -23% 19%;
}

.orbit-two {
  inset: 20% -10%;
}

.art-star {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--paper);
  font-size: 5rem;
  transform: translate(-50%, -50%);
}

.art-two {
  display: grid;
  place-items: center;
  background: var(--sage);
}

.window {
  width: 60%;
  height: 52%;
  border: 2px solid var(--ink);
  background:
    linear-gradient(var(--ink), var(--ink)) 15% 20% / 35% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 15% 36% / 65% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 15% 52% / 50% 2px no-repeat,
    var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.cursor-arrow {
  position: absolute;
  right: 19%;
  bottom: 16%;
  font-size: 2.8rem;
}

.art-three {
  background: var(--sun);
}

.bubble {
  position: absolute;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.bubble::after {
  position: absolute;
  bottom: -18px;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  content: "";
  transform: rotate(45deg);
}

.bubble-one {
  inset: 20% 35% 42% 12%;
}

.bubble-two {
  inset: 48% 10% 16% 39%;
}

.small-star {
  position: absolute;
  top: 27%;
  right: 18%;
  font-size: 2rem;
}

.art-four {
  background: var(--peach);
}

.pet-head {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 130px;
  height: 140px;
  border: 3px solid var(--ink);
  border-radius: 48% 48% 42% 42%;
  background: var(--paper);
  transform: translateX(-50%);
}

.pet-ear {
  position: absolute;
  z-index: 1;
  top: 16%;
  width: 56px;
  height: 78px;
  border: 3px solid var(--ink);
  background: var(--paper);
}

.pet-ear.left {
  left: calc(50% - 79px);
  border-radius: 70% 20%;
  transform: rotate(-24deg);
}

.pet-ear.right {
  right: calc(50% - 79px);
  border-radius: 20% 70%;
  transform: rotate(24deg);
}

.pet-head i {
  position: absolute;
  top: 47px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

.pet-head i:first-child {
  left: 35px;
}

.pet-head i:nth-child(2) {
  right: 35px;
}

.pet-head b {
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 15px;
  height: 11px;
  border-radius: 60% 60% 80% 80%;
  background: var(--ink);
  transform: translateX(-50%);
}

.article-content {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 1.6rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  color: rgba(24, 58, 55, 0.58);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-content h3 {
  margin: 1.3rem 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.12;
}

.article-content p {
  margin: 0;
  color: rgba(24, 58, 55, 0.65);
  font-size: 0.85rem;
}

.article-content > a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.74rem;
  font-weight: 600;
}

.article-content > a span {
  margin-left: 0.5rem;
}

.projects {
  background: var(--ink);
  color: var(--paper);
}

.projects .section-label {
  border-color: rgba(246, 241, 232, 0.22);
}

.projects-intro {
  align-items: end;
}

.projects-intro p {
  max-width: 440px;
  margin: 0 0 0.7rem;
  color: rgba(246, 241, 232, 0.68);
}

.project-card {
  display: grid;
  grid-template-columns: 70px 1.1fr 1fr;
  gap: 4vw;
  align-items: center;
  margin-top: 5rem;
  padding: 4rem;
  background: var(--coral);
  color: var(--ink-deep);
}

.project-number {
  align-self: start;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.status {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(24, 58, 55, 0.14);
}

.project-copy h3 {
  margin: 1rem 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.project-copy p {
  max-width: 530px;
  margin-bottom: 2rem;
}

.button-light {
  border: 1px solid var(--ink);
}

.button-light:hover {
  background: var(--ink);
  color: var(--paper);
}

.project-mark {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.project-mark span {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  letter-spacing: 0.08em;
}

.project-mark strong {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.4;
}

.project-mark small {
  font-size: clamp(0.35rem, 0.6vw, 0.55rem);
  font-weight: 600;
  letter-spacing: 0.13em;
}

.experiments-list {
  margin-top: 4rem;
  border-top: 1px solid rgba(246, 241, 232, 0.22);
}

.experiment {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 4vw;
  align-items: center;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(246, 241, 232, 0.22);
}

.experiment > span {
  color: var(--peach);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.experiment h3 {
  margin: 0 0 0.3rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.experiment p {
  margin: 0;
  color: rgba(246, 241, 232, 0.6);
  font-size: 0.85rem;
}

.experiment > strong {
  color: var(--sage);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resources-layout {
  align-items: start;
}

.resources-copy {
  max-width: 530px;
  color: rgba(24, 58, 55, 0.65);
}

.resource-list {
  border-top: 1px solid var(--line);
}

.resource-list a {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, color 180ms ease;
}

.resource-list a:hover {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: var(--coral);
}

.resource-list span {
  color: var(--coral);
  font-family: var(--serif);
}

.resource-list strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}

.newsletter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(6rem, 12vw, 11rem) 5vw;
  background: var(--sun);
  color: var(--ink-deep);
  text-align: center;
  overflow: hidden;
}

.newsletter::before,
.newsletter::after {
  position: absolute;
  width: 25vw;
  height: 25vw;
  border: 1px solid rgba(24, 58, 55, 0.24);
  border-radius: 50%;
  content: "";
}

.newsletter::before {
  bottom: -12vw;
  left: -8vw;
}

.newsletter::after {
  top: -12vw;
  right: -8vw;
}

.newsletter-star {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.eyebrow {
  margin: 0 0 1.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newsletter h2 {
  font-size: clamp(3.5rem, 7vw, 7.5rem);
}

.newsletter h2 em {
  color: var(--ink);
}

.newsletter > p:not(.eyebrow):not(.form-message) {
  max-width: 560px;
  margin: 2rem auto;
}

.signup-form {
  display: flex;
  width: min(100%, 560px);
  margin-top: 1rem;
  border-bottom: 1px solid var(--ink);
}

.signup-form input {
  flex: 1;
  min-width: 0;
  padding: 1rem 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.signup-form input::placeholder {
  color: rgba(24, 58, 55, 0.55);
}

.signup-form button {
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
}

.signup-form button span {
  margin-left: 0.7rem;
}

.form-message {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  font-size: 0.8rem;
}

.footer {
  padding: clamp(5rem, 8vw, 8rem) 4.5vw 2rem;
  background: var(--ink-deep);
  color: var(--paper);
}

.footer-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.footer-main p {
  max-width: 320px;
  margin: 0;
  color: rgba(246, 241, 232, 0.6);
}

.footer-main > a {
  display: flex;
  gap: 2rem;
  align-items: center;
  border-bottom: 2px solid var(--coral);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  line-height: 1.1;
}

.footer-main > a span {
  color: var(--coral);
  font-size: 0.45em;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246, 241, 232, 0.18);
  color: rgba(246, 241, 232, 0.55);
  font-size: 0.7rem;
}

.footer-brand {
  color: var(--paper);
}

.footer-brand .brand-mark {
  border-color: var(--paper);
}

.footer-bottom p:last-child {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sparkle-overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.scroll-sparkle {
  position: absolute;
  color: var(--sparkle-color, var(--coral));
  font-size: var(--sparkle-size, 1rem);
  line-height: 1;
  opacity: 0;
  filter: drop-shadow(0 2px 2px rgba(107, 22, 70, 0.14));
  animation: sparkle-float 900ms ease-out forwards;
}

@keyframes sparkle-float {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.25) rotate(0deg);
  }

  35% {
    opacity: 0.95;
    transform: translateY(0) scale(1) rotate(45deg);
  }

  100% {
    opacity: 0;
    transform: translateY(-38px) scale(0.45) rotate(120deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .sparkle-overlay {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 68px;
    padding: 0 5vw;
  }

  .menu-button {
    position: relative;
    z-index: 101;
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    position: absolute;
    left: 8px;
    width: 26px;
    height: 1px;
    background: var(--ink);
    transition: transform 200ms ease, top 200ms ease;
  }

  .menu-button span:first-child {
    top: 17px;
  }

  .menu-button span:nth-child(2) {
    top: 25px;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    top: 21px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 15vw;
    background: var(--paper);
    font-family: var(--serif);
    font-size: 2.5rem;
    transform: translateX(100%);
    transition: transform 260ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .nav-cta {
    margin-top: 1rem;
    font-family: var(--sans);
    font-size: 0.9rem;
  }

  .hero-grid,
  .about-content,
  .journal-heading,
  .projects-intro,
  .resources-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-grid {
    gap: 4rem;
  }

  .field-note {
    width: min(90%, 420px);
    margin-left: auto;
  }

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

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

  .filter-list {
    grid-template-columns: 1fr 1fr;
  }

  .article-featured {
    grid-column: span 2;
  }

  .project-card {
    grid-template-columns: 45px 1fr;
    padding: 2.5rem;
  }

  .project-mark {
    grid-column: 2;
    width: min(100%, 420px);
  }

  .footer-main {
    display: block;
  }

  .footer-main > a {
    margin-top: 3rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .field-note {
    width: 95%;
  }

  .section {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .section h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .article-grid,
  .article-featured {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-list {
    grid-template-columns: 1fr;
  }

  .article-featured {
    grid-column: span 1;
  }

  .article-art {
    min-height: 220px;
  }

  .project-card {
    display: block;
    padding: 1.6rem;
  }

  .project-number {
    margin-bottom: 2rem;
  }

  .project-mark {
    width: 100%;
    margin-top: 3rem;
  }

  .experiment {
    grid-template-columns: 35px 1fr;
  }

  .experiment > strong {
    grid-column: 2;
  }

  .signup-form {
    display: block;
    border-bottom: 0;
  }

  .signup-form input {
    width: 100%;
    border-bottom: 1px solid var(--ink);
    text-align: center;
  }

  .signup-form button {
    margin-top: 0.7rem;
  }

  .footer-main > a {
    font-size: 3.4rem;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p:last-child {
    margin-top: 2rem;
    text-align: left;
  }
}

/* Pink, playful garden redesign */

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 175, 208, 0.28), transparent 22rem),
    radial-gradient(circle at 88% 18%, rgba(229, 200, 243, 0.32), transparent 24rem),
    var(--paper);
}

.site-header.scrolled {
  background: rgba(255, 241, 247, 0.9);
}

.brand-mark {
  border: 0;
  background: var(--coral);
  color: white;
  box-shadow: 0 3px 0 var(--ink-deep);
}

.nav-cta {
  border: 0;
  background: white;
  box-shadow: 0 3px 0 var(--ink);
}

.nav-cta:hover {
  background: var(--coral);
}

.hero {
  padding-bottom: 0;
}

.hero::before {
  top: -18rem;
  right: -12rem;
  width: 45rem;
  height: 45rem;
  border: 2px dashed rgba(247, 71, 145, 0.2);
}

.hero::after {
  top: 9rem;
  right: 7rem;
  width: 15rem;
  height: 15rem;
  border: 2px dotted rgba(107, 22, 70, 0.23);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  gap: 3vw;
  align-items: center;
}

.hero h1 {
  font-size: clamp(4rem, 7.7vw, 8rem);
}

.hero h1 em {
  display: block;
  color: var(--coral);
}

.hero-kicker {
  color: var(--ink);
}

.hero-intro {
  max-width: 650px;
}

.button {
  box-shadow: 0 4px 0 var(--ink-deep);
}

.button-dark:hover {
  background: #ff75ad;
}

.pet-collage {
  position: relative;
  min-height: 540px;
}

.pet-polaroid {
  position: absolute;
  width: 235px;
  margin: 0;
  padding: 0.75rem 0.75rem 2.6rem;
  background: white;
  border: 1px solid rgba(107, 22, 70, 0.15);
  box-shadow: 12px 14px 0 rgba(107, 22, 70, 0.14);
}

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

.pet-polaroid figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.45rem;
  left: 0.8rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  text-align: center;
}

.polaroid-luna {
  z-index: 3;
  top: 8%;
  left: 2%;
  transform: rotate(-7deg);
}

.polaroid-luna img {
  object-position: center;
}

.polaroid-masha {
  z-index: 2;
  top: 0;
  right: 0;
  transform: rotate(7deg);
}

.polaroid-masha img {
  object-position: center 30%;
}

.polaroid-osiris {
  z-index: 4;
  right: 10%;
  bottom: 0;
  transform: rotate(2deg);
}

.polaroid-osiris img {
  object-position: center 38%;
}

.collage-flower,
.collage-sparkle {
  position: absolute;
  z-index: 6;
  color: var(--coral);
  line-height: 1;
}

.flower-one {
  top: 2%;
  left: 42%;
  font-size: 3.2rem;
  transform: rotate(-12deg);
}

.flower-two {
  right: 2%;
  bottom: 17%;
  color: var(--ink);
  font-size: 2.4rem;
}

.sparkle-one {
  top: 45%;
  right: 4%;
  font-size: 2.2rem;
}

.sparkle-two {
  bottom: 4%;
  left: 15%;
  color: var(--ink);
  font-size: 3rem;
}

.hero-marquee {
  background: var(--coral);
  color: white;
  box-shadow: 0 5px 0 var(--ink);
}

.hero-marquee b {
  color: var(--sun);
}

.section-label span {
  color: var(--coral);
}

.section h2 em {
  color: var(--coral);
}

.values-grid {
  gap: 1rem;
  background: transparent;
  border: 0;
}

.value-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 253, 0.72);
  box-shadow: 0 8px 0 rgba(107, 22, 70, 0.09);
}

.value-card > span {
  border: 0;
  background: var(--sun);
}

.experience {
  position: relative;
  background:
    radial-gradient(circle at 92% 10%, rgba(247, 71, 145, 0.13), transparent 25rem),
    var(--paper-bright);
  overflow: hidden;
}

.experience::after {
  position: absolute;
  right: -3rem;
  bottom: 4rem;
  color: rgba(247, 71, 145, 0.08);
  content: "✦";
  font-size: 24rem;
  line-height: 1;
  transform: rotate(12deg);
}

.experience-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  margin-top: clamp(3rem, 7vw, 6rem);
}

.experience-intro-copy {
  max-width: 620px;
}

.experience-intro-copy p {
  color: rgba(107, 22, 70, 0.72);
}

.experience-intro-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.38;
}

.experience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.experience-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 30px;
  box-shadow: 10px 12px 0 rgba(107, 22, 70, 0.12);
}

.experience-leadership {
  background: var(--ink-deep);
  color: white;
}

.experience-lessons {
  background: var(--sun);
  color: var(--ink-deep);
  transform: rotate(1deg);
}

.experience-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.experience-lessons .experience-card-top {
  border-color: rgba(107, 22, 70, 0.18);
}

.experience-card-top i {
  color: var(--peach);
  font-size: 1.6rem;
  font-style: normal;
}

.experience-lessons .experience-card-top i {
  color: var(--coral);
}

.experience-card h3,
.experience-today h3 {
  margin: 2rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.experience-card > p {
  color: rgba(255, 255, 255, 0.68);
}

.experience-lessons > p {
  color: rgba(63, 12, 42, 0.72);
}

.experience-card ul {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.experience-card li {
  position: relative;
  padding: 0.9rem 0 0.9rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.experience-lessons li {
  border-color: rgba(107, 22, 70, 0.15);
}

.experience-card li::before {
  position: absolute;
  top: 0.95rem;
  left: 0;
  color: var(--peach);
  content: "✦";
}

.experience-lessons li::before {
  color: var(--coral);
  content: "✿";
}

.experience-note {
  margin-top: 2.2rem;
  padding: 1.3rem;
  border: 1px solid rgba(255, 175, 208, 0.35);
  border-radius: 18px;
  background: rgba(247, 71, 145, 0.11);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.5;
}

.experience-today {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 6vw;
  margin-top: clamp(4rem, 7vw, 6rem);
  padding: clamp(2.2rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--paper);
}

.experience-today > div:first-child > span {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-today h3 {
  margin-top: 1rem;
  color: var(--ink);
}

.experience-today h3 em {
  color: var(--coral);
  font-weight: 400;
}

.today-copy p {
  color: rgba(107, 22, 70, 0.72);
}

.today-copy p:first-child {
  margin-top: 0;
}

.experience-values {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.experience-values strong {
  padding: 0.7rem 1rem;
  border-radius: 99px;
  background: white;
  color: var(--ink);
  box-shadow: 0 3px 0 var(--peach);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
}

.garden-crew {
  position: relative;
  background: var(--ink-deep);
  color: white;
  overflow: hidden;
}

.garden-crew::before {
  position: absolute;
  top: 7%;
  right: 5%;
  color: rgba(255, 175, 208, 0.16);
  content: "✿";
  font-size: 25vw;
  line-height: 1;
  transform: rotate(12deg);
}

.garden-crew .section-label {
  border-color: rgba(255, 255, 255, 0.2);
}

.garden-crew .section-label span {
  color: var(--peach);
}

.crew-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
  margin-top: clamp(3rem, 7vw, 6rem);
}

.crew-heading h2 {
  color: white;
}

.crew-heading h2 em {
  color: var(--peach);
}

.crew-heading > p {
  max-width: 430px;
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.66);
}

.crew-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin-top: clamp(4rem, 8vw, 7rem);
}

.crew-card {
  padding: 0.85rem 0.85rem 1.6rem;
  background: var(--paper-bright);
  color: var(--ink);
  box-shadow: 10px 12px 0 var(--coral);
}

.crew-luna {
  transform: rotate(-2deg);
}

.crew-masha {
  transform: translateY(2rem) rotate(2deg);
}

.crew-osiris {
  transform: rotate(-1deg);
}

.crew-photo {
  position: relative;
  height: 360px;
  overflow: hidden;
}

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

.crew-luna .crew-photo img {
  object-position: center;
}

.crew-masha .crew-photo img {
  object-position: center 32%;
}

.crew-osiris .crew-photo img {
  object-position: center 35%;
}

.crew-photo span {
  position: absolute;
  right: 0.8rem;
  bottom: 0.5rem;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-size: 1.6rem;
}

.crew-copy {
  padding: 1.3rem 0.7rem 0;
}

.crew-copy p {
  margin: 0;
  color: var(--coral);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.crew-copy h3 {
  margin: 0.3rem 0;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.crew-copy > span {
  color: rgba(107, 22, 70, 0.65);
  font-size: 0.75rem;
}

.journal,
.resources {
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 175, 208, 0.24), transparent 18rem),
    var(--paper-bright);
}

.filter {
  background: white;
}

.filter:hover,
.filter.active {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
}

.article-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 7px 0 rgba(107, 22, 70, 0.08);
}

.article-card:hover {
  box-shadow: 8px 8px 0 var(--peach);
}

.projects {
  background:
    radial-gradient(circle at 88% 15%, rgba(247, 71, 145, 0.18), transparent 24rem),
    var(--ink-deep);
}

.project-card {
  border-radius: 32px;
  background: var(--coral);
  box-shadow: 12px 14px 0 var(--peach);
}

.experiment {
  border-color: rgba(255, 255, 255, 0.18);
}

.newsletter {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45) 0 3px, transparent 4px),
    radial-gradient(circle at 80% 65%, rgba(255, 255, 255, 0.45) 0 2px, transparent 3px),
    var(--sun);
  background-size: 90px 90px, 70px 70px, auto;
}

.newsletter-star {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  box-shadow: 0 5px 0 var(--ink);
}

.footer {
  background: var(--ink-deep);
}

.footer-main > a {
  border-color: var(--coral);
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .pet-collage {
    width: min(100%, 620px);
    margin-left: auto;
  }
}

@media (max-width: 900px) {
  .site-nav {
    background:
      radial-gradient(circle at 80% 20%, rgba(255, 175, 208, 0.45), transparent 14rem),
      var(--paper);
  }

  .crew-heading {
    grid-template-columns: 1fr;
  }

  .experience-intro,
  .experience-grid,
  .experience-today {
    grid-template-columns: 1fr;
  }

  .experience-lessons {
    transform: none;
  }

  .experience-values {
    grid-column: auto;
  }

  .crew-grid {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
    margin-right: auto;
    margin-left: auto;
  }

  .crew-masha {
    transform: rotate(2deg);
  }

  .crew-photo {
    height: 480px;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .pet-collage {
    min-height: 500px;
    margin-top: -1rem;
  }

  .pet-polaroid {
    width: 190px;
    padding: 0.6rem 0.6rem 2.2rem;
  }

  .pet-polaroid img {
    height: 205px;
  }

  .polaroid-luna {
    left: -2%;
  }

  .polaroid-masha {
    right: -3%;
  }

  .polaroid-osiris {
    right: 15%;
  }

  .crew-photo {
    height: 380px;
  }

  .garden-crew {
    padding-right: 7vw;
    padding-left: 7vw;
  }
}
