.bobo-about-page.story-about {
  --story-bg: var(--limewash-base, #060403);
  --font-display: "Zen Old Mincho";
  --font-editorial: "Courier Prime";
  --font-geist-mono: "Geist Mono";
  --gutter: clamp(22px, 4.3vw, 72px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --story-cream: #f4ebe2;
  --story-pink: #FAD7ED;
  --story-pink-light: #fad7ed;
  min-height: 100vh;
  overflow: clip;
  background-color: var(--story-bg);
  color: var(--story-cream);
}

.bobo-about-page h1,
.bobo-about-page h2,
.bobo-about-page p,
.bobo-about-page figure { margin-top: 0; }

.bobo-about-page .story-about__hero {
  min-height: 430px;
  padding: calc(var(--header-height) + 96px) var(--gutter) 92px;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(244, 235, 226, 0.11);
}

.bobo-about-page .story-about__hero > div {
  width: min(100%, 1380px);
  margin: 0 auto;
}

.bobo-about-page .story-about__label,
.bobo-about-page .story-moment__number {
  margin-bottom: 16px;
  color: var(--story-pink);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1;
  text-transform: uppercase;
}

.bobo-about-page .story-about__hero h1 {
  margin: 0 0 24px;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(66px, 8.2vw, 126px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.82;
}

.bobo-about-page .story-about__hero > div > p:last-child {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(244, 235, 226, 0.72);
  font-size: clamp(15px, 1.22vw, 19px);
  line-height: 1.65;
}

.bobo-about-page .story-flow {
  --sakura-progress: 0;
  --sakura-mobile-progress: 0;
  position: relative;
  width: min(calc(100% - (var(--gutter) * 2)), 1380px);
  min-height: 1940px;
  margin: 0 auto;
  padding: 115px 0 85px;
  isolation: isolate;
}

.bobo-about-page .story-moment {
  position: relative;
  z-index: 2;
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(440px, 0.96fr) minmax(360px, 0.74fr);
  gap: clamp(65px, 9vw, 145px);
  align-items: center;
}

.bobo-about-page .story-moment--two {
  margin-top: 35px;
  grid-template-columns: minmax(360px, 0.74fr) minmax(440px, 0.96fr);
}

.bobo-about-page .story-moment--three { margin-top: 35px; }

.bobo-about-page .story-moment__image {
  width: min(100%, 570px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #2c2928;
  box-shadow: 0 0 0 1px rgba(250, 215, 237, 0.1);
}

.bobo-about-page .story-moment--one .story-moment__image,
.bobo-about-page .story-moment--three .story-moment__image { justify-self: start; }
.bobo-about-page .story-moment--two .story-moment__image { justify-self: end; }

.bobo-about-page .story-moment__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 1100ms var(--ease-out);
}

.bobo-about-page .story-moment--one .story-moment__image img { object-position: 54% center; }
.bobo-about-page .story-moment--two .story-moment__image img { object-position: center; }
.bobo-about-page .story-moment--three .story-moment__image img { object-position: 50% center; }
.bobo-about-page .story-moment__image.is-visible img { transform: scale(1); }

.bobo-about-page .story-moment__copy {
  position: relative;
  z-index: 4;
  max-width: 500px;
}

.bobo-about-page .story-moment--two .story-moment__copy { justify-self: end; }

.bobo-about-page .story-moment__copy h2 {
  margin: 0 0 27px;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(45px, 4.7vw, 74px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.bobo-about-page .story-moment__copy > p:not(.story-moment__number) {
  max-width: 470px;
  margin-bottom: 18px;
  color: var(--story-cream);
  font-family: var(--font-editorial), Courier, monospace;
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.68;
}

.bobo-about-page .story-moment__copy > p:not(.story-moment__number):not(.story-moment__quote) {
  color: #fff;
}

.bobo-about-page .story-moment__copy > p:not(.story-moment__number):last-child { margin-bottom: 0; }

.bobo-about-page .story-moment__copy strong {
  color: var(--story-pink);
  font-weight: 400;
}

.bobo-about-page .story-moment__copy > .story-moment__quote {
  margin-top: 2px;
  color: #d9d9d9;
  font-size: clamp(8.4px, 0.648vw, 10.2px) !important;
}

.bobo-about-page .story-moment__quote strong {
  color: inherit;
  font-weight: 700;
}

.bobo-about-page .story-moment__quote em { font-style: italic; }

.bobo-about-page [data-story-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}

.bobo-about-page [data-story-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.bobo-about-page .story-moment__image[data-story-reveal] {
  transform: translateY(14px) scale(0.975);
}

.bobo-about-page .story-moment__image[data-story-reveal].is-visible { transform: none; }

.bobo-about-page .story-moment__copy[data-story-reveal] { transition-delay: 90ms; }

.bobo-about-page .story-sakura {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bobo-about-page .story-sakura svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.bobo-about-page .story-sakura__mobile { display: none !important; }

.bobo-about-page .story-sakura__branch-base,
.bobo-about-page .story-sakura__branch-highlight,
.bobo-about-page .story-sakura__twig {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bobo-about-page .story-sakura__branch-base,
.bobo-about-page .story-sakura__branch-highlight {
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--sakura-progress));
  transition: stroke-dashoffset 90ms linear;
}

.bobo-about-page .story-sakura__branch-base {
  stroke: #6c514a;
  stroke-width: 3.4;
}

.bobo-about-page .story-sakura__branch-highlight {
  stroke: rgba(177, 140, 130, 0.45);
  stroke-width: 0.8;
}

.bobo-about-page .story-sakura__twig {
  stroke: rgba(124, 91, 82, 0.86);
  stroke-width: 1.45;
  opacity: clamp(0, calc((var(--sakura-progress) - var(--twig-at)) * 15), 0.92);
  transition: opacity 300ms ease;
}

.bobo-about-page .story-sakura__blossom,
.bobo-about-page .story-sakura__bud {
  opacity: clamp(0, calc((var(--sakura-progress) - var(--bloom-at)) * 14), 0.9);
  transition: opacity 420ms ease;
}

.bobo-about-page .story-sakura__petal {
  fill: #e2c1c2;
  stroke: rgba(116, 77, 75, 0.24);
  stroke-width: 0.55;
}

.bobo-about-page .story-sakura__petal--alt {
  fill: #d4aaad;
  stroke: rgba(116, 77, 75, 0.24);
  stroke-width: 0.55;
}

.bobo-about-page .story-sakura__stamens {
  fill: none;
  stroke: rgba(137, 82, 80, 0.72);
  stroke-width: 0.65;
  stroke-linecap: round;
}

.bobo-about-page .story-sakura__center { fill: #b87978; }

.bobo-about-page .story-sakura__bud-stem {
  fill: none;
  stroke: #75564f;
  stroke-width: 1.2;
  stroke-linecap: round;
}

.bobo-about-page .story-sakura__bud-petal {
  fill: #d9b2b4;
  stroke: rgba(108, 75, 72, 0.36);
  stroke-width: 0.7;
}

.bobo-about-page .story-ending {
  min-height: 400px;
  padding: 95px var(--gutter) 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(244, 235, 226, 0.11);
  text-align: center;
}

.bobo-about-page .story-ending > p {
  margin-bottom: 38px;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(45px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.bobo-about-page .story-ending a {
  min-width: 220px;
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid var(--story-pink-light);
  border-radius: 999px;
  background: var(--story-pink-light);
  color: #202020;
  font-size: 13px;
  font-weight: 700;
  transition: transform 240ms var(--ease-out), background 240ms ease, color 240ms ease;
}

.bobo-about-page .story-ending a:hover,
.bobo-about-page .story-ending a:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: var(--story-pink-light);
}

.bobo-about-page .story-ending svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform 240ms var(--ease-out);
}

.bobo-about-page .story-ending a:hover svg { transform: translateX(4px); }
body.bobo-about-page-active .site-footer { margin-top: 0; }
body.bobo-about-page-active .site-footer::after { display: none; }

@media (max-width: 1100px) {
  .bobo-about-page .story-flow { min-height: 1770px; }
  .bobo-about-page .story-moment {
    min-height: 520px;
    grid-template-columns: minmax(360px, 0.98fr) minmax(300px, 0.76fr);
    gap: 60px;
  }
  .bobo-about-page .story-moment--two { grid-template-columns: minmax(300px, 0.76fr) minmax(360px, 0.98fr); }
  .bobo-about-page .story-moment__image { width: min(100%, 500px); }
}

@media (max-width: 820px) {
  .bobo-about-page .story-about__hero {
    min-height: 350px;
    padding: calc(var(--header-height) + 66px) 18px 70px;
  }
  .bobo-about-page .story-about__hero h1 { font-size: clamp(64px, 17vw, 100px); }
  .bobo-about-page .story-flow {
    width: min(100% - 36px, 620px);
    min-height: 2020px;
    padding: 85px 0 60px;
  }
  .bobo-about-page .story-moment,
  .bobo-about-page .story-moment--two,
  .bobo-about-page .story-moment--three {
    min-height: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 38px;
  }
  .bobo-about-page .story-moment--one,
  .bobo-about-page .story-moment--two { padding-bottom: 125px; }
  .bobo-about-page .story-moment--two .story-moment__copy { order: 2; }
  .bobo-about-page .story-moment--two .story-moment__image { order: 1; }
  .bobo-about-page .story-moment__image,
  .bobo-about-page .story-moment--one .story-moment__image,
  .bobo-about-page .story-moment--two .story-moment__image,
  .bobo-about-page .story-moment--three .story-moment__image {
    width: min(100%, 510px);
    justify-self: auto;
    align-self: center;
  }
  .bobo-about-page .story-moment__copy,
  .bobo-about-page .story-moment--two .story-moment__copy {
    width: 86%;
    max-width: 480px;
    justify-self: auto;
    align-self: flex-start;
  }
  .bobo-about-page .story-moment--two .story-moment__copy { align-self: flex-end; text-align: right; }
  .bobo-about-page .story-moment__copy h2 { font-size: clamp(42px, 11.5vw, 66px); }
  .bobo-about-page .story-sakura__desktop { display: none !important; }
  .bobo-about-page .story-sakura__mobile { display: block !important; }
  .bobo-about-page .story-sakura { inset: 0; opacity: 1; }
  .bobo-about-page .story-sakura__mobile .story-sakura__branch-base,
  .bobo-about-page .story-sakura__mobile .story-sakura__branch-highlight {
    stroke-dashoffset: calc(1 - var(--sakura-mobile-progress));
  }
  .bobo-about-page .story-sakura__mobile .story-sakura__twig {
    opacity: clamp(0, calc((var(--sakura-mobile-progress) - var(--twig-at)) * 15), 0.94);
  }
  .bobo-about-page .story-sakura__mobile .story-sakura__blossom,
  .bobo-about-page .story-sakura__mobile .story-sakura__bud {
    opacity: clamp(0, calc((var(--sakura-mobile-progress) - var(--bloom-at)) * 14), 0.94);
  }
  .bobo-about-page .story-sakura__branch-base { stroke-width: 2.65; }
  .bobo-about-page .story-sakura__branch-highlight { stroke-width: 0.62; }
  .bobo-about-page .story-sakura__twig { stroke-width: 1.15; }

  .bobo-about-page .story-moment__copy::before {
    position: absolute;
    inset: -22px -18px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(6, 4, 3, 0.98) 42%, rgba(6, 4, 3, 0.88) 66%, transparent 82%);
    content: "";
    pointer-events: none;
  }
  .bobo-about-page .story-ending { min-height: 360px; padding: 80px 18px 120px; }
}

@media (max-width: 540px) {
  .bobo-about-page .story-about__hero { min-height: 330px; }
  .bobo-about-page .story-about__hero h1 { margin-bottom: 20px; font-size: clamp(62px, 20vw, 82px); }
  .bobo-about-page .story-about__hero > div > p:last-child { max-width: 340px; font-size: 14px; }
  .bobo-about-page .story-flow {
    width: min(100% - 28px, 480px);
    min-height: 1850px;
    padding-top: 84px;
  }
  .bobo-about-page .story-moment--one,
  .bobo-about-page .story-moment--two { padding-bottom: 110px; }
  .bobo-about-page .story-moment,
  .bobo-about-page .story-moment--two,
  .bobo-about-page .story-moment--three { gap: 31px; }
  .bobo-about-page .story-moment__copy,
  .bobo-about-page .story-moment--two .story-moment__copy { width: 92%; }
  .bobo-about-page .story-moment__copy h2 { margin-bottom: 20px; font-size: clamp(39px, 11.7vw, 54px); }
  .bobo-about-page .story-moment__copy > p:not(.story-moment__number) { font-size: 14px; line-height: 1.62; }
  .bobo-about-page .story-moment__copy > .story-moment__quote { font-size: 8.4px !important; }
  .bobo-about-page .story-sakura { inset: 0; opacity: 1; }
  .bobo-about-page .story-ending > p { max-width: 360px; font-size: clamp(43px, 13.5vw, 62px); }
}

@media (prefers-reduced-motion: reduce) {
  .bobo-about-page .story-flow {
    --sakura-progress: 1;
    --sakura-mobile-progress: 1;
  }

  .bobo-about-page [data-story-reveal],
  .bobo-about-page .story-moment__image img,
  .bobo-about-page .story-ending a,
  .bobo-about-page .story-ending svg,
  .bobo-about-page .story-sakura__branch-base,
  .bobo-about-page .story-sakura__branch-highlight,
  .bobo-about-page .story-sakura__twig,
  .bobo-about-page .story-sakura__blossom,
  .bobo-about-page .story-sakura__bud {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bobo-about-page .story-sakura__branch-base,
  .bobo-about-page .story-sakura__branch-highlight { stroke-dashoffset: 0; }
}
