:root {
  --paper: #fff9ef;
  --raised: #fffcf6;
  --ink: #203247;
  --muted: #685b54;
  --coral: #ee675b;
  --mint: #d8ebe5;
  --line: #dfd8cd;
  --serif: -apple-system-ui-serif, ui-serif, "New York", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-enter: cubic-bezier(0.16, 1, 0.3, 1);
  --quick: 160ms;
  --standard: 450ms;
  --slow: 650ms;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 17px/1.7 var(--sans);
}
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
h1 {
  font-size: clamp(64px, 7vw, 104px);
  line-height: 1.01;
  letter-spacing: -0.065em;
}
h2 {
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.052em;
}
h3 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
em {
  font-weight: inherit;
}
h1 em,
h2 em {
  color: var(--coral);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 6px;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
button {
  color: inherit;
}
button[hidden],
[hidden] {
  display: none !important;
}
::selection {
  background: #eabda6;
  color: var(--ink);
}
.container {
  width: min(1260px, calc(100% - 100px));
  margin-inline: auto;
}
.section {
  padding-block: 115px;
}
.eyebrow {
  font:
    500 12px/1.6 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.14em;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.header {
  position: relative;
  z-index: 10;
  background: var(--paper);
}
.nav-shell {
  width: min(1440px, calc(100% - 80px));
  height: 108px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}
.wordmark img {
  width: 124px;
  height: auto;
  display: block;
}
.header nav:not(.mobile-menu) {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.header nav a {
  position: relative;
  padding-block: 7px;
  transition: color 100ms;
}
.header nav a:hover,
.header nav a[aria-current="page"] {
  color: #c54e42;
}
.header nav a:after {
  content: "";
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--standard) var(--ease);
}
.header nav a:hover:after,
.header nav a[aria-current="page"]:after {
  transform: scaleX(1);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  border-radius: 100px;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition:
    transform var(--standard) var(--ease),
    box-shadow var(--standard) var(--ease),
    background 100ms;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #20324720;
  background: #304a62;
}
.button:active {
  transform: scale(0.97);
  transition-duration: var(--quick);
}
.button-small {
  padding: 12px 23px;
  font-size: 14px;
}
.button-outline {
  background: transparent;
  color: var(--ink);
}
.button-outline:hover {
  color: var(--paper);
}
.menu-toggle {
  display: none;
}
.hero {
  overflow: hidden;
  position: relative;
  padding-top: 62px;
}
.hero-title {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-title .eyebrow {
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(65px, 6.7vw, 100px);
}
.hero-description {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  margin: 27px auto 0;
  max-width: 630px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 27px;
}
.store-badge {
  display: inline-block;
  transition: transform var(--standard) var(--ease);
}
.store-badge:hover {
  transform: translateY(-3px);
}
.store-badge:active {
  transform: scale(0.97);
  transition-duration: var(--quick);
}
.store-badge img {
  height: 49px;
  width: auto;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}
.text-link > span {
  transition: transform var(--standard) var(--ease);
}
.text-link:hover > span {
  transform: translate(3px, -2px);
}
.availability {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}
.availability span {
  padding-inline: 9px;
}
.memory-wall {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.18fr 1.15fr 1fr;
  gap: 24px;
  width: min(1660px, calc(100% + 130px));
  margin: 58px auto 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  min-height: 505px;
  padding-bottom: 20px;
}
.wall-photo {
  position: relative;
  will-change: transform;
}
.wall-photo img {
  height: 305px;
  object-fit: cover;
  border-radius: 18px;
}
.wall-photo figcaption {
  font-family: "Noteworthy", "Bradley Hand", var(--serif);
  font-size: 18px;
  line-height: 1.4;
  margin-top: 15px;
  text-align: center;
  color: var(--muted);
}
.wall-one {
  align-self: start;
  padding-top: 110px;
}
.wall-one img {
  height: 250px;
  object-position: center 40%;
}
.wall-two {
  align-self: start;
  padding-top: 32px;
}
.wall-two img {
  height: 355px;
}
.wall-three {
  align-self: start;
  padding-top: 73px;
}
.wall-three img {
  height: 300px;
  object-position: 50% 50%;
}
.wall-four {
  align-self: start;
  padding-top: 8px;
}
.wall-four img {
  height: 365px;
  object-position: 58% 45%;
}
.memory-tag {
  position: absolute;
  bottom: 62px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  background: var(--raised);
  border: 1px solid #fff9ef60;
  box-shadow: 0 5px 25px #20324714;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  white-space: nowrap;
  font-size: 12px;
}
.memory-tag span {
  font-size: 22px;
  color: var(--coral);
}
.hero-phone {
  width: min(100%, 260px);
  justify-self: center;
  position: relative;
  align-self: start;
  will-change: transform;
}
.phone-shell {
  padding: 6px;
  background: #24333a;
  border-radius: 36px;
  box-shadow:
    0 24px 55px #273c4723,
    0 0 0 1px #0005,
    0 0 0 4px #acb0ac;
}
.phone-shell img {
  border-radius: 30px;
}
.phone-note {
  display: block;
  font-family: "Noteworthy", "Bradley Hand", var(--serif);
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  padding-top: 20px;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--line);
  margin-top: 28px;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-bottom .icon {
  width: 16px;
  height: 16px;
}
.section-top {
  text-align: center;
  margin-bottom: 60px;
}
.section-top > .eyebrow {
  margin-bottom: 26px;
}
.section-top > p:last-child:not(.eyebrow) {
  max-width: 730px;
  color: var(--muted);
  margin: 25px auto 0;
}
.feature-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}
.feature-card {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.photo-feature {
  min-height: 570px;
}
.photo-feature > img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.photo-feature:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #132923c9, transparent 75%);
}
.photo-feature-copy {
  position: relative;
  z-index: 1;
  color: #fff9ef;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.photo-feature-copy h3 {
  font-size: 55px;
  margin: 14px 0 17px;
}
.photo-feature-copy > p:last-child {
  font-size: 16px;
  line-height: 1.6;
  color: #fff9efdd;
}
.voice-feature {
  background: #e1ece4;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-copy {
  padding: 38px 38px 0;
}
.card-copy h3 {
  font-size: 40px;
  margin: 16px 0;
}
.card-copy > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.voice-feature > img {
  width: 88%;
  margin: 25px auto 0;
  mix-blend-mode: multiply;
  transform: rotate(-5deg);
  filter: drop-shadow(0 12px 10px #20324716);
}
.audio-lines {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 27px;
  margin: 20px auto 0;
}
.audio-lines span {
  width: 3px;
  background: #719c8b;
  border-radius: 4px;
  height: var(--height);
}
.artwork-feature {
  background: #eee5d7;
}
.artwork-feature > img {
  height: 300px;
  object-fit: cover;
  object-position: center 65%;
}
.artwork-feature .card-copy {
  padding: 32px 38px 38px;
}
.artwork-feature h3 {
  font-size: 37px;
}
.quote-feature {
  background: #edc9bc;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-feature blockquote {
  font: clamp(39px, 4vw, 61px) / 1.07 var(--serif);
  letter-spacing: -0.05em;
  margin: 42px 0 22px;
}
.quote-feature blockquote em {
  color: #ab4e42;
}
.handwritten {
  font:
    23px/1.5 "Noteworthy",
    "Bradley Hand",
    var(--serif);
  color: #aa5747;
  transform: rotate(-4deg);
}
.quote-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  font-size: 13px;
}
.quote-bottom > span:last-child {
  font-size: 37px;
  line-height: 1;
}
.app-section {
  background: #eeeae0;
  overflow: hidden;
}
.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.app-copy > .eyebrow {
  margin-bottom: 24px;
}
.app-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 25px;
  max-width: 440px;
}
.app-copy h2 {
  font-size: 61px;
}
.feature-tabs {
  margin-top: 33px;
}
.feature-tabs button {
  width: 100%;
  text-align: left;
  display: flex;
  gap: 20px;
  align-items: center;
  background: transparent;
  border: 0;
  border-top: 1px solid #cfc9bd;
  padding: 23px 0;
  transition:
    padding var(--standard) var(--ease),
    color 100ms;
}
.feature-tabs button:last-child {
  border-bottom: 1px solid #cfc9bd;
}
.feature-tabs button > span:first-child {
  font:
    12px ui-monospace,
    monospace;
  align-self: flex-start;
  padding-top: 5px;
  color: #8d8277;
}
.feature-tabs button > span:nth-child(2) {
  flex: 1;
}
.feature-tabs strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
}
.feature-tabs small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 5px;
}
.feature-tabs button > span:last-child {
  opacity: 0;
  transform: translate(-6px, 6px);
  transition:
    opacity var(--standard),
    transform var(--standard) var(--ease);
}
.feature-tabs button[aria-selected="true"] {
  padding-left: 14px;
  color: #bd5746;
}
.feature-tabs button[aria-selected="true"] > span:last-child {
  opacity: 1;
  transform: translate(0, 0);
}
.app-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}
.stage-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid #d7c4aa;
  border-radius: 50%;
  pointer-events: none;
}
.stage-orbit:after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid #d7c4aa60;
  border-radius: 50%;
}
.app-panel {
  position: relative;
  width: 100%;
  animation: panel-enter var(--slow) var(--ease-enter) both;
}
.app-panel .phone-shell {
  width: 265px;
  margin: auto;
}
.stage-caption {
  text-align: center;
  font:
    17px "Noteworthy",
    "Bradley Hand",
    var(--serif);
  color: var(--muted);
  margin-top: 28px;
}
.collection-screen {
  height: 600px;
  width: 330px;
  margin: auto;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 35px #20324718;
  border: 1px solid #e7dfd3;
}
.collection-screen img {
  min-height: 100%;
  object-fit: cover;
  object-position: top;
}
.growth-heading {
  display: flex;
  align-items: flex-end;
  gap: 70px;
  justify-content: space-between;
  margin-bottom: 60px;
}
.growth-heading .eyebrow {
  margin-bottom: 24px;
}
.growth-heading h2 {
  font-size: clamp(45px, 4.4vw, 65px);
}
.growth-heading > p {
  max-width: 340px;
  font-size: 16px;
  color: var(--muted);
}
.growth-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.film-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #e3d7c5;
  padding-bottom: 78px;
}
.film-card video {
  width: 100%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}
.film-label {
  position: absolute;
  left: 24px;
  top: 22px;
  font:
    10px ui-monospace,
    monospace;
  letter-spacing: 0.07em;
  color: #fff;
  background: #203247a6;
  padding: 9px 11px;
  border-radius: 5px;
  pointer-events: none;
}
.film-cover {
  position: absolute;
  inset: 0 0 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 17px;
  color: var(--ink);
  border: 0;
  background: linear-gradient(0deg, #20324744, transparent 60%);
}
.film-cover > span:first-child {
  display: grid;
  place-items: center;
  background: var(--paper);
  border-radius: 50%;
  width: 82px;
  height: 82px;
  padding-left: 4px;
  font-size: 23px;
  box-shadow: 0 6px 30px #2032471a;
  transition: transform var(--standard) var(--ease);
}
.film-cover > span:last-child {
  background: #fff9efe6;
  padding: 5px 15px;
  border-radius: 100px;
  font-size: 12px;
}
.film-cover:hover > span:first-child {
  transform: scale(1.07);
}
.film-controls {
  height: 78px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  gap: 12px;
}
.film-controls button {
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  font-size: 19px;
}
.film-controls input {
  min-width: 0;
  flex: 1;
  height: 44px;
  accent-color: #203247;
}
.film-controls > span {
  font-size: 12px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.growth-portraits {
  display: flex;
  gap: 13px;
  max-width: 375px;
}
.growth-portraits img {
  width: calc((100% - 26px) / 3);
  border-radius: 13px;
  aspect-ratio: 1;
  object-fit: cover;
}
.growth-details .handwritten {
  margin: 19px 0 40px;
  font-size: 20px;
}
.growth-details h3 {
  font-size: 41px;
  margin-bottom: 19px;
}
.growth-details > p:not(.handwritten) {
  font-size: 16px;
  color: var(--muted);
}
.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  font-size: 14px;
}
.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.check-list li:before {
  content: "✓";
  color: #538874;
}
.growth-extra {
  display: flex;
  gap: 15px;
  margin-top: 32px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.growth-extra > span {
  font-size: 30px;
  line-height: 1;
  color: var(--coral);
}
.growth-extra strong {
  color: var(--ink);
  font-weight: 500;
}
.privacy-section {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.privacy-art {
  height: 470px;
  position: relative;
}
.privacy-photo {
  position: absolute;
  border: 10px solid var(--paper);
  box-shadow: 0 18px 40px #0003;
  width: 70%;
  height: 335px;
  object-fit: cover;
}
.back-photo {
  top: 0;
  right: 0;
  transform: rotate(8deg);
  object-position: 60% center;
}
.front-photo {
  left: 0;
  bottom: 0;
  transform: rotate(-8deg);
  width: 66%;
  height: 320px;
}
.privacy-lock {
  position: absolute;
  right: -5px;
  bottom: -8px;
  width: 200px;
  height: auto;
  pointer-events: none;
}
.privacy-lock img {
  display: block;
  width: 100%;
  height: auto;
}
.privacy-copy > .eyebrow {
  color: #bcd4c8;
  margin-bottom: 25px;
}
.privacy-copy h2 {
  font-size: clamp(46px, 4.5vw, 65px);
}
.privacy-copy h2 em {
  color: #b7d7c7;
}
.privacy-copy > p:not(.eyebrow) {
  margin-top: 25px;
  color: #c6cdd0;
  max-width: 450px;
}
.privacy-promise {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.6;
  color: #c6cdd0;
}
.privacy-promise strong {
  font-weight: 400;
  color: var(--paper);
}
.privacy-promises {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.privacy-promises article {
  border-top: 1px solid #ffffff30;
  padding-top: 24px;
}
.privacy-promises article > span {
  color: #b7d7c7;
  font:
    11px ui-monospace,
    monospace;
  letter-spacing: 0.08em;
}
.privacy-promises h3 {
  font-size: 29px;
  line-height: 1.2;
  margin: 20px 0 16px;
}
.privacy-promises p {
  font-size: 15px;
  color: #c6cdd0;
  line-height: 1.8;
}
.privacy-footnote {
  font-size: 12px;
  line-height: 1.8;
  color: #a9b5bc;
  border-top: 1px solid #fff3;
  margin-top: 50px;
  padding-top: 25px;
  max-width: 890px;
}
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.chapter-image {
  height: 370px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 26px;
}
.chapter-image > img {
  height: 100%;
  object-fit: cover;
}
.chapter-card:first-child img {
  object-position: center 42%;
}
.chapter-card:last-child img {
  object-position: 58% 50%;
}
.image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font:
    10px ui-monospace,
    monospace;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--paper);
  padding: 8px 12px;
  border-radius: 5px;
}
.chapter-card h3 {
  font-size: 32px;
  margin-bottom: 17px;
}
.chapter-card > p {
  font-size: 15px;
  color: var(--muted);
}
.birthday-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #1a3b32b0, transparent);
}
.birthday-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 25px;
  color: var(--paper);
}
.birthday-overlay small {
  font:
    10px ui-monospace,
    monospace;
  letter-spacing: 0.1em;
}
.birthday-overlay > span {
  font: 95px/1.25 var(--serif);
  letter-spacing: -0.05em;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 75px;
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.feature-list > div > span {
  display: block;
  color: #bd6652;
  font: 30px var(--serif);
  margin-bottom: 15px;
}
.feature-list strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.feature-list p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.closing {
  position: relative;
  min-height: 640px;
  background: #3c3b33;
  color: var(--paper);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.closing-photo {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 65% 45%;
}
.closing:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #15251fda, #15251f85 50%, #15251f10);
}
.closing-copy {
  position: relative;
  z-index: 1;
  padding-block: 90px;
}
.closing-copy > .eyebrow {
  margin-bottom: 30px;
}
.closing h2 {
  font-size: clamp(44px, 5vw, 76px);
}
.closing h2 em {
  color: #eccdb0;
}
.closing p:not(.eyebrow) {
  margin: 26px 0;
  color: #f5e8db;
}
.closing-pricing {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  margin-left: 25px;
  vertical-align: 20px;
}
.closing-copy small {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  color: #dddfd8;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-block: 50px;
}
.footer p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 13px;
}
.footer nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  flex-wrap: wrap;
  max-width: 430px;
}
.footer-note {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--muted);
  gap: 5px;
}
.motion-toggle {
  border: 0;
  background: none;
  color: inherit;
  font-size: 12px;
  padding: 6px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pricing-hero {
  text-align: center;
  padding: 82px 0 70px;
}
.pricing-hero .eyebrow {
  margin-bottom: 27px;
}
.pricing-hero h1 {
  font-size: clamp(52px, 6vw, 88px);
}
.pricing-hero > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 25px;
}
.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 30px;
  font-size: 13px;
}
.pricing-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.pricing-trust .icon {
  width: 17px;
  height: 17px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--raised);
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan .eyebrow {
  font-size: 10px;
}
.plan h2 {
  font-size: 46px;
  margin-top: 19px;
}
.plan-description {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  min-height: 48px;
}
.plan-price {
  font-family: var(--serif);
  font-size: 53px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin: 32px 0 15px;
}
.plan-price span {
  font: 14px var(--sans);
  letter-spacing: 0;
  color: var(--muted);
  margin-left: 8px;
}
.plan-cadence {
  font-size: 12px;
  color: var(--muted);
  min-height: 42px;
}
.plan .button {
  margin-top: 23px;
  gap: 18px;
}
.plan .check-list {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 26px;
  font-size: 13px;
  gap: 13px;
}
.featured-plan {
  background: #dceae1;
  border: 1px solid #93b9a7;
}
.plan-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 14px;
  background: #203f36;
  color: #fff9ef;
  border-radius: 100px;
  font-size: 9px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.featured-plan .check-list {
  border-color: #acc5b6;
}
.pricing-note {
  font-size: 12px;
  line-height: 1.8;
  max-width: 800px;
  text-align: center;
  margin: 30px auto 0;
  color: var(--muted);
}
.included-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.included-section h2 {
  font-size: 53px;
  margin-top: 23px;
}
.included-photo {
  width: 235px;
  height: 235px;
  object-fit: cover;
  border-radius: 20px;
  margin-top: 36px;
  transform: rotate(-4deg);
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 33px;
}
.included-grid > div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.included-grid span {
  color: var(--coral);
  font:
    12px ui-monospace,
    monospace;
}
.included-grid h3 {
  font-size: 27px;
  margin: 15px 0 12px;
}
.included-grid p {
  font-size: 14px;
  color: var(--muted);
}
.pricing-promise {
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  padding-block: 80px;
}
.pricing-promise .icon {
  width: 40px;
  height: 40px;
  color: #b5d4c4;
  margin-bottom: 25px;
}
.pricing-promise h2 em {
  color: #b5d4c4;
}
.pricing-promise p {
  max-width: 660px;
  margin: 25px auto;
  color: #cdd4d3;
}
.pricing-promise .text-link {
  border-bottom: 1px solid #ffffff50;
  padding-bottom: 7px;
}
.faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}
.faq h2 {
  font-size: 49px;
  margin-top: 25px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  padding: 23px 0;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  font-size: 22px;
  transition: transform var(--standard) var(--ease);
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 15px;
  color: var(--muted);
  padding: 0 22px 25px 0;
}
.pricing-ending {
  padding-top: 0;
  text-align: center;
}
.pricing-ending h2 {
  margin: 22px 0 30px;
}
.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 {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 50;
  background: var(--ink);
  color: white;
  padding: 10px;
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
/* Primary: staged entrances. Secondary: controls and shadows. Ambient: one small waveform. */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--slow) var(--ease-enter),
    transform var(--slow) var(--ease-enter);
}
.motion-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.motion-ready .hero-title {
  animation: rise-in 650ms var(--ease-enter) both;
}
.motion-ready .memory-wall {
  animation: wall-enter 900ms var(--ease-enter) 150ms both;
}
.motion-ready .voice-feature.visible .audio-lines span:nth-child(3n) {
  animation: sound-breathe 1800ms var(--ease) infinite alternate;
}
.page-hidden * {
  animation-play-state: paused !important;
}
.motion-off .reveal {
  opacity: 1;
  transform: none;
}
.motion-off * {
  animation: none !important;
  transition: none !important;
}
.motion-off [data-parallax] {
  transform: none !important;
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wall-enter {
  from {
    opacity: 0;
    translate: 0 32px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes sound-breathe {
  from {
    transform: scaleY(0.6);
  }
  to {
    transform: scaleY(1);
  }
}
@media (min-width: 1700px) {
  .hero {
    padding-top: 80px;
  }
  .memory-wall {
    margin-top: 70px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 70px);
  }
  .nav-shell {
    width: calc(100% - 50px);
    gap: 22px;
  }
  .header nav:not(.mobile-menu) {
    gap: 20px;
    font-size: 12px;
  }
  .memory-wall {
    gap: 20px;
  }
  .hero-phone {
    width: 220px;
  }
  .wall-two img {
    height: 320px;
  }
  .wall-four img {
    height: 340px;
  }
  .phone-note {
    font-size: 14px;
  }
  .app-layout,
  .growth-grid,
  .privacy-layout {
    gap: 55px;
  }
  .app-copy h2 {
    font-size: 53px;
  }
  .card-copy {
    padding: 30px 30px 0;
  }
  .card-copy h3 {
    font-size: 35px;
  }
  .photo-feature {
    min-height: 520px;
  }
  .quote-feature {
    padding: 32px;
  }
  .photo-feature-copy {
    padding: 30px;
  }
  .privacy-promises {
    gap: 30px;
  }
  .chapter-grid {
    gap: 24px;
  }
  .chapter-image {
    height: 330px;
  }
  .included-section {
    gap: 55px;
  }
  .plan {
    padding-inline: 24px;
  }
  .plan-price {
    font-size: 48px;
  }
  .footer nav {
    gap: 18px;
  }
  .pricing-trust {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .header nav:not(.mobile-menu) {
    display: none;
  }
  .nav-shell {
    height: 90px;
  }
  .header .button-small {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 9px;
  }
  .menu-toggle span {
    height: 1.5px;
    width: 100%;
    background: var(--ink);
    transition: transform var(--standard) var(--ease);
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }
  .mobile-menu {
    padding: 18px 35px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .hero {
    padding-top: 48px;
  }
  .hero h1 {
    font-size: 78px;
  }
  .memory-wall {
    grid-template-columns: 1fr 1.15fr 1fr;
    width: calc(100% + 70px);
    min-height: 510px;
    gap: 23px;
  }
  .wall-one,
  .wall-four {
    display: none;
  }
  .wall-two {
    padding-top: 55px;
  }
  .wall-three {
    padding-top: 100px;
  }
  .hero-phone {
    grid-column: 2;
    grid-row: 1;
    width: 245px;
  }
  .wall-two {
    grid-column: 1;
    grid-row: 1;
  }
  .wall-three {
    grid-column: 3;
    grid-row: 1;
  }
  .wall-two img {
    height: 350px;
  }
  .wall-three img {
    height: 305px;
  }
  .section {
    padding-block: 85px;
  }
  .feature-mosaic {
    gap: 22px;
  }
  .photo-feature {
    min-height: 540px;
  }
  .card-copy h3 {
    font-size: 33px;
  }
  .voice-feature > img {
    width: 95%;
  }
  .quote-feature blockquote {
    font-size: 46px;
  }
  .app-layout {
    gap: 30px;
  }
  .app-copy h2 {
    font-size: 45px;
  }
  .app-copy > .eyebrow {
    font-size: 10px;
  }
  .app-stage {
    min-height: 590px;
  }
  .app-panel .phone-shell {
    width: 235px;
  }
  .stage-orbit {
    width: 390px;
    height: 390px;
  }
  .feature-tabs strong {
    font-size: 15px;
  }
  .feature-tabs small {
    font-size: 12px;
  }
  .feature-tabs button {
    gap: 12px;
  }
  .collection-screen {
    width: 265px;
    height: 550px;
  }
  .growth-heading {
    display: block;
  }
  .growth-heading > p {
    max-width: 600px;
    margin-top: 23px;
  }
  .growth-grid {
    gap: 40px;
  }
  .growth-details h3 {
    font-size: 35px;
  }
  .growth-details > p:not(.handwritten) {
    font-size: 15px;
  }
  .growth-details .handwritten {
    margin-bottom: 25px;
  }
  .check-list {
    font-size: 13px;
  }
  .privacy-layout {
    gap: 38px;
  }
  .privacy-art {
    height: 390px;
  }
  .privacy-photo {
    height: 270px;
  }
  .front-photo {
    height: 265px;
  }
  .privacy-lock {
    width: 170px;
    right: -14px;
    bottom: -10px;
  }
  .privacy-copy h2 {
    font-size: 46px;
  }
  .privacy-copy > .eyebrow {
    font-size: 10px;
  }
  .privacy-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .privacy-promises h3 {
    font-size: 25px;
  }
  .privacy-promises {
    margin-top: 65px;
    gap: 23px;
  }
  .chapter-grid {
    gap: 20px;
  }
  .chapter-image {
    height: 290px;
  }
  .chapter-card h3 {
    font-size: 28px;
  }
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .closing {
    min-height: 590px;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer-note {
    flex-direction: row;
    align-items: center;
    gap: 25px;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .plan-grid {
    gap: 14px;
  }
  .plan {
    padding: 30px 18px;
  }
  .plan h2 {
    font-size: 38px;
  }
  .plan-price {
    font-size: 39px;
  }
  .plan-price span {
    font-size: 12px;
  }
  .plan .eyebrow {
    font-size: 9px;
  }
  .plan-description {
    font-size: 13px;
    min-height: 67px;
  }
  .plan-ribbon {
    font-size: 8px;
    padding: 6px 8px;
  }
  .plan .button {
    font-size: 13px;
    padding: 13px 15px;
    gap: 8px;
  }
  .included-section {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
  }
  .included-section h2 {
    font-size: 40px;
  }
  .included-grid {
    gap: 25px;
  }
  .included-grid h3 {
    font-size: 25px;
  }
  .faq {
    gap: 35px;
  }
  .faq h2 {
    font-size: 43px;
  }
  .pricing-hero h1 {
    font-size: 64px;
  }
}
@media (max-width: 650px) {
  html {
    scroll-padding-top: 25px;
  }
  .container {
    width: calc(100% - 40px);
  }
  body {
    font-size: 16px;
  }
  .nav-shell {
    width: calc(100% - 36px);
    height: 84px;
    gap: 14px;
  }
  .wordmark img {
    width: 112px;
  }
  .button-small {
    font-size: 12px;
    padding: 10px 17px;
    gap: 16px;
  }
  .menu-toggle {
    width: 33px;
  }
  .hero {
    padding-top: 38px;
  }
  .hero-title .eyebrow {
    font-size: 10px;
    letter-spacing: 0.09em;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(52px, 12.4vw, 78px);
    letter-spacing: -0.065em;
  }
  .hero-description {
    font-size: 16px;
    margin-top: 23px;
    max-width: 365px;
  }
  .hero-description br {
    display: none;
  }
  .hero-actions {
    gap: 23px;
    margin-top: 24px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 12px;
  }
  .store-badge img {
    height: 46px;
  }
  .availability {
    font-size: 11px;
    margin-top: 15px;
  }
  .memory-wall {
    width: calc(100% + 255px);
    grid-template-columns: 1fr 1.12fr 1fr;
    gap: 18px;
    margin-top: 42px;
    min-height: 445px;
    padding-bottom: 5px;
  }
  .hero-phone {
    width: 195px;
  }
  .phone-shell {
    border-radius: 28px;
    padding: 5px;
    box-shadow:
      0 18px 30px #273c4720,
      0 0 0 1px #0005,
      0 0 0 3px #acb0ac;
  }
  .phone-shell img {
    border-radius: 23px;
  }
  .wall-two {
    padding-top: 75px;
  }
  .wall-two img {
    height: 240px;
    border-radius: 13px;
  }
  .wall-three {
    padding-top: 105px;
  }
  .wall-three img {
    height: 230px;
    border-radius: 13px;
  }
  .wall-photo figcaption {
    font-size: 14px;
    max-width: 170px;
    margin-inline: auto;
  }
  .wall-two figcaption {
    text-align: right;
    padding-right: 9px;
  }
  .wall-three figcaption {
    text-align: left;
    padding-left: 9px;
  }
  .memory-tag {
    display: none;
  }
  .phone-note {
    font-size: 12px;
    padding-top: 16px;
    white-space: normal;
    line-height: 1.4;
  }
  .hero-bottom {
    margin-top: 10px;
    padding-block: 18px;
    justify-content: center;
  }
  .hero-bottom > span {
    display: none;
  }
  .hero-bottom a {
    font-size: 12px;
  }
  .section {
    padding-block: 65px;
  }
  h2 {
    font-size: 43px;
  }
  h3 {
    font-size: 30px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .section-top {
    margin-bottom: 35px;
  }
  .section-top > .eyebrow {
    margin-bottom: 21px;
  }
  .section-top > p:last-child:not(.eyebrow) {
    font-size: 16px;
    margin-top: 23px;
  }
  .desktop {
    display: none;
  }
  .feature-mosaic {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    border-radius: 19px;
  }
  .photo-feature {
    min-height: 490px;
  }
  .photo-feature-copy {
    padding: 30px;
  }
  .photo-feature-copy h3 {
    font-size: 49px;
  }
  .card-copy {
    padding: 30px 28px 0;
  }
  .card-copy h3 {
    font-size: 36px;
  }
  .voice-feature {
    min-height: 475px;
  }
  .voice-feature > img {
    max-width: 390px;
    width: 88%;
    margin-top: 23px;
  }
  .audio-lines {
    margin-top: 15px;
  }
  .artwork-feature > img {
    height: 255px;
  }
  .artwork-feature .card-copy {
    padding: 28px;
  }
  .artwork-feature h3 {
    font-size: 35px;
  }
  .quote-feature {
    padding: 31px;
    min-height: 440px;
  }
  .quote-feature blockquote {
    font-size: 49px;
    margin-top: 38px;
  }
  .quote-feature .handwritten {
    font-size: 20px;
  }
  .quote-bottom {
    font-size: 12px;
  }
  .app-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .app-copy h2 {
    font-size: 46px;
  }
  .app-copy > p:not(.eyebrow) {
    max-width: 100%;
  }
  .feature-tabs {
    margin-top: 25px;
  }
  .feature-tabs button {
    padding: 20px 0;
  }
  .feature-tabs strong {
    font-size: 16px;
  }
  .feature-tabs small {
    font-size: 13px;
  }
  .app-stage {
    min-height: 640px;
  }
  .app-panel .phone-shell {
    width: 260px;
  }
  .collection-screen {
    width: 295px;
    height: 620px;
  }
  .stage-orbit {
    width: 410px;
    height: 410px;
  }
  .growth-heading {
    margin-bottom: 35px;
  }
  .growth-heading h2 {
    font-size: 43px;
  }
  .growth-heading > p {
    font-size: 16px;
  }
  .growth-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .film-card {
    border-radius: 18px;
  }
  .film-label {
    font-size: 9px;
    left: 16px;
    top: 16px;
  }
  .film-controls {
    padding: 12px 10px;
    gap: 7px;
  }
  .film-controls > span {
    font-size: 10px;
  }
  .film-cover > span:first-child {
    width: 72px;
    height: 72px;
  }
  .growth-details {
    max-width: 480px;
  }
  .growth-portraits {
    max-width: 300px;
  }
  .growth-details .handwritten {
    font-size: 21px;
    margin: 20px 0 30px;
  }
  .growth-details h3 {
    font-size: 38px;
  }
  .growth-details > p:not(.handwritten) {
    font-size: 16px;
  }
  .check-list {
    font-size: 14px;
  }
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .privacy-art {
    max-width: 400px;
    width: 100%;
    height: 350px;
    margin: auto;
  }
  .privacy-photo {
    height: 250px;
    border-width: 8px;
  }
  .front-photo {
    height: 245px;
  }
  .privacy-lock {
    width: 155px;
    right: -6px;
    bottom: -12px;
  }
  .privacy-copy h2 {
    font-size: 44px;
  }
  .privacy-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .privacy-promise {
    font-size: 13px;
  }
  .privacy-promises {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 45px;
  }
  .privacy-promises h3 {
    font-size: 29px;
    margin: 14px 0;
  }
  .privacy-promises p {
    font-size: 16px;
  }
  .privacy-promises article > span {
    font-size: 10px;
  }
  .privacy-footnote {
    font-size: 11px;
    margin-top: 35px;
  }
  .chapter-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .chapter-image {
    height: 380px;
    margin-bottom: 23px;
  }
  .chapter-card h3 {
    font-size: 33px;
    margin-bottom: 14px;
  }
  .chapter-card > p {
    font-size: 16px;
  }
  .feature-list {
    gap: 25px;
    margin-top: 45px;
    padding-top: 27px;
  }
  .feature-list strong {
    font-size: 14px;
  }
  .feature-list p {
    font-size: 13px;
  }
  .closing {
    min-height: 670px;
  }
  .closing-photo {
    object-position: 62% center;
  }
  .closing:after {
    background: linear-gradient(0deg, #142b28dd, #142b2850);
  }
  .closing-copy {
    padding-block: 80px;
    align-self: flex-end;
  }
  .closing h2 {
    font-size: 43px;
  }
  .closing-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 0.08em;
    margin-bottom: 23px;
  }
  .closing-pricing {
    display: flex;
    margin: 22px 0 0;
    font-size: 13px;
  }
  .closing-copy small {
    font-size: 11px;
    max-width: 285px;
  }
  .footer {
    padding-block: 35px;
    gap: 30px;
  }
  .footer nav {
    font-size: 12px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-note {
    font-size: 11px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .footer-note .motion-toggle {
    margin-left: auto;
    font-size: 11px;
  }
  .pricing-hero {
    padding: 50px 0;
  }
  .pricing-hero h1 {
    font-size: 51px;
  }
  .pricing-hero > .eyebrow {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .pricing-hero > p:not(.eyebrow) {
    font-size: 16px;
  }
  .pricing-hero > p br {
    display: none;
  }
  .pricing-trust {
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 11px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .plan {
    padding: 32px;
  }
  .plan .eyebrow {
    font-size: 11px;
  }
  .plan h2 {
    font-size: 45px;
    margin-top: 15px;
  }
  .plan-description {
    font-size: 15px;
    min-height: 0;
  }
  .plan-price {
    font-size: 57px;
    margin: 27px 0 14px;
  }
  .plan-price span {
    font-size: 14px;
  }
  .plan-cadence {
    min-height: 0;
    font-size: 13px;
  }
  .plan .button {
    padding: 15px;
    font-size: 15px;
    margin-top: 25px;
  }
  .plan .check-list {
    font-size: 14px;
    gap: 14px;
  }
  .plan-ribbon {
    font-size: 9px;
    padding: 8px 14px;
  }
  .pricing-note {
    font-size: 11px;
    text-align: left;
    margin-top: 24px;
  }
  .included-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .included-section h2 {
    font-size: 42px;
  }
  .included-photo {
    display: none;
  }
  .included-grid {
    gap: 27px 24px;
  }
  .included-grid h3 {
    font-size: 25px;
  }
  .included-grid p {
    font-size: 14px;
  }
  .pricing-promise {
    padding-block: 65px;
  }
  .pricing-promise h2 {
    font-size: 40px;
  }
  .pricing-promise p {
    font-size: 16px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq h2 {
    font-size: 42px;
  }
  .faq summary {
    font-size: 15px;
    padding: 21px 0;
  }
  .faq details p {
    font-size: 15px;
  }
  .pricing-ending {
    padding-top: 0;
  }
  .pricing-ending h2 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
  [data-parallax] {
    transform: none !important;
  }
}

/* Small family details: one quiet entrance using the existing motion controls. */
.little-details {
  margin-top: 64px;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
}
.little-details-heading { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 22px; }
.little-details-heading .eyebrow { font-size: 10px; max-width: 180px; line-height: 1.8; }
.little-details-heading h3 { font-size: clamp(27px, 2.6vw, 37px); text-align: right; }
.little-details-heading h3 em { color: var(--coral); }
.little-details-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.little-details-grid article { padding: 20px 22px 24px; border-radius: 4px 22px 22px 22px; background: #f3eee3; }
.little-details-grid article:nth-child(2) { background: #eaf0e9; }
.little-details-grid article:nth-child(3) { background: #f7eae2; }
.little-details-grid img { display: block; width: 112px; height: auto; margin-bottom: 12px; }
.little-details-grid h4 { margin: 0 0 9px; font: 25px/1.15 var(--serif); letter-spacing: -0.035em; }
.little-details-grid p { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 29em; }
.detail-label { display: block; margin-top: 21px; font: 9px/1.6 ui-monospace, monospace; letter-spacing: 0.08em; color: var(--ink); }
.brand-domain { display: inline-block; margin-top: 13px; font: italic 24px/1.2 var(--serif); letter-spacing: -0.045em; }
.brand-domain > span { color: var(--coral); }
@media (max-width: 700px) {
  .little-details { margin-top: 42px; padding-top: 28px; }
  .little-details-heading { display: block; margin-bottom: 24px; }
  .little-details-heading .eyebrow { max-width: none; margin-bottom: 13px; }
  .little-details-heading h3 { text-align: left; }
  .little-details-grid { grid-template-columns: 1fr; gap: 12px; }
  .little-details-grid article { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 0 16px; padding: 22px 18px; }
  .little-details-grid img { grid-row: 1 / 4; width: 76px; margin: 4px 0 0; }
  .little-details-grid h4 { font-size: 24px; }
  .little-details-grid p { font-size: 13px; }
  .detail-label { margin-top: 12px; }
}

/* The family behind Kins */
.about-page { overflow: hidden; }
.about-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: center; gap: clamp(40px, 8vw, 140px); padding-block: clamp(72px, 8vw, 135px); }
.about-hero-copy .eyebrow { margin-bottom: 28px; }
.about-hero h1 { font-size: clamp(55px, 6vw, 90px); }
.about-hero-copy > p:not(.eyebrow) { max-width: 640px; margin-top: 33px; color: var(--muted); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.7; }
.about-scribble { display: inline-block; margin-top: 33px; color: #8b554a; font: italic 21px/1.4 var(--serif); transform: rotate(-2deg); }
.about-scribble span, .about-last-line span { color: var(--coral); }
.family-polaroid { width: min(100%, 380px); padding: 12px 12px 22px; justify-self: center; background: #fffefa; box-shadow: 0 16px 45px #20324728, 0 1px 3px #20324725; transform: rotate(5deg); }
.family-polaroid img { aspect-ratio: 1.3; object-fit: cover; object-position: center; filter: grayscale(1) contrast(1.09); }
.family-polaroid figcaption { padding-top: 15px; text-align: center; color: #6a5c50; font: italic 20px/1.2 var(--serif); }
.about-story { position: relative; padding-block: 130px 175px; background: #eaf0e9; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11%; }
.about-story-lead .eyebrow, .about-found-copy .eyebrow, .about-yorkshire-copy .eyebrow { margin-bottom: 25px; }
.about-prose { padding-top: 17px; }
.about-prose p, .about-found-copy p:not(.eyebrow), .about-yorkshire-copy p:not(.eyebrow) { color: var(--muted); font-size: 19px; line-height: 1.85; }
.about-prose p + p, .about-found-copy p + p, .about-yorkshire-copy p + p { margin-top: 21px; }
.about-prose em { color: #c45448; font: italic 1.25em var(--serif); }
.about-slippers { position: absolute; bottom: -39px; left: 5%; display: flex; align-items: center; gap: 8px; transform: rotate(-8deg); z-index: 1; }
.about-slippers img { width: clamp(170px, 19vw, 260px); }
.about-slippers span { display: inline-block; transform: rotate(9deg); font: italic 21px var(--serif); color: #ad5849; white-space: nowrap; }
.about-found { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: center; padding-block: 150px; }
.about-found-art { height: 475px; position: relative; background: #f0ebe1; border-radius: 220px 220px 20px 20px; }
.paper-note { position: absolute; width: 205px; height: 135px; padding: 24px; background: #fffefa; border: 1px solid #ded5c8; box-shadow: 0 13px 25px #20324719; font: italic 22px/1.2 var(--serif); color: var(--ink); }
.paper-note span { display: block; margin-top: 15px; font: 13px var(--sans); color: #bb7762; }
.paper-note-one { left: 11%; top: 14%; transform: rotate(-11deg); }
.paper-note-two { right: 7%; top: 35%; transform: rotate(8deg); background: #fcf1e9; }
.paper-note-three { left: 18%; bottom: 11%; transform: rotate(-4deg); background: #eaf0e9; }
.about-found-copy h2 { margin-bottom: 29px; }
.about-book { padding-block: 130px; background: var(--ink); color: var(--paper); text-align: center; }
.about-book-inner { max-width: 850px; }
.about-book .eyebrow { color: #f5ab98; }
.about-book blockquote { margin: 35px auto; font: italic clamp(39px, 5.3vw, 70px)/1.13 var(--serif); letter-spacing: -.05em; }
.about-book p:not(.eyebrow) { max-width: 700px; margin: 0 auto; font-size: 18px; color: #e3e5df; line-height: 1.85; }
.about-book p + p { padding-top: 25px; }
.about-yorkshire { display: grid; grid-template-columns: minmax(280px, .85fr) 1fr; gap: 12%; align-items: center; padding-block: 140px; }
.about-map-card { position: relative; width: min(100%, 480px); padding: 14px 14px 20px; background: #fffefa; box-shadow: 0 15px 40px #20324718; transform: rotate(-3deg); }
.about-map-card img { width: 100%; border-radius: 3px; }
.about-map-caption { display: block; margin-top: 16px; font: italic 20px var(--serif); text-align: center; }
.about-map-caption span { color: var(--coral); }
.about-yorkshire-copy h2 { margin-bottom: 28px; }
.about-yorkshire-copy .button { margin-top: 30px; }
.about-last-line { color: #ad5849 !important; font: italic 25px/1.4 var(--serif) !important; }

/* Shared legal pages */
.legal-page { padding-block: 85px 130px; }
.legal-heading { max-width: 860px; margin-bottom: 80px; }
.legal-heading .eyebrow { margin-bottom: 23px; }
.legal-heading h1 { font-size: clamp(55px, 6vw, 88px); }
.legal-heading > p:not(.eyebrow) { max-width: 700px; margin-top: 28px; color: var(--muted); font-size: 21px; line-height: 1.6; }
.legal-heading small { display: block; margin-top: 27px; color: #8d776a; text-transform: uppercase; letter-spacing: .09em; font-size: 11px; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 720px); gap: clamp(50px, 9vw, 140px); align-items: start; }
.legal-toc { position: sticky; top: 35px; display: grid; gap: 10px; border-top: 2px solid var(--ink); padding-top: 19px; font-size: 14px; }
.legal-toc strong { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 8px; }
.legal-toc a { color: var(--muted); }
.legal-toc a:hover, .legal-content a { color: #bd5746; }
.legal-content section { border-top: 1px solid var(--line); padding: 31px 0 39px; scroll-margin-top: 20px; }
.legal-content h2 { font-size: clamp(27px, 2.4vw, 37px); margin-bottom: 14px; }
.legal-content p { font-size: 16px; line-height: 1.85; color: var(--muted); }
.legal-content p + p { margin-top: 17px; }
.legal-content a { text-decoration: underline; text-underline-offset: 3px; }

/* Home page invitation and launch signup */
.about-invite { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: center; padding-block: 115px; }
.about-invite-photo { justify-self: center; width: min(100%, 330px); transform: rotate(-5deg); padding: 10px 10px 22px; background: #fffefa; box-shadow: 0 16px 40px #20324720; }
.about-invite-photo img { aspect-ratio: 1.3; object-fit: cover; filter: grayscale(1) contrast(1.08); }
.about-invite-photo figcaption { padding-top: 12px; text-align: center; font: italic 19px var(--serif); }
.about-invite-copy .eyebrow { margin-bottom: 22px; }
.about-invite-copy p:not(.eyebrow) { max-width: 530px; color: var(--muted); margin: 25px 0; }
.notify-section { background: #eaf0e9; text-align: center; padding-block: 105px; }
.notify-section .eyebrow { margin-bottom: 20px; }
.notify-section p:not(.eyebrow) { max-width: 560px; margin: 20px auto 0; color: var(--muted); }
.notify-actions { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 28px; }
.notify-actions .button { border: 0; }
.notify-dialog { border: 0; border-radius: 22px; width: min(480px, calc(100% - 32px)); padding: 37px; background: var(--paper); box-shadow: 0 35px 100px #20324755; color: var(--ink); }
.notify-dialog::backdrop { background: #203247aa; backdrop-filter: blur(5px); }
.notify-backdrop { position: fixed; inset: 0; z-index: 100; background: #203247aa; backdrop-filter: blur(5px); }
.notify-dialog.dialog-fallback { position: fixed; z-index: 101; inset: 50% auto auto 50%; margin: 0; transform: translate(-50%, -50%); max-height: min(90vh, 700px); overflow: auto; }
.notify-open { overflow: hidden; }
.notify-dialog h2 { font-size: 43px; margin: 10px 0 12px; }
.notify-dialog > p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.7; }
.dialog-close { float: right; background: none; border: 0; font-size: 30px; line-height: 1; padding: 0 0 10px 10px; }
.notify-dialog form { margin-top: 25px; }
.notify-dialog label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 9px; }
.notify-dialog input[type=email], .notify-dialog input[type=text] { display: block; width: 100%; padding: 13px 16px; border-radius: 9px; border: 1px solid #bdb7ad; background: #fffefa; color: var(--ink); }
.notify-dialog input[type=text] { margin-bottom: 16px; }
.notify-dialog .button { margin-top: 18px; width: 100%; border: 0; }
.notify-disclosure { display: block; font-size: 12px; line-height: 1.6; color: var(--muted); margin-top: 13px; }
.notify-disclosure a { text-decoration: underline; text-underline-offset: 2px; }
.notify-status { min-height: 24px; font-size: 13px; margin-top: 15px; }
.notify-dialog button:disabled { opacity: .6; cursor: progress; }

@media (max-width: 900px) {
  .about-hero, .about-story-grid, .about-found, .about-yorkshire, .about-invite { gap: 45px; }
  .about-hero { grid-template-columns: 1fr .8fr; }
  .about-found-art { height: 400px; }
  .paper-note { width: 175px; height: 115px; font-size: 18px; padding: 18px; }
}
@media (max-width: 700px) {
  .about-hero, .about-story-grid, .about-found, .about-yorkshire, .about-invite { grid-template-columns: 1fr; }
  .about-hero { padding-block: 65px 90px; }
  .about-hero-copy > p:not(.eyebrow) { margin-top: 23px; font-size: 17px; }
  .family-polaroid { width: min(72%, 320px); margin-top: 15px; }
  .about-story { padding-block: 85px 135px; }
  .about-story-grid { gap: 25px; }
  .about-prose { padding-top: 0; }
  .about-prose p, .about-found-copy p:not(.eyebrow), .about-yorkshire-copy p:not(.eyebrow) { font-size: 17px; }
  .about-slippers { left: 1%; bottom: -24px; }
  .about-slippers img { width: 160px; }
  .about-slippers span { font-size: 16px; }
  .about-found, .about-yorkshire { padding-block: 90px; }
  .about-found-art { width: min(100%, 420px); margin: auto; }
  .about-book { padding-block: 90px; }
  .about-book p:not(.eyebrow) { font-size: 16px; }
  .about-map-card { width: min(75%, 350px); margin: auto; }
  .legal-page { padding-block: 65px 90px; }
  .legal-heading { margin-bottom: 45px; }
  .legal-heading > p:not(.eyebrow) { font-size: 17px; }
  .legal-layout { display: block; }
  .legal-toc { display: none; }
  .legal-content p { font-size: 15px; }
  .about-invite { padding-block: 80px; }
  .about-invite-photo { width: min(65%, 270px); }
  .notify-section { padding-block: 80px; }
  .notify-actions { flex-direction: column; }
  .notify-dialog { padding: 27px; }
  .notify-dialog h2 { font-size: 35px; }
}
